Parcourir la source

【2025】【综合】文案修改

niehaoyu il y a 5 jours
Parent
commit
3a12e84574

+ 28 - 29
PDF Office/PDF Master/KMClass/KMPDFViewController/RightSideController/Views/Measure/Window/CDistanceSettingWindowController.swift

@@ -18,7 +18,7 @@ import KMComponentLibrary
 }
 
 @objc class CDistanceSettingWindowController: KMNBaseWindowController {
-
+    
     @IBOutlet var titleLabel: NSTextField!
     
     @IBOutlet weak var customLabel: NSTextField!
@@ -28,7 +28,7 @@ import KMComponentLibrary
     
     @IBOutlet var rulerTranslateInput: ComponentInput!
     @IBOutlet var rulerTranslateSelect: ComponentSelect!
-     
+    
     @IBOutlet weak var precisionLabel: NSTextField!
     @IBOutlet var precisionSelect: ComponentSelect!
     
@@ -46,7 +46,7 @@ import KMComponentLibrary
         setupProperty()
         
         configurationLanguage()
-         
+        
         reloadData()
     }
     
@@ -72,7 +72,7 @@ import KMComponentLibrary
         customLabel.stringValue = KMLocalizedString("Scale")
         precisionLabel.stringValue = KMLocalizedString("Precision Setting")
         titleLabel.stringValue = KMLocalizedString("Measure Settings")
