mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 11:15:51 +00:00
Added Outlook to wizard menu
This commit is contained in:
parent
99e81cfa2b
commit
414b787d5e
2 changed files with 4 additions and 1 deletions
|
@ -167,10 +167,11 @@ public class FragmentSetup extends FragmentBase {
|
|||
|
||||
int order = 1;
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_setup_gmail, order++, R.string.title_setup_gmail);
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_setup_outlook, order++, R.string.title_setup_outlook);
|
||||
|
||||
if (Helper.hasValidFingerprint(getContext()) || BuildConfig.DEBUG)
|
||||
for (EmailProvider provider : EmailProvider.loadProfiles(getContext()))
|
||||
if (provider.oauth != null && (provider.oauth.enabled || BuildConfig.DEBUG))
|
||||
if (provider.oauth != null && provider.oauth.enabled)
|
||||
popupMenu.getMenu()
|
||||
.add(Menu.NONE, -1, order++, getString(R.string.title_setup_oauth, provider.name))
|
||||
.setIntent(new Intent(ActivitySetup.ACTION_QUICK_OAUTH)
|
||||
|
@ -195,6 +196,7 @@ public class FragmentSetup extends FragmentBase {
|
|||
case R.string.title_setup_activesync:
|
||||
Helper.viewFAQ(getContext(), 133);
|
||||
return true;
|
||||
case R.string.title_setup_outlook:
|
||||
case R.string.title_setup_other:
|
||||
lbm.sendBroadcast(new Intent(ActivitySetup.ACTION_QUICK_SETUP));
|
||||
return true;
|
||||
|
|
|
@ -156,6 +156,7 @@
|
|||
<string name="title_setup_wizard_multiple">The installation wizard can be used multiple times to set up multiple accounts</string>
|
||||
<string name="title_setup_wizard_remark">Go \'back\' to go to the inbox</string>
|
||||
<string name="title_setup_gmail" translatable="false">Gmail</string>
|
||||
<string name="title_setup_outlook" translatable="false">Outlook</string>
|
||||
<string name="title_setup_oauth" translatable="false">%1$s (OAuth)</string>
|
||||
<string name="title_setup_activesync" translatable="false">Exchange ActiveSync</string>
|
||||
<string name="title_setup_other">Other provider</string>
|
||||
|
|
Loading…
Reference in a new issue