mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 09:02:44 +02:00
MESSENGER-3304 string in separate files
This commit is contained in:
@@ -66,7 +66,7 @@ struct ChangePasswordScreen: View {
|
||||
/// The text fields and submit button.
|
||||
var form: some View {
|
||||
VStack(alignment: .leading, spacing: 12) {
|
||||
RoundedBorderTextField(placeHolder: VectorL10n.settingsOldPassword,
|
||||
RoundedBorderTextField(placeHolder: BWIL10n.settingsOldPassword,
|
||||
text: $viewModel.oldPassword,
|
||||
isFirstResponder: focusedField == .oldPassword,
|
||||
configuration: UIKitTextInputConfiguration(returnKeyType: .next,
|
||||
@@ -74,7 +74,7 @@ struct ChangePasswordScreen: View {
|
||||
onCommit: { focusedField = .newPassword1 })
|
||||
.accessibilityIdentifier("oldPasswordTextField")
|
||||
|
||||
RoundedBorderTextField(placeHolder: VectorL10n.settingsNewPassword,
|
||||
RoundedBorderTextField(placeHolder: BWIL10n.settingsNewPassword,
|
||||
text: $viewModel.newPassword1,
|
||||
isFirstResponder: focusedField == .newPassword1,
|
||||
configuration: UIKitTextInputConfiguration(returnKeyType: .next,
|
||||
@@ -82,7 +82,7 @@ struct ChangePasswordScreen: View {
|
||||
onCommit: { focusedField = .newPassword2 })
|
||||
.accessibilityIdentifier("newPasswordTextField1")
|
||||
|
||||
RoundedBorderTextField(placeHolder: VectorL10n.settingsConfirmPassword,
|
||||
RoundedBorderTextField(placeHolder: BWIL10n.settingsConfirmPassword,
|
||||
text: $viewModel.newPassword2,
|
||||
isFirstResponder: focusedField == .newPassword2,
|
||||
configuration: UIKitTextInputConfiguration(returnKeyType: .done,
|
||||
|
||||
Reference in New Issue
Block a user