浏览代码

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

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")
             }
         }