1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-23 11:45:38 +01:00

l10n for 2fa and dismiss keyboard message

This commit is contained in:
Kyle Spearrin 2017-06-29 12:11:07 -04:00
parent 74fba486bd
commit ce4d828380
4 changed files with 215 additions and 27 deletions

View File

@ -16,6 +16,7 @@ using System.Threading.Tasks;
using Bit.App.Models.Page; using Bit.App.Models.Page;
using Bit.App; using Bit.App;
using Android.Nfc; using Android.Nfc;
using Android.Views.InputMethods;
namespace Bit.Android namespace Bit.Android
{ {
@ -78,6 +79,12 @@ namespace Bit.Android
Resolver.Resolve<IAppInfoService>(), Resolver.Resolve<IAppInfoService>(),
Resolver.Resolve<IAppSettingsService>())); Resolver.Resolve<IAppSettingsService>()));
MessagingCenter.Subscribe<Xamarin.Forms.Application>(
Xamarin.Forms.Application.Current, "DismissKeyboard", (sender) =>
{
DismissKeyboard();
});
MessagingCenter.Subscribe<Xamarin.Forms.Application>(Xamarin.Forms.Application.Current, "RateApp", (sender) => MessagingCenter.Subscribe<Xamarin.Forms.Application>(Xamarin.Forms.Application.Current, "RateApp", (sender) =>
{ {
RateApp(); RateApp();
@ -293,5 +300,15 @@ namespace Bit.Android
MessagingCenter.Send(Xamarin.Forms.Application.Current, "GotYubiKeyOTP", otp); MessagingCenter.Send(Xamarin.Forms.Application.Current, "GotYubiKeyOTP", otp);
} }
} }
private void DismissKeyboard()
{
try
{
var imm = (InputMethodManager)GetSystemService(InputMethodService);
imm.HideSoftInputFromWindow(CurrentFocus.WindowToken, 0);
}
catch { }
}
} }
} }

View File

