diff --git a/Riot/Assets/de.lproj/Bwi.strings b/Riot/Assets/de.lproj/Bwi.strings index f5c698823..47c071e4b 100644 --- a/Riot/Assets/de.lproj/Bwi.strings +++ b/Riot/Assets/de.lproj/Bwi.strings @@ -563,6 +563,11 @@ "authentication_server_selection_qr_missing_authorization_title" = "Scannen nicht möglich"; "authentication_server_selection_qr_missing_authorization_message" = "Gehe in die Einstellungen deines iPhones, um der App den Zugriff auf die Kamera zu erlauben."; +// MARK: - Simplified Login +"authentication_qr_login_scan_title" = "Anmelden mit QR-Code"; +"authentication_qr_login_start_title" = "Anmelden mit QR-Code"; +"authentication_qr_login_start_button_title" = "QR-Code scannen"; + // MARK: - Login Protection "bwi_login_protection_error_message" = "Der angegebene Server ist nicht für die Nutzung mit dem %@ vorgesehen"; "bwi_login_protection_info_message" = "Dein Server ist leider noch nicht für den %@ eingerichtet. Wenn du aus der Öffentlichen Verwaltung bist und Fragen hast, wie Du den %@ nutzen kannst, besuche unsere Website."; diff --git a/Riot/Assets/de.lproj/Vector.strings b/Riot/Assets/de.lproj/Vector.strings index 61404ac65..849fe34d4 100644 --- a/Riot/Assets/de.lproj/Vector.strings +++ b/Riot/Assets/de.lproj/Vector.strings @@ -2547,15 +2547,14 @@ "authentication_qr_login_start_step2" = "Gehe zu Alle Einstellungen > Sitzungen"; "authentication_qr_login_scan_subtitle" = "Positioniere den QR-Code innerhalb des Quadrats"; "authentication_qr_login_display_step2" = "Wähle „Anmelden mit QR-Code“"; -"authentication_qr_login_scan_title" = "Anmelden mit QR-Code"; +"authentication_qr_login_scan_title" = "QR-Code einlesen"; "authentication_qr_login_display_subtitle" = "Lese den folgenden QR-Code mit deinem abgemeldeten Gerät ein."; "authentication_qr_login_start_need_alternative" = "Benötigst du eine andere Methode?"; "authentication_qr_login_start_display_qr" = "QR-Code auf diesem Gerät anzeigen"; "authentication_qr_login_start_step4" = "Wähle „Zeige QR-Code auf diesem Gerät“"; "authentication_qr_login_display_title" = "Verbinde ein Gerät"; "authentication_qr_login_start_step3" = "Wähle \"Mit QR-Code anmelden\""; -"authentication_qr_login_start_title" = "Anmelden mit QR-Code"; -"authentication_qr_login_start_button_title" = "QR-Code scannen"; +"authentication_qr_login_start_title" = "QR-Code scannen"; "authentication_login_with_qr" = "Anmelden mit QR-Code"; "device_type_name_unknown" = "Unbekannt"; "device_type_name_mobile" = "Mobil"; diff --git a/Riot/Assets/en.lproj/Bwi.strings b/Riot/Assets/en.lproj/Bwi.strings index 5ed55e61c..17296c827 100644 --- a/Riot/Assets/en.lproj/Bwi.strings +++ b/Riot/Assets/en.lproj/Bwi.strings @@ -473,6 +473,11 @@ // MARK: - Onboarding "onboarding_splash_login_button_title" = "Let's go"; +// MARK: - Simplified Login +"authentication_qr_login_scan_title" = "Log in via QR code"; +"authentication_qr_login_start_title" = "Log in via QR code"; +"authentication_qr_login_start_button_title" = "Scan QR code"; + // MARK: - Login Protection "bwi_login_protection_error_message" = "The selected server is not allowed for using with %@"; "bwi_login_protection_info_message" = "Your server is not yet set up for the %@. If you are from the public sector and have questions about how to use the %@, please visit our website."; diff --git a/Riot/Assets/en.lproj/Vector.strings b/Riot/Assets/en.lproj/Vector.strings index 6c7b46854..6e151de93 100644 --- a/Riot/Assets/en.lproj/Vector.strings +++ b/Riot/Assets/en.lproj/Vector.strings @@ -213,8 +213,7 @@ "authentication_recaptcha_title" = "Are you a human?"; -"authentication_qr_login_start_title" = "Log in via QR code"; -"authentication_qr_login_start_button_title" = "Scan QR code"; +"authentication_qr_login_start_title" = "Scan QR code"; "authentication_qr_login_start_subtitle" = "Use the camera on this device to scan the QR code shown on your other device:"; "authentication_qr_login_start_step1" = "Open the Webapp on your business computer"; "authentication_qr_login_start_step2" = "Go to Settings > Sessions"; @@ -228,7 +227,7 @@ "authentication_qr_login_display_step1" = "Open Element on your other device"; "authentication_qr_login_display_step2" = "Select ‘Sign in with QR code’"; -"authentication_qr_login_scan_title" = "Log in via QR code"; +"authentication_qr_login_scan_title" = "Scan QR code"; "authentication_qr_login_scan_subtitle" = "Position the QR code in the square below"; "authentication_qr_login_confirm_title" = "Secure connection established"; diff --git a/RiotSwiftUI/Modules/Authentication/QRLogin/Scan/View/AuthenticationQRLoginScanScreen.swift b/RiotSwiftUI/Modules/Authentication/QRLogin/Scan/View/AuthenticationQRLoginScanScreen.swift index 03bc70c0f..45fcb2bd3 100644 --- a/RiotSwiftUI/Modules/Authentication/QRLogin/Scan/View/AuthenticationQRLoginScanScreen.swift +++ b/RiotSwiftUI/Modules/Authentication/QRLogin/Scan/View/AuthenticationQRLoginScanScreen.swift @@ -92,7 +92,7 @@ struct AuthenticationQRLoginScanScreen: View { /// The screen's title and instructions. var scanningTitleContent: some View { VStack(spacing: 24) { - Text(VectorL10n.authenticationQrLoginScanTitle) + Text(BWIL10n.authenticationQrLoginScanTitle) .font(theme.fonts.title1B) .multilineTextAlignment(.center) .foregroundColor(.white) @@ -140,7 +140,7 @@ struct AuthenticationQRLoginScanScreen: View { .frame(width: iconSize, height: iconSize) .padding(.bottom, 16) - Text(VectorL10n.authenticationQrLoginStartTitle) + Text(BWIL10n.authenticationQrLoginStartTitle) .font(theme.fonts.title2B) .multilineTextAlignment(.center) .foregroundColor(theme.colors.primaryContent) diff --git a/RiotSwiftUI/Modules/Authentication/QRLogin/Start/View/AuthenticationQRLoginStartScreen.swift b/RiotSwiftUI/Modules/Authentication/QRLogin/Start/View/AuthenticationQRLoginStartScreen.swift index 6511d156d..0b29cb86b 100644 --- a/RiotSwiftUI/Modules/Authentication/QRLogin/Start/View/AuthenticationQRLoginStartScreen.swift +++ b/RiotSwiftUI/Modules/Authentication/QRLogin/Start/View/AuthenticationQRLoginStartScreen.swift @@ -63,7 +63,7 @@ struct AuthenticationQRLoginStartScreen: View { .frame(width: iconSize, height: iconSize) .padding(.bottom, 16) - Text(VectorL10n.authenticationQrLoginStartTitle) + Text(BWIL10n.authenticationQrLoginStartTitle) .font(theme.fonts.title2B) .multilineTextAlignment(.center) .foregroundColor(theme.colors.primaryContent) @@ -82,7 +82,7 @@ struct AuthenticationQRLoginStartScreen: View { var footerContent: some View { VStack(spacing: 12) { Button(action: scanQR) { - Text(VectorL10n.authenticationQrLoginStartButtonTitle) + Text(BWIL10n.authenticationQrLoginStartButtonTitle) } .buttonStyle(PrimaryActionButtonStyle(font: theme.fonts.bodySB)) .padding(.bottom, 8)