ios webview fix and language updates

This commit is contained in:
Kyle Spearrin 2017-06-29 14:55:13 -04:00
parent 2651afcef0
commit 06dc4117c7
3 changed files with 3 additions and 3 deletions

View file

@ -1952,7 +1952,7 @@ namespace Bit.App.Resources {
} }
/// <summary> /// <summary>
/// Looks up a localized string similar to Two-step login makes your account more secure by requiring you to enter a security code from an authenticator app whenever you log in. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?. /// Looks up a localized string similar to Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?.
/// </summary> /// </summary>
public static string TwoStepLoginConfirmation { public static string TwoStepLoginConfirmation {
get { get {

View file

@ -717,7 +717,7 @@
<value>Two-step Login</value> <value>Two-step Login</value>
</data> </data>
<data name="TwoStepLoginConfirmation" xml:space="preserve"> <data name="TwoStepLoginConfirmation" xml:space="preserve">
<value>Two-step login makes your account more secure by requiring you to enter a security code from an authenticator app whenever you log in. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?</value> <value>Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?</value>
</data> </data>
<data name="UnlockWith" xml:space="preserve"> <data name="UnlockWith" xml:space="preserve">
<value>Unlock with {0}</value> <value>Unlock with {0}</value>

View file

@ -42,7 +42,7 @@ namespace Bit.iOS.Controls
if(e.NewElement != null) if(e.NewElement != null)
{ {
Control.LoadRequest(new NSUrlRequest(new NSUrl(Element.Uri, false))); Control.LoadRequest(new NSUrlRequest(new NSUrl(Element.Uri)));
} }
} }