Ui changes

This commit is contained in:
Arnfried Griesert
2024-03-22 06:37:42 +01:00
parent 8eb38befdf
commit 4f2835c903
3 changed files with 4 additions and 4 deletions

View File

@@ -2544,7 +2544,7 @@
"all_chats_user_menu_accessibility_label" = "Benutzermenü";
"settings_labs_enable_new_client_info_feature" = "Bezeichnung, Version und URL der Anwendung registrieren, damit diese Sitzung in der Sitzungsverwaltung besser erkennbar ist";
"settings_labs_enable_new_session_manager" = "Neue Sitzungsverwaltung";
"authentication_qr_login_start_step2" = "Gehe zu Alle Einstellungen -> Sitzungen";
"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" = "QR-Code einlesen";

View File

@@ -216,7 +216,7 @@
"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";
"authentication_qr_login_start_step2" = "Go to Settings > Sessions";
"authentication_qr_login_start_step3" = "Select Login with QR code";
"authentication_qr_login_start_step4" = "Select Show QR code on this device";
"authentication_qr_login_start_need_alternative" = "Need an alternative method?";

View File

@@ -104,13 +104,13 @@ struct AuthenticationQRLoginStartScreen: View {
var stepsView: some View {
VStack(alignment: .leading, spacing: 12) {
ForEach(steps) { step in
HStack(spacing: 15) {
HStack(alignment: .firstTextBaseline, spacing: 16) {
Text(String(step.id))
.font(theme.fonts.caption2SB)
.foregroundColor(theme.colors.accent)
.padding(6)
.shapedBorder(color: theme.colors.accent, borderWidth: 1, shape: Circle())
.offset(x: 1, y: 0)
.offset(x: 1, y: -2)
Text(step.description)
.foregroundColor(theme.colors.primaryContent)
.font(theme.fonts.subheadline)