Переглянути джерело

【fix】【未勾选同意隐私协议提示弹窗】文案调整

tangchao 1 тиждень тому
батько
коміт
17b9e54aec

+ 1 - 1
PDF Office/PDF Master/MemberCenter/Assets/en.lproj/MemberCenterLocalizable.strings

@@ -21,7 +21,7 @@
 "I have read and agreed to the %@ and %@. An account will be automatically created after signing in with an unregistered email address." = "I have read and agreed to the %@ and %@. An account will be automatically created after signing in with an unregistered email address.";
 "Terms of Service" = "Terms of Service";
 "Privacy Policy" = "Privacy Policy";
-"Please agree and check the above agreement first." = "Please agree and check the above agreement first.";
+"Please agree and check the agreement first." = "Please agree and check the agreement first.";
 "Forgot password?" = "Forgot password?";
 "Please enter password" = "Please enter password";
 "Email format error. Please enter the correct email." = "Email format error. Please enter the correct email.";

+ 1 - 1
PDF Office/PDF Master/MemberCenter/Assets/zh-Hans.lproj/MemberCenterLocalizable.strings

@@ -19,7 +19,7 @@
 "I have read and agreed to the %@ and %@. An account will be automatically created after signing in with an unregistered email address." = "我已阅读并同意%@和%@,未注册的邮箱登录后将自动创建账号。";
 "Terms of Service" = "用户协议";
 "Privacy Policy" = "隐私政策";
-"Please agree and check the above agreement first." = "请先同意并勾选上述协议。";
+"Please agree and check the agreement first." = "请先同意并勾选以下协议。";
 "Forgot password?" = "忘记密码?";
 "Please enter password" = "请输入密码";
 "Email format error. Please enter the correct email." = "邮箱格式错误,请输入正确邮箱。";

+ 1 - 1
PDF Office/PDF Master/MemberCenter/Assets/zh-Hant.lproj/MemberCenterLocalizable.strings

@@ -19,7 +19,7 @@
 "I have read and agreed to the %@ and %@. An account will be automatically created after signing in with an unregistered email address." = "我已閱讀並同意%@和%@,未註冊的電子郵件登入後將自動建立帳戶。";
 "Terms of Service" = "用戶協議";
 "Privacy Policy" = "隱私權政策";
-"Please agree and check the above agreement first." = "請先同意並勾選上述協議。";
+"Please agree and check the agreement first." = "請先同意並勾選以下協議。";
 "Forgot password?" = "忘記密碼?";
 "Please enter password" = "請輸入密碼";
 "Email format error. Please enter the correct email." = "郵箱格式錯誤,請輸入正確信箱。";

+ 1 - 1
PDF Office/PDF Master/MemberCenter/View/KMSignUpView.swift

@@ -105,7 +105,7 @@ class KMSignUpView: KMBaseXibView {
         verifficationTextField.placeholderString = NSLocalizedString("Please enter code", tableName: "MemberCenterLocalizable", comment: "")
         passwordTextField.placeholderString = NSLocalizedString("Please enter password", tableName: "MemberCenterLocalizable", comment: "")
         passwordTextField1.placeholderString = NSLocalizedString("Please enter password", tableName: "MemberCenterLocalizable", comment: "")
-        privacyCheckButton.toolTip = NSLocalizedString("Please agree and check the above agreement first.", tableName: "MemberCenterLocalizable", comment: "")
+        privacyCheckButton.toolTip = NSLocalizedString("Please agree and check the agreement first.", tableName: "MemberCenterLocalizable", comment: "")
         emailTextField.stringValue = viewModel.email
         verifficationTextField.stringValue = viewModel.verificationCode
         passwordTextField.stringValue = viewModel.password

+ 1 - 1
PDF Office/PDF Master/MemberCenter/ViewModel/KMSignUpViewModel.swift

@@ -256,7 +256,7 @@ class KMSignUpViewModel: ObservableObject {
             DispatchQueue.main.async {
                 
                 let alert = NSAlert()
-                alert.messageText = NSLocalizedString("Please agree and check the above agreement first.", tableName: "MemberCenterLocalizable", comment: "")
+                alert.messageText = NSLocalizedString("Please agree and check the agreement first.", tableName: "MemberCenterLocalizable", comment: "")
                 alert.addButton(withTitle: NSLocalizedString("OK", comment: ""))
                 //            alert.beginSheetModal(for: NSApp.mainWindow!)
                 let result = alert.runModal()