فهرست منبع

【编辑工具-安全】: 解密操作,解密成功的提示语缺多语 -- 修复

lizhe 11 ماه پیش
والد
کامیت
04710f8955
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      PDF Office/PDF Master/Class/PDFTools/Secure/View/KMRemovePasswordResultTipView.swift

+ 2 - 2
PDF Office/PDF Master/Class/PDFTools/Secure/View/KMRemovePasswordResultTipView.swift

@@ -27,10 +27,10 @@ class KMRemovePasswordResultTipView: NSView {
             myResult = newValue
             
             if myResult == .success {
-                label.stringValue = NSLocalizedString("Successfully delete security settings.", comment: "")
+                label.stringValue = NSLocalizedString("The file has been successfully decrypted.", comment: "")
                 iconImageView.image = NSImage(named: "KMImageNameNewTipSelected")
             } else {
-                label.stringValue = NSLocalizedString("Failed to delete security settings.", comment: "")
+                label.stringValue = NSLocalizedString("Decryption failed with unknown error.", comment: "")
                 iconImageView.image = NSImage(named: "KMImageNameSecureTipFailure")
             }
         }