소스 검색

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

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