@ -71,7 +71,7 @@ namespace Bit.App.Pages
var anotherMethodButton = new ExtendedButton var anotherMethodButton = new ExtendedButton
{ {
Text = "Use another two-step login method", Text = AppResources.UseAnotherTwoStepMethod,
Style = (Style)Application.Current.Resources["btn-primaryAccent"], Style = (Style)Application.Current.Resources["btn-primaryAccent"],
Margin = new Thickness(15, 0, 15, 25), Margin = new Thickness(15, 0, 15, 25),
Command = new Command(() => AnotherMethodAsync()), Command = new Command(() => AnotherMethodAsync()),
@ -89,13 +89,13 @@ namespace Bit.App.Pages
RememberCell = new ExtendedSwitchCell RememberCell = new ExtendedSwitchCell
{ {
Text = "Remember me", Text = AppResources.RememberMe,
On = false On = false
}; };
if(!_providerType.HasValue) if(!_providerType.HasValue)
{ {
instruction.Text = "No providers available."; instruction.Text = AppResources.NoTwoStepAvailable;
var layout = new StackLayout var layout = new StackLayout
{ {
@ -105,7 +105,7 @@ namespace Bit.App.Pages
scrollView.Content = layout; scrollView.Content = layout;
Title = "Login Unavailable"; Title = AppResources.LoginUnavailable;
Content = scrollView; Content = scrollView;
} }
else if(_providerType.Value == TwoFactorProviderType.Authenticator || else if(_providerType.Value == TwoFactorProviderType.Authenticator ||
@ -146,17 +146,17 @@ namespace Bit.App.Pages
switch(_providerType.Value) switch(_providerType.Value)
{ {
case TwoFactorProviderType.Authenticator: case TwoFactorProviderType.Authenticator:
instruction.Text = "Enter the 6 digit verification code from your authenticator app."; instruction.Text = AppResources.EnterVerificationCodeApp;
layout.Children.Add(anotherMethodButton); layout.Children.Add(anotherMethodButton);
break; break;
case TwoFactorProviderType.Email: case TwoFactorProviderType.Email:
var emailParams = _providers[TwoFactorProviderType.Email]; var emailParams = _providers[TwoFactorProviderType.Email];
var redactedEmail = emailParams["Email"].ToString(); var redactedEmail = emailParams["Email"].ToString();
instruction.Text = $"Enter the 6 digit verification code that was emailed to {redactedEmail}."; instruction.Text = string.Format(AppResources.EnterVerificationCodeEmail, redactedEmail);
var resendEmailButton = new ExtendedButton var resendEmailButton = new ExtendedButton
{ {
Text = "Send verification code email again", Text = AppResources.SendVerificationCodeAgain,
Style = (Style)Application.Current.Resources["btn-primaryAccent"], Style = (Style)Application.Current.Resources["btn-primaryAccent"],
Margin = new Thickness(15, 0, 15, 0), Margin = new Thickness(15, 0, 15, 0),
Command = new Command(async () => await SendEmailAsync(true)), Command = new Command(async () => await SendEmailAsync(true)),
@ -176,6 +176,7 @@ namespace Bit.App.Pages
Title = AppResources.VerificationCode; Title = AppResources.VerificationCode;
Content = scrollView; Content = scrollView;
TokenCell.Entry.FocusWithDelay();
} }
else if(_providerType == TwoFactorProviderType.Duo) else if(_providerType == TwoFactorProviderType.Duo)
{ {
@ -215,7 +216,7 @@ namespace Bit.App.Pages
} }
else if(_providerType == TwoFactorProviderType.YubiKey) else if(_providerType == TwoFactorProviderType.YubiKey)
{ {
instruction.Text = "Hold your YubiKey NEO against the back of the device to continue."; instruction.Text = AppResources.YubiKeyInstruction;
var image = new CachedImage var image = new CachedImage
{ {
@ -241,7 +242,7 @@ namespace Bit.App.Pages
scrollView.Content = layout; scrollView.Content = layout;
Title = "YubiKey"; Title = AppResources.YubiKeyTitle;
Content = scrollView; Content = scrollView;
} }
} }
@ -254,9 +255,12 @@ namespace Bit.App.Pages
if(TokenCell != null) if(TokenCell != null)
{ {
TokenCell.InitEvents(); TokenCell.InitEvents();
TokenCell.Entry.FocusWithDelay();
TokenCell.Entry.Completed += Entry_Completed; TokenCell.Entry.Completed += Entry_Completed;
} }
else if(Device.RuntimePlatform == Device.Android)
{
MessagingCenter.Send(Application.Current, "DismissKeyboard");
}
} }
protected override void OnDisappearing() protected override void OnDisappearing()
@ -278,7 +282,7 @@ namespace Bit.App.Pages
var options = new List<string>(); var options = new List<string>();
if(_providers.ContainsKey(TwoFactorProviderType.Authenticator)) if(_providers.ContainsKey(TwoFactorProviderType.Authenticator))
{ {
options.Add("Authenticator App"); options.Add(AppResources.AuthenticatorAppTitle);
} }
if(_providers.ContainsKey(TwoFactorProviderType.Duo)) if(_providers.ContainsKey(TwoFactorProviderType.Duo))
@ -292,19 +296,20 @@ namespace Bit.App.Pages
(bool)_providers[TwoFactorProviderType.YubiKey]["Nfc"]; (bool)_providers[TwoFactorProviderType.YubiKey]["Nfc"];
if(_deviceInfoService.NfcEnabled || nfcKey) if(_deviceInfoService.NfcEnabled || nfcKey)
{ {
options.Add("YubiKey NFC Security Key"); options.Add(AppResources.YubiKeyTitle);
} }
} }
if(_providers.ContainsKey(TwoFactorProviderType.Email)) if(_providers.ContainsKey(TwoFactorProviderType.Email))
{ {
options.Add("Email"); options.Add(AppResources.Email);
} }
options.Add("Recovery Code"); options.Add(AppResources.RecoveryCodeTitle);
var selection = await DisplayActionSheet("Two-step Login Options", AppResources.Cancel, null, options.ToArray()); var selection = await DisplayActionSheet(AppResources.TwoStepLoginOptions, AppResources.Cancel, null,
if(selection == "Authenticator App") options.ToArray());
if(selection == AppResources.AuthenticatorAppTitle)
{ {
_providerType = TwoFactorProviderType.Authenticator; _providerType = TwoFactorProviderType.Authenticator;
} }
@ -312,15 +317,15 @@ namespace Bit.App.Pages
{ {
_providerType = TwoFactorProviderType.Duo; _providerType = TwoFactorProviderType.Duo;
} }
else if(selection == "YubiKey NFC Security Key") else if(selection == AppResources.YubiKeyTitle)
{ {
_providerType = TwoFactorProviderType.YubiKey; _providerType = TwoFactorProviderType.YubiKey;
} }
else if(selection == "Email") else if(selection == AppResources.Email)
{ {
_providerType = TwoFactorProviderType.Email; _providerType = TwoFactorProviderType.Email;
} }
else if(selection == "Recovery Code") else if(selection == AppResources.RecoveryCodeTitle)
{ {
Device.OpenUri(new Uri("https://help.bitwarden.com/article/lost-two-step-device/")); Device.OpenUri(new Uri("https://help.bitwarden.com/article/lost-two-step-device/"));
return; return;
@ -349,11 +354,11 @@ namespace Bit.App.Pages
if(response.Succeeded && doToast) if(response.Succeeded && doToast)
{ {
_userDialogs.Toast("Verification email sent."); _userDialogs.Toast(AppResources.VerificationEmailSent);
} }
else if(!response.Succeeded) else if(!response.Succeeded)
{ {
_userDialogs.Alert("Could not send verification email. Try again."); _userDialogs.Alert(AppResources.VerificationEmailNotSent);
} }
} }

View File

@ -142,6 +142,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Authenticator App.
/// </summary>
public static string AuthenticatorAppTitle {
get {
return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Auto-fill. /// Looks up a localized string similar to Auto-fill.
/// </summary> /// </summary>
@ -710,11 +719,20 @@ namespace Bit.App.Resources {
} }
/// <summary> /// <summary>
/// Looks up a localized string similar to Enter your two-step verification code.. /// Looks up a localized string similar to Enter the 6 digit verification code from your authenticator app..
/// </summary> /// </summary>
public static string EnterVerificationCode { public static string EnterVerificationCodeApp {
get { get {
return ResourceManager.GetString("EnterVerificationCode", resourceCulture); return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter the 6 digit verification code that was emailed to {0}..
/// </summary>
public static string EnterVerificationCodeEmail {
get {
return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture);
} }
} }
@ -1231,6 +1249,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Login Unavailable.
/// </summary>
public static string LoginUnavailable {
get {
return ResourceManager.GetString("LoginUnavailable", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Login updated.. /// Looks up a localized string similar to Login updated..
/// </summary> /// </summary>
@ -1474,6 +1501,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to This account has two-step login enabled, however, none of the configured two-step providers are supported on this device. Please use a supported supported device and/or add additional providers that are better supported across devices (such as an authenticator app)..
/// </summary>
public static string NoTwoStepAvailable {
get {
return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to This login does not have a username or password configured.. /// Looks up a localized string similar to This login does not have a username or password configured..
/// </summary> /// </summary>
@ -1636,6 +1672,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Recovery Code.
/// </summary>
public static string RecoveryCodeTitle {
get {
return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Regenerate Password. /// Looks up a localized string similar to Regenerate Password.
/// </summary> /// </summary>
@ -1645,6 +1690,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Remember me.
/// </summary>
public static string RememberMe {
get {
return ResourceManager.GetString("RememberMe", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Re-type Master Password. /// Looks up a localized string similar to Re-type Master Password.
/// </summary> /// </summary>
@ -1717,6 +1771,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Send verification code email again.
/// </summary>
public static string SendVerificationCodeAgain {
get {
return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Set PIN. /// Looks up a localized string similar to Set PIN.
/// </summary> /// </summary>
@ -1897,6 +1960,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Two-step Login Options.
/// </summary>
public static string TwoStepLoginOptions {
get {
return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Unlock with {0}. /// Looks up a localized string similar to Unlock with {0}.
/// </summary> /// </summary>
@ -1924,6 +1996,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Use another two-step login method.
/// </summary>
public static string UseAnotherTwoStepMethod {
get {
return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Use Fingerprint to Unlock. /// Looks up a localized string similar to Use Fingerprint to Unlock.
/// </summary> /// </summary>
@ -1978,6 +2059,24 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Could not send verification email. Try again..
/// </summary>
public static string VerificationEmailNotSent {
get {
return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Verification email sent..
/// </summary>
public static string VerificationEmailSent {
get {
return ResourceManager.GetString("VerificationEmailSent", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Verify Fingerprint. /// Looks up a localized string similar to Verify Fingerprint.
/// </summary> /// </summary>
@ -2085,5 +2184,23 @@ namespace Bit.App.Resources {
return ResourceManager.GetString("Yes", resourceCulture); return ResourceManager.GetString("Yes", resourceCulture);
} }
} }
/// <summary>
/// Looks up a localized string similar to Hold your YubiKey NEO against the back of the device to continue..
/// </summary>
public static string YubiKeyInstruction {
get {
return ResourceManager.GetString("YubiKeyInstruction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to YubiKey NEO Security Key.
/// </summary>
public static string YubiKeyTitle {
get {
return ResourceManager.GetString("YubiKeyTitle", resourceCulture);
}
}
} }
} }

View File

@ -479,9 +479,6 @@
<data name="EnterEmailForHint" xml:space="preserve"> <data name="EnterEmailForHint" xml:space="preserve">
<value>Enter your account email address to receive your master password hint.</value> <value>Enter your account email address to receive your master password hint.</value>
</data> </data>
<data name="EnterVerificationCode" xml:space="preserve">
<value>Enter your two-step verification code.</value>
</data>
<data name="ExntesionReenable" xml:space="preserve"> <data name="ExntesionReenable" xml:space="preserve">
<value>Re-enable App Extension</value> <value>Re-enable App Extension</value>
</data> </data>
@ -853,4 +850,56 @@
<value>Cannot open the app "{0}".</value> <value>Cannot open the app "{0}".</value>
<comment>Message shown when trying to launch an app that does not exist on the user's device.</comment> <comment>Message shown when trying to launch an app that does not exist on the user's device.</comment>
</data> </data>
<data name="AuthenticatorAppTitle" xml:space="preserve">
<value>Authenticator App</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeApp" xml:space="preserve">
<value>Enter the 6 digit verification code from your authenticator app.</value>
<comment>For 2FA</comment>
</data>
<data name="EnterVerificationCodeEmail" xml:space="preserve">
<value>Enter the 6 digit verification code that was emailed to {0}.</value>
<comment>For 2FA</comment>
</data>
<data name="LoginUnavailable" xml:space="preserve">
<value>Login Unavailable</value>
<comment>For 2FA whenever there are no available providers on this device.</comment>
</data>
<data name="NoTwoStepAvailable" xml:space="preserve">
<value>This account has two-step login enabled, however, none of the configured two-step providers are supported on this device. Please use a supported supported device and/or add additional providers that are better supported across devices (such as an authenticator app).</value>
</data>
<data name="RecoveryCodeTitle" xml:space="preserve">
<value>Recovery Code</value>
<comment>For 2FA</comment>
</data>
<data name="RememberMe" xml:space="preserve">
<value>Remember me</value>
<comment>Remember my two-step login</comment>
</data>
<data name="SendVerificationCodeAgain" xml:space="preserve">
<value>Send verification code email again</value>
<comment>For 2FA</comment>
</data>
<data name="TwoStepLoginOptions" xml:space="preserve">
<value>Two-step Login Options</value>
</data>
<data name="UseAnotherTwoStepMethod" xml:space="preserve">
<value>Use another two-step login method</value>
</data>
<data name="VerificationEmailNotSent" xml:space="preserve">
<value>Could not send verification email. Try again.</value>
<comment>For 2FA</comment>
</data>
<data name="VerificationEmailSent" xml:space="preserve">
<value>Verification email sent.</value>
<comment>For 2FA</comment>
</data>
<data name="YubiKeyInstruction" xml:space="preserve">
<value>Hold your YubiKey NEO against the back of the device to continue.</value>
</data>
<data name="YubiKeyTitle" xml:space="preserve">
<value>YubiKey NEO Security Key</value>
<comment>"YubiKey NEO" is the product name and should not be translated.</comment>
</data>
</root> </root>