lock now string

This commit is contained in:
Kyle Spearrin 2019-05-15 13:35:17 -04:00
parent 547cd4e828
commit 8ab632e207
3 changed files with 13 additions and 1 deletions

View File

@ -142,7 +142,7 @@ namespace Bit.App.Pages
new SettingsPageListItem { Name = AppResources.LockOptions },
new SettingsPageListItem { Name = string.Format(AppResources.UnlockWith, AppResources.Fingerprint) },
new SettingsPageListItem { Name = AppResources.UnlockWithPIN },
new SettingsPageListItem { Name = AppResources.Lock },
new SettingsPageListItem { Name = AppResources.LockNow },
new SettingsPageListItem { Name = AppResources.TwoStepLogin }
};
var accountItems = new List<SettingsPageListItem>

View File

@ -2049,6 +2049,15 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Lock Now.
/// </summary>
public static string LockNow {
get {
return ResourceManager.GetString("LockNow", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 15 minutes.
/// </summary>

View File

@ -1481,4 +1481,7 @@
<data name="ExportVault" xml:space="preserve">
<value>Export Vault</value>
</data>
<data name="LockNow" xml:space="preserve">
<value>Lock Now</value>
</data>
</root>