Compare commits

..

No commits in common. "372dc92c8de51916b8384ac98d632663297d2c2f" and "cd67c350b4da377e39b3c634d8cf35b588d47277" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -781,9 +781,6 @@
},
"Код может прийти по почте, push или в другое подключенное приложение." : {
},
"Код отправлен. Аккаунт: @%@" : {
},
"Код принят" : {
"comment" : "Заголовок успешного подтверждения кода 2FA"
@ -1000,6 +997,9 @@
}
}
}
},
"Мы отправили код на %@" : {
},
"Мы отправим код подтверждения на привязанный email каждый раз при входе." : {
"comment" : "Описание работы кодов при входе"

View File

@ -557,7 +557,7 @@ private struct PasswordlessVerifyView: View {
VStack(alignment: .leading, spacing: 8) {
Text(NSLocalizedString("Введите код", comment: ""))
.font(.largeTitle).bold()
Text(String(format: NSLocalizedString("Код отправлен. Аккаунт: @%@", comment: ""), viewModel.passwordlessLogin))
Text(String(format: NSLocalizedString("Мы отправили код на %@", comment: ""), viewModel.passwordlessLogin))
.foregroundColor(.secondary)
}