1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 00:33:20 +00:00

Account Deletion on SSO with CME (#1721)

* WIP Added Verification Code page and a verification flow helper to coordinate things

* Improved Verification Code page verification flow helper and fix some issues, also added flag ApiService to choose whether to logout on Unanuthorized

* Improved Verification Code page UI/UX verification flow helper and fix some issues and made some cleanups

* Fix spelling
This commit is contained in:
Federico Maccaroni
2022-01-24 13:25:46 -03:00
committed by GitHub
parent 5a6aec51f3
commit 4e7ceaf5b5
12 changed files with 622 additions and 24 deletions

View File

@@ -3766,5 +3766,41 @@ namespace Bit.App.Resources {
return ResourceManager.GetString("Sending", resourceCulture);
}
}
public static string SendingCode {
get {
return ResourceManager.GetString("SendingCode", resourceCulture);
}
}
public static string Verifying {
get {
return ResourceManager.GetString("Verifying", resourceCulture);
}
}
public static string ResendCode {
get {
return ResourceManager.GetString("ResendCode", resourceCulture);
}
}
public static string AVerificationCodeWasSentToYourEmail {
get {
return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture);
}
}
public static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain {
get {
return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture);
}
}
public static string EnterTheVerificationCodeThatWasSentToYourEmail {
get {
return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture);
}
}
}
}