diff --git a/ui/BankingiOSApp/BankingiOSApp/Base.lproj/Localizable.strings b/ui/BankingiOSApp/BankingiOSApp/Base.lproj/Localizable.strings index 6a28f212..f8b5ec0f 100644 --- a/ui/BankingiOSApp/BankingiOSApp/Base.lproj/Localizable.strings +++ b/ui/BankingiOSApp/BankingiOSApp/Base.lproj/Localizable.strings @@ -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"; diff --git a/ui/BankingiOSApp/BankingiOSApp/de.lproj/Localizable.strings b/ui/BankingiOSApp/BankingiOSApp/de.lproj/Localizable.strings index 76a243a9..daab7920 100644 --- a/ui/BankingiOSApp/BankingiOSApp/de.lproj/Localizable.strings +++ b/ui/BankingiOSApp/BankingiOSApp/de.lproj/Localizable.strings @@ -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"; diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/TransferMoneyDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/TransferMoneyDialog.swift index 600b6c01..0338e763 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/TransferMoneyDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/TransferMoneyDialog.swift @@ -152,8 +152,15 @@ struct TransferMoneyDialog: View { amountValidationResult.map { validationError in ValidationLabel(validationError) } + } + + Section { + VStack { + Text("Usage") + .alignHorizontally(.leading) - LabelledUIKitTextField(label: "Usage", text: $usage, actionOnReturnKeyPress: handleReturnKeyPress, textChanged: validateUsage) + UIKitTextField("Enter usage", text: $usage, actionOnReturnKeyPress: handleReturnKeyPress, textChanged: validateUsage) + } usageValidationResult.map { validationError in ValidationLabel(validationError)