Gave usage a whole line as it often contains long texts (TODO: make it multiline, e.g. with UITextView)
This commit is contained in:
parent
a7d56603e5
commit
0baa74484b
|
@ -99,6 +99,7 @@
|
|||
"No BIC found for bank code %@" = "No BIC found for bank code %@";
|
||||
"Amount" = "Amount";
|
||||
"Usage" = "Usage";
|
||||
"Enter usage" = "Optionally enter usage";
|
||||
|
||||
"Instant Payment" = "Instant Payment";
|
||||
"may with costs" = "may with costs";
|
||||
|
|
|
@ -99,6 +99,7 @@
|
|||
"No BIC found for bank code %@" = "Keine BIC gefunden für BLZ %@";
|
||||
"Amount" = "Betrag";
|
||||
"Usage" = "Verwendungszweck";
|
||||
"Enter usage" = "Optional einen Verwendungszweck eingeben";
|
||||
|
||||
"Instant Payment" = "Echtzeitüberweisung";
|
||||
"may with costs" = "evtl. kostenpflichtig";
|
||||
|
@ -129,7 +130,7 @@ Ob eine Bank Gebühren für Echtzeitüberweisungen erhebt, kann Bankmeister leid
|
|||
"Could not change TAN medium to %@. Error: %@." = "TAN medium konnte nicht zu '%@' geändert werden.\n\nFehlermeldung Ihrer Bank:\n\n%@.";
|
||||
|
||||
|
||||
/* SettingsDialog */
|
||||
/* SettingsTab */
|
||||
|
||||
"Secure app data" = "Appdaten schützen";
|
||||
|
||||
|
|
|
@ -152,8 +152,15 @@ struct TransferMoneyDialog: View {
|
|||
amountValidationResult.map { validationError in
|
||||
ValidationLabel(validationError)
|
||||
}
|
||||
}
|
||||
|
||||
LabelledUIKitTextField(label: "Usage", text: $usage, actionOnReturnKeyPress: handleReturnKeyPress, textChanged: validateUsage)
|
||||
Section {
|
||||
VStack {
|
||||
Text("Usage")
|
||||
.alignHorizontally(.leading)
|
||||
|
||||
UIKitTextField("Enter usage", text: $usage, actionOnReturnKeyPress: handleReturnKeyPress, textChanged: validateUsage)
|
||||
}
|
||||
|
||||
usageValidationResult.map { validationError in
|
||||
ValidationLabel(validationError)
|
||||
|
|
Loading…
Reference in New Issue