Browse Source

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

lizhe 11 months ago
parent
commit
04710f8955

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