- 
+        
     }
     
     func setupProperty() {
@@ -80,9 +80,9 @@ import KMComponentLibrary
         rulerBaseInput.delegate = self
         
         rulerBaseSelect.properties = ComponentSelectProperties(size: .s,
-                                                              state: .normal,
-                                                              creatable: false,
-                                                              text: "cm")
+                                                               state: .normal,
+                                                               creatable: false,
+                                                               text: "cm")
         if true {
             var sizeItemArr: [ComponentMenuitemProperty] = []
             for string in ["in", "cm", "mm"] {
@@ -93,13 +93,13 @@ import KMComponentLibrary
         }
         rulerBaseSelect.delegate = self
         
-      rulerTranslateInput.properties = ComponentInputProperty(size: .s, text: "", regexString: "0123456789")
+        rulerTranslateInput.properties = ComponentInputProperty(size: .s, text: "", regexString: "0123456789")
         rulerTranslateInput.delegate = self
         
         rulerTranslateSelect.properties = ComponentSelectProperties(size: .s,
-                                                              state: .normal,
-                                                              creatable: false,
-                                                              text: "cm")
+                                                                    state: .normal,
+                                                                    creatable: false,
+                                                                    text: "cm")
         if true {
             var sizeItemArr: [ComponentMenuitemProperty] = []
             for string in ["pt", "in", "mm", "cm", "m", "km", "ft", "yd", "mi"] {
@@ -109,12 +109,12 @@ import KMComponentLibrary
             rulerTranslateSelect.updateMenuItemsArr(sizeItemArr)
         }
         rulerTranslateSelect.delegate = self
-         
+        
         
         precisionSelect.properties = ComponentSelectProperties(size: .s,
-                                                              state: .normal,
-                                                              creatable: false,
-                                                              text: "0.01")
+                                                               state: .normal,
+                                                               creatable: false,
+                                                               text: "0.01")
         if true {
             var sizeItemArr: [ComponentMenuitemProperty] = []
             for string in ["1", "0.1", "0.01", "0.001", "0.0001"] {
@@ -139,12 +139,12 @@ import KMComponentLibrary
                                                         keepPressState: false)
         doneButton.setTarget(self, action: #selector(buttonItemClick_Done(_:)))
         doneButton.keyEquivalent = KMKeyEquivalent.enter
-         
+        
     }
     
     private func reloadData() {
         guard let pdfView = self.pdfView else { return }
-         
+        
         var rulerBase: CGFloat?
         var rulerBaseUnit: String?
         var rulerTranslate: CGFloat?
@@ -197,7 +197,7 @@ import KMComponentLibrary
             rulerBaseInput.properties.text = String(format: "%0.0f", value)
             rulerBaseInput.reloadData()
         }
-         
+        
         if let value = rulerBaseUnit {
             if value == CPDFMeasureConstants.sharedInstance().cpdfIn {
                 rulerBaseSelect.selectItemAtIndex(0)
@@ -254,7 +254,7 @@ import KMComponentLibrary
             }
             precisionSelect.reloadData()
         }
-         
+        
     }
     
     @objc func buttonItemClick_Cancel(_ sender: Any) {
@@ -274,10 +274,10 @@ import KMComponentLibrary
     
     func saveData() {
         guard let pdfView = self.pdfView else { return }
-
+        
         if true {
             let rulerBase = CGFloat(Float(rulerBaseInput.properties.text) ?? 0)
- 
+            
             let selectIndex = rulerBaseSelect.indexOfSelect()
             var rulerBaseUnit = ""
             switch selectIndex {
@@ -310,7 +310,7 @@ import KMComponentLibrary
         
         if true {
             let rulerTranslate = CGFloat(Float(rulerTranslateInput.properties.text) ?? 0)
-  
+            
             let selectIndex = rulerTranslateSelect.indexOfSelect()
             var rulerTranslateUnit = ""
             var factor: CGFloat = 0
@@ -368,7 +368,7 @@ import KMComponentLibrary
         
         if true {
             let selectIndex = precisionSelect.indexOfSelect()
-             
+            
             var precision: Int = 0
             switch selectIndex {
             case 0:
@@ -397,7 +397,6 @@ import KMComponentLibrary
                 CPDFMeasureDefaultInfo.update_default_measure_Percision(annotationType, precision)
             }
         }
-         
     }
     
 }
@@ -408,15 +407,15 @@ extension CDistanceSettingWindowController: ComponentSelectDelegate {
         guard let pdfView = self.pdfView else { return }
         
         if view == rulerBaseSelect {
-             
+            
         } else if view == rulerTranslateSelect {
-             
+            
         } else if view == precisionSelect {
-           
-         }
+            
+        }
     }
 }
- 
+
 //MARK: - ComponentInputDelegate
 extension CDistanceSettingWindowController: ComponentInputDelegate {
     func componentSelectTextDidChange(_ view: ComponentSelect) {

+ 2 - 2
PDF Office/PDF Master/KMClass/PDFListView/ViewController/KMNAlertTipViewController.swift

@@ -92,10 +92,10 @@ class KMNAlertTipViewController: KMNBaseViewController {
         digitalComponentAlert.properties = ComponentAlertProperty(subTitle: KMLocalizedString("Signature is valid."),detailButtonString:nil)
         digitalComponentAlert.delegate = self
         
-        redactComponentAlert.properties = ComponentAlertProperty(subTitle: KMLocalizedString("There are unapplied redactions in this file"),detailButtonString:KMLocalizedString("Apply"))
+        redactComponentAlert.properties = ComponentAlertProperty(subTitle: KMLocalizedString("There are unapplied redactions in this file."),detailButtonString:KMLocalizedString("Apply"))
         redactComponentAlert.delegate = self
         
-        OCRComponentAlert.properties = ComponentAlertProperty(subTitle: KMLocalizedString("This document contains scanned pages and requires OCR recognition for editing"),detailButtonString:KMLocalizedString("OCR"))
+        OCRComponentAlert.properties = ComponentAlertProperty(subTitle: KMLocalizedString("This document contains scanned pages and requires OCR recognition for editing."),detailButtonString:KMLocalizedString("OCR"))
         OCRComponentAlert.delegate = self
     }
     

+ 2 - 2
PDF Office/PDF Master/Strings/de.lproj/Localizable.strings

@@ -3146,8 +3146,8 @@
 "By Time - Descending"="Nach Zeit – Absteigend";
 "First Page"="Erste Seite";
 "Last Page"="Letzte Seite";
-"There are unapplied redactions in this file"="Diese Datei enthält nicht angewendete Schwärzungen";
-"This document contains scanned pages and requires OCR recognition for editing"="Dieses Dokument enthält gescannte Seiten und erfordert zur Bearbeitung eine OCR-Erkennung";
+"There are unapplied redactions in this file."="Diese Datei enthält nicht angewendete Schwärzungen.";
+"This document contains scanned pages and requires OCR recognition for editing."="Dieses Dokument enthält gescannte Seiten und erfordert zur Bearbeitung eine OCR-Erkennung.";
 "Insert From File"="Aus Datei einfügen";
 "Insert Blank Page"="Leere Seite einfügen";
 "Insert From Scanner"="Vom Scanner einfügen";

+ 2 - 2
PDF Office/PDF Master/Strings/es.lproj/Localizable.strings

@@ -3067,8 +3067,8 @@
 "By Time - Descending"="Por tiempo - Descendente";
 "First Page"="Primera página";
 "Last Page"="Última página";
-"There are unapplied redactions in this file"="Hay redacciones no aplicadas en este archivo.";
-"This document contains scanned pages and requires OCR recognition for editing"="Este documento contiene páginas escaneadas y requiere reconocimiento OCR para editarlo.";
+"There are unapplied redactions in this file."="Hay redacciones no aplicadas en este archivo.";
+"This document contains scanned pages and requires OCR recognition for editing."="Este documento contiene páginas escaneadas y requiere reconocimiento OCR para editarlo.";
 "Insert From File"="Insertar desde archivo";
 "Insert Blank Page"="Insertar página en blanco";
 "Insert From Scanner"="Insertar desde el escáner";

+ 2 - 2
PDF Office/PDF Master/Strings/fr.lproj/Localizable.strings

@@ -3098,8 +3098,8 @@
 "By Time - Descending"="Par Temps - Décroissant";
 "First Page"="Première page";
 "Last Page"="Dernière page";
-"There are unapplied redactions in this file"="Il y a des suppressions non appliquées dans ce fichier";
-"This document contains scanned pages and requires OCR recognition for editing"="Ce document contient des pages numérisées et nécessite une reconnaissance OCR pour l'édition";
+"There are unapplied redactions in this file."="Il y a des suppressions non appliquées dans ce fichier.";
+"This document contains scanned pages and requires OCR recognition for editing."="Ce document contient des pages numérisées et nécessite une reconnaissance OCR pour l'édition.";
 "Insert From File"="Insérer à partir d'un fichier";
 "Insert Blank Page"="Insérer une page vierge";
 "Insert From Scanner"="Insérer à partir du scanner";

+ 2 - 2
PDF Office/PDF Master/Strings/it.lproj/Localizable.strings

@@ -3024,8 +3024,8 @@
 "By Time - Descending"="Per tempo - Discendente";
 "First Page"="Prima pagina";
 "Last Page"="Ultima pagina";
-"There are unapplied redactions in this file"="In questo file sono presenti oscurazioni non applicate";
-"This document contains scanned pages and requires OCR recognition for editing"="Questo documento contiene pagine scansionate e richiede il riconoscimento OCR per la modifica";
+"There are unapplied redactions in this file."="In questo file sono presenti oscurazioni non applicate.";
+"This document contains scanned pages and requires OCR recognition for editing."="Questo documento contiene pagine scansionate e richiede il riconoscimento OCR per la modifica.";
 "Insert From File"="Inserisci da file";
 "Insert Blank Page"="Inserisci pagina vuota";
 "Insert From Scanner"="Inserisci da scanner";

+ 2 - 2
PDF Office/PDF Master/Strings/ja.lproj/Localizable.strings

@@ -3301,8 +3301,8 @@
 "By Time - Descending"="時間別 - 降順";
 "First Page"="最初のページ";
 "Last Page"="最後のページ";
-"There are unapplied redactions in this file"="このファイルには適用されていないリダクションがあります";
-"This document contains scanned pages and requires OCR recognition for editing"="このドキュメントにはスキャンされたページが含まれており、編集するには OCR 認識が必要です";
+"There are unapplied redactions in this file."="このファイルには適用されていないリダクションがあります.";
+"This document contains scanned pages and requires OCR recognition for editing."="このドキュメントにはスキャンされたページが含まれており、編集するには OCR 認識が必要です.";
 "Insert From File"="ファイルから挿入";
 "Insert Blank Page"="空白ページの挿入";
 "Insert From Scanner"="スキャナーから挿入";

+ 2 - 2
PDF Office/PDF Master/Strings/nl.lproj/Localizable.strings

@@ -2788,8 +2788,8 @@
 "By Time - Descending"="Op tijd - Aflopend";
 "First Page"="Eerste pagina";
 "Last Page"="Laatste pagina";
-"There are unapplied redactions in this file"="Er zijn niet-toegepaste redacties in dit bestand";
-"This document contains scanned pages and requires OCR recognition for editing"="Dit document bevat gescande pagina's en vereist OCR-herkenning voor bewerking";
+"There are unapplied redactions in this file."="Er zijn niet-toegepaste redacties in dit bestand.";
+"This document contains scanned pages and requires OCR recognition for editing."="Dit document bevat gescande pagina's en vereist OCR-herkenning voor bewerking";
 "Insert From File"="Invoegen uit bestand";
 "Insert Blank Page"="Lege pagina invoegen";
 "Insert From Scanner"="Invoegen vanaf scanner";

+ 2 - 2
PDF Office/PDF Master/Strings/pl.lproj/Localizable.strings

@@ -2902,8 +2902,8 @@
 "By Time - Descending"="Według czasu — malejąco";
 "First Page"="Pierwsza strona";
 "Last Page"="Ostatnia strona";
-"There are unapplied redactions in this file"="W tym pliku znajdują się niezastosowane zmiany";
-"This document contains scanned pages and requires OCR recognition for editing"="Ten dokument zawiera zeskanowane strony i do edycji wymaga rozpoznawania OCR";
+"There are unapplied redactions in this file."="W tym pliku znajdują się niezastosowane zmiany.";
+"This document contains scanned pages and requires OCR recognition for editing."="Ten dokument zawiera zeskanowane strony i do edycji wymaga rozpoznawania OCR.";
 "Insert From File"="Wstaw z pliku";
 "Insert Blank Page"="Wstaw pustą stronę";
 "Insert From Scanner"="Wstaw ze skanera";

+ 2 - 2
PDF Office/PDF Master/Strings/pt.lproj/Localizable.strings

@@ -4698,8 +4698,8 @@
 "By Time - Descending"="Por Tempo - Descendente";
 "First Page"="Primeira página";
 "Last Page"="Última página";
-"There are unapplied redactions in this file"="Há redações não aplicadas neste arquivo";
-"This document contains scanned pages and requires OCR recognition for editing"="Este documento contém páginas digitalizadas e requer reconhecimento OCR para edição";
+"There are unapplied redactions in this file."="Há redações não aplicadas neste arquivo.";
+"This document contains scanned pages and requires OCR recognition for editing."="Este documento contém páginas digitalizadas e requer reconhecimento OCR para edição.";
 "Insert From File"="Inserir do arquivo";
 "Insert Blank Page"="Inserir página em branco";
 "Insert From Scanner"="Inserir do scanner";

+ 2 - 2
PDF Office/PDF Master/Strings/ru.lproj/Localizable.strings

@@ -2965,8 +2965,8 @@
 "By Time - Descending"="По времени – по убыванию";
 "First Page"="Первая страница";
 "Last Page"="Последняя страница";
-"There are unapplied redactions in this file"="В этом файле есть непримененные изменения.";
-"This document contains scanned pages and requires OCR recognition for editing"="Этот документ содержит отсканированные страницы и требует распознавания OCR для редактирования.";
+"There are unapplied redactions in this file."="В этом файле есть непримененные изменения.";
+"This document contains scanned pages and requires OCR recognition for editing."="Этот документ содержит отсканированные страницы и требует распознавания OCR для редактирования.";
 "Insert From File"="Вставить из файла";
 "Insert Blank Page"="Вставить пустую страницу";
 "Insert From Scanner"="Вставить со сканера";

+ 2 - 2
PDF Office/PDF Master/Strings/zh-Hans.lproj/Localizable.strings

@@ -4221,8 +4221,8 @@
 "By Time - Descending"="按时间降序";
 "First Page"="首页";
 "Last Page"="尾页";
-"There are unapplied redactions in this file"="该文件包含未应用的密文。";
-"This document contains scanned pages and requires OCR recognition for editing"="该文件包含扫描页面,请使用OCR功能将其转换为可编辑页面。";
+"There are unapplied redactions in this file."="该文件包含未应用的密文。";
+"This document contains scanned pages and requires OCR recognition for editing."="该文件包含扫描页面,请使用OCR功能将其转换为可编辑页面。";
 "Insert From File"="从文件插入";
 "Insert Blank Page"="插入空白页";
 "Insert From Scanner"="从扫描仪插入";

+ 2 - 2
PDF Office/PDF Master/Strings/zh-Hant.lproj/Localizable.strings

@@ -4120,8 +4120,8 @@
 "By Time - Descending"="按時間 - 降序";
 "First Page"="第一頁";
 "Last Page"="最後一頁";
-"There are unapplied redactions in this file"="此文件中有未套用的修訂";
-"This document contains scanned pages and requires OCR recognition for editing"="該文件包含掃描頁面,需要 OCR 識別才能編輯";
+"There are unapplied redactions in this file."="該文件中有未套用的修訂。";
+"This document contains scanned pages and requires OCR recognition for editing."="該文件包含掃描頁面,需要 OCR 識別才能編輯";
 "Insert From File"="從文件插入";
 "Insert Blank Page"="插入空白頁";
 "Insert From Scanner"="從掃描器插入";