mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
Fixes #2221 - Change Confirm recovery key
copy to Enter recovery key
This commit is contained in:
parent
023e10edf2
commit
3887403150
@ -120,6 +120,7 @@
|
||||
"common_everyone" = "Everyone";
|
||||
"common_face_id_ios" = "Face ID";
|
||||
"common_favourite" = "Favourite";
|
||||
"common_favourited" = "Favourited";
|
||||
"common_file" = "File";
|
||||
"common_forward_message" = "Forward message";
|
||||
"common_gif" = "GIF";
|
||||
@ -199,8 +200,8 @@
|
||||
"common_poll_end_confirmation" = "Are you sure you want to end this poll?";
|
||||
"common_poll_summary" = "Poll: %1$@";
|
||||
"common_verify_device" = "Verify device";
|
||||
"confirm_recovery_key_banner_message" = "Your chat backup is currently out of sync. You need to confirm your recovery key to maintain access to your chat backup.";
|
||||
"confirm_recovery_key_banner_title" = "Confirm your recovery key";
|
||||
"confirm_recovery_key_banner_message" = "Your chat backup is currently out of sync. You need to enter your recovery key to maintain access to your chat backup.";
|
||||
"confirm_recovery_key_banner_title" = "Enter your recovery key";
|
||||
"crash_detection_dialog_content" = "%1$@ crashed the last time it was used. Would you like to share a crash report with us?";
|
||||
"dialog_permission_camera" = "In order to let the application use the camera, please grant the permission in the system settings.";
|
||||
"dialog_permission_generic" = "Please grant the permission in the system settings.";
|
||||
@ -360,7 +361,7 @@
|
||||
"screen_chat_backup_key_backup_description" = "Backup ensures that you don't lose your message history. %1$@.";
|
||||
"screen_chat_backup_key_backup_title" = "Backup";
|
||||
"screen_chat_backup_recovery_action_change" = "Change recovery key";
|
||||
"screen_chat_backup_recovery_action_confirm" = "Confirm recovery key";
|
||||
"screen_chat_backup_recovery_action_confirm" = "Enter recovery key";
|
||||
"screen_chat_backup_recovery_action_confirm_description" = "Your chat backup is currently out of sync.";
|
||||
"screen_chat_backup_recovery_action_setup" = "Set up recovery";
|
||||
"screen_chat_backup_recovery_action_setup_description" = "Get access to your encrypted messages if you lose all your devices or are signed out of %1$@ everywhere.";
|
||||
@ -463,7 +464,7 @@
|
||||
"screen_recovery_key_confirm_key_description" = "Enter the 48 character code.";
|
||||
"screen_recovery_key_confirm_key_placeholder" = "Enter...";
|
||||
"screen_recovery_key_confirm_success" = "Recovery key confirmed";
|
||||
"screen_recovery_key_confirm_title" = "Confirm your recovery key";
|
||||
"screen_recovery_key_confirm_title" = "Enter your recovery key";
|
||||
"screen_recovery_key_copied_to_clipboard" = "Copied recovery key";
|
||||
"screen_recovery_key_generating_key" = "Generating…";
|
||||
"screen_recovery_key_save_action" = "Save recovery key";
|
||||
|
@ -274,6 +274,8 @@ public enum L10n {
|
||||
public static var commonFaceIdIos: String { return L10n.tr("Localizable", "common_face_id_ios") }
|
||||
/// Favourite
|
||||
public static var commonFavourite: String { return L10n.tr("Localizable", "common_favourite") }
|
||||
/// Favourited
|
||||
public static var commonFavourited: String { return L10n.tr("Localizable", "common_favourited") }
|
||||
/// File
|
||||
public static var commonFile: String { return L10n.tr("Localizable", "common_file") }
|
||||
/// Forward message
|
||||
@ -448,9 +450,9 @@ public enum L10n {
|
||||
public static var commonWaiting: String { return L10n.tr("Localizable", "common_waiting") }
|
||||
/// Waiting for this message
|
||||
public static var commonWaitingForDecryptionKey: String { return L10n.tr("Localizable", "common_waiting_for_decryption_key") }
|
||||
/// Your chat backup is currently out of sync. You need to confirm your recovery key to maintain access to your chat backup.
|
||||
/// Your chat backup is currently out of sync. You need to enter your recovery key to maintain access to your chat backup.
|
||||
public static var confirmRecoveryKeyBannerMessage: String { return L10n.tr("Localizable", "confirm_recovery_key_banner_message") }
|
||||
/// Confirm your recovery key
|
||||
/// Enter your recovery key
|
||||
public static var confirmRecoveryKeyBannerTitle: String { return L10n.tr("Localizable", "confirm_recovery_key_banner_title") }
|
||||
/// %1$@ crashed the last time it was used. Would you like to share a crash report with us?
|
||||
public static func crashDetectionDialogContent(_ p1: Any) -> String {
|
||||
@ -886,7 +888,7 @@ public enum L10n {
|
||||
public static var screenChatBackupKeyBackupTitle: String { return L10n.tr("Localizable", "screen_chat_backup_key_backup_title") }
|
||||
/// Change recovery key
|
||||
public static var screenChatBackupRecoveryActionChange: String { return L10n.tr("Localizable", "screen_chat_backup_recovery_action_change") }
|
||||
/// Confirm recovery key
|
||||
/// Enter recovery key
|
||||
public static var screenChatBackupRecoveryActionConfirm: String { return L10n.tr("Localizable", "screen_chat_backup_recovery_action_confirm") }
|
||||
/// Your chat backup is currently out of sync.
|
||||
public static var screenChatBackupRecoveryActionConfirmDescription: String { return L10n.tr("Localizable", "screen_chat_backup_recovery_action_confirm_description") }
|
||||
@ -1134,7 +1136,7 @@ public enum L10n {
|
||||
public static var screenRecoveryKeyConfirmKeyPlaceholder: String { return L10n.tr("Localizable", "screen_recovery_key_confirm_key_placeholder") }
|
||||
/// Recovery key confirmed
|
||||
public static var screenRecoveryKeyConfirmSuccess: String { return L10n.tr("Localizable", "screen_recovery_key_confirm_success") }
|
||||
/// Confirm your recovery key
|
||||
/// Enter your recovery key
|
||||
public static var screenRecoveryKeyConfirmTitle: String { return L10n.tr("Localizable", "screen_recovery_key_confirm_title") }
|
||||
/// Copied recovery key
|
||||
public static var screenRecoveryKeyCopiedToClipboard: String { return L10n.tr("Localizable", "screen_recovery_key_copied_to_clipboard") }
|
||||
|
BIN
UnitTests/__Snapshots__/PreviewTests/test_homeScreenRecoveryKeyConfirmationBanner.1.png
(Stored with Git LFS)
BIN
UnitTests/__Snapshots__/PreviewTests/test_homeScreenRecoveryKeyConfirmationBanner.1.png
(Stored with Git LFS)
Binary file not shown.
BIN
UnitTests/__Snapshots__/PreviewTests/test_secureBackupRecoveryKeyScreen.Incomplete.png
(Stored with Git LFS)
BIN
UnitTests/__Snapshots__/PreviewTests/test_secureBackupRecoveryKeyScreen.Incomplete.png
(Stored with Git LFS)
Binary file not shown.
BIN
UnitTests/__Snapshots__/PreviewTests/test_secureBackupScreen.Recovery-incomplete.png
(Stored with Git LFS)
BIN
UnitTests/__Snapshots__/PreviewTests/test_secureBackupScreen.Recovery-incomplete.png
(Stored with Git LFS)
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user