From 195486b1491d5a7abd2f520041bf619cb0cc9b70 Mon Sep 17 00:00:00 2001 From: Artur Savitskiy Date: Fri, 14 Jun 2024 12:58:21 +0200 Subject: [PATCH] english language changes --- Befund.xcodeproj/project.pbxproj | 4 ++-- Befund/Controllers/LoginController.swift | 4 ++-- Befund/Core/Lang/EN.swift | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Befund.xcodeproj/project.pbxproj b/Befund.xcodeproj/project.pbxproj index 64b5f72..ddc7a10 100644 --- a/Befund.xcodeproj/project.pbxproj +++ b/Befund.xcodeproj/project.pbxproj @@ -929,7 +929,7 @@ CODE_SIGN_IDENTITY = "Apple Development: Artur Savitskiy (J576JNSQ97)"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Distribution: Limetec Biotechnologies GmbH (W86CN3N7WD)"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 4; + CURRENT_PROJECT_VERSION = 5; DEVELOPMENT_TEAM = W86CN3N7WD; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = W86CN3N7WD; GENERATE_INFOPLIST_FILE = YES; @@ -971,7 +971,7 @@ CODE_SIGN_IDENTITY = "Apple Development: Artur Savitskiy (J576JNSQ97)"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Distribution: Limetec Biotechnologies GmbH (W86CN3N7WD)"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 4; + CURRENT_PROJECT_VERSION = 5; DEVELOPMENT_TEAM = W86CN3N7WD; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = W86CN3N7WD; GENERATE_INFOPLIST_FILE = YES; diff --git a/Befund/Controllers/LoginController.swift b/Befund/Controllers/LoginController.swift index 9d01147..95fea6c 100644 --- a/Befund/Controllers/LoginController.swift +++ b/Befund/Controllers/LoginController.swift @@ -153,8 +153,8 @@ class LoginController: UIViewController, UITextFieldDelegate, UIAlertViewDelegat self.passwordReset_BtnPinRequest.setTitle(Core.Lang.Get(key: "BTN_PIN_REQUEST"), for: .normal) self.passwordReset_txtPin.placeholder = Core.Lang.Get(key: "LBL_PIN") self.passwordReset_txtPinNew.placeholder = Core.Lang.Get(key: "LBL_NEW_PIN") - self.passwordReset_txtPassword.text = Core.Lang.Get(key: "LBL_NEW_PASSWORD") - self.passwordReset_txtPasswordConfirm.text = Core.Lang.Get(key: "LBL_PASSWORD_CONFIRM") + self.passwordReset_txtPassword.placeholder = Core.Lang.Get(key: "LBL_NEW_PASSWORD") + self.passwordReset_txtPasswordConfirm.placeholder = Core.Lang.Get(key: "LBL_PASSWORD_CONFIRM") self.loginPasswordView_LaborLogo.image = Settings?.labor?.logo } diff --git a/Befund/Core/Lang/EN.swift b/Befund/Core/Lang/EN.swift index 45c1827..a0d93e3 100644 --- a/Befund/Core/Lang/EN.swift +++ b/Befund/Core/Lang/EN.swift @@ -31,7 +31,7 @@ extension Core.Lang result.setValue("Confirm Password", forKey: "LBL_PASSWORD_CONFIRM") result.setValue("Pending", forKey: "LBL_PENDING") result.setValue("Ready to download", forKey: "LBL_READY_TO_DOWNLOAD") - result.setValue("Wird heruntergeladen", forKey: "LBL_DOWNLOADING") + result.setValue("Will download", forKey: "LBL_DOWNLOADING") result.setValue("Downloaded", forKey: "LBL_ALREADY_DOWNLOAD") result.setValue("Rejected", forKey: "LBL_REJECTED") result.setValue("Expired", forKey: "LBL_EXPIRED")