1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

exposed password check

This commit is contained in:
Kyle Spearrin
2019-04-27 00:19:44 -04:00
parent 5e114e8074
commit 8fa2ef863f
6 changed files with 88 additions and 8 deletions

View File

@@ -834,6 +834,24 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Checking password....
/// </summary>
internal static string CheckingPassword {
get {
return ResourceManager.GetString("CheckingPassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check if password has been exposed..
/// </summary>
internal static string CheckPassword {
get {
return ResourceManager.GetString("CheckPassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose File.
/// </summary>
@@ -2580,6 +2598,15 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to This password has been exposed {0} time(s) in data breaches. You should change it..
/// </summary>
internal static string PasswordExposed {
get {
return ResourceManager.GetString("PasswordExposed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Password generated..
/// </summary>
@@ -2625,6 +2652,15 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to This password was not found in any known data breaches. It should be safe to use..
/// </summary>
internal static string PasswordSafe {
get {
return ResourceManager.GetString("PasswordSafe", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Phone.
/// </summary>

View File

@@ -1368,4 +1368,17 @@
<value>URIs</value>
<comment>Plural form of a URI</comment>
</data>
<data name="CheckingPassword" xml:space="preserve">
<value>Checking password...</value>
<comment>A loading message when doing an exposed password check.</comment>
</data>
<data name="CheckPassword" xml:space="preserve">
<value>Check if password has been exposed.</value>
</data>
<data name="PasswordExposed" xml:space="preserve">
<value>This password has been exposed {0} time(s) in data breaches. You should change it.</value>
</data>
<data name="PasswordSafe" xml:space="preserve">
<value>This password was not found in any known data breaches. It should be safe to use.</value>
</data>
</root>