Added placeholders for "Online banking login name" and "Online banking login password"
This commit is contained in:
parent
3ada76a2a0
commit
10fee47d55
|
@ -37,9 +37,10 @@
|
|||
/* AddAccountDialog */
|
||||
|
||||
"Select your bank ..." = "Select your bank ...";
|
||||
"Bank code" = "Bank code";
|
||||
"Online banking login name" = "Login name";
|
||||
"Enter Online banking login name" = "Enter login name";
|
||||
"Online banking login password" = "Password";
|
||||
"Enter Online banking login password" = "Enter password";
|
||||
|
||||
"Could not add account" = "Could not add account";
|
||||
"Error message from your bank %@" = "Error message from your bank:\n\n%@";
|
||||
|
|
|
@ -37,9 +37,10 @@
|
|||
/* AddAccountDialog */
|
||||
|
||||
"Select your bank ..." = "Bank auswählen ...";
|
||||
"Bank code" = "Bankleitzahl";
|
||||
"Online banking login name" = "Login Name";
|
||||
"Enter Online banking login name" = "Login Name eingeben";
|
||||
"Online banking login password" = "Passwort";
|
||||
"Enter Online banking login password" = "Passwort eingeben";
|
||||
|
||||
"Could not add account" = "Konto konnte nicht hinzugefügt werden.";
|
||||
"Error message from your bank %@" = "Fehlermeldung Ihrer Bank:\n\n%@";
|
||||
|
|
|
@ -37,9 +37,10 @@ struct AddAccountDialog: View {
|
|||
}
|
||||
|
||||
Section {
|
||||
LabelledUIKitTextField(label: "Online banking login name", text: $customerId, focusNextTextFieldOnReturnKeyPress: true, actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
LabelledUIKitTextField(label: "Online banking login name", text: $customerId, placeholder: "Enter Online banking login name", actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
|
||||
LabelledUIKitTextField(label: "Online banking login password", text: $password, isPasswordField: true, actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
LabelledUIKitTextField(label: "Online banking login password", text: $password, placeholder: "Enter Online banking login password",
|
||||
isPasswordField: true, actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
}
|
||||
|
||||
Section {
|
||||
|
|
Loading…
Reference in New Issue