Added placeholders for "Online banking login name" and "Online banking login password"

This commit is contained in:
dankito 2020-08-10 00:12:55 +02:00
parent 3ada76a2a0
commit 10fee47d55
3 changed files with 7 additions and 4 deletions

View File

@ -37,9 +37,10 @@
/* AddAccountDialog */ /* AddAccountDialog */
"Select your bank ..." = "Select your bank ..."; "Select your bank ..." = "Select your bank ...";
"Bank code" = "Bank code";
"Online banking login name" = "Login name"; "Online banking login name" = "Login name";
"Enter Online banking login name" = "Enter login name";
"Online banking login password" = "Password"; "Online banking login password" = "Password";
"Enter Online banking login password" = "Enter password";
"Could not add account" = "Could not add account"; "Could not add account" = "Could not add account";
"Error message from your bank %@" = "Error message from your bank:\n\n%@"; "Error message from your bank %@" = "Error message from your bank:\n\n%@";

View File

@ -37,9 +37,10 @@
/* AddAccountDialog */ /* AddAccountDialog */
"Select your bank ..." = "Bank auswählen ..."; "Select your bank ..." = "Bank auswählen ...";
"Bank code" = "Bankleitzahl";
"Online banking login name" = "Login Name"; "Online banking login name" = "Login Name";
"Enter Online banking login name" = "Login Name eingeben";
"Online banking login password" = "Passwort"; "Online banking login password" = "Passwort";
"Enter Online banking login password" = "Passwort eingeben";
"Could not add account" = "Konto konnte nicht hinzugefügt werden."; "Could not add account" = "Konto konnte nicht hinzugefügt werden.";
"Error message from your bank %@" = "Fehlermeldung Ihrer Bank:\n\n%@"; "Error message from your bank %@" = "Fehlermeldung Ihrer Bank:\n\n%@";

View File

@ -37,9 +37,10 @@ struct AddAccountDialog: View {
} }
Section { 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 { Section {