From 963ccab93e23889326df486ff72eedc1d0928e63 Mon Sep 17 00:00:00 2001 From: Ben Olden-Cooligan Date: Mon, 4 Mar 2024 21:40:16 -0800 Subject: [PATCH] Add placeholder forms for Split/Combine --- NAPS2.Lib.Mac/EtoForms/Ui/MacDesktopForm.cs | 3 + .../Desktop/DesktopSubFormController.cs | 3 + .../Desktop/IDesktopSubFormController.cs | 2 + NAPS2.Lib/EtoForms/Ui/CombineForm.cs | 16 + NAPS2.Lib/EtoForms/Ui/DesktopCommands.cs | 12 + NAPS2.Lib/EtoForms/Ui/DesktopForm.cs | 3 + NAPS2.Lib/EtoForms/Ui/SplitForm.cs | 15 + NAPS2.Lib/Icons.Designer.cs | 20 + NAPS2.Lib/Icons.resx | 6 + NAPS2.Lib/Icons/combine.png | Bin 0 -> 1154 bytes NAPS2.Lib/Icons/split.png | Bin 0 -> 1166 bytes .../Lang/Resources/UiStrings.Designer.cs | 3551 ++++++++++------- NAPS2.Lib/Lang/Resources/UiStrings.resx | 6 + 13 files changed, 2263 insertions(+), 1374 deletions(-) create mode 100644 NAPS2.Lib/EtoForms/Ui/CombineForm.cs create mode 100644 NAPS2.Lib/EtoForms/Ui/SplitForm.cs create mode 100644 NAPS2.Lib/Icons/combine.png create mode 100644 NAPS2.Lib/Icons/split.png diff --git a/NAPS2.Lib.Mac/EtoForms/Ui/MacDesktopForm.cs b/NAPS2.Lib.Mac/EtoForms/Ui/MacDesktopForm.cs index 3a09eb23b..2a5df1931 100644 --- a/NAPS2.Lib.Mac/EtoForms/Ui/MacDesktopForm.cs +++ b/NAPS2.Lib.Mac/EtoForms/Ui/MacDesktopForm.cs @@ -120,6 +120,9 @@ public class MacDesktopForm : DesktopForm Commands.Sharpen, Commands.DocumentCorrection, new SeparatorMenuItem(), + Commands.Split, + Commands.Combine, + new SeparatorMenuItem(), Commands.RotateLeft, Commands.RotateRight, Commands.Flip, diff --git a/NAPS2.Lib/EtoForms/Desktop/DesktopSubFormController.cs b/NAPS2.Lib/EtoForms/Desktop/DesktopSubFormController.cs index 1fc028266..3a2c2439c 100644 --- a/NAPS2.Lib/EtoForms/Desktop/DesktopSubFormController.cs +++ b/NAPS2.Lib/EtoForms/Desktop/DesktopSubFormController.cs @@ -25,6 +25,9 @@ public class DesktopSubFormController : IDesktopSubFormController public void ShowHueSaturationForm() => ShowImageForm(); public void ShowBlackWhiteForm() => ShowImageForm(); public void ShowSharpenForm() => ShowImageForm(); + public void ShowSplitForm() => ShowImageForm(); + public void ShowCombineForm() => ShowImageForm(); + public void ShowRotateForm() => ShowImageForm(); private void ShowImageForm() where T : ImageFormBase diff --git a/NAPS2.Lib/EtoForms/Desktop/IDesktopSubFormController.cs b/NAPS2.Lib/EtoForms/Desktop/IDesktopSubFormController.cs index 9bb084c3c..023f16fba 100644 --- a/NAPS2.Lib/EtoForms/Desktop/IDesktopSubFormController.cs +++ b/NAPS2.Lib/EtoForms/Desktop/IDesktopSubFormController.cs @@ -7,6 +7,8 @@ public interface IDesktopSubFormController void ShowHueSaturationForm(); void ShowBlackWhiteForm(); void ShowSharpenForm(); + void ShowSplitForm(); + void ShowCombineForm(); void ShowRotateForm(); void ShowProfilesForm(); void ShowOcrForm(); diff --git a/NAPS2.Lib/EtoForms/Ui/CombineForm.cs b/NAPS2.Lib/EtoForms/Ui/CombineForm.cs new file mode 100644 index 000000000..634c48a92 --- /dev/null +++ b/NAPS2.Lib/EtoForms/Ui/CombineForm.cs @@ -0,0 +1,16 @@ +using Eto.Drawing; +using NAPS2.EtoForms.Widgets; + +namespace NAPS2.EtoForms.Ui; + +public class CombineForm : ImageFormBase +{ + public CombineForm(Naps2Config config, UiImageList imageList, ThumbnailController thumbnailController) : + base(config, imageList, thumbnailController) + { + Icon = new Icon(1f, Icons.combine.ToEtoImage()); + Title = UiStrings.Combine; + } + + protected override List Transforms => []; +} \ No newline at end of file diff --git a/NAPS2.Lib/EtoForms/Ui/DesktopCommands.cs b/NAPS2.Lib/EtoForms/Ui/DesktopCommands.cs index 750a88d4c..ad5ef26ab 100644 --- a/NAPS2.Lib/EtoForms/Ui/DesktopCommands.cs +++ b/NAPS2.Lib/EtoForms/Ui/DesktopCommands.cs @@ -186,6 +186,16 @@ public class DesktopCommands Text = UiStrings.DocumentCorrection, Image = iconProvider.GetIcon("document") }; + Split = new ActionCommand(desktopSubFormController.ShowSplitForm) + { + Text = UiStrings.Split, + Image = iconProvider.GetIcon("split") + }; + Combine = new ActionCommand(desktopSubFormController.ShowCombineForm) + { + Text = UiStrings.Combine, + Image = iconProvider.GetIcon("combine") + }; ResetImage = new ActionCommand(desktopController.ResetImage) { Text = UiStrings.Reset @@ -379,6 +389,8 @@ public class DesktopCommands public ActionCommand BlackWhite { get; set; } public ActionCommand Sharpen { get; set; } public ActionCommand DocumentCorrection { get; set; } + public ActionCommand Split { get; set; } + public ActionCommand Combine { get; set; } public ActionCommand ResetImage { get; set; } public ActionCommand RotateMenu { get; set; } public ActionCommand RotateLeft { get; set; } diff --git a/NAPS2.Lib/EtoForms/Ui/DesktopForm.cs b/NAPS2.Lib/EtoForms/Ui/DesktopForm.cs index 1558acb66..8690e18e7 100644 --- a/NAPS2.Lib/EtoForms/Ui/DesktopForm.cs +++ b/NAPS2.Lib/EtoForms/Ui/DesktopForm.cs @@ -303,6 +303,9 @@ public abstract class DesktopForm : EtoFormBase .Append(Commands.Sharpen) .Append(Commands.DocumentCorrection) .Separator() + .Append(Commands.Split) + .Append(Commands.Combine) + .Separator() .Append(Commands.ResetImage)); if (!hiddenButtons.HasFlag(ToolbarButtons.Rotate)) CreateToolbarMenu(Commands.RotateMenu, GetRotateMenuProvider()); diff --git a/NAPS2.Lib/EtoForms/Ui/SplitForm.cs b/NAPS2.Lib/EtoForms/Ui/SplitForm.cs new file mode 100644 index 000000000..b884d3209 --- /dev/null +++ b/NAPS2.Lib/EtoForms/Ui/SplitForm.cs @@ -0,0 +1,15 @@ +using Eto.Drawing; + +namespace NAPS2.EtoForms.Ui; + +public class SplitForm : ImageFormBase +{ + public SplitForm(Naps2Config config, UiImageList imageList, ThumbnailController thumbnailController) : + base(config, imageList, thumbnailController) + { + Icon = new Icon(1f, Icons.split.ToEtoImage()); + Title = UiStrings.Split; + } + + protected override List Transforms => []; +} \ No newline at end of file diff --git a/NAPS2.Lib/Icons.Designer.cs b/NAPS2.Lib/Icons.Designer.cs index 1f57adc0d..e18852045 100644 --- a/NAPS2.Lib/Icons.Designer.cs +++ b/NAPS2.Lib/Icons.Designer.cs @@ -369,6 +369,16 @@ namespace NAPS2 { } } + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] combine { + get { + object obj = ResourceManager.GetObject("combine", resourceCulture); + return ((byte[])(obj)); + } + } + /// /// Looks up a localized resource of type System.Byte[]. /// @@ -849,6 +859,16 @@ namespace NAPS2 { } } + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] split { + get { + object obj = ResourceManager.GetObject("split", resourceCulture); + return ((byte[])(obj)); + } + } + /// /// Looks up a localized resource of type System.Byte[]. /// diff --git a/NAPS2.Lib/Icons.resx b/NAPS2.Lib/Icons.resx index 663ee19f0..fe3e7830a 100644 --- a/NAPS2.Lib/Icons.resx +++ b/NAPS2.Lib/Icons.resx @@ -403,4 +403,10 @@ Icons\document.png;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Icons\split.png;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Icons\combine.png;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/NAPS2.Lib/Icons/combine.png b/NAPS2.Lib/Icons/combine.png new file mode 100644 index 0000000000000000000000000000000000000000..c35c8f5a0f70924ae1dfa608af90fd7d26754efe GIT binary patch literal 1154 zcmaJ>Pi)gx9Cn)#P$?Z827ylS>TZZhjsK)c+L(qmiIX)`Q$=Z{_JB|v`=zm3`?>Zj zaVw|<0wK6;NC>sCL$8x2F6=OA2ZHEfXqphyG@)JSkXFP21tI972%DmMdTm3J#~=oIII8Mly7JpK8mLN` z9uB0qlo5kPwSU@#L(_vfG-E?nx7N!<3dY)!!SW2}q*Mc@QlExu+6LOf8Tj7sM}@8IlmXccw9up} zlY=X?JE06AWVImEzr7WoRy+rEjt#g(7UZQomEHT462m8T6*S1LaIMa=`C5w&5hdSwYleG1v zh2R(DN<2%7k*xi1{#CWwd*kW<2k%x_mWLPbUaK}QH16M@aPQo?^mzwp>9_Qsce#Gb zJ-Mef=3Kd8uf1}%_-E6-W4Yrw*PG71=EcHj!&T4YqIhxh1Nj8k7Crpsc>3#8RQr$a z*7CxZ9g9o3wr`sIUY3Q~xmnNjeJ%fD_4&Trm*(c?Jl%Kh%pakI`R<$F|M&3BEwL4J zl>gu+AGElCy}Y`l6<#b?*og>bH5~kVQ}xYj`M`HiPM`6)&R_3V9|zs%{<>a`Txgm7 zePHuI+BGxt+T88|&*sZt{nIc|{^iD_N~JxKK3Y(eth;F|_e0A}<7XbKwD<4@>dM6_ P=dX~A4~kc!xsz`Ju2zNx literal 0 HcmV?d00001 diff --git a/NAPS2.Lib/Icons/split.png b/NAPS2.Lib/Icons/split.png new file mode 100644 index 0000000000000000000000000000000000000000..7645ba67311e3ad56b8dbe94f5992de0a2da8b0f GIT binary patch literal 1166 zcmaJ>TWl0n7@k^a>Ds-_F5T#s&2}prW6jRaoNdQ4bB38y zciKd|v=~z_iR%-@5UU{pO%P)rCBY~~k%%v)5P}FLMq*-w_(Dk2@l5F!A6zGyIhTCj z_uszEOum25X5S7UMNylxeNus}Pk8U69pu~nw=0vS3#UtX09A2Kwjh;IQ3ZmmE)T;3 zl-2PA=V1>;wbNR$giE;>MFr`M>|q#3Hwl}fdU_pGRz@KP6*#OJG5W8s&(J_qWAwgI zj?0-TIHL7USa4vXzo<-%Dp8g0eIE2UA`#FbmVu-1H*C>~(W|;5*?ZS44OSs|G)6y2 zs+7xv6tW-)F`QrF!aN8E89vBGgV9|;;CPPZ1(u8Wc}@&PM2-h*4^5(3YE>*qnYCEt z6r)ElHbs`L)oM&Fz#waw<)hIk%L%L?_zA*qj~iHa{D!@=sUSgHu{0BF$N-+ATtQgrnw7=QK{0PFx9ziBZ4TKmT?9&Vt)$CP#E+=LU8_R|Qvr>#E3XG45X6bbdxI~WlV<#ZgSO!T%je`vx07t$P%=) z*P)uRkPcQ$7PXeSBr`4b*0^fxT)388mL$V^gZlD4*K}}B|Inp@Tn3;LyDNgv3 zYafb#-Zr@HH}{hS6|6T7cD)uK8@x0*)v>U+0G_-5c(}ghwy(7H^5Wvk_oH$9g?BrJ zkGqa7{o3m+MlZ-S+~Y-MnxyUZ&p3=Fe?d fdhE(qfq1=*x@%X5o^1oyy+1@Y-7kHSEKmIdH>Q*v literal 0 HcmV?d00001 diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs b/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs index 5d2db3590..b538a6d0d 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs +++ b/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs @@ -11,32 +11,46 @@ namespace NAPS2.Lang.Resources { using System; - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class UiStrings { - private static System.Resources.ResourceManager resourceMan; + private static global::System.Resources.ResourceManager resourceMan; - private static System.Globalization.CultureInfo resourceCulture; + private static global::System.Globalization.CultureInfo resourceCulture; - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal UiStrings() { } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Resources.ResourceManager ResourceManager { + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("NAPS2.Lang.Resources.UiStrings", typeof(UiStrings).Assembly); + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NAPS2.Lang.Resources.UiStrings", typeof(UiStrings).Assembly); resourceMan = temp; } return resourceMan; } } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Globalization.CultureInfo Culture { + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -45,1546 +59,2335 @@ namespace NAPS2.Lang.Resources { } } - internal static string AboutFormTitle { - get { - return ResourceManager.GetString("AboutFormTitle", resourceCulture); - } - } - - internal static string CopyrightFormat { - get { - return ResourceManager.GetString("CopyrightFormat", resourceCulture); - } - } - - internal static string IconsFrom { - get { - return ResourceManager.GetString("IconsFrom", resourceCulture); - } - } - - internal static string CheckForUpdates { - get { - return ResourceManager.GetString("CheckForUpdates", resourceCulture); - } - } - - internal static string OK { - get { - return ResourceManager.GetString("OK", resourceCulture); - } - } - - internal static string Donate { - get { - return ResourceManager.GetString("Donate", resourceCulture); - } - } - - internal static string ProfilesFormTitle { - get { - return ResourceManager.GetString("ProfilesFormTitle", resourceCulture); - } - } - - internal static string New { - get { - return ResourceManager.GetString("New", resourceCulture); - } - } - - internal static string Edit { - get { - return ResourceManager.GetString("Edit", resourceCulture); - } - } - - internal static string Delete { - get { - return ResourceManager.GetString("Delete", resourceCulture); - } - } - - internal static string Scan { - get { - return ResourceManager.GetString("Scan", resourceCulture); - } - } - - internal static string SetDefault { - get { - return ResourceManager.GetString("SetDefault", resourceCulture); - } - } - - internal static string Copy { - get { - return ResourceManager.GetString("Copy", resourceCulture); - } - } - - internal static string Paste { - get { - return ResourceManager.GetString("Paste", resourceCulture); - } - } - - internal static string Undo { - get { - return ResourceManager.GetString("Undo", resourceCulture); - } - } - - internal static string Redo { - get { - return ResourceManager.GetString("Redo", resourceCulture); - } - } - - internal static string UndoFormat { - get { - return ResourceManager.GetString("UndoFormat", resourceCulture); - } - } - - internal static string RedoFormat { - get { - return ResourceManager.GetString("RedoFormat", resourceCulture); - } - } - - internal static string Done { - get { - return ResourceManager.GetString("Done", resourceCulture); - } - } - - internal static string Default { - get { - return ResourceManager.GetString("Default", resourceCulture); - } - } - - internal static string NewProfile { - get { - return ResourceManager.GetString("NewProfile", resourceCulture); - } - } - - internal static string BatchScan { - get { - return ResourceManager.GetString("BatchScan", resourceCulture); - } - } - - internal static string Ocr { - get { - return ResourceManager.GetString("Ocr", resourceCulture); - } - } - - internal static string Profiles { - get { - return ResourceManager.GetString("Profiles", resourceCulture); - } - } - - internal static string Import { - get { - return ResourceManager.GetString("Import", resourceCulture); - } - } - - internal static string SavePdf { - get { - return ResourceManager.GetString("SavePdf", resourceCulture); - } - } - - internal static string PdfSettings { - get { - return ResourceManager.GetString("PdfSettings", resourceCulture); - } - } - - internal static string SaveImages { - get { - return ResourceManager.GetString("SaveImages", resourceCulture); - } - } - - internal static string ImageSettings { - get { - return ResourceManager.GetString("ImageSettings", resourceCulture); - } - } - - internal static string EmailPdf { - get { - return ResourceManager.GetString("EmailPdf", resourceCulture); - } - } - - internal static string EmailSettings { - get { - return ResourceManager.GetString("EmailSettings", resourceCulture); - } - } - - internal static string Print { - get { - return ResourceManager.GetString("Print", resourceCulture); - } - } - - internal static string Image { - get { - return ResourceManager.GetString("Image", resourceCulture); - } - } - - internal static string View { - get { - return ResourceManager.GetString("View", resourceCulture); - } - } - - internal static string Crop { - get { - return ResourceManager.GetString("Crop", resourceCulture); - } - } - - internal static string BrightnessContrast { - get { - return ResourceManager.GetString("BrightnessContrast", resourceCulture); - } - } - - internal static string HueSaturation { - get { - return ResourceManager.GetString("HueSaturation", resourceCulture); - } - } - - internal static string BlackAndWhite { - get { - return ResourceManager.GetString("BlackAndWhite", resourceCulture); - } - } - - internal static string Sharpen { - get { - return ResourceManager.GetString("Sharpen", resourceCulture); - } - } - - internal static string DocumentCorrection { - get { - return ResourceManager.GetString("DocumentCorrection", resourceCulture); - } - } - - internal static string Reset { - get { - return ResourceManager.GetString("Reset", resourceCulture); - } - } - - internal static string Rotate { - get { - return ResourceManager.GetString("Rotate", resourceCulture); - } - } - - internal static string RotateLeft { - get { - return ResourceManager.GetString("RotateLeft", resourceCulture); - } - } - - internal static string RotateRight { - get { - return ResourceManager.GetString("RotateRight", resourceCulture); - } - } - - internal static string Flip { - get { - return ResourceManager.GetString("Flip", resourceCulture); - } - } - - internal static string Deskew { - get { - return ResourceManager.GetString("Deskew", resourceCulture); - } - } - - internal static string CustomRotation { - get { - return ResourceManager.GetString("CustomRotation", resourceCulture); - } - } - - internal static string MoveUp { - get { - return ResourceManager.GetString("MoveUp", resourceCulture); - } - } - - internal static string MoveDown { - get { - return ResourceManager.GetString("MoveDown", resourceCulture); - } - } - - internal static string Reorder { - get { - return ResourceManager.GetString("Reorder", resourceCulture); - } - } - - internal static string Interleave { - get { - return ResourceManager.GetString("Interleave", resourceCulture); - } - } - - internal static string Deinterleave { - get { - return ResourceManager.GetString("Deinterleave", resourceCulture); - } - } - - internal static string AltInterleave { - get { - return ResourceManager.GetString("AltInterleave", resourceCulture); - } - } - - internal static string AltDeinterleave { - get { - return ResourceManager.GetString("AltDeinterleave", resourceCulture); - } - } - - internal static string Reverse { - get { - return ResourceManager.GetString("Reverse", resourceCulture); - } - } - - internal static string ReverseAll { - get { - return ResourceManager.GetString("ReverseAll", resourceCulture); - } - } - - internal static string ReverseSelected { - get { - return ResourceManager.GetString("ReverseSelected", resourceCulture); - } - } - - internal static string Clear { - get { - return ResourceManager.GetString("Clear", resourceCulture); - } - } - - internal static string ClearAll { - get { - return ResourceManager.GetString("ClearAll", resourceCulture); - } - } - - internal static string Language { - get { - return ResourceManager.GetString("Language", resourceCulture); - } - } - - internal static string Settings { - get { - return ResourceManager.GetString("Settings", resourceCulture); - } - } - - internal static string Interface { - get { - return ResourceManager.GetString("Interface", resourceCulture); - } - } - - internal static string ScanChangesDefaultProfile { - get { - return ResourceManager.GetString("ScanChangesDefaultProfile", resourceCulture); - } - } - - internal static string ShowProfilesToolbar { - get { - return ResourceManager.GetString("ShowProfilesToolbar", resourceCulture); - } - } - - internal static string ShowPageNumbers { - get { - return ResourceManager.GetString("ShowPageNumbers", resourceCulture); - } - } - - internal static string ScanButtonDefaultAction { - get { - return ResourceManager.GetString("ScanButtonDefaultAction", resourceCulture); - } - } - - internal static string SaveButtonDefaultAction { - get { - return ResourceManager.GetString("SaveButtonDefaultAction", resourceCulture); - } - } - - internal static string Application { - get { - return ResourceManager.GetString("Application", resourceCulture); - } - } - - internal static string SingleInstanceDesc { - get { - return ResourceManager.GetString("SingleInstanceDesc", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to About. + /// internal static string About { get { return ResourceManager.GetString("About", resourceCulture); } } - internal static string Zoom { + /// + /// Looks up a localized string similar to About. + /// + internal static string AboutFormTitle { get { - return ResourceManager.GetString("Zoom", resourceCulture); - } - } - - internal static string ZoomIn { - get { - return ResourceManager.GetString("ZoomIn", resourceCulture); - } - } - - internal static string ZoomOut { - get { - return ResourceManager.GetString("ZoomOut", resourceCulture); - } - } - - internal static string ZoomActual { - get { - return ResourceManager.GetString("ZoomActual", resourceCulture); - } - } - - internal static string ScaleWithWindow { - get { - return ResourceManager.GetString("ScaleWithWindow", resourceCulture); - } - } - - internal static string Save { - get { - return ResourceManager.GetString("Save", resourceCulture); - } - } - - internal static string SaveAll { - get { - return ResourceManager.GetString("SaveAll", resourceCulture); - } - } - - internal static string SaveSelected { - get { - return ResourceManager.GetString("SaveSelected", resourceCulture); - } - } - - internal static string SaveAllAsPdf { - get { - return ResourceManager.GetString("SaveAllAsPdf", resourceCulture); - } - } - - internal static string SaveSelectedAsPdf { - get { - return ResourceManager.GetString("SaveSelectedAsPdf", resourceCulture); - } - } - - internal static string SaveAllAsImages { - get { - return ResourceManager.GetString("SaveAllAsImages", resourceCulture); - } - } - - internal static string SaveSelectedAsImages { - get { - return ResourceManager.GetString("SaveSelectedAsImages", resourceCulture); - } - } - - internal static string EmailAll { - get { - return ResourceManager.GetString("EmailAll", resourceCulture); - } - } - - internal static string EmailSelected { - get { - return ResourceManager.GetString("EmailSelected", resourceCulture); - } - } - - internal static string EmailAllAsPdf { - get { - return ResourceManager.GetString("EmailAllAsPdf", resourceCulture); - } - } - - internal static string EmailSelectedAsPdf { - get { - return ResourceManager.GetString("EmailSelectedAsPdf", resourceCulture); - } - } - - internal static string EditProfileFormTitle { - get { - return ResourceManager.GetString("EditProfileFormTitle", resourceCulture); - } - } - - internal static string DisplayNameLabel { - get { - return ResourceManager.GetString("DisplayNameLabel", resourceCulture); - } - } - - internal static string WiaDriver { - get { - return ResourceManager.GetString("WiaDriver", resourceCulture); - } - } - - internal static string TwainDriver { - get { - return ResourceManager.GetString("TwainDriver", resourceCulture); - } - } - - internal static string EsclDriver { - get { - return ResourceManager.GetString("EsclDriver", resourceCulture); - } - } - - internal static string EsclNetworkDriver { - get { - return ResourceManager.GetString("EsclNetworkDriver", resourceCulture); - } - } - - internal static string EsclUsbDriver { - get { - return ResourceManager.GetString("EsclUsbDriver", resourceCulture); - } - } - - internal static string AppleDriver { - get { - return ResourceManager.GetString("AppleDriver", resourceCulture); - } - } - - internal static string SaneDriver { - get { - return ResourceManager.GetString("SaneDriver", resourceCulture); - } - } - - internal static string DeviceLabel { - get { - return ResourceManager.GetString("DeviceLabel", resourceCulture); - } - } - - internal static string ChooseDevice { - get { - return ResourceManager.GetString("ChooseDevice", resourceCulture); - } - } - - internal static string UsePredefinedSettings { - get { - return ResourceManager.GetString("UsePredefinedSettings", resourceCulture); - } - } - - internal static string UseNativeUi { - get { - return ResourceManager.GetString("UseNativeUi", resourceCulture); - } - } - - internal static string PaperSourceLabel { - get { - return ResourceManager.GetString("PaperSourceLabel", resourceCulture); - } - } - - internal static string PageSizeLabel { - get { - return ResourceManager.GetString("PageSizeLabel", resourceCulture); - } - } - - internal static string ResolutionLabel { - get { - return ResourceManager.GetString("ResolutionLabel", resourceCulture); - } - } - - internal static string BrightnessLabel { - get { - return ResourceManager.GetString("BrightnessLabel", resourceCulture); - } - } - - internal static string BitDepthLabel { - get { - return ResourceManager.GetString("BitDepthLabel", resourceCulture); - } - } - - internal static string HorizontalAlignLabel { - get { - return ResourceManager.GetString("HorizontalAlignLabel", resourceCulture); - } - } - - internal static string ScaleLabel { - get { - return ResourceManager.GetString("ScaleLabel", resourceCulture); - } - } - - internal static string ContrastLabel { - get { - return ResourceManager.GetString("ContrastLabel", resourceCulture); - } - } - - internal static string EnableAutoSave { - get { - return ResourceManager.GetString("EnableAutoSave", resourceCulture); - } - } - - internal static string AutoSaveSettings { - get { - return ResourceManager.GetString("AutoSaveSettings", resourceCulture); - } - } - - internal static string AutoSaveSettingsFormTitle { - get { - return ResourceManager.GetString("AutoSaveSettingsFormTitle", resourceCulture); + return ResourceManager.GetString("AboutFormTitle", resourceCulture); } } + /// + /// Looks up a localized string similar to Advanced. + /// internal static string Advanced { get { return ResourceManager.GetString("Advanced", resourceCulture); } } - internal static string Cancel { - get { - return ResourceManager.GetString("Cancel", resourceCulture); - } - } - - internal static string Select { - get { - return ResourceManager.GetString("Select", resourceCulture); - } - } - - internal static string SelectSource { - get { - return ResourceManager.GetString("SelectSource", resourceCulture); - } - } - - internal static string RunInBackground { - get { - return ResourceManager.GetString("RunInBackground", resourceCulture); - } - } - - internal static string Naps2 { - get { - return ResourceManager.GetString("Naps2", resourceCulture); - } - } - - internal static string Naps2TitleFormat { - get { - return ResourceManager.GetString("Naps2TitleFormat", resourceCulture); - } - } - - internal static string Naps2FullName { - get { - return ResourceManager.GetString("Naps2FullName", resourceCulture); - } - } - - internal static string OcrSetupFormTitle { - get { - return ResourceManager.GetString("OcrSetupFormTitle", resourceCulture); - } - } - - internal static string MakePdfsSearchable { - get { - return ResourceManager.GetString("MakePdfsSearchable", resourceCulture); - } - } - - internal static string OcrLanguageLabel { - get { - return ResourceManager.GetString("OcrLanguageLabel", resourceCulture); - } - } - - internal static string OcrModeLabel { - get { - return ResourceManager.GetString("OcrModeLabel", resourceCulture); - } - } - - internal static string OcrPreProcessing { - get { - return ResourceManager.GetString("OcrPreProcessing", resourceCulture); - } - } - - internal static string RunOcrAfterScanning { - get { - return ResourceManager.GetString("RunOcrAfterScanning", resourceCulture); - } - } - - internal static string GetMoreLanguages { - get { - return ResourceManager.GetString("GetMoreLanguages", resourceCulture); - } - } - - internal static string OcrDownloadFormTitle { - get { - return ResourceManager.GetString("OcrDownloadFormTitle", resourceCulture); - } - } - - internal static string OcrDownloadSummaryText { - get { - return ResourceManager.GetString("OcrDownloadSummaryText", resourceCulture); - } - } - - internal static string OcrSelectLanguageLabel { - get { - return ResourceManager.GetString("OcrSelectLanguageLabel", resourceCulture); - } - } - - internal static string EstimatedDownloadSize { - get { - return ResourceManager.GetString("EstimatedDownloadSize", resourceCulture); - } - } - - internal static string Download { - get { - return ResourceManager.GetString("Download", resourceCulture); - } - } - - internal static string DownloadProgressFormTitle { - get { - return ResourceManager.GetString("DownloadProgressFormTitle", resourceCulture); - } - } - - internal static string PreviewFormTitle { - get { - return ResourceManager.GetString("PreviewFormTitle", resourceCulture); - } - } - - internal static string Next { - get { - return ResourceManager.GetString("Next", resourceCulture); - } - } - - internal static string Previous { - get { - return ResourceManager.GetString("Previous", resourceCulture); - } - } - - internal static string XOfY { - get { - return ResourceManager.GetString("XOfY", resourceCulture); - } - } - - internal static string Revert { - get { - return ResourceManager.GetString("Revert", resourceCulture); - } - } - - internal static string ApplyToSelected { - get { - return ResourceManager.GetString("ApplyToSelected", resourceCulture); - } - } - - internal static string SelectAll { - get { - return ResourceManager.GetString("SelectAll", resourceCulture); - } - } - - internal static string Recover { - get { - return ResourceManager.GetString("Recover", resourceCulture); - } - } - - internal static string NotNow { - get { - return ResourceManager.GetString("NotNow", resourceCulture); - } - } - - internal static string RecoverFormTitle { - get { - return ResourceManager.GetString("RecoverFormTitle", resourceCulture); - } - } - - internal static string RecoverPrompt { - get { - return ResourceManager.GetString("RecoverPrompt", resourceCulture); - } - } - - internal static string Ellipsis { - get { - return ResourceManager.GetString("Ellipsis", resourceCulture); - } - } - - internal static string Placeholders { - get { - return ResourceManager.GetString("Placeholders", resourceCulture); - } - } - - internal static string SkipSavePrompt { - get { - return ResourceManager.GetString("SkipSavePrompt", resourceCulture); - } - } - - internal static string SinglePageFiles { - get { - return ResourceManager.GetString("SinglePageFiles", resourceCulture); - } - } - - internal static string EncryptPdf { - get { - return ResourceManager.GetString("EncryptPdf", resourceCulture); - } - } - - internal static string Show { - get { - return ResourceManager.GetString("Show", resourceCulture); - } - } - - internal static string RestoreDefaults { - get { - return ResourceManager.GetString("RestoreDefaults", resourceCulture); - } - } - - internal static string PdfSettingsFormTitle { - get { - return ResourceManager.GetString("PdfSettingsFormTitle", resourceCulture); - } - } - - internal static string AllowPrinting { - get { - return ResourceManager.GetString("AllowPrinting", resourceCulture); - } - } - - internal static string AllowFullQualityPrinting { - get { - return ResourceManager.GetString("AllowFullQualityPrinting", resourceCulture); - } - } - - internal static string AllowDocumentModification { - get { - return ResourceManager.GetString("AllowDocumentModification", resourceCulture); - } - } - - internal static string AllowDocumentAssembly { - get { - return ResourceManager.GetString("AllowDocumentAssembly", resourceCulture); - } - } - - internal static string AllowContentCopying { - get { - return ResourceManager.GetString("AllowContentCopying", resourceCulture); - } - } - - internal static string AllowContentCopyingForAccessibility { - get { - return ResourceManager.GetString("AllowContentCopyingForAccessibility", resourceCulture); - } - } - - internal static string AllowAnnotations { - get { - return ResourceManager.GetString("AllowAnnotations", resourceCulture); - } - } - - internal static string AllowFormFilling { - get { - return ResourceManager.GetString("AllowFormFilling", resourceCulture); - } - } - - internal static string DefaultFilePathLabel { - get { - return ResourceManager.GetString("DefaultFilePathLabel", resourceCulture); - } - } - - internal static string FilePathLabel { - get { - return ResourceManager.GetString("FilePathLabel", resourceCulture); - } - } - - internal static string TitleLabel { - get { - return ResourceManager.GetString("TitleLabel", resourceCulture); - } - } - - internal static string AuthorLabel { - get { - return ResourceManager.GetString("AuthorLabel", resourceCulture); - } - } - - internal static string SubjectLabel { - get { - return ResourceManager.GetString("SubjectLabel", resourceCulture); - } - } - - internal static string KeywordsLabel { - get { - return ResourceManager.GetString("KeywordsLabel", resourceCulture); - } - } - - internal static string OwnerPasswordLabel { - get { - return ResourceManager.GetString("OwnerPasswordLabel", resourceCulture); - } - } - - internal static string UserPasswordLabel { - get { - return ResourceManager.GetString("UserPasswordLabel", resourceCulture); - } - } - - internal static string RememberTheseSettings { - get { - return ResourceManager.GetString("RememberTheseSettings", resourceCulture); - } - } - - internal static string Metadata { - get { - return ResourceManager.GetString("Metadata", resourceCulture); - } - } - - internal static string Encryption { - get { - return ResourceManager.GetString("Encryption", resourceCulture); - } - } - - internal static string Compatibility { - get { - return ResourceManager.GetString("Compatibility", resourceCulture); - } - } - - internal static string PlaceholdersFormTitle { - get { - return ResourceManager.GetString("PlaceholdersFormTitle", resourceCulture); - } - } - - internal static string Year4Digit { - get { - return ResourceManager.GetString("Year4Digit", resourceCulture); - } - } - - internal static string Year2Digit { - get { - return ResourceManager.GetString("Year2Digit", resourceCulture); - } - } - - internal static string Month2Digit { - get { - return ResourceManager.GetString("Month2Digit", resourceCulture); - } - } - - internal static string Day2Digit { - get { - return ResourceManager.GetString("Day2Digit", resourceCulture); - } - } - - internal static string Hour2Digit { - get { - return ResourceManager.GetString("Hour2Digit", resourceCulture); - } - } - - internal static string Minute2Digit { - get { - return ResourceManager.GetString("Minute2Digit", resourceCulture); - } - } - - internal static string Second2Digit { - get { - return ResourceManager.GetString("Second2Digit", resourceCulture); - } - } - - internal static string AutoIncrementing4Digit { - get { - return ResourceManager.GetString("AutoIncrementing4Digit", resourceCulture); - } - } - - internal static string AutoIncrementing3Digit { - get { - return ResourceManager.GetString("AutoIncrementing3Digit", resourceCulture); - } - } - - internal static string AutoIncrementing2Digit { - get { - return ResourceManager.GetString("AutoIncrementing2Digit", resourceCulture); - } - } - - internal static string AutoIncrementing1Digit { - get { - return ResourceManager.GetString("AutoIncrementing1Digit", resourceCulture); - } - } - - internal static string FileNameLabel { - get { - return ResourceManager.GetString("FileNameLabel", resourceCulture); - } - } - - internal static string PreviewLabel { - get { - return ResourceManager.GetString("PreviewLabel", resourceCulture); - } - } - - internal static string JpegQualityHelp { - get { - return ResourceManager.GetString("JpegQualityHelp", resourceCulture); - } - } - - internal static string JpegQuality { - get { - return ResourceManager.GetString("JpegQuality", resourceCulture); - } - } - - internal static string TiffOptions { - get { - return ResourceManager.GetString("TiffOptions", resourceCulture); - } - } - - internal static string CompressionLabel { - get { - return ResourceManager.GetString("CompressionLabel", resourceCulture); - } - } - - internal static string ImageSettingsFormTitle { - get { - return ResourceManager.GetString("ImageSettingsFormTitle", resourceCulture); - } - } - - internal static string EmailSettingsFormTitle { - get { - return ResourceManager.GetString("EmailSettingsFormTitle", resourceCulture); - } - } - - internal static string SettingsFormTitle { - get { - return ResourceManager.GetString("SettingsFormTitle", resourceCulture); - } - } - - internal static string Provider { - get { - return ResourceManager.GetString("Provider", resourceCulture); - } - } - - internal static string Change { - get { - return ResourceManager.GetString("Change", resourceCulture); - } - } - - internal static string AttachmentNameLabel { - get { - return ResourceManager.GetString("AttachmentNameLabel", resourceCulture); - } - } - - internal static string EmailProviderFormTitle { - get { - return ResourceManager.GetString("EmailProviderFormTitle", resourceCulture); - } - } - - internal static string AuthorizeFormTitle { - get { - return ResourceManager.GetString("AuthorizeFormTitle", resourceCulture); - } - } - - internal static string WaitingForAuthorization { - get { - return ResourceManager.GetString("WaitingForAuthorization", resourceCulture); - } - } - - internal static string ErrorFormTitle { - get { - return ResourceManager.GetString("ErrorFormTitle", resourceCulture); - } - } - - internal static string TechnicalDetails { - get { - return ResourceManager.GetString("TechnicalDetails", resourceCulture); - } - } - - internal static string PdfPasswordFormTitle { - get { - return ResourceManager.GetString("PdfPasswordFormTitle", resourceCulture); - } - } - - internal static string EncryptedFilePrompt { - get { - return ResourceManager.GetString("EncryptedFilePrompt", resourceCulture); - } - } - - internal static string PromptForFilePath { - get { - return ResourceManager.GetString("PromptForFilePath", resourceCulture); - } - } - - internal static string OneFilePerPage { - get { - return ResourceManager.GetString("OneFilePerPage", resourceCulture); - } - } - - internal static string OneFilePerScan { - get { - return ResourceManager.GetString("OneFilePerScan", resourceCulture); - } - } - - internal static string SeparateByPatchT { - get { - return ResourceManager.GetString("SeparateByPatchT", resourceCulture); - } - } - - internal static string MoreInfo { - get { - return ResourceManager.GetString("MoreInfo", resourceCulture); - } - } - - internal static string ClearAfterSaving { - get { - return ResourceManager.GetString("ClearAfterSaving", resourceCulture); - } - } - - internal static string KeepSession { - get { - return ResourceManager.GetString("KeepSession", resourceCulture); - } - } - - internal static string PageSizeFormTitle { - get { - return ResourceManager.GetString("PageSizeFormTitle", resourceCulture); - } - } - - internal static string NameOptional { - get { - return ResourceManager.GetString("NameOptional", resourceCulture); - } - } - - internal static string Dimensions { - get { - return ResourceManager.GetString("Dimensions", resourceCulture); - } - } - - internal static string WaitingForTwain { - get { - return ResourceManager.GetString("WaitingForTwain", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to Advanced Profile Settings. + /// internal static string AdvancedProfileFormTitle { get { return ResourceManager.GetString("AdvancedProfileFormTitle", resourceCulture); } } - internal static string ImageQuality { + /// + /// Looks up a localized string similar to Allow Annotations. + /// + internal static string AllowAnnotations { get { - return ResourceManager.GetString("ImageQuality", resourceCulture); + return ResourceManager.GetString("AllowAnnotations", resourceCulture); } } - internal static string MaximumQuality { + /// + /// Looks up a localized string similar to Allow Content Copying. + /// + internal static string AllowContentCopying { get { - return ResourceManager.GetString("MaximumQuality", resourceCulture); + return ResourceManager.GetString("AllowContentCopying", resourceCulture); } } - internal static string BlankPages { + /// + /// Looks up a localized string similar to Allow Content Copying for Accessibility. + /// + internal static string AllowContentCopyingForAccessibility { get { - return ResourceManager.GetString("BlankPages", resourceCulture); + return ResourceManager.GetString("AllowContentCopyingForAccessibility", resourceCulture); } } - internal static string ExcludeBlankPages { + /// + /// Looks up a localized string similar to Allow Document Assembly. + /// + internal static string AllowDocumentAssembly { get { - return ResourceManager.GetString("ExcludeBlankPages", resourceCulture); + return ResourceManager.GetString("AllowDocumentAssembly", resourceCulture); } } - internal static string WhiteThreshold { + /// + /// Looks up a localized string similar to Allow Document Modification. + /// + internal static string AllowDocumentModification { get { - return ResourceManager.GetString("WhiteThreshold", resourceCulture); + return ResourceManager.GetString("AllowDocumentModification", resourceCulture); } } - internal static string CoverageThreshold { + /// + /// Looks up a localized string similar to Allow Form Filling. + /// + internal static string AllowFormFilling { get { - return ResourceManager.GetString("CoverageThreshold", resourceCulture); + return ResourceManager.GetString("AllowFormFilling", resourceCulture); } } - internal static string PostProcessing { + /// + /// Looks up a localized string similar to Allow Full Quality Printing. + /// + internal static string AllowFullQualityPrinting { get { - return ResourceManager.GetString("PostProcessing", resourceCulture); + return ResourceManager.GetString("AllowFullQualityPrinting", resourceCulture); } } - internal static string DeskewScannedPages { + /// + /// Looks up a localized string similar to Allow Printing. + /// + internal static string AllowPrinting { get { - return ResourceManager.GetString("DeskewScannedPages", resourceCulture); + return ResourceManager.GetString("AllowPrinting", resourceCulture); } } - internal static string BrightnessContrastAfterScan { + /// + /// Looks up a localized string similar to Alternate Deinterleave. + /// + internal static string AltDeinterleave { get { - return ResourceManager.GetString("BrightnessContrastAfterScan", resourceCulture); + return ResourceManager.GetString("AltDeinterleave", resourceCulture); } } - internal static string OffsetWidth { + /// + /// Looks up a localized string similar to Alternate Interleave. + /// + internal static string AltInterleave { get { - return ResourceManager.GetString("OffsetWidth", resourceCulture); + return ResourceManager.GetString("AltInterleave", resourceCulture); } } - internal static string StretchToPageSize { + /// + /// Looks up a localized string similar to Apple Driver. + /// + internal static string AppleDriver { get { - return ResourceManager.GetString("StretchToPageSize", resourceCulture); + return ResourceManager.GetString("AppleDriver", resourceCulture); } } - internal static string CropToPageSize { + /// + /// Looks up a localized string similar to Application. + /// + internal static string Application { get { - return ResourceManager.GetString("CropToPageSize", resourceCulture); + return ResourceManager.GetString("Application", resourceCulture); } } - internal static string FlipDuplexedPages { + /// + /// Looks up a localized string similar to Apply to all {0} selected images. + /// + internal static string ApplyToSelected { get { - return ResourceManager.GetString("FlipDuplexedPages", resourceCulture); + return ResourceManager.GetString("ApplyToSelected", resourceCulture); } } - internal static string WiaVersionLabel { + /// + /// Looks up a localized string similar to Attachment Name:. + /// + internal static string AttachmentNameLabel { get { - return ResourceManager.GetString("WiaVersionLabel", resourceCulture); + return ResourceManager.GetString("AttachmentNameLabel", resourceCulture); } } - internal static string TwainImplLabel { + /// + /// Looks up a localized string similar to Authorize. + /// + internal static string AuthorizeFormTitle { get { - return ResourceManager.GetString("TwainImplLabel", resourceCulture); + return ResourceManager.GetString("AuthorizeFormTitle", resourceCulture); } } - internal static string BatchScanFormTitle { + /// + /// Looks up a localized string similar to Author:. + /// + internal static string AuthorLabel { get { - return ResourceManager.GetString("BatchScanFormTitle", resourceCulture); + return ResourceManager.GetString("AuthorLabel", resourceCulture); } } - internal static string PressStartWhenReady { + /// + /// Looks up a localized string similar to Auto-incrementing number (1 digits). + /// + internal static string AutoIncrementing1Digit { get { - return ResourceManager.GetString("PressStartWhenReady", resourceCulture); + return ResourceManager.GetString("AutoIncrementing1Digit", resourceCulture); } } - internal static string ScanConfig { + /// + /// Looks up a localized string similar to Auto-incrementing number (2 digits). + /// + internal static string AutoIncrementing2Digit { get { - return ResourceManager.GetString("ScanConfig", resourceCulture); + return ResourceManager.GetString("AutoIncrementing2Digit", resourceCulture); } } - internal static string Output { + /// + /// Looks up a localized string similar to Auto-incrementing number (3 digits). + /// + internal static string AutoIncrementing3Digit { get { - return ResourceManager.GetString("Output", resourceCulture); + return ResourceManager.GetString("AutoIncrementing3Digit", resourceCulture); } } - internal static string ProfileLabel { + /// + /// Looks up a localized string similar to Auto-incrementing number (4 digits). + /// + internal static string AutoIncrementing4Digit { get { - return ResourceManager.GetString("ProfileLabel", resourceCulture); + return ResourceManager.GetString("AutoIncrementing4Digit", resourceCulture); } } - internal static string SingleScan { + /// + /// Looks up a localized string similar to Auto Save Settings. + /// + internal static string AutoSaveSettings { get { - return ResourceManager.GetString("SingleScan", resourceCulture); + return ResourceManager.GetString("AutoSaveSettings", resourceCulture); } } - internal static string MultipleScansPrompt { + /// + /// Looks up a localized string similar to Auto Save Settings. + /// + internal static string AutoSaveSettingsFormTitle { get { - return ResourceManager.GetString("MultipleScansPrompt", resourceCulture); - } - } - - internal static string MultipleScansDelay { - get { - return ResourceManager.GetString("MultipleScansDelay", resourceCulture); - } - } - - internal static string NumberOfScansLabel { - get { - return ResourceManager.GetString("NumberOfScansLabel", resourceCulture); - } - } - - internal static string TimeBetweenScansLabel { - get { - return ResourceManager.GetString("TimeBetweenScansLabel", resourceCulture); - } - } - - internal static string LoadIn { - get { - return ResourceManager.GetString("LoadIn", resourceCulture); - } - } - - internal static string SaveToSingleFile { - get { - return ResourceManager.GetString("SaveToSingleFile", resourceCulture); - } - } - - internal static string SaveToMultipleFiles { - get { - return ResourceManager.GetString("SaveToMultipleFiles", resourceCulture); - } - } - - internal static string Start { - get { - return ResourceManager.GetString("Start", resourceCulture); + return ResourceManager.GetString("AutoSaveSettingsFormTitle", resourceCulture); } } + /// + /// Looks up a localized string similar to Next Scan. + /// internal static string BatchPromptFormTitle { get { return ResourceManager.GetString("BatchPromptFormTitle", resourceCulture); } } - internal static string ReadyForScan { + /// + /// Looks up a localized string similar to Batch Scan. + /// + internal static string BatchScan { get { - return ResourceManager.GetString("ReadyForScan", resourceCulture); + return ResourceManager.GetString("BatchScan", resourceCulture); } } - internal static string OpenFolder { + /// + /// Looks up a localized string similar to Batch Scan. + /// + internal static string BatchScanFormTitle { get { - return ResourceManager.GetString("OpenFolder", resourceCulture); + return ResourceManager.GetString("BatchScanFormTitle", resourceCulture); } } - internal static string Tools { + /// + /// Looks up a localized string similar to Bit depth:. + /// + internal static string BitDepthLabel { get { - return ResourceManager.GetString("Tools", resourceCulture); + return ResourceManager.GetString("BitDepthLabel", resourceCulture); } } - internal static string EnableDebugLogging { + /// + /// Looks up a localized string similar to Black and White. + /// + internal static string BlackAndWhite { get { - return ResourceManager.GetString("EnableDebugLogging", resourceCulture); + return ResourceManager.GetString("BlackAndWhite", resourceCulture); } } - internal static string Share { + /// + /// Looks up a localized string similar to Blank Pages. + /// + internal static string BlankPages { get { - return ResourceManager.GetString("Share", resourceCulture); + return ResourceManager.GetString("BlankPages", resourceCulture); } } - internal static string ScannerSharing { + /// + /// Looks up a localized string similar to Brightness / Contrast. + /// + internal static string BrightnessContrast { get { - return ResourceManager.GetString("ScannerSharing", resourceCulture); + return ResourceManager.GetString("BrightnessContrast", resourceCulture); } } - internal static string ScannerSharingFormTitle { + /// + /// Looks up a localized string similar to Apply brightness/contrast after scan. + /// + internal static string BrightnessContrastAfterScan { get { - return ResourceManager.GetString("ScannerSharingFormTitle", resourceCulture); + return ResourceManager.GetString("BrightnessContrastAfterScan", resourceCulture); } } - internal static string ScannerSharingIntro { + /// + /// Looks up a localized string similar to Brightness:. + /// + internal static string BrightnessLabel { get { - return ResourceManager.GetString("ScannerSharingIntro", resourceCulture); + return ResourceManager.GetString("BrightnessLabel", resourceCulture); } } - internal static string SharedDeviceFormTitle { + /// + /// Looks up a localized string similar to Cancel. + /// + internal static string Cancel { get { - return ResourceManager.GetString("SharedDeviceFormTitle", resourceCulture); + return ResourceManager.GetString("Cancel", resourceCulture); } } + /// + /// Looks up a localized string similar to Change. + /// + internal static string Change { + get { + return ResourceManager.GetString("Change", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check for updates. + /// + internal static string CheckForUpdates { + get { + return ResourceManager.GetString("CheckForUpdates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose device. + /// + internal static string ChooseDevice { + get { + return ResourceManager.GetString("ChooseDevice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear images after saving. + /// + internal static string ClearAfterSaving { + get { + return ResourceManager.GetString("ClearAfterSaving", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear All. + /// + internal static string ClearAll { + get { + return ResourceManager.GetString("ClearAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Combine. + /// + internal static string Combine { + get { + return ResourceManager.GetString("Combine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compatibility. + /// + internal static string Compatibility { + get { + return ResourceManager.GetString("Compatibility", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compression:. + /// + internal static string CompressionLabel { + get { + return ResourceManager.GetString("CompressionLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to stop sharing {0}?. + /// internal static string ConfirmDeleteSharedDevice { get { return ResourceManager.GetString("ConfirmDeleteSharedDevice", resourceCulture); } } - internal static string ShareAsService { + /// + /// Looks up a localized string similar to Contrast:. + /// + internal static string ContrastLabel { get { - return ResourceManager.GetString("ShareAsService", resourceCulture); + return ResourceManager.GetString("ContrastLabel", resourceCulture); } } + /// + /// Looks up a localized string similar to Copy. + /// + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copyright {0} NAPS2 Contributors. + /// + internal static string CopyrightFormat { + get { + return ResourceManager.GetString("CopyrightFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Coverage Threshold. + /// + internal static string CoverageThreshold { + get { + return ResourceManager.GetString("CoverageThreshold", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crop. + /// + internal static string Crop { + get { + return ResourceManager.GetString("Crop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crop to page size. + /// + internal static string CropToPageSize { + get { + return ResourceManager.GetString("CropToPageSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Rotation. + /// + internal static string CustomRotation { + get { + return ResourceManager.GetString("CustomRotation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Day (01-31). + /// + internal static string Day2Digit { + get { + return ResourceManager.GetString("Day2Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default. + /// + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default File Path:. + /// + internal static string DefaultFilePathLabel { + get { + return ResourceManager.GetString("DefaultFilePathLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deinterleave. + /// + internal static string Deinterleave { + get { + return ResourceManager.GetString("Deinterleave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deskew. + /// + internal static string Deskew { + get { + return ResourceManager.GetString("Deskew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deskew scanned pages. + /// + internal static string DeskewScannedPages { + get { + return ResourceManager.GetString("DeskewScannedPages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device:. + /// + internal static string DeviceLabel { + get { + return ResourceManager.GetString("DeviceLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dimensions. + /// + internal static string Dimensions { + get { + return ResourceManager.GetString("Dimensions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display name:. + /// + internal static string DisplayNameLabel { + get { + return ResourceManager.GetString("DisplayNameLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Document Correction. + /// + internal static string DocumentCorrection { + get { + return ResourceManager.GetString("DocumentCorrection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Donate. + /// + internal static string Donate { + get { + return ResourceManager.GetString("Donate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Done. + /// + internal static string Done { + get { + return ResourceManager.GetString("Done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download. + /// + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download Progress. + /// + internal static string DownloadProgressFormTitle { + get { + return ResourceManager.GetString("DownloadProgressFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Profile Settings. + /// + internal static string EditProfileFormTitle { + get { + return ResourceManager.GetString("EditProfileFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to .... + /// + internal static string Ellipsis { + get { + return ResourceManager.GetString("Ellipsis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email All. + /// + internal static string EmailAll { + get { + return ResourceManager.GetString("EmailAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email All as PDF. + /// + internal static string EmailAllAsPdf { + get { + return ResourceManager.GetString("EmailAllAsPdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email PDF. + /// + internal static string EmailPdf { + get { + return ResourceManager.GetString("EmailPdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose Email Provider. + /// + internal static string EmailProviderFormTitle { + get { + return ResourceManager.GetString("EmailProviderFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Selected. + /// + internal static string EmailSelected { + get { + return ResourceManager.GetString("EmailSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Selected as PDF. + /// + internal static string EmailSelectedAsPdf { + get { + return ResourceManager.GetString("EmailSelectedAsPdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Settings. + /// + internal static string EmailSettings { + get { + return ResourceManager.GetString("EmailSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Settings. + /// + internal static string EmailSettingsFormTitle { + get { + return ResourceManager.GetString("EmailSettingsFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable Auto Save. + /// + internal static string EnableAutoSave { + get { + return ResourceManager.GetString("EnableAutoSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable debug logging. + /// + internal static string EnableDebugLogging { + get { + return ResourceManager.GetString("EnableDebugLogging", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The following file is encrypted and requires a password to open:. + /// + internal static string EncryptedFilePrompt { + get { + return ResourceManager.GetString("EncryptedFilePrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encryption. + /// + internal static string Encryption { + get { + return ResourceManager.GetString("Encryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encrypt PDF. + /// + internal static string EncryptPdf { + get { + return ResourceManager.GetString("EncryptPdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error. + /// + internal static string ErrorFormTitle { + get { + return ResourceManager.GetString("ErrorFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ESCL Driver. + /// + internal static string EsclDriver { + get { + return ResourceManager.GetString("EsclDriver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ESCL Network Driver. + /// + internal static string EsclNetworkDriver { + get { + return ResourceManager.GetString("EsclNetworkDriver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ESCL USB Driver. + /// + internal static string EsclUsbDriver { + get { + return ResourceManager.GetString("EsclUsbDriver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Estimated download size: {0} MB. + /// + internal static string EstimatedDownloadSize { + get { + return ResourceManager.GetString("EstimatedDownloadSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exclude blank pages. + /// + internal static string ExcludeBlankPages { + get { + return ResourceManager.GetString("ExcludeBlankPages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Name:. + /// + internal static string FileNameLabel { + get { + return ResourceManager.GetString("FileNameLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Path:. + /// + internal static string FilePathLabel { + get { + return ResourceManager.GetString("FilePathLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flip. + /// + internal static string Flip { + get { + return ResourceManager.GetString("Flip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flip duplexed pages. + /// + internal static string FlipDuplexedPages { + get { + return ResourceManager.GetString("FlipDuplexedPages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get more languages. + /// + internal static string GetMoreLanguages { + get { + return ResourceManager.GetString("GetMoreLanguages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Horizontal align:. + /// + internal static string HorizontalAlignLabel { + get { + return ResourceManager.GetString("HorizontalAlignLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hour (0-23). + /// + internal static string Hour2Digit { + get { + return ResourceManager.GetString("Hour2Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hue / Saturation. + /// + internal static string HueSaturation { + get { + return ResourceManager.GetString("HueSaturation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icons from:. + /// + internal static string IconsFrom { + get { + return ResourceManager.GetString("IconsFrom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image. + /// + internal static string Image { + get { + return ResourceManager.GetString("Image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image Quality. + /// + internal static string ImageQuality { + get { + return ResourceManager.GetString("ImageQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image Settings. + /// + internal static string ImageSettings { + get { + return ResourceManager.GetString("ImageSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image Settings. + /// + internal static string ImageSettingsFormTitle { + get { + return ResourceManager.GetString("ImageSettingsFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import. + /// + internal static string Import { + get { + return ResourceManager.GetString("Import", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Interface. + /// + internal static string Interface { + get { + return ResourceManager.GetString("Interface", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Interleave. + /// + internal static string Interleave { + get { + return ResourceManager.GetString("Interleave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Jpeg Quality. + /// + internal static string JpegQuality { + get { + return ResourceManager.GetString("JpegQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For high JPEG qualities (80+), also increase Image Quality in your profile for best results.. + /// + internal static string JpegQualityHelp { + get { + return ResourceManager.GetString("JpegQualityHelp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep images across sessions. + /// + internal static string KeepSession { + get { + return ResourceManager.GetString("KeepSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keywords:. + /// + internal static string KeywordsLabel { + get { + return ResourceManager.GetString("KeywordsLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Language. + /// + internal static string Language { + get { + return ResourceManager.GetString("Language", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Load images into NAPS2. + /// + internal static string LoadIn { + get { + return ResourceManager.GetString("LoadIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Make PDFs searchable using OCR. + /// + internal static string MakePdfsSearchable { + get { + return ResourceManager.GetString("MakePdfsSearchable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum quality (large files). + /// + internal static string MaximumQuality { + get { + return ResourceManager.GetString("MaximumQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metadata. + /// + internal static string Metadata { + get { + return ResourceManager.GetString("Metadata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minute (00-59). + /// + internal static string Minute2Digit { + get { + return ResourceManager.GetString("Minute2Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Month (01-12). + /// + internal static string Month2Digit { + get { + return ResourceManager.GetString("Month2Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More info. + /// + internal static string MoreInfo { + get { + return ResourceManager.GetString("MoreInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Down. + /// + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Up. + /// + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple Languages.... + /// internal static string MultipleLanguages { get { return ResourceManager.GetString("MultipleLanguages", resourceCulture); } } + /// + /// Looks up a localized string similar to Multiple scans (fixed delay between scans). + /// + internal static string MultipleScansDelay { + get { + return ResourceManager.GetString("MultipleScansDelay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple scans (prompt between scans). + /// + internal static string MultipleScansPrompt { + get { + return ResourceManager.GetString("MultipleScansPrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name (optional). + /// + internal static string NameOptional { + get { + return ResourceManager.GetString("NameOptional", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NAPS2. + /// + internal static string Naps2 { + get { + return ResourceManager.GetString("Naps2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Another PDF Scanner. + /// + internal static string Naps2FullName { + get { + return ResourceManager.GetString("Naps2FullName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NAPS2 - {0}. + /// + internal static string Naps2TitleFormat { + get { + return ResourceManager.GetString("Naps2TitleFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New. + /// + internal static string New { + get { + return ResourceManager.GetString("New", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Profile. + /// + internal static string NewProfile { + get { + return ResourceManager.GetString("NewProfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next. + /// + internal static string Next { + get { + return ResourceManager.GetString("Next", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not Now. + /// + internal static string NotNow { + get { + return ResourceManager.GetString("NotNow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of scans:. + /// + internal static string NumberOfScansLabel { + get { + return ResourceManager.GetString("NumberOfScansLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OCR. + /// + internal static string Ocr { + get { + return ResourceManager.GetString("Ocr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OCR Download. + /// + internal static string OcrDownloadFormTitle { + get { + return ResourceManager.GetString("OcrDownloadFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Using OCR requires you to download each language you want to scan.. + /// + internal static string OcrDownloadSummaryText { + get { + return ResourceManager.GetString("OcrDownloadSummaryText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OCR language:. + /// + internal static string OcrLanguageLabel { + get { + return ResourceManager.GetString("OcrLanguageLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OCR mode:. + /// + internal static string OcrModeLabel { + get { + return ResourceManager.GetString("OcrModeLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple Languages. + /// internal static string OcrMultiLangFormTitle { get { return ResourceManager.GetString("OcrMultiLangFormTitle", resourceCulture); } } + /// + /// Looks up a localized string similar to Fix white balance and remove noise. + /// + internal static string OcrPreProcessing { + get { + return ResourceManager.GetString("OcrPreProcessing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select one or more languages:. + /// + internal static string OcrSelectLanguageLabel { + get { + return ResourceManager.GetString("OcrSelectLanguageLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OCR Setup. + /// + internal static string OcrSetupFormTitle { + get { + return ResourceManager.GetString("OcrSetupFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Offset width based on alignment (WIA). + /// + internal static string OffsetWidth { + get { + return ResourceManager.GetString("OffsetWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + internal static string OK { + get { + return ResourceManager.GetString("OK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One file per page. + /// + internal static string OneFilePerPage { + get { + return ResourceManager.GetString("OneFilePerPage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One file per scan. + /// + internal static string OneFilePerScan { + get { + return ResourceManager.GetString("OneFilePerScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Folder. + /// + internal static string OpenFolder { + get { + return ResourceManager.GetString("OpenFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output. + /// + internal static string Output { + get { + return ResourceManager.GetString("Output", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Owner Password:. + /// + internal static string OwnerPasswordLabel { + get { + return ResourceManager.GetString("OwnerPasswordLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Page Size. + /// + internal static string PageSizeFormTitle { + get { + return ResourceManager.GetString("PageSizeFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page size:. + /// + internal static string PageSizeLabel { + get { + return ResourceManager.GetString("PageSizeLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paper source:. + /// + internal static string PaperSourceLabel { + get { + return ResourceManager.GetString("PaperSourceLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + internal static string Paste { + get { + return ResourceManager.GetString("Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string PdfPasswordFormTitle { + get { + return ResourceManager.GetString("PdfPasswordFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PDF Settings. + /// + internal static string PdfSettings { + get { + return ResourceManager.GetString("PdfSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PDF Settings. + /// + internal static string PdfSettingsFormTitle { + get { + return ResourceManager.GetString("PdfSettingsFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Placeholders. + /// + internal static string Placeholders { + get { + return ResourceManager.GetString("Placeholders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Placeholders. + /// + internal static string PlaceholdersFormTitle { + get { + return ResourceManager.GetString("PlaceholdersFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Post-processing. + /// + internal static string PostProcessing { + get { + return ResourceManager.GetString("PostProcessing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Press Start when ready.. + /// + internal static string PressStartWhenReady { + get { + return ResourceManager.GetString("PressStartWhenReady", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preview. + /// + internal static string PreviewFormTitle { + get { + return ResourceManager.GetString("PreviewFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preview:. + /// + internal static string PreviewLabel { + get { + return ResourceManager.GetString("PreviewLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous. + /// + internal static string Previous { + get { + return ResourceManager.GetString("Previous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print. + /// + internal static string Print { + get { + return ResourceManager.GetString("Print", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Profile:. + /// + internal static string ProfileLabel { + get { + return ResourceManager.GetString("ProfileLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Profiles. + /// + internal static string Profiles { + get { + return ResourceManager.GetString("Profiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Profiles. + /// + internal static string ProfilesFormTitle { + get { + return ResourceManager.GetString("ProfilesFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prompt for file path. + /// + internal static string PromptForFilePath { + get { + return ResourceManager.GetString("PromptForFilePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Provider. + /// + internal static string Provider { + get { + return ResourceManager.GetString("Provider", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ready for scan {0}.. + /// + internal static string ReadyForScan { + get { + return ResourceManager.GetString("ReadyForScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recover. + /// + internal static string Recover { + get { + return ResourceManager.GetString("Recover", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recover Scanned Images. + /// + internal static string RecoverFormTitle { + get { + return ResourceManager.GetString("RecoverFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} image(s) scanned on {1} at {2} may not have been saved, and are recoverable. Do you want to recover them?. + /// + internal static string RecoverPrompt { + get { + return ResourceManager.GetString("RecoverPrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo. + /// + internal static string Redo { + get { + return ResourceManager.GetString("Redo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redo {0}. + /// + internal static string RedoFormat { + get { + return ResourceManager.GetString("RedoFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remember these settings. + /// + internal static string RememberTheseSettings { + get { + return ResourceManager.GetString("RememberTheseSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reorder. + /// + internal static string Reorder { + get { + return ResourceManager.GetString("Reorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset. + /// + internal static string Reset { + get { + return ResourceManager.GetString("Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resolution:. + /// + internal static string ResolutionLabel { + get { + return ResourceManager.GetString("ResolutionLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restore Defaults. + /// + internal static string RestoreDefaults { + get { + return ResourceManager.GetString("RestoreDefaults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reverse. + /// + internal static string Reverse { + get { + return ResourceManager.GetString("Reverse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reverse All. + /// + internal static string ReverseAll { + get { + return ResourceManager.GetString("ReverseAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reverse Selected. + /// + internal static string ReverseSelected { + get { + return ResourceManager.GetString("ReverseSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Revert. + /// + internal static string Revert { + get { + return ResourceManager.GetString("Revert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rotate. + /// + internal static string Rotate { + get { + return ResourceManager.GetString("Rotate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rotate Left. + /// + internal static string RotateLeft { + get { + return ResourceManager.GetString("RotateLeft", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rotate Right. + /// + internal static string RotateRight { + get { + return ResourceManager.GetString("RotateRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Run in Background. + /// + internal static string RunInBackground { + get { + return ResourceManager.GetString("RunInBackground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatically run OCR after scanning. + /// + internal static string RunOcrAfterScanning { + get { + return ResourceManager.GetString("RunOcrAfterScanning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SANE Driver. + /// + internal static string SaneDriver { + get { + return ResourceManager.GetString("SaneDriver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save All. + /// + internal static string SaveAll { + get { + return ResourceManager.GetString("SaveAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save All as Images. + /// + internal static string SaveAllAsImages { + get { + return ResourceManager.GetString("SaveAllAsImages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save All as PDF. + /// + internal static string SaveAllAsPdf { + get { + return ResourceManager.GetString("SaveAllAsPdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to "Save" button default action:. + /// + internal static string SaveButtonDefaultAction { + get { + return ResourceManager.GetString("SaveButtonDefaultAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Images. + /// + internal static string SaveImages { + get { + return ResourceManager.GetString("SaveImages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save PDF. + /// + internal static string SavePdf { + get { + return ResourceManager.GetString("SavePdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Selected. + /// + internal static string SaveSelected { + get { + return ResourceManager.GetString("SaveSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Selected as Images. + /// + internal static string SaveSelectedAsImages { + get { + return ResourceManager.GetString("SaveSelectedAsImages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Selected as PDF. + /// + internal static string SaveSelectedAsPdf { + get { + return ResourceManager.GetString("SaveSelectedAsPdf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save to multiple files. + /// + internal static string SaveToMultipleFiles { + get { + return ResourceManager.GetString("SaveToMultipleFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save to a single file. + /// + internal static string SaveToSingleFile { + get { + return ResourceManager.GetString("SaveToSingleFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scale:. + /// + internal static string ScaleLabel { + get { + return ResourceManager.GetString("ScaleLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scale With Window. + /// + internal static string ScaleWithWindow { + get { + return ResourceManager.GetString("ScaleWithWindow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scan. + /// + internal static string Scan { + get { + return ResourceManager.GetString("Scan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to "Scan" button default action:. + /// + internal static string ScanButtonDefaultAction { + get { + return ResourceManager.GetString("ScanButtonDefaultAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to "Scan" menu changes default profile. + /// + internal static string ScanChangesDefaultProfile { + get { + return ResourceManager.GetString("ScanChangesDefaultProfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scan Configuration. + /// + internal static string ScanConfig { + get { + return ResourceManager.GetString("ScanConfig", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scanner Sharing. + /// + internal static string ScannerSharing { + get { + return ResourceManager.GetString("ScannerSharing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scanner Sharing. + /// + internal static string ScannerSharingFormTitle { + get { + return ResourceManager.GetString("ScannerSharingFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shared scanners can be used from other computers on the local network by selecting "ESCL Driver" in the other computer's NAPS2 profile settings.. + /// + internal static string ScannerSharingIntro { + get { + return ResourceManager.GetString("ScannerSharingIntro", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Second (00-59). + /// + internal static string Second2Digit { + get { + return ResourceManager.GetString("Second2Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select. + /// + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select All. + /// + internal static string SelectAll { + get { + return ResourceManager.GetString("SelectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select Source. + /// + internal static string SelectSource { + get { + return ResourceManager.GetString("SelectSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Separate files by Patch-T. + /// + internal static string SeparateByPatchT { + get { + return ResourceManager.GetString("SeparateByPatchT", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set Default. + /// + internal static string SetDefault { + get { + return ResourceManager.GetString("SetDefault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings. + /// + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings. + /// + internal static string SettingsFormTitle { + get { + return ResourceManager.GetString("SettingsFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share. + /// + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share even when NAPS2 is closed. + /// + internal static string ShareAsService { + get { + return ResourceManager.GetString("ShareAsService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shared Scanner Settings. + /// + internal static string SharedDeviceFormTitle { + get { + return ResourceManager.GetString("SharedDeviceFormTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sharpen. + /// + internal static string Sharpen { + get { + return ResourceManager.GetString("Sharpen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show. + /// + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show native TWAIN progress. + /// internal static string ShowNativeTwainProgress { get { return ResourceManager.GetString("ShowNativeTwainProgress", resourceCulture); } } + + /// + /// Looks up a localized string similar to Show page numbers. + /// + internal static string ShowPageNumbers { + get { + return ResourceManager.GetString("ShowPageNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show "Profiles" toolbar. + /// + internal static string ShowProfilesToolbar { + get { + return ResourceManager.GetString("ShowProfilesToolbar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only allow a single NAPS2 instance. + /// + internal static string SingleInstanceDesc { + get { + return ResourceManager.GetString("SingleInstanceDesc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single page files. + /// + internal static string SinglePageFiles { + get { + return ResourceManager.GetString("SinglePageFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single scan. + /// + internal static string SingleScan { + get { + return ResourceManager.GetString("SingleScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Skip save prompt. + /// + internal static string SkipSavePrompt { + get { + return ResourceManager.GetString("SkipSavePrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Split. + /// + internal static string Split { + get { + return ResourceManager.GetString("Split", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start. + /// + internal static string Start { + get { + return ResourceManager.GetString("Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stretch to page size. + /// + internal static string StretchToPageSize { + get { + return ResourceManager.GetString("StretchToPageSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subject:. + /// + internal static string SubjectLabel { + get { + return ResourceManager.GetString("SubjectLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Technical Details. + /// + internal static string TechnicalDetails { + get { + return ResourceManager.GetString("TechnicalDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tiff Options. + /// + internal static string TiffOptions { + get { + return ResourceManager.GetString("TiffOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time between scans (seconds):. + /// + internal static string TimeBetweenScansLabel { + get { + return ResourceManager.GetString("TimeBetweenScansLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title:. + /// + internal static string TitleLabel { + get { + return ResourceManager.GetString("TitleLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tools. + /// + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TWAIN Driver. + /// + internal static string TwainDriver { + get { + return ResourceManager.GetString("TwainDriver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Twain Implementation:. + /// + internal static string TwainImplLabel { + get { + return ResourceManager.GetString("TwainImplLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo. + /// + internal static string Undo { + get { + return ResourceManager.GetString("Undo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undo {0}. + /// + internal static string UndoFormat { + get { + return ResourceManager.GetString("UndoFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use native UI. + /// + internal static string UseNativeUi { + get { + return ResourceManager.GetString("UseNativeUi", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use predefined settings. + /// + internal static string UsePredefinedSettings { + get { + return ResourceManager.GetString("UsePredefinedSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Password:. + /// + internal static string UserPasswordLabel { + get { + return ResourceManager.GetString("UserPasswordLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View. + /// + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for authorization.... + /// + internal static string WaitingForAuthorization { + get { + return ResourceManager.GetString("WaitingForAuthorization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for TWAIN to complete.... + /// + internal static string WaitingForTwain { + get { + return ResourceManager.GetString("WaitingForTwain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to White Threshold. + /// + internal static string WhiteThreshold { + get { + return ResourceManager.GetString("WhiteThreshold", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to WIA Driver. + /// + internal static string WiaDriver { + get { + return ResourceManager.GetString("WiaDriver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wia Version:. + /// + internal static string WiaVersionLabel { + get { + return ResourceManager.GetString("WiaVersionLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} of {1}. + /// + internal static string XOfY { + get { + return ResourceManager.GetString("XOfY", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Year (00-99). + /// + internal static string Year2Digit { + get { + return ResourceManager.GetString("Year2Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Year. + /// + internal static string Year4Digit { + get { + return ResourceManager.GetString("Year4Digit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom. + /// + internal static string Zoom { + get { + return ResourceManager.GetString("Zoom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom Actual. + /// + internal static string ZoomActual { + get { + return ResourceManager.GetString("ZoomActual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom In. + /// + internal static string ZoomIn { + get { + return ResourceManager.GetString("ZoomIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom Out. + /// + internal static string ZoomOut { + get { + return ResourceManager.GetString("ZoomOut", resourceCulture); + } + } } } diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.resx b/NAPS2.Lib/Lang/Resources/UiStrings.resx index 91e2e46df..b6cc03583 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.resx @@ -888,4 +888,10 @@ Show native TWAIN progress + + Split + + + Combine + \ No newline at end of file