1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 16:53:26 +00:00

ui changes export vault screen for key connector (#1651)

* ui changes export vault screen for key connector

* update label and remove period
This commit is contained in:
Jake Fink
2021-11-19 09:44:01 -05:00
committed by GitHub
parent 68c484b67f
commit 94994af4a9
4 changed files with 116 additions and 53 deletions

View File

@@ -2837,9 +2837,21 @@ namespace Bit.App.Resources {
}
}
public static string ExportVaultOTPDescription {
public static string SendVerificationCodeToEmail {
get {
return ResourceManager.GetString("ExportVaultOTPDescription", resourceCulture);
return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture);
}
}
public static string CodeSent {
get {
return ResourceManager.GetString("CodeSent", resourceCulture);
}
}
public static string ConfirmYourIdentity {
get {
return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture);
}
}
@@ -3701,9 +3713,15 @@ namespace Bit.App.Resources {
}
}
public static string RequestOTP {
public static string SendCode {
get {
return ResourceManager.GetString("RequestOTP", resourceCulture);
return ResourceManager.GetString("SendCode", resourceCulture);
}
}
public static string Sending {
get {
return ResourceManager.GetString("Sending", resourceCulture);
}
}
}