Browse Source

比较表-添加编辑和转档

lvle 1 year ago
parent
commit
eb2af2fd11

+ 8 - 0
PDF Office/MultilingualResources/PDF Office.en.xlf

@@ -406,6 +406,14 @@
           <source>Your account will be canceled within 3 working days and there is no need to submit the application for cancellation again</source>
           <target state="new">Your account will be canceled within 3 working days and there is no need to submit the application for cancellation again</target>
         </trans-unit>
+        <trans-unit id="Text_Edit" translate="yes" xml:space="preserve">
+          <source>Edit PDF text and images</source>
+          <target state="new">Edit PDF text and images</target>
+        </trans-unit>
+        <trans-unit id="Text_Extract" translate="yes" xml:space="preserve">
+          <source>Extract texts from image-based or scanned PDF with OCR</source>
+          <target state="new">Extract texts from image-based or scanned PDF with OCR</target>
+        </trans-unit>
       </group>
     </body>
   </file>

+ 8 - 0
PDF Office/MultilingualResources/PDF Office.zh-Hans.xlf

@@ -406,6 +406,14 @@
           <source>Your account will be canceled within 3 working days and there is no need to submit the application for cancellation again</source>
           <target state="new">Your account will be canceled within 3 working days and there is no need to submit the application for cancellation again</target>
         </trans-unit>
+        <trans-unit id="Text_Edit" translate="yes" xml:space="preserve">
+          <source>Edit PDF text and images</source>
+          <target state="new">Edit PDF text and images</target>
+        </trans-unit>
+        <trans-unit id="Text_Extract" translate="yes" xml:space="preserve">
+          <source>Extract texts from image-based or scanned PDF with OCR</source>
+          <target state="new">Extract texts from image-based or scanned PDF with OCR</target>
+        </trans-unit>
       </group>
     </body>
   </file>

+ 8 - 0
PDF Office/MultilingualResources/PDF Office.zh-Hant.xlf

@@ -406,6 +406,14 @@
           <source>Your account will be canceled within 3 working days and there is no need to submit the application for cancellation again</source>
           <target state="new">Your account will be canceled within 3 working days and there is no need to submit the application for cancellation again</target>
         </trans-unit>
+        <trans-unit id="Text_Edit" translate="yes" xml:space="preserve">
+          <source>Edit PDF text and images</source>
+          <target state="new">Edit PDF text and images</target>
+        </trans-unit>
+        <trans-unit id="Text_Extract" translate="yes" xml:space="preserve">
+          <source>Extract texts from image-based or scanned PDF with OCR</source>
+          <target state="new">Extract texts from image-based or scanned PDF with OCR</target>
+        </trans-unit>
       </group>
     </body>
   </file>

+ 18 - 0
PDF Office/Strings/Service/Service.Designer.cs

@@ -564,6 +564,15 @@ namespace PDF_Master.Strings.Service {
             }
         }
         
+        /// <summary>
+        ///   查找类似 Edit PDF text and images 的本地化字符串。
+        /// </summary>
+        public static string Text_Edit {
+            get {
+                return ResourceManager.GetString("Text_Edit", resourceCulture);
+            }
+        }
+        
         /// <summary>
         ///   查找类似 Enter email account 的本地化字符串。
         /// </summary>
@@ -573,6 +582,15 @@ namespace PDF_Master.Strings.Service {
             }
         }
         
+        /// <summary>
+        ///   查找类似 Extract texts from image-based or scanned PDF with OCR 的本地化字符串。
+        /// </summary>
+        public static string Text_Extract {
+            get {
+                return ResourceManager.GetString("Text_Extract", resourceCulture);
+            }
+        }
+        
         /// <summary>
         ///   查找类似 Fill &amp; sign forms 的本地化字符串。
         /// </summary>

+ 6 - 0
PDF Office/Strings/Service/Service.resx

@@ -285,9 +285,15 @@
   <data name="Text_Crop" xml:space="preserve">
     <value>Crop pages</value>
   </data>
+  <data name="Text_Edit" xml:space="preserve">
+    <value>Edit PDF text and images</value>
+  </data>
   <data name="Text_emailac" xml:space="preserve">
     <value>Enter email account</value>
   </data>
+  <data name="Text_Extract" xml:space="preserve">
+    <value>Extract texts from image-based or scanned PDF with OCR</value>
+  </data>
   <data name="Text_Fill" xml:space="preserve">
     <value>Fill &amp; sign forms</value>
   </data>

+ 23 - 0
PDF Office/ViewModels/Dialog/ServiceDialog/IAPCompareDialogViewModel.cs

@@ -143,6 +143,24 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
                 SetProperty(ref _Text_Save, value);
             }
         }
+        private string _Text_Edit;
+        public string Text_Edit
+        {
+            get { return _Text_Edit; }
+            set
+            {
+                SetProperty(ref _Text_Edit, value);
+            }
+        }
+        private string _Text_Extract;
+        public string Text_Extract
+        {
+            get { return _Text_Extract; }
+            set
+            {
+                SetProperty(ref _Text_Extract, value);
+            }
+        }
         private string _Text_Advanced;
         public string Text_Advanced
         {
@@ -286,6 +304,8 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
             Text_TurnPDF = App.ServiceLoader.GetString("Text_TurnPDF");
             Text_Save = App.ServiceLoader.GetString("Text_Save");
             Text_Advanced = App.ServiceLoader.GetString("Text_Advanced");
+            Text_Edit = App.ServiceLoader.GetString("Text_Edit");
+            Text_Extract = App.ServiceLoader.GetString("Text_Extract");
             Text_Compress = App.ServiceLoader.GetString("Text_Compress");
             Text_Merge = App.ServiceLoader.GetString("Text_Merge");
             Text_Fill = App.ServiceLoader.GetString("Text_Fill");
@@ -366,6 +386,9 @@ namespace PDF_Master.ViewModels.Dialog.ServiceDialog
             Items.Add(new User() { Use = Text_CreatePDFfromscanner, UnRe = true, Re = true, UseType = UseType.CreatePDF });
             Items.Add(new User() { Use = Text_ConvertPDFtoMicrosoft, UnRe = false, Re = true, UseType = UseType.ConvertPDF });
             Items.Add(new User() { Use = Text_TurnPDF, UnRe = false, Re = true, UseType = UseType.ConvertPDF });
+
+            Items.Add(new User() { Use = Text_Edit, UnRe = false, Re = true, UseType = UseType.AdvancedEditTools });
+            Items.Add(new User() { Use = Text_Extract, UnRe = false, Re = true, UseType = UseType.AdvancedEditTools });
             Items.Add(new User() { Use = Text_Compress, UnRe = false, Re = true, UseType = UseType.AdvancedEditTools });
             Items.Add(new User() { Use = Text_Merge, UnRe = false, Re = true, UseType = UseType.AdvancedEditTools });
             //初版先不显示填写与签名