From 0d55bd19977f731cebfcca6335c371605f992163 Mon Sep 17 00:00:00 2001 From: Christian Clavet Date: Mon, 8 Sep 2025 20:39:18 -0400 Subject: [PATCH 1/2] Added an option, to export the current content of NAPS2 when doing batch output. Also. Disable the LOAD option when the option is selected. --- .../EtoForms/Desktop/DesktopController.cs | 5 + NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs | 37 +- .../Lang/Resources/UiStrings.Designer.cs | 618 +++++++++--------- NAPS2.Lib/Lang/Resources/UiStrings.af.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.ar.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.bg.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.bs.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.ca.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.cs.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.da.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.de.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.el.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.es.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.et.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.fa.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.fi.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.fr.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.he.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.hi.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.hr.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.hu.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.id.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.it.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.ja.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.ko.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.lt.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.lv.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.nb.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.nl.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.nn.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.pl.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.pt-BR.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.pt-PT.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.resx | 3 + NAPS2.Lib/Lang/Resources/UiStrings.ro.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.ru.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.si.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.sk.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.sl.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.sq.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.sr.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.sv.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.th.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.tr.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.uk.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.vi.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.zh-CN.resx | 108 +++ NAPS2.Lib/Lang/Resources/UiStrings.zh-TW.resx | 108 +++ NAPS2.Lib/NAPS2.Lib.csproj | 12 + NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs | 25 +- NAPS2.Lib/Scan/Batch/BatchScanType.cs | 1 + 51 files changed, 5142 insertions(+), 311 deletions(-) diff --git a/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs b/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs index 2048650d9e..7835087efe 100644 --- a/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs +++ b/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs @@ -103,6 +103,11 @@ public async Task Initialize() ShowUpdatePrompt(); } + public UiImageList GetImages() + { + return _imageList; + } + private void ShowDonationOrReviewPrompt() { // Show a review prompt after a month of using the Microsoft Store msix version diff --git a/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs b/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs index 18b5aba06c..5126415945 100644 --- a/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs +++ b/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs @@ -30,6 +30,7 @@ public class BatchScanForm : EtoDialogBase private readonly Button _start = new() { Text = UiStrings.Start }; private readonly Button _cancel = new() { Text = UiStrings.Cancel }; private readonly DropDownWidget _profile = new(); + private readonly RadioButton _UseExistingImages; private readonly RadioButton _singleScan; private readonly RadioButton _multipleScansPrompt; private readonly RadioButton _multipleScansDelay; @@ -63,6 +64,7 @@ public BatchScanForm(Naps2Config config, DialogHelper dialogHelper, IProfileMana _batchScanPerformer = batchScanPerformer; _errorOutput = errorOutput; _singleScan = new RadioButton { Text = UiStrings.SingleScan }; + _UseExistingImages = new RadioButton(_singleScan) { Text = UiStrings.UseExistingImages }; _multipleScansPrompt = new RadioButton(_singleScan) { Text = UiStrings.MultipleScansPrompt }; _multipleScansDelay = new RadioButton(_singleScan) { Text = UiStrings.MultipleScansDelay }; _load = new RadioButton { Text = UiStrings.LoadIn }; @@ -76,9 +78,12 @@ public BatchScanForm(Naps2Config config, DialogHelper dialogHelper, IProfileMana _start.Click += Start; _cancel.Click += Cancel; + _UseExistingImages.CheckedChanged += UpdateExisting; _multipleScansDelay.CheckedChanged += UpdateVisibility; _saveToSingleFile.CheckedChanged += UpdateVisibility; + _saveToSingleFile.CheckedChanged += UpdateExisting; _saveToMultipleFiles.CheckedChanged += UpdateVisibility; + _saveToMultipleFiles.CheckedChanged += UpdateExisting; _userTransact = Config.User.BeginTransaction(); _transactionConfig = Config.WithTransaction(_userTransact); @@ -100,9 +105,23 @@ private void UpdateVisibility(object? sender, EventArgs e) _delayVis.IsVisible = _multipleScansDelay.Checked; _multiVis.IsVisible = _saveToMultipleFiles.Checked; _fileVis.IsVisible = _saveToSingleFile.Checked || _saveToMultipleFiles.Checked; + LayoutController.Invalidate(); } + private void UpdateExisting(object? sender, EventArgs e) + { + if (_UseExistingImages.Checked) + { + _load.Enabled = false; + _load.Checked = false; + } + else + { + _load.Enabled = true; + } + } + public Action ImageCallback { get; set; } = null!; private ActionCommand NewProfileCommand { get; } @@ -129,12 +148,14 @@ protected override void BuildLayout() L.GroupBox( UiStrings.ScanConfig, L.Column( + _UseExistingImages, C.Label(UiStrings.ProfileLabel), L.Row( _profile.AsControl().Scale().NaturalWidth(100), C.Button(EditProfileCommand, ButtonImagePosition.Overlay).Width(30), C.Button(NewProfileCommand, ButtonImagePosition.Overlay).Width(30) ), + _singleScan, _multipleScansPrompt, _multipleScansDelay, @@ -172,6 +193,16 @@ private void UpdateUIFromSettings() { UpdateProfiles(); + _UseExistingImages.Checked = _transactionConfig.Get(c => c.BatchSettings.ScanType) == BatchScanType.UseExistingImages; + if (_UseExistingImages.Checked) + { + _load.Enabled = false; + _load.Checked = false; + } + else + { + _load.Enabled = true; + } _singleScan.Checked = _transactionConfig.Get(c => c.BatchSettings.ScanType) == BatchScanType.Single; _multipleScansPrompt.Checked = _transactionConfig.Get(c => c.BatchSettings.ScanType) == BatchScanType.MultipleWithPrompt; @@ -195,6 +226,7 @@ private void UpdateUIFromSettings() _separateByPatchT.Checked = _transactionConfig.Get(c => c.BatchSettings.SaveSeparator) == SaveSeparator.PatchT; _filePath.Text = _transactionConfig.Get(c => c.BatchSettings.SavePath); + } private bool ValidateSettings() @@ -212,8 +244,11 @@ private bool ValidateSettings() ? BatchScanType.MultipleWithPrompt : _multipleScansDelay.Checked ? BatchScanType.MultipleWithDelay + : _UseExistingImages.Checked ? BatchScanType.UseExistingImages : BatchScanType.Single); + + if (_multipleScansDelay.Checked) { if (!int.TryParse(_numberOfScans.Text, out int scanCount) || scanCount <= 0) @@ -330,7 +365,7 @@ private void EnableDisableSettings(bool enabled) { var controls = new Control[] { - _profile.AsControl(), _singleScan, _multipleScansPrompt, _multipleScansDelay, _numberOfScans, + _profile.AsControl(), _UseExistingImages, _singleScan, _multipleScansPrompt, _multipleScansDelay, _numberOfScans, _timeBetweenScans, _load, _saveToSingleFile, _saveToMultipleFiles, _filePerScan, _filePerPage, _separateByPatchT, _moreInfo }; diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs b/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs index 80cb3e39d0..384dc269d5 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs +++ b/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs @@ -1,9 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. +// Ce code a été généré par un outil. +// Version du runtime :4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. // //------------------------------------------------------------------------------ @@ -12,13 +13,13 @@ namespace NAPS2.Lang.Resources { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. /// - // 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")] + // Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder + // à l'aide d'un outil, tel que ResGen ou Visual Studio. + // Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen + // avec l'option /str ou régénérez votre projet VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class UiStrings { @@ -32,7 +33,7 @@ internal UiStrings() { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Retourne l'instance ResourceManager mise en cache utilisée par cette classe. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { @@ -46,8 +47,8 @@ internal UiStrings() { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Remplace la propriété CurrentUICulture du thread actuel pour toutes + /// les recherches de ressources à l'aide de cette classe de ressource fortement typée. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { @@ -60,7 +61,7 @@ internal UiStrings() { } /// - /// Looks up a localized string similar to About. + /// Recherche une chaîne localisée semblable à About. /// internal static string About { get { @@ -69,7 +70,7 @@ internal static string About { } /// - /// Looks up a localized string similar to About. + /// Recherche une chaîne localisée semblable à About. /// internal static string AboutFormTitle { get { @@ -78,7 +79,7 @@ internal static string AboutFormTitle { } /// - /// Looks up a localized string similar to Action. + /// Recherche une chaîne localisée semblable à Action. /// internal static string Action { get { @@ -87,7 +88,7 @@ internal static string Action { } /// - /// Looks up a localized string similar to Advanced. + /// Recherche une chaîne localisée semblable à Advanced. /// internal static string Advanced { get { @@ -96,7 +97,7 @@ internal static string Advanced { } /// - /// Looks up a localized string similar to Advanced Profile Settings. + /// Recherche une chaîne localisée semblable à Advanced Profile Settings. /// internal static string AdvancedProfileFormTitle { get { @@ -105,7 +106,7 @@ internal static string AdvancedProfileFormTitle { } /// - /// Looks up a localized string similar to Allow Annotations. + /// Recherche une chaîne localisée semblable à Allow Annotations. /// internal static string AllowAnnotations { get { @@ -114,7 +115,7 @@ internal static string AllowAnnotations { } /// - /// Looks up a localized string similar to Allow Content Copying. + /// Recherche une chaîne localisée semblable à Allow Content Copying. /// internal static string AllowContentCopying { get { @@ -123,7 +124,7 @@ internal static string AllowContentCopying { } /// - /// Looks up a localized string similar to Allow Content Copying for Accessibility. + /// Recherche une chaîne localisée semblable à Allow Content Copying for Accessibility. /// internal static string AllowContentCopyingForAccessibility { get { @@ -132,7 +133,7 @@ internal static string AllowContentCopyingForAccessibility { } /// - /// Looks up a localized string similar to Allow Document Assembly. + /// Recherche une chaîne localisée semblable à Allow Document Assembly. /// internal static string AllowDocumentAssembly { get { @@ -141,7 +142,7 @@ internal static string AllowDocumentAssembly { } /// - /// Looks up a localized string similar to Allow Document Modification. + /// Recherche une chaîne localisée semblable à Allow Document Modification. /// internal static string AllowDocumentModification { get { @@ -150,7 +151,7 @@ internal static string AllowDocumentModification { } /// - /// Looks up a localized string similar to Allow Form Filling. + /// Recherche une chaîne localisée semblable à Allow Form Filling. /// internal static string AllowFormFilling { get { @@ -159,7 +160,7 @@ internal static string AllowFormFilling { } /// - /// Looks up a localized string similar to Allow Full Quality Printing. + /// Recherche une chaîne localisée semblable à Allow Full Quality Printing. /// internal static string AllowFullQualityPrinting { get { @@ -168,7 +169,7 @@ internal static string AllowFullQualityPrinting { } /// - /// Looks up a localized string similar to Allow Printing. + /// Recherche une chaîne localisée semblable à Allow Printing. /// internal static string AllowPrinting { get { @@ -177,7 +178,7 @@ internal static string AllowPrinting { } /// - /// Looks up a localized string similar to Alternate Deinterleave. + /// Recherche une chaîne localisée semblable à Alternate Deinterleave. /// internal static string AltDeinterleave { get { @@ -186,7 +187,7 @@ internal static string AltDeinterleave { } /// - /// Looks up a localized string similar to Alternate Interleave. + /// Recherche une chaîne localisée semblable à Alternate Interleave. /// internal static string AltInterleave { get { @@ -195,7 +196,7 @@ internal static string AltInterleave { } /// - /// Looks up a localized string similar to Always Ask. + /// Recherche une chaîne localisée semblable à Always Ask. /// internal static string AlwaysAsk { get { @@ -204,7 +205,7 @@ internal static string AlwaysAsk { } /// - /// Looks up a localized string similar to Apple Driver. + /// Recherche une chaîne localisée semblable à Apple Driver. /// internal static string AppleDriver { get { @@ -213,7 +214,7 @@ internal static string AppleDriver { } /// - /// Looks up a localized string similar to Application. + /// Recherche une chaîne localisée semblable à Application. /// internal static string Application { get { @@ -222,7 +223,7 @@ internal static string Application { } /// - /// Looks up a localized string similar to Apply to all {0} selected images. + /// Recherche une chaîne localisée semblable à Apply to all {0} selected images. /// internal static string ApplyToSelected { get { @@ -231,7 +232,7 @@ internal static string ApplyToSelected { } /// - /// Looks up a localized string similar to Assign. + /// Recherche une chaîne localisée semblable à Assign. /// internal static string Assign { get { @@ -240,7 +241,7 @@ internal static string Assign { } /// - /// Looks up a localized string similar to Attachment Name:. + /// Recherche une chaîne localisée semblable à Attachment Name:. /// internal static string AttachmentNameLabel { get { @@ -249,7 +250,7 @@ internal static string AttachmentNameLabel { } /// - /// Looks up a localized string similar to Authorize. + /// Recherche une chaîne localisée semblable à Authorize. /// internal static string AuthorizeFormTitle { get { @@ -258,7 +259,7 @@ internal static string AuthorizeFormTitle { } /// - /// Looks up a localized string similar to Author:. + /// Recherche une chaîne localisée semblable à Author:. /// internal static string AuthorLabel { get { @@ -267,7 +268,7 @@ internal static string AuthorLabel { } /// - /// Looks up a localized string similar to Auto-incrementing number (1 digits). + /// Recherche une chaîne localisée semblable à Auto-incrementing number (1 digits). /// internal static string AutoIncrementing1Digit { get { @@ -276,7 +277,7 @@ internal static string AutoIncrementing1Digit { } /// - /// Looks up a localized string similar to Auto-incrementing number (2 digits). + /// Recherche une chaîne localisée semblable à Auto-incrementing number (2 digits). /// internal static string AutoIncrementing2Digit { get { @@ -285,7 +286,7 @@ internal static string AutoIncrementing2Digit { } /// - /// Looks up a localized string similar to Auto-incrementing number (3 digits). + /// Recherche une chaîne localisée semblable à Auto-incrementing number (3 digits). /// internal static string AutoIncrementing3Digit { get { @@ -294,7 +295,7 @@ internal static string AutoIncrementing3Digit { } /// - /// Looks up a localized string similar to Auto-incrementing number (4 digits). + /// Recherche une chaîne localisée semblable à Auto-incrementing number (4 digits). /// internal static string AutoIncrementing4Digit { get { @@ -303,7 +304,7 @@ internal static string AutoIncrementing4Digit { } /// - /// Looks up a localized string similar to Auto Save Settings. + /// Recherche une chaîne localisée semblable à Auto Save Settings. /// internal static string AutoSaveSettings { get { @@ -312,7 +313,7 @@ internal static string AutoSaveSettings { } /// - /// Looks up a localized string similar to Auto Save Settings. + /// Recherche une chaîne localisée semblable à Auto Save Settings. /// internal static string AutoSaveSettingsFormTitle { get { @@ -321,7 +322,7 @@ internal static string AutoSaveSettingsFormTitle { } /// - /// Looks up a localized string similar to Next Scan. + /// Recherche une chaîne localisée semblable à Next Scan. /// internal static string BatchPromptFormTitle { get { @@ -330,7 +331,7 @@ internal static string BatchPromptFormTitle { } /// - /// Looks up a localized string similar to Batch Scan. + /// Recherche une chaîne localisée semblable à Batch Scan. /// internal static string BatchScan { get { @@ -339,7 +340,7 @@ internal static string BatchScan { } /// - /// Looks up a localized string similar to Batch Scan. + /// Recherche une chaîne localisée semblable à Batch Scan. /// internal static string BatchScanFormTitle { get { @@ -348,7 +349,7 @@ internal static string BatchScanFormTitle { } /// - /// Looks up a localized string similar to Bit depth:. + /// Recherche une chaîne localisée semblable à Bit depth:. /// internal static string BitDepthLabel { get { @@ -357,7 +358,7 @@ internal static string BitDepthLabel { } /// - /// Looks up a localized string similar to Black and White. + /// Recherche une chaîne localisée semblable à Black and White. /// internal static string BlackAndWhite { get { @@ -366,7 +367,7 @@ internal static string BlackAndWhite { } /// - /// Looks up a localized string similar to Blank Pages. + /// Recherche une chaîne localisée semblable à Blank Pages. /// internal static string BlankPages { get { @@ -375,7 +376,7 @@ internal static string BlankPages { } /// - /// Looks up a localized string similar to Brightness / Contrast. + /// Recherche une chaîne localisée semblable à Brightness / Contrast. /// internal static string BrightnessContrast { get { @@ -384,7 +385,7 @@ internal static string BrightnessContrast { } /// - /// Looks up a localized string similar to Apply brightness/contrast after scan. + /// Recherche une chaîne localisée semblable à Apply brightness/contrast after scan. /// internal static string BrightnessContrastAfterScan { get { @@ -393,7 +394,7 @@ internal static string BrightnessContrastAfterScan { } /// - /// Looks up a localized string similar to Brightness:. + /// Recherche une chaîne localisée semblable à Brightness:. /// internal static string BrightnessLabel { get { @@ -402,7 +403,7 @@ internal static string BrightnessLabel { } /// - /// Looks up a localized string similar to Cancel. + /// Recherche une chaîne localisée semblable à Cancel. /// internal static string Cancel { get { @@ -411,7 +412,7 @@ internal static string Cancel { } /// - /// Looks up a localized string similar to Can't find your scanner? Read about limitations of the NAPS2 Flatpak.. + /// Recherche une chaîne localisée semblable à Can't find your scanner? Read about limitations of the NAPS2 Flatpak.. /// internal static string CantFindScannerFlatpak { get { @@ -420,7 +421,7 @@ internal static string CantFindScannerFlatpak { } /// - /// Looks up a localized string similar to Change. + /// Recherche une chaîne localisée semblable à Change. /// internal static string Change { get { @@ -429,7 +430,7 @@ internal static string Change { } /// - /// Looks up a localized string similar to Check for updates. + /// Recherche une chaîne localisée semblable à Check for updates. /// internal static string CheckForUpdates { get { @@ -438,7 +439,7 @@ internal static string CheckForUpdates { } /// - /// Looks up a localized string similar to Choose device. + /// Recherche une chaîne localisée semblable à Choose device. /// internal static string ChooseDevice { get { @@ -447,7 +448,7 @@ internal static string ChooseDevice { } /// - /// Looks up a localized string similar to Clear. + /// Recherche une chaîne localisée semblable à Clear. /// internal static string Clear { get { @@ -456,7 +457,7 @@ internal static string Clear { } /// - /// Looks up a localized string similar to Clear images after saving. + /// Recherche une chaîne localisée semblable à Clear images after saving. /// internal static string ClearAfterSaving { get { @@ -465,7 +466,7 @@ internal static string ClearAfterSaving { } /// - /// Looks up a localized string similar to Clear All. + /// Recherche une chaîne localisée semblable à Clear All. /// internal static string ClearAll { get { @@ -474,7 +475,7 @@ internal static string ClearAll { } /// - /// Looks up a localized string similar to Combine. + /// Recherche une chaîne localisée semblable à Combine. /// internal static string Combine { get { @@ -483,7 +484,7 @@ internal static string Combine { } /// - /// Looks up a localized string similar to Compatibility. + /// Recherche une chaîne localisée semblable à Compatibility. /// internal static string Compatibility { get { @@ -492,7 +493,7 @@ internal static string Compatibility { } /// - /// Looks up a localized string similar to Compression:. + /// Recherche une chaîne localisée semblable à Compression:. /// internal static string CompressionLabel { get { @@ -501,7 +502,7 @@ internal static string CompressionLabel { } /// - /// Looks up a localized string similar to Are you sure you want to stop sharing {0}?. + /// Recherche une chaîne localisée semblable à Are you sure you want to stop sharing {0}?. /// internal static string ConfirmDeleteSharedDevice { get { @@ -510,7 +511,7 @@ internal static string ConfirmDeleteSharedDevice { } /// - /// Looks up a localized string similar to Connect. + /// Recherche une chaîne localisée semblable à Connect. /// internal static string Connect { get { @@ -519,7 +520,7 @@ internal static string Connect { } /// - /// Looks up a localized string similar to Connection error.. + /// Recherche une chaîne localisée semblable à Connection error.. /// internal static string ConnectionError { get { @@ -528,7 +529,7 @@ internal static string ConnectionError { } /// - /// Looks up a localized string similar to Contrast:. + /// Recherche une chaîne localisée semblable à Contrast:. /// internal static string ContrastLabel { get { @@ -537,7 +538,7 @@ internal static string ContrastLabel { } /// - /// Looks up a localized string similar to Copy. + /// Recherche une chaîne localisée semblable à Copy. /// internal static string Copy { get { @@ -546,7 +547,7 @@ internal static string Copy { } /// - /// Looks up a localized string similar to Copyright {0} NAPS2 Contributors. + /// Recherche une chaîne localisée semblable à Copyright {0} NAPS2 Contributors. /// internal static string CopyrightFormat { get { @@ -555,7 +556,7 @@ internal static string CopyrightFormat { } /// - /// Looks up a localized string similar to Coverage Threshold. + /// Recherche une chaîne localisée semblable à Coverage Threshold. /// internal static string CoverageThreshold { get { @@ -564,7 +565,7 @@ internal static string CoverageThreshold { } /// - /// Looks up a localized string similar to Crop. + /// Recherche une chaîne localisée semblable à Crop. /// internal static string Crop { get { @@ -573,7 +574,7 @@ internal static string Crop { } /// - /// Looks up a localized string similar to Crop to page size. + /// Recherche une chaîne localisée semblable à Crop to page size. /// internal static string CropToPageSize { get { @@ -582,7 +583,7 @@ internal static string CropToPageSize { } /// - /// Looks up a localized string similar to Custom Rotation. + /// Recherche une chaîne localisée semblable à Custom Rotation. /// internal static string CustomRotation { get { @@ -591,7 +592,7 @@ internal static string CustomRotation { } /// - /// Looks up a localized string similar to Day (01-31). + /// Recherche une chaîne localisée semblable à Day (01-31). /// internal static string Day2Digit { get { @@ -600,7 +601,7 @@ internal static string Day2Digit { } /// - /// Looks up a localized string similar to Default. + /// Recherche une chaîne localisée semblable à Default. /// internal static string Default { get { @@ -609,7 +610,7 @@ internal static string Default { } /// - /// Looks up a localized string similar to Default File Path:. + /// Recherche une chaîne localisée semblable à Default File Path:. /// internal static string DefaultFilePathLabel { get { @@ -618,7 +619,7 @@ internal static string DefaultFilePathLabel { } /// - /// Looks up a localized string similar to Deinterleave. + /// Recherche une chaîne localisée semblable à Deinterleave. /// internal static string Deinterleave { get { @@ -627,7 +628,7 @@ internal static string Deinterleave { } /// - /// Looks up a localized string similar to Delete. + /// Recherche une chaîne localisée semblable à Delete. /// internal static string Delete { get { @@ -636,7 +637,7 @@ internal static string Delete { } /// - /// Looks up a localized string similar to Deskew. + /// Recherche une chaîne localisée semblable à Deskew. /// internal static string Deskew { get { @@ -645,7 +646,7 @@ internal static string Deskew { } /// - /// Looks up a localized string similar to Deskew scanned pages. + /// Recherche une chaîne localisée semblable à Deskew scanned pages. /// internal static string DeskewScannedPages { get { @@ -654,7 +655,7 @@ internal static string DeskewScannedPages { } /// - /// Looks up a localized string similar to 1 device found.. + /// Recherche une chaîne localisée semblable à 1 device found.. /// internal static string DeviceFoundSingular { get { @@ -663,7 +664,7 @@ internal static string DeviceFoundSingular { } /// - /// Looks up a localized string similar to Device:. + /// Recherche une chaîne localisée semblable à Device:. /// internal static string DeviceLabel { get { @@ -672,7 +673,7 @@ internal static string DeviceLabel { } /// - /// Looks up a localized string similar to {0} devices found.. + /// Recherche une chaîne localisée semblable à {0} devices found.. /// internal static string DevicesFound { get { @@ -681,7 +682,7 @@ internal static string DevicesFound { } /// - /// Looks up a localized string similar to Dimensions. + /// Recherche une chaîne localisée semblable à Dimensions. /// internal static string Dimensions { get { @@ -690,7 +691,7 @@ internal static string Dimensions { } /// - /// Looks up a localized string similar to Display name:. + /// Recherche une chaîne localisée semblable à Display name:. /// internal static string DisplayNameLabel { get { @@ -699,7 +700,7 @@ internal static string DisplayNameLabel { } /// - /// Looks up a localized string similar to Document Correction. + /// Recherche une chaîne localisée semblable à Document Correction. /// internal static string DocumentCorrection { get { @@ -708,7 +709,7 @@ internal static string DocumentCorrection { } /// - /// Looks up a localized string similar to Donate. + /// Recherche une chaîne localisée semblable à Donate. /// internal static string Donate { get { @@ -717,7 +718,7 @@ internal static string Donate { } /// - /// Looks up a localized string similar to Done. + /// Recherche une chaîne localisée semblable à Done. /// internal static string Done { get { @@ -726,7 +727,7 @@ internal static string Done { } /// - /// Looks up a localized string similar to Download. + /// Recherche une chaîne localisée semblable à Download. /// internal static string Download { get { @@ -735,7 +736,7 @@ internal static string Download { } /// - /// Looks up a localized string similar to Download Progress. + /// Recherche une chaîne localisée semblable à Download Progress. /// internal static string DownloadProgressFormTitle { get { @@ -744,7 +745,7 @@ internal static string DownloadProgressFormTitle { } /// - /// Looks up a localized string similar to Dpi. + /// Recherche une chaîne localisée semblable à Dpi. /// internal static string Dpi { get { @@ -753,7 +754,7 @@ internal static string Dpi { } /// - /// Looks up a localized string similar to Edit. + /// Recherche une chaîne localisée semblable à Edit. /// internal static string Edit { get { @@ -762,7 +763,7 @@ internal static string Edit { } /// - /// Looks up a localized string similar to Profile Settings. + /// Recherche une chaîne localisée semblable à Profile Settings. /// internal static string EditProfileFormTitle { get { @@ -771,7 +772,7 @@ internal static string EditProfileFormTitle { } /// - /// Looks up a localized string similar to Edit with.... + /// Recherche une chaîne localisée semblable à Edit with.... /// internal static string EditWith { get { @@ -780,7 +781,7 @@ internal static string EditWith { } /// - /// Looks up a localized string similar to Edit with {0}. + /// Recherche une chaîne localisée semblable à Edit with {0}. /// internal static string EditWithAppName { get { @@ -789,7 +790,7 @@ internal static string EditWithAppName { } /// - /// Looks up a localized string similar to Edit with.... + /// Recherche une chaîne localisée semblable à Edit with.... /// internal static string EditWithFormTitle { get { @@ -798,7 +799,7 @@ internal static string EditWithFormTitle { } /// - /// Looks up a localized string similar to .... + /// Recherche une chaîne localisée semblable à .... /// internal static string Ellipsis { get { @@ -807,7 +808,7 @@ internal static string Ellipsis { } /// - /// Looks up a localized string similar to Email All. + /// Recherche une chaîne localisée semblable à Email All. /// internal static string EmailAll { get { @@ -816,7 +817,7 @@ internal static string EmailAll { } /// - /// Looks up a localized string similar to Email All as PDF. + /// Recherche une chaîne localisée semblable à Email All as PDF. /// internal static string EmailAllAsPdf { get { @@ -825,7 +826,7 @@ internal static string EmailAllAsPdf { } /// - /// Looks up a localized string similar to Email PDF. + /// Recherche une chaîne localisée semblable à Email PDF. /// internal static string EmailPdf { get { @@ -834,7 +835,7 @@ internal static string EmailPdf { } /// - /// Looks up a localized string similar to Choose Email Provider. + /// Recherche une chaîne localisée semblable à Choose Email Provider. /// internal static string EmailProviderFormTitle { get { @@ -843,7 +844,7 @@ internal static string EmailProviderFormTitle { } /// - /// Looks up a localized string similar to Email Selected. + /// Recherche une chaîne localisée semblable à Email Selected. /// internal static string EmailSelected { get { @@ -852,7 +853,7 @@ internal static string EmailSelected { } /// - /// Looks up a localized string similar to Email Selected as PDF. + /// Recherche une chaîne localisée semblable à Email Selected as PDF. /// internal static string EmailSelectedAsPdf { get { @@ -861,7 +862,7 @@ internal static string EmailSelectedAsPdf { } /// - /// Looks up a localized string similar to Email Settings. + /// Recherche une chaîne localisée semblable à Email Settings. /// internal static string EmailSettings { get { @@ -870,7 +871,7 @@ internal static string EmailSettings { } /// - /// Looks up a localized string similar to Email Settings. + /// Recherche une chaîne localisée semblable à Email Settings. /// internal static string EmailSettingsFormTitle { get { @@ -879,7 +880,7 @@ internal static string EmailSettingsFormTitle { } /// - /// Looks up a localized string similar to Enable Auto Save. + /// Recherche une chaîne localisée semblable à Enable Auto Save. /// internal static string EnableAutoSave { get { @@ -888,7 +889,7 @@ internal static string EnableAutoSave { } /// - /// Looks up a localized string similar to Enable debug logging. + /// Recherche une chaîne localisée semblable à Enable debug logging. /// internal static string EnableDebugLogging { get { @@ -897,7 +898,7 @@ internal static string EnableDebugLogging { } /// - /// Looks up a localized string similar to The following file is encrypted and requires a password to open:. + /// Recherche une chaîne localisée semblable à The following file is encrypted and requires a password to open:. /// internal static string EncryptedFilePrompt { get { @@ -906,7 +907,7 @@ internal static string EncryptedFilePrompt { } /// - /// Looks up a localized string similar to Encryption. + /// Recherche une chaîne localisée semblable à Encryption. /// internal static string Encryption { get { @@ -915,7 +916,7 @@ internal static string Encryption { } /// - /// Looks up a localized string similar to Encrypt PDF. + /// Recherche une chaîne localisée semblable à Encrypt PDF. /// internal static string EncryptPdf { get { @@ -924,7 +925,7 @@ internal static string EncryptPdf { } /// - /// Looks up a localized string similar to Error. + /// Recherche une chaîne localisée semblable à Error. /// internal static string ErrorFormTitle { get { @@ -933,7 +934,7 @@ internal static string ErrorFormTitle { } /// - /// Looks up a localized string similar to Error starting application {0}. + /// Recherche une chaîne localisée semblable à Error starting application {0}. /// internal static string ErrorStartingApplication { get { @@ -942,7 +943,7 @@ internal static string ErrorStartingApplication { } /// - /// Looks up a localized string similar to ESCL Driver. + /// Recherche une chaîne localisée semblable à ESCL Driver. /// internal static string EsclDriver { get { @@ -951,7 +952,7 @@ internal static string EsclDriver { } /// - /// Looks up a localized string similar to ESCL Network Driver. + /// Recherche une chaîne localisée semblable à ESCL Network Driver. /// internal static string EsclNetworkDriver { get { @@ -960,7 +961,7 @@ internal static string EsclNetworkDriver { } /// - /// Looks up a localized string similar to ESCL USB Driver. + /// Recherche une chaîne localisée semblable à ESCL USB Driver. /// internal static string EsclUsbDriver { get { @@ -969,7 +970,7 @@ internal static string EsclUsbDriver { } /// - /// Looks up a localized string similar to Estimated download size: {0} MB. + /// Recherche une chaîne localisée semblable à Estimated download size: {0} MB. /// internal static string EstimatedDownloadSize { get { @@ -978,7 +979,7 @@ internal static string EstimatedDownloadSize { } /// - /// Looks up a localized string similar to Exclude blank pages. + /// Recherche une chaîne localisée semblable à Exclude blank pages. /// internal static string ExcludeBlankPages { get { @@ -987,7 +988,7 @@ internal static string ExcludeBlankPages { } /// - /// Looks up a localized string similar to File Name:. + /// Recherche une chaîne localisée semblable à File Name:. /// internal static string FileNameLabel { get { @@ -996,7 +997,7 @@ internal static string FileNameLabel { } /// - /// Looks up a localized string similar to File Path:. + /// Recherche une chaîne localisée semblable à File Path:. /// internal static string FilePathLabel { get { @@ -1005,7 +1006,7 @@ internal static string FilePathLabel { } /// - /// Looks up a localized string similar to Flip. + /// Recherche une chaîne localisée semblable à Flip. /// internal static string Flip { get { @@ -1014,7 +1015,7 @@ internal static string Flip { } /// - /// Looks up a localized string similar to Flip back sides of duplex pages. + /// Recherche une chaîne localisée semblable à Flip back sides of duplex pages. /// internal static string FlipBackSidesOfDuplexPages { get { @@ -1023,7 +1024,7 @@ internal static string FlipBackSidesOfDuplexPages { } /// - /// Looks up a localized string similar to Flip duplexed pages. + /// Recherche une chaîne localisée semblable à Flip duplexed pages. /// internal static string FlipDuplexedPages { get { @@ -1032,7 +1033,7 @@ internal static string FlipDuplexedPages { } /// - /// Looks up a localized string similar to Get more languages. + /// Recherche une chaîne localisée semblable à Get more languages. /// internal static string GetMoreLanguages { get { @@ -1041,7 +1042,7 @@ internal static string GetMoreLanguages { } /// - /// Looks up a localized string similar to Horizontal align:. + /// Recherche une chaîne localisée semblable à Horizontal align:. /// internal static string HorizontalAlignLabel { get { @@ -1050,7 +1051,7 @@ internal static string HorizontalAlignLabel { } /// - /// Looks up a localized string similar to Hour (0-23). + /// Recherche une chaîne localisée semblable à Hour (0-23). /// internal static string Hour2Digit { get { @@ -1059,7 +1060,7 @@ internal static string Hour2Digit { } /// - /// Looks up a localized string similar to Hue / Saturation. + /// Recherche une chaîne localisée semblable à Hue / Saturation. /// internal static string HueSaturation { get { @@ -1068,7 +1069,7 @@ internal static string HueSaturation { } /// - /// Looks up a localized string similar to Icons from:. + /// Recherche une chaîne localisée semblable à Icons from:. /// internal static string IconsFrom { get { @@ -1077,7 +1078,7 @@ internal static string IconsFrom { } /// - /// Looks up a localized string similar to Image. + /// Recherche une chaîne localisée semblable à Image. /// internal static string Image { get { @@ -1086,7 +1087,7 @@ internal static string Image { } /// - /// Looks up a localized string similar to Image Quality. + /// Recherche une chaîne localisée semblable à Image Quality. /// internal static string ImageQuality { get { @@ -1095,7 +1096,7 @@ internal static string ImageQuality { } /// - /// Looks up a localized string similar to Image Settings. + /// Recherche une chaîne localisée semblable à Image Settings. /// internal static string ImageSettings { get { @@ -1104,7 +1105,7 @@ internal static string ImageSettings { } /// - /// Looks up a localized string similar to Image Settings. + /// Recherche une chaîne localisée semblable à Image Settings. /// internal static string ImageSettingsFormTitle { get { @@ -1113,7 +1114,7 @@ internal static string ImageSettingsFormTitle { } /// - /// Looks up a localized string similar to Import. + /// Recherche une chaîne localisée semblable à Import. /// internal static string Import { get { @@ -1122,7 +1123,7 @@ internal static string Import { } /// - /// Looks up a localized string similar to Interface. + /// Recherche une chaîne localisée semblable à Interface. /// internal static string Interface { get { @@ -1131,7 +1132,7 @@ internal static string Interface { } /// - /// Looks up a localized string similar to Interleave. + /// Recherche une chaîne localisée semblable à Interleave. /// internal static string Interleave { get { @@ -1140,7 +1141,7 @@ internal static string Interleave { } /// - /// Looks up a localized string similar to IP/Host. + /// Recherche une chaîne localisée semblable à IP/Host. /// internal static string IpHost { get { @@ -1149,7 +1150,7 @@ internal static string IpHost { } /// - /// Looks up a localized string similar to Jpeg Quality. + /// Recherche une chaîne localisée semblable à Jpeg Quality. /// internal static string JpegQuality { get { @@ -1158,7 +1159,7 @@ internal static string JpegQuality { } /// - /// Looks up a localized string similar to For high JPEG qualities (80+), also increase Image Quality in your profile for best results.. + /// Recherche une chaîne localisée semblable à For high JPEG qualities (80+), also increase Image Quality in your profile for best results.. /// internal static string JpegQualityHelp { get { @@ -1167,7 +1168,7 @@ internal static string JpegQualityHelp { } /// - /// Looks up a localized string similar to Keep images across sessions. + /// Recherche une chaîne localisée semblable à Keep images across sessions. /// internal static string KeepSession { get { @@ -1176,7 +1177,7 @@ internal static string KeepSession { } /// - /// Looks up a localized string similar to Keyboard Shortcuts. + /// Recherche une chaîne localisée semblable à Keyboard Shortcuts. /// internal static string KeyboardShortcuts { get { @@ -1185,7 +1186,7 @@ internal static string KeyboardShortcuts { } /// - /// Looks up a localized string similar to Keyboard Shortcuts. + /// Recherche une chaîne localisée semblable à Keyboard Shortcuts. /// internal static string KeyboardShortcutsFormTitle { get { @@ -1194,7 +1195,7 @@ internal static string KeyboardShortcutsFormTitle { } /// - /// Looks up a localized string similar to Keywords:. + /// Recherche une chaîne localisée semblable à Keywords:. /// internal static string KeywordsLabel { get { @@ -1203,7 +1204,7 @@ internal static string KeywordsLabel { } /// - /// Looks up a localized string similar to Language. + /// Recherche une chaîne localisée semblable à Language. /// internal static string Language { get { @@ -1212,7 +1213,7 @@ internal static string Language { } /// - /// Looks up a localized string similar to Load images into NAPS2. + /// Recherche une chaîne localisée semblable à Load images into NAPS2. /// internal static string LoadIn { get { @@ -1221,7 +1222,7 @@ internal static string LoadIn { } /// - /// Looks up a localized string similar to Make PDFs searchable using OCR. + /// Recherche une chaîne localisée semblable à Make PDFs searchable using OCR. /// internal static string MakePdfsSearchable { get { @@ -1230,7 +1231,7 @@ internal static string MakePdfsSearchable { } /// - /// Looks up a localized string similar to Manual IP. + /// Recherche une chaîne localisée semblable à Manual IP. /// internal static string ManualIp { get { @@ -1239,7 +1240,7 @@ internal static string ManualIp { } /// - /// Looks up a localized string similar to Manual IP. + /// Recherche une chaîne localisée semblable à Manual IP. /// internal static string ManualIpFormTitle { get { @@ -1248,7 +1249,7 @@ internal static string ManualIpFormTitle { } /// - /// Looks up a localized string similar to Maximum quality (large files). + /// Recherche une chaîne localisée semblable à Maximum quality (large files). /// internal static string MaximumQuality { get { @@ -1257,7 +1258,7 @@ internal static string MaximumQuality { } /// - /// Looks up a localized string similar to Metadata. + /// Recherche une chaîne localisée semblable à Metadata. /// internal static string Metadata { get { @@ -1266,7 +1267,7 @@ internal static string Metadata { } /// - /// Looks up a localized string similar to Minute (00-59). + /// Recherche une chaîne localisée semblable à Minute (00-59). /// internal static string Minute2Digit { get { @@ -1275,7 +1276,7 @@ internal static string Minute2Digit { } /// - /// Looks up a localized string similar to Month (01-12). + /// Recherche une chaîne localisée semblable à Month (01-12). /// internal static string Month2Digit { get { @@ -1284,7 +1285,7 @@ internal static string Month2Digit { } /// - /// Looks up a localized string similar to More info. + /// Recherche une chaîne localisée semblable à More info. /// internal static string MoreInfo { get { @@ -1293,7 +1294,7 @@ internal static string MoreInfo { } /// - /// Looks up a localized string similar to Move Down. + /// Recherche une chaîne localisée semblable à Move Down. /// internal static string MoveDown { get { @@ -1302,7 +1303,7 @@ internal static string MoveDown { } /// - /// Looks up a localized string similar to Move Up. + /// Recherche une chaîne localisée semblable à Move Up. /// internal static string MoveUp { get { @@ -1311,7 +1312,7 @@ internal static string MoveUp { } /// - /// Looks up a localized string similar to Multiple Languages.... + /// Recherche une chaîne localisée semblable à Multiple Languages.... /// internal static string MultipleLanguages { get { @@ -1320,7 +1321,7 @@ internal static string MultipleLanguages { } /// - /// Looks up a localized string similar to Multiple scans (fixed delay between scans). + /// Recherche une chaîne localisée semblable à Multiple scans (fixed delay between scans). /// internal static string MultipleScansDelay { get { @@ -1329,7 +1330,7 @@ internal static string MultipleScansDelay { } /// - /// Looks up a localized string similar to Multiple scans (prompt between scans). + /// Recherche une chaîne localisée semblable à Multiple scans (prompt between scans). /// internal static string MultipleScansPrompt { get { @@ -1338,7 +1339,7 @@ internal static string MultipleScansPrompt { } /// - /// Looks up a localized string similar to Name (optional). + /// Recherche une chaîne localisée semblable à Name (optional). /// internal static string NameOptional { get { @@ -1347,7 +1348,7 @@ internal static string NameOptional { } /// - /// Looks up a localized string similar to NAPS2. + /// Recherche une chaîne localisée semblable à NAPS2. /// internal static string Naps2 { get { @@ -1356,7 +1357,7 @@ internal static string Naps2 { } /// - /// Looks up a localized string similar to Not Another PDF Scanner. + /// Recherche une chaîne localisée semblable à Not Another PDF Scanner. /// internal static string Naps2FullName { get { @@ -1365,7 +1366,7 @@ internal static string Naps2FullName { } /// - /// Looks up a localized string similar to NAPS2 - {0}. + /// Recherche une chaîne localisée semblable à NAPS2 - {0}. /// internal static string Naps2TitleFormat { get { @@ -1374,7 +1375,7 @@ internal static string Naps2TitleFormat { } /// - /// Looks up a localized string similar to New. + /// Recherche une chaîne localisée semblable à New. /// internal static string New { get { @@ -1383,7 +1384,7 @@ internal static string New { } /// - /// Looks up a localized string similar to New Profile. + /// Recherche une chaîne localisée semblable à New Profile. /// internal static string NewProfile { get { @@ -1392,7 +1393,7 @@ internal static string NewProfile { } /// - /// Looks up a localized string similar to Next. + /// Recherche une chaîne localisée semblable à Next. /// internal static string Next { get { @@ -1401,7 +1402,7 @@ internal static string Next { } /// - /// Looks up a localized string similar to No devices found.. + /// Recherche une chaîne localisée semblable à No devices found.. /// internal static string NoDevicesFound { get { @@ -1410,7 +1411,7 @@ internal static string NoDevicesFound { } /// - /// Looks up a localized string similar to Not Now. + /// Recherche une chaîne localisée semblable à Not Now. /// internal static string NotNow { get { @@ -1419,7 +1420,7 @@ internal static string NotNow { } /// - /// Looks up a localized string similar to Number of scans:. + /// Recherche une chaîne localisée semblable à Number of scans:. /// internal static string NumberOfScansLabel { get { @@ -1428,7 +1429,7 @@ internal static string NumberOfScansLabel { } /// - /// Looks up a localized string similar to OCR. + /// Recherche une chaîne localisée semblable à OCR. /// internal static string Ocr { get { @@ -1437,7 +1438,7 @@ internal static string Ocr { } /// - /// Looks up a localized string similar to OCR Download. + /// Recherche une chaîne localisée semblable à OCR Download. /// internal static string OcrDownloadFormTitle { get { @@ -1446,7 +1447,7 @@ internal static string OcrDownloadFormTitle { } /// - /// Looks up a localized string similar to Using OCR requires you to download each language you want to scan.. + /// Recherche une chaîne localisée semblable à Using OCR requires you to download each language you want to scan.. /// internal static string OcrDownloadSummaryText { get { @@ -1455,7 +1456,7 @@ internal static string OcrDownloadSummaryText { } /// - /// Looks up a localized string similar to OCR language:. + /// Recherche une chaîne localisée semblable à OCR language:. /// internal static string OcrLanguageLabel { get { @@ -1464,7 +1465,7 @@ internal static string OcrLanguageLabel { } /// - /// Looks up a localized string similar to OCR mode:. + /// Recherche une chaîne localisée semblable à OCR mode:. /// internal static string OcrModeLabel { get { @@ -1473,7 +1474,7 @@ internal static string OcrModeLabel { } /// - /// Looks up a localized string similar to Multiple Languages. + /// Recherche une chaîne localisée semblable à Multiple Languages. /// internal static string OcrMultiLangFormTitle { get { @@ -1482,7 +1483,7 @@ internal static string OcrMultiLangFormTitle { } /// - /// Looks up a localized string similar to Fix white balance and remove noise. + /// Recherche une chaîne localisée semblable à Fix white balance and remove noise. /// internal static string OcrPreProcessing { get { @@ -1491,7 +1492,7 @@ internal static string OcrPreProcessing { } /// - /// Looks up a localized string similar to Select one or more languages:. + /// Recherche une chaîne localisée semblable à Select one or more languages:. /// internal static string OcrSelectLanguageLabel { get { @@ -1500,7 +1501,7 @@ internal static string OcrSelectLanguageLabel { } /// - /// Looks up a localized string similar to OCR Setup. + /// Recherche une chaîne localisée semblable à OCR Setup. /// internal static string OcrSetupFormTitle { get { @@ -1509,7 +1510,7 @@ internal static string OcrSetupFormTitle { } /// - /// Looks up a localized string similar to Offset width based on alignment (WIA). + /// Recherche une chaîne localisée semblable à Offset width based on alignment (WIA). /// internal static string OffsetWidth { get { @@ -1518,7 +1519,7 @@ internal static string OffsetWidth { } /// - /// Looks up a localized string similar to OK. + /// Recherche une chaîne localisée semblable à OK. /// internal static string OK { get { @@ -1527,7 +1528,7 @@ internal static string OK { } /// - /// Looks up a localized string similar to One file per page. + /// Recherche une chaîne localisée semblable à One file per page. /// internal static string OneFilePerPage { get { @@ -1536,7 +1537,7 @@ internal static string OneFilePerPage { } /// - /// Looks up a localized string similar to One file per scan. + /// Recherche une chaîne localisée semblable à One file per scan. /// internal static string OneFilePerScan { get { @@ -1545,7 +1546,7 @@ internal static string OneFilePerScan { } /// - /// Looks up a localized string similar to Open Folder. + /// Recherche une chaîne localisée semblable à Open Folder. /// internal static string OpenFolder { get { @@ -1554,7 +1555,7 @@ internal static string OpenFolder { } /// - /// Looks up a localized string similar to Output. + /// Recherche une chaîne localisée semblable à Output. /// internal static string Output { get { @@ -1563,7 +1564,7 @@ internal static string Output { } /// - /// Looks up a localized string similar to Owner Password:. + /// Recherche une chaîne localisée semblable à Owner Password:. /// internal static string OwnerPasswordLabel { get { @@ -1572,7 +1573,7 @@ internal static string OwnerPasswordLabel { } /// - /// Looks up a localized string similar to Custom Page Size. + /// Recherche une chaîne localisée semblable à Custom Page Size. /// internal static string PageSizeFormTitle { get { @@ -1581,7 +1582,7 @@ internal static string PageSizeFormTitle { } /// - /// Looks up a localized string similar to Page size:. + /// Recherche une chaîne localisée semblable à Page size:. /// internal static string PageSizeLabel { get { @@ -1590,7 +1591,7 @@ internal static string PageSizeLabel { } /// - /// Looks up a localized string similar to Paper source:. + /// Recherche une chaîne localisée semblable à Paper source:. /// internal static string PaperSourceLabel { get { @@ -1599,7 +1600,7 @@ internal static string PaperSourceLabel { } /// - /// Looks up a localized string similar to Paste. + /// Recherche une chaîne localisée semblable à Paste. /// internal static string Paste { get { @@ -1608,7 +1609,7 @@ internal static string Paste { } /// - /// Looks up a localized string similar to Password. + /// Recherche une chaîne localisée semblable à Password. /// internal static string PdfPasswordFormTitle { get { @@ -1617,7 +1618,7 @@ internal static string PdfPasswordFormTitle { } /// - /// Looks up a localized string similar to PDF Settings. + /// Recherche une chaîne localisée semblable à PDF Settings. /// internal static string PdfSettings { get { @@ -1626,7 +1627,7 @@ internal static string PdfSettings { } /// - /// Looks up a localized string similar to PDF Settings. + /// Recherche une chaîne localisée semblable à PDF Settings. /// internal static string PdfSettingsFormTitle { get { @@ -1635,7 +1636,7 @@ internal static string PdfSettingsFormTitle { } /// - /// Looks up a localized string similar to Placeholders. + /// Recherche une chaîne localisée semblable à Placeholders. /// internal static string Placeholders { get { @@ -1644,7 +1645,7 @@ internal static string Placeholders { } /// - /// Looks up a localized string similar to Placeholders. + /// Recherche une chaîne localisée semblable à Placeholders. /// internal static string PlaceholdersFormTitle { get { @@ -1653,7 +1654,7 @@ internal static string PlaceholdersFormTitle { } /// - /// Looks up a localized string similar to Port. + /// Recherche une chaîne localisée semblable à Port. /// internal static string Port { get { @@ -1662,7 +1663,7 @@ internal static string Port { } /// - /// Looks up a localized string similar to Post-processing. + /// Recherche une chaîne localisée semblable à Post-processing. /// internal static string PostProcessing { get { @@ -1671,7 +1672,7 @@ internal static string PostProcessing { } /// - /// Looks up a localized string similar to Pre-emptively run OCR after scanning. + /// Recherche une chaîne localisée semblable à Pre-emptively run OCR after scanning. /// internal static string PreemptivelyOcrAfterScanning { get { @@ -1680,7 +1681,7 @@ internal static string PreemptivelyOcrAfterScanning { } /// - /// Looks up a localized string similar to Press Start when ready.. + /// Recherche une chaîne localisée semblable à Press Start when ready.. /// internal static string PressStartWhenReady { get { @@ -1689,7 +1690,7 @@ internal static string PressStartWhenReady { } /// - /// Looks up a localized string similar to Preview. + /// Recherche une chaîne localisée semblable à Preview. /// internal static string PreviewFormTitle { get { @@ -1698,7 +1699,7 @@ internal static string PreviewFormTitle { } /// - /// Looks up a localized string similar to Preview:. + /// Recherche une chaîne localisée semblable à Preview:. /// internal static string PreviewLabel { get { @@ -1707,7 +1708,7 @@ internal static string PreviewLabel { } /// - /// Looks up a localized string similar to Previous. + /// Recherche une chaîne localisée semblable à Previous. /// internal static string Previous { get { @@ -1716,7 +1717,7 @@ internal static string Previous { } /// - /// Looks up a localized string similar to Print. + /// Recherche une chaîne localisée semblable à Print. /// internal static string Print { get { @@ -1725,7 +1726,7 @@ internal static string Print { } /// - /// Looks up a localized string similar to Profile:. + /// Recherche une chaîne localisée semblable à Profile:. /// internal static string ProfileLabel { get { @@ -1734,7 +1735,7 @@ internal static string ProfileLabel { } /// - /// Looks up a localized string similar to Profiles. + /// Recherche une chaîne localisée semblable à Profiles. /// internal static string Profiles { get { @@ -1743,7 +1744,7 @@ internal static string Profiles { } /// - /// Looks up a localized string similar to Profiles. + /// Recherche une chaîne localisée semblable à Profiles. /// internal static string ProfilesFormTitle { get { @@ -1752,7 +1753,7 @@ internal static string ProfilesFormTitle { } /// - /// Looks up a localized string similar to Prompt for file path. + /// Recherche une chaîne localisée semblable à Prompt for file path. /// internal static string PromptForFilePath { get { @@ -1761,7 +1762,7 @@ internal static string PromptForFilePath { } /// - /// Looks up a localized string similar to Provider. + /// Recherche une chaîne localisée semblable à Provider. /// internal static string Provider { get { @@ -1770,7 +1771,7 @@ internal static string Provider { } /// - /// Looks up a localized string similar to Ready for scan {0}.. + /// Recherche une chaîne localisée semblable à Ready for scan {0}.. /// internal static string ReadyForScan { get { @@ -1779,7 +1780,7 @@ internal static string ReadyForScan { } /// - /// Looks up a localized string similar to Recover. + /// Recherche une chaîne localisée semblable à Recover. /// internal static string Recover { get { @@ -1788,7 +1789,7 @@ internal static string Recover { } /// - /// Looks up a localized string similar to Recover Scanned Images. + /// Recherche une chaîne localisée semblable à Recover Scanned Images. /// internal static string RecoverFormTitle { get { @@ -1797,7 +1798,7 @@ internal static string RecoverFormTitle { } /// - /// 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?. + /// Recherche une chaîne localisée semblable à {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 { @@ -1806,7 +1807,7 @@ internal static string RecoverPrompt { } /// - /// Looks up a localized string similar to Redo. + /// Recherche une chaîne localisée semblable à Redo. /// internal static string Redo { get { @@ -1815,7 +1816,7 @@ internal static string Redo { } /// - /// Looks up a localized string similar to Redo {0}. + /// Recherche une chaîne localisée semblable à Redo {0}. /// internal static string RedoFormat { get { @@ -1824,7 +1825,7 @@ internal static string RedoFormat { } /// - /// Looks up a localized string similar to Remember these settings. + /// Recherche une chaîne localisée semblable à Remember these settings. /// internal static string RememberTheseSettings { get { @@ -1833,7 +1834,7 @@ internal static string RememberTheseSettings { } /// - /// Looks up a localized string similar to Reorder. + /// Recherche une chaîne localisée semblable à Reorder. /// internal static string Reorder { get { @@ -1842,7 +1843,7 @@ internal static string Reorder { } /// - /// Looks up a localized string similar to Reset. + /// Recherche une chaîne localisée semblable à Reset. /// internal static string Reset { get { @@ -1851,7 +1852,7 @@ internal static string Reset { } /// - /// Looks up a localized string similar to Custom Resolution. + /// Recherche une chaîne localisée semblable à Custom Resolution. /// internal static string ResolutionFormTitle { get { @@ -1860,7 +1861,7 @@ internal static string ResolutionFormTitle { } /// - /// Looks up a localized string similar to Resolution:. + /// Recherche une chaîne localisée semblable à Resolution:. /// internal static string ResolutionLabel { get { @@ -1869,7 +1870,7 @@ internal static string ResolutionLabel { } /// - /// Looks up a localized string similar to Restore Defaults. + /// Recherche une chaîne localisée semblable à Restore Defaults. /// internal static string RestoreDefaults { get { @@ -1878,7 +1879,7 @@ internal static string RestoreDefaults { } /// - /// Looks up a localized string similar to Reverse. + /// Recherche une chaîne localisée semblable à Reverse. /// internal static string Reverse { get { @@ -1887,7 +1888,7 @@ internal static string Reverse { } /// - /// Looks up a localized string similar to Reverse All. + /// Recherche une chaîne localisée semblable à Reverse All. /// internal static string ReverseAll { get { @@ -1896,7 +1897,7 @@ internal static string ReverseAll { } /// - /// Looks up a localized string similar to Reverse Selected. + /// Recherche une chaîne localisée semblable à Reverse Selected. /// internal static string ReverseSelected { get { @@ -1905,7 +1906,7 @@ internal static string ReverseSelected { } /// - /// Looks up a localized string similar to Revert. + /// Recherche une chaîne localisée semblable à Revert. /// internal static string Revert { get { @@ -1914,7 +1915,7 @@ internal static string Revert { } /// - /// Looks up a localized string similar to Rotate. + /// Recherche une chaîne localisée semblable à Rotate. /// internal static string Rotate { get { @@ -1923,7 +1924,7 @@ internal static string Rotate { } /// - /// Looks up a localized string similar to Rotate Left. + /// Recherche une chaîne localisée semblable à Rotate Left. /// internal static string RotateLeft { get { @@ -1932,7 +1933,7 @@ internal static string RotateLeft { } /// - /// Looks up a localized string similar to Rotate Right. + /// Recherche une chaîne localisée semblable à Rotate Right. /// internal static string RotateRight { get { @@ -1941,7 +1942,7 @@ internal static string RotateRight { } /// - /// Looks up a localized string similar to Run in Background. + /// Recherche une chaîne localisée semblable à Run in Background. /// internal static string RunInBackground { get { @@ -1950,7 +1951,7 @@ internal static string RunInBackground { } /// - /// Looks up a localized string similar to Automatically run OCR after scanning. + /// Recherche une chaîne localisée semblable à Automatically run OCR after scanning. /// internal static string RunOcrAfterScanning { get { @@ -1959,7 +1960,7 @@ internal static string RunOcrAfterScanning { } /// - /// Looks up a localized string similar to SANE Driver. + /// Recherche une chaîne localisée semblable à SANE Driver. /// internal static string SaneDriver { get { @@ -1968,7 +1969,7 @@ internal static string SaneDriver { } /// - /// Looks up a localized string similar to Save. + /// Recherche une chaîne localisée semblable à Save. /// internal static string Save { get { @@ -1977,7 +1978,7 @@ internal static string Save { } /// - /// Looks up a localized string similar to Save All. + /// Recherche une chaîne localisée semblable à Save All. /// internal static string SaveAll { get { @@ -1986,7 +1987,7 @@ internal static string SaveAll { } /// - /// Looks up a localized string similar to Save All as Images. + /// Recherche une chaîne localisée semblable à Save All as Images. /// internal static string SaveAllAsImages { get { @@ -1995,7 +1996,7 @@ internal static string SaveAllAsImages { } /// - /// Looks up a localized string similar to Save All as PDF. + /// Recherche une chaîne localisée semblable à Save All as PDF. /// internal static string SaveAllAsPdf { get { @@ -2004,7 +2005,7 @@ internal static string SaveAllAsPdf { } /// - /// Looks up a localized string similar to "Save" button default action:. + /// Recherche une chaîne localisée semblable à "Save" button default action:. /// internal static string SaveButtonDefaultAction { get { @@ -2013,7 +2014,7 @@ internal static string SaveButtonDefaultAction { } /// - /// Looks up a localized string similar to Save Images. + /// Recherche une chaîne localisée semblable à Save Images. /// internal static string SaveImages { get { @@ -2022,7 +2023,7 @@ internal static string SaveImages { } /// - /// Looks up a localized string similar to Save PDF. + /// Recherche une chaîne localisée semblable à Save PDF. /// internal static string SavePdf { get { @@ -2031,7 +2032,7 @@ internal static string SavePdf { } /// - /// Looks up a localized string similar to Save Selected. + /// Recherche une chaîne localisée semblable à Save Selected. /// internal static string SaveSelected { get { @@ -2040,7 +2041,7 @@ internal static string SaveSelected { } /// - /// Looks up a localized string similar to Save Selected as Images. + /// Recherche une chaîne localisée semblable à Save Selected as Images. /// internal static string SaveSelectedAsImages { get { @@ -2049,7 +2050,7 @@ internal static string SaveSelectedAsImages { } /// - /// Looks up a localized string similar to Save Selected as PDF. + /// Recherche une chaîne localisée semblable à Save Selected as PDF. /// internal static string SaveSelectedAsPdf { get { @@ -2058,7 +2059,7 @@ internal static string SaveSelectedAsPdf { } /// - /// Looks up a localized string similar to Save to multiple files. + /// Recherche une chaîne localisée semblable à Save to multiple files. /// internal static string SaveToMultipleFiles { get { @@ -2067,7 +2068,7 @@ internal static string SaveToMultipleFiles { } /// - /// Looks up a localized string similar to Save to a single file. + /// Recherche une chaîne localisée semblable à Save to a single file. /// internal static string SaveToSingleFile { get { @@ -2076,7 +2077,7 @@ internal static string SaveToSingleFile { } /// - /// Looks up a localized string similar to Scale:. + /// Recherche une chaîne localisée semblable à Scale:. /// internal static string ScaleLabel { get { @@ -2085,7 +2086,7 @@ internal static string ScaleLabel { } /// - /// Looks up a localized string similar to Scale With Window. + /// Recherche une chaîne localisée semblable à Scale With Window. /// internal static string ScaleWithWindow { get { @@ -2094,7 +2095,7 @@ internal static string ScaleWithWindow { } /// - /// Looks up a localized string similar to Scan. + /// Recherche une chaîne localisée semblable à Scan. /// internal static string Scan { get { @@ -2103,7 +2104,7 @@ internal static string Scan { } /// - /// Looks up a localized string similar to "Scan" button default action:. + /// Recherche une chaîne localisée semblable à "Scan" button default action:. /// internal static string ScanButtonDefaultAction { get { @@ -2112,7 +2113,7 @@ internal static string ScanButtonDefaultAction { } /// - /// Looks up a localized string similar to "Scan" menu changes default profile. + /// Recherche une chaîne localisée semblable à "Scan" menu changes default profile. /// internal static string ScanChangesDefaultProfile { get { @@ -2121,7 +2122,7 @@ internal static string ScanChangesDefaultProfile { } /// - /// Looks up a localized string similar to Scan Configuration. + /// Recherche une chaîne localisée semblable à Scan Configuration. /// internal static string ScanConfig { get { @@ -2130,7 +2131,7 @@ internal static string ScanConfig { } /// - /// Looks up a localized string similar to Scanner Sharing. + /// Recherche une chaîne localisée semblable à Scanner Sharing. /// internal static string ScannerSharing { get { @@ -2139,7 +2140,7 @@ internal static string ScannerSharing { } /// - /// Looks up a localized string similar to Scanner Sharing. + /// Recherche une chaîne localisée semblable à Scanner Sharing. /// internal static string ScannerSharingFormTitle { get { @@ -2148,7 +2149,7 @@ internal static string ScannerSharingFormTitle { } /// - /// 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.. + /// Recherche une chaîne localisée semblable à 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 { @@ -2157,7 +2158,7 @@ internal static string ScannerSharingIntro { } /// - /// Looks up a localized string similar to Scan With Default Profile. + /// Recherche une chaîne localisée semblable à Scan With Default Profile. /// internal static string ScanWithDefaultProfile { get { @@ -2166,7 +2167,7 @@ internal static string ScanWithDefaultProfile { } /// - /// Looks up a localized string similar to Scan With New Profile. + /// Recherche une chaîne localisée semblable à Scan With New Profile. /// internal static string ScanWithNewProfile { get { @@ -2175,7 +2176,7 @@ internal static string ScanWithNewProfile { } /// - /// Looks up a localized string similar to Scan With Profile {0}. + /// Recherche une chaîne localisée semblable à Scan With Profile {0}. /// internal static string ScanWithProfile { get { @@ -2184,7 +2185,7 @@ internal static string ScanWithProfile { } /// - /// Looks up a localized string similar to Searching for devices.... + /// Recherche une chaîne localisée semblable à Searching for devices.... /// internal static string SearchingForDevices { get { @@ -2193,7 +2194,7 @@ internal static string SearchingForDevices { } /// - /// Looks up a localized string similar to Second (00-59). + /// Recherche une chaîne localisée semblable à Second (00-59). /// internal static string Second2Digit { get { @@ -2202,7 +2203,7 @@ internal static string Second2Digit { } /// - /// Looks up a localized string similar to Select. + /// Recherche une chaîne localisée semblable à Select. /// internal static string Select { get { @@ -2211,7 +2212,7 @@ internal static string Select { } /// - /// Looks up a localized string similar to Select All. + /// Recherche une chaîne localisée semblable à Select All. /// internal static string SelectAll { get { @@ -2220,7 +2221,7 @@ internal static string SelectAll { } /// - /// Looks up a localized string similar to Select Device. + /// Recherche une chaîne localisée semblable à Select Device. /// internal static string SelectDevice { get { @@ -2229,7 +2230,7 @@ internal static string SelectDevice { } /// - /// Looks up a localized string similar to Select Source. + /// Recherche une chaîne localisée semblable à Select Source. /// internal static string SelectSource { get { @@ -2238,7 +2239,7 @@ internal static string SelectSource { } /// - /// Looks up a localized string similar to Separate files by Patch-T. + /// Recherche une chaîne localisée semblable à Separate files by Patch-T. /// internal static string SeparateByPatchT { get { @@ -2247,7 +2248,7 @@ internal static string SeparateByPatchT { } /// - /// Looks up a localized string similar to Set Default. + /// Recherche une chaîne localisée semblable à Set Default. /// internal static string SetDefault { get { @@ -2256,7 +2257,7 @@ internal static string SetDefault { } /// - /// Looks up a localized string similar to Settings. + /// Recherche une chaîne localisée semblable à Settings. /// internal static string Settings { get { @@ -2265,7 +2266,7 @@ internal static string Settings { } /// - /// Looks up a localized string similar to Settings. + /// Recherche une chaîne localisée semblable à Settings. /// internal static string SettingsFormTitle { get { @@ -2274,7 +2275,7 @@ internal static string SettingsFormTitle { } /// - /// Looks up a localized string similar to Share. + /// Recherche une chaîne localisée semblable à Share. /// internal static string Share { get { @@ -2283,7 +2284,7 @@ internal static string Share { } /// - /// Looks up a localized string similar to Share even when NAPS2 is closed. + /// Recherche une chaîne localisée semblable à Share even when NAPS2 is closed. /// internal static string ShareAsService { get { @@ -2292,7 +2293,7 @@ internal static string ShareAsService { } /// - /// Looks up a localized string similar to Shared Scanner Settings. + /// Recherche une chaîne localisée semblable à Shared Scanner Settings. /// internal static string SharedDeviceFormTitle { get { @@ -2301,7 +2302,7 @@ internal static string SharedDeviceFormTitle { } /// - /// Looks up a localized string similar to Sharpen. + /// Recherche une chaîne localisée semblable à Sharpen. /// internal static string Sharpen { get { @@ -2310,7 +2311,7 @@ internal static string Sharpen { } /// - /// Looks up a localized string similar to Shortcut. + /// Recherche une chaîne localisée semblable à Shortcut. /// internal static string Shortcut { get { @@ -2319,7 +2320,7 @@ internal static string Shortcut { } /// - /// Looks up a localized string similar to Show. + /// Recherche une chaîne localisée semblable à Show. /// internal static string Show { get { @@ -2328,7 +2329,7 @@ internal static string Show { } /// - /// Looks up a localized string similar to Show native TWAIN progress. + /// Recherche une chaîne localisée semblable à Show native TWAIN progress. /// internal static string ShowNativeTwainProgress { get { @@ -2337,7 +2338,7 @@ internal static string ShowNativeTwainProgress { } /// - /// Looks up a localized string similar to Show page numbers. + /// Recherche une chaîne localisée semblable à Show page numbers. /// internal static string ShowPageNumbers { get { @@ -2346,7 +2347,7 @@ internal static string ShowPageNumbers { } /// - /// Looks up a localized string similar to Show "Profiles" toolbar. + /// Recherche une chaîne localisée semblable à Show "Profiles" toolbar. /// internal static string ShowProfilesToolbar { get { @@ -2355,7 +2356,7 @@ internal static string ShowProfilesToolbar { } /// - /// Looks up a localized string similar to Only allow a single NAPS2 instance. + /// Recherche une chaîne localisée semblable à Only allow a single NAPS2 instance. /// internal static string SingleInstanceDesc { get { @@ -2364,7 +2365,7 @@ internal static string SingleInstanceDesc { } /// - /// Looks up a localized string similar to Single page files. + /// Recherche une chaîne localisée semblable à Single page files. /// internal static string SinglePageFiles { get { @@ -2373,7 +2374,7 @@ internal static string SinglePageFiles { } /// - /// Looks up a localized string similar to Single scan. + /// Recherche une chaîne localisée semblable à Single scan. /// internal static string SingleScan { get { @@ -2382,7 +2383,7 @@ internal static string SingleScan { } /// - /// Looks up a localized string similar to Skip save prompt. + /// Recherche une chaîne localisée semblable à Skip save prompt. /// internal static string SkipSavePrompt { get { @@ -2391,7 +2392,7 @@ internal static string SkipSavePrompt { } /// - /// Looks up a localized string similar to Split. + /// Recherche une chaîne localisée semblable à Split. /// internal static string Split { get { @@ -2400,7 +2401,7 @@ internal static string Split { } /// - /// Looks up a localized string similar to Start. + /// Recherche une chaîne localisée semblable à Start. /// internal static string Start { get { @@ -2409,7 +2410,7 @@ internal static string Start { } /// - /// Looks up a localized string similar to Stop Scanner Sharing. + /// Recherche une chaîne localisée semblable à Stop Scanner Sharing. /// internal static string StopScannerSharing { get { @@ -2418,7 +2419,7 @@ internal static string StopScannerSharing { } /// - /// Looks up a localized string similar to Stretch to page size. + /// Recherche une chaîne localisée semblable à Stretch to page size. /// internal static string StretchToPageSize { get { @@ -2427,7 +2428,7 @@ internal static string StretchToPageSize { } /// - /// Looks up a localized string similar to Subject:. + /// Recherche une chaîne localisée semblable à Subject:. /// internal static string SubjectLabel { get { @@ -2436,7 +2437,7 @@ internal static string SubjectLabel { } /// - /// Looks up a localized string similar to Technical Details. + /// Recherche une chaîne localisée semblable à Technical Details. /// internal static string TechnicalDetails { get { @@ -2445,7 +2446,7 @@ internal static string TechnicalDetails { } /// - /// Looks up a localized string similar to Theme:. + /// Recherche une chaîne localisée semblable à Theme:. /// internal static string ThemeLabel { get { @@ -2454,7 +2455,7 @@ internal static string ThemeLabel { } /// - /// Looks up a localized string similar to Tiff Options. + /// Recherche une chaîne localisée semblable à Tiff Options. /// internal static string TiffOptions { get { @@ -2463,7 +2464,7 @@ internal static string TiffOptions { } /// - /// Looks up a localized string similar to Time between scans (seconds):. + /// Recherche une chaîne localisée semblable à Time between scans (seconds):. /// internal static string TimeBetweenScansLabel { get { @@ -2472,7 +2473,7 @@ internal static string TimeBetweenScansLabel { } /// - /// Looks up a localized string similar to Title:. + /// Recherche une chaîne localisée semblable à Title:. /// internal static string TitleLabel { get { @@ -2481,7 +2482,7 @@ internal static string TitleLabel { } /// - /// Looks up a localized string similar to Sidebar. + /// Recherche une chaîne localisée semblable à Sidebar. /// internal static string ToggleSidebar { get { @@ -2490,7 +2491,7 @@ internal static string ToggleSidebar { } /// - /// Looks up a localized string similar to Tools. + /// Recherche une chaîne localisée semblable à Tools. /// internal static string Tools { get { @@ -2499,7 +2500,7 @@ internal static string Tools { } /// - /// Looks up a localized string similar to TWAIN Driver. + /// Recherche une chaîne localisée semblable à TWAIN Driver. /// internal static string TwainDriver { get { @@ -2508,7 +2509,7 @@ internal static string TwainDriver { } /// - /// Looks up a localized string similar to Twain Implementation:. + /// Recherche une chaîne localisée semblable à Twain Implementation:. /// internal static string TwainImplLabel { get { @@ -2517,7 +2518,7 @@ internal static string TwainImplLabel { } /// - /// Looks up a localized string similar to Unassign. + /// Recherche une chaîne localisée semblable à Unassign. /// internal static string Unassign { get { @@ -2526,7 +2527,7 @@ internal static string Unassign { } /// - /// Looks up a localized string similar to Undo. + /// Recherche une chaîne localisée semblable à Undo. /// internal static string Undo { get { @@ -2535,7 +2536,7 @@ internal static string Undo { } /// - /// Looks up a localized string similar to Undo {0}. + /// Recherche une chaîne localisée semblable à Undo {0}. /// internal static string UndoFormat { get { @@ -2544,7 +2545,16 @@ internal static string UndoFormat { } /// - /// Looks up a localized string similar to Use native UI. + /// Recherche une chaîne localisée semblable à Use existing NAPS2 images. + /// + internal static string UseExistingImages { + get { + return ResourceManager.GetString("UseExistingImages", resourceCulture); + } + } + + /// + /// Recherche une chaîne localisée semblable à Use native UI. /// internal static string UseNativeUi { get { @@ -2553,7 +2563,7 @@ internal static string UseNativeUi { } /// - /// Looks up a localized string similar to Use predefined settings. + /// Recherche une chaîne localisée semblable à Use predefined settings. /// internal static string UsePredefinedSettings { get { @@ -2562,7 +2572,7 @@ internal static string UsePredefinedSettings { } /// - /// Looks up a localized string similar to User Password:. + /// Recherche une chaîne localisée semblable à User Password:. /// internal static string UserPasswordLabel { get { @@ -2571,7 +2581,7 @@ internal static string UserPasswordLabel { } /// - /// Looks up a localized string similar to View. + /// Recherche une chaîne localisée semblable à View. /// internal static string View { get { @@ -2580,7 +2590,7 @@ internal static string View { } /// - /// Looks up a localized string similar to Waiting for authorization.... + /// Recherche une chaîne localisée semblable à Waiting for authorization.... /// internal static string WaitingForAuthorization { get { @@ -2589,7 +2599,7 @@ internal static string WaitingForAuthorization { } /// - /// Looks up a localized string similar to Waiting for TWAIN to complete.... + /// Recherche une chaîne localisée semblable à Waiting for TWAIN to complete.... /// internal static string WaitingForTwain { get { @@ -2598,7 +2608,7 @@ internal static string WaitingForTwain { } /// - /// Looks up a localized string similar to White Threshold. + /// Recherche une chaîne localisée semblable à White Threshold. /// internal static string WhiteThreshold { get { @@ -2607,7 +2617,7 @@ internal static string WhiteThreshold { } /// - /// Looks up a localized string similar to WIA Driver. + /// Recherche une chaîne localisée semblable à WIA Driver. /// internal static string WiaDriver { get { @@ -2616,7 +2626,7 @@ internal static string WiaDriver { } /// - /// Looks up a localized string similar to Wia Version:. + /// Recherche une chaîne localisée semblable à Wia Version:. /// internal static string WiaVersionLabel { get { @@ -2625,7 +2635,7 @@ internal static string WiaVersionLabel { } /// - /// Looks up a localized string similar to {0} of {1}. + /// Recherche une chaîne localisée semblable à {0} of {1}. /// internal static string XOfY { get { @@ -2634,7 +2644,7 @@ internal static string XOfY { } /// - /// Looks up a localized string similar to Year (00-99). + /// Recherche une chaîne localisée semblable à Year (00-99). /// internal static string Year2Digit { get { @@ -2643,7 +2653,7 @@ internal static string Year2Digit { } /// - /// Looks up a localized string similar to Year. + /// Recherche une chaîne localisée semblable à Year. /// internal static string Year4Digit { get { @@ -2652,7 +2662,7 @@ internal static string Year4Digit { } /// - /// Looks up a localized string similar to Zoom. + /// Recherche une chaîne localisée semblable à Zoom. /// internal static string Zoom { get { @@ -2661,7 +2671,7 @@ internal static string Zoom { } /// - /// Looks up a localized string similar to Zoom Actual. + /// Recherche une chaîne localisée semblable à Zoom Actual. /// internal static string ZoomActual { get { @@ -2670,7 +2680,7 @@ internal static string ZoomActual { } /// - /// Looks up a localized string similar to Zoom In. + /// Recherche une chaîne localisée semblable à Zoom In. /// internal static string ZoomIn { get { @@ -2679,7 +2689,7 @@ internal static string ZoomIn { } /// - /// Looks up a localized string similar to Zoom Out. + /// Recherche une chaîne localisée semblable à Zoom Out. /// internal static string ZoomOut { get { diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.af.resx b/NAPS2.Lib/Lang/Resources/UiStrings.af.resx index 32f6b767f9..d0483d427c 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.af.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.af.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.ar.resx b/NAPS2.Lib/Lang/Resources/UiStrings.ar.resx index 2f5d0bb378..6ce1bf9884 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.ar.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.ar.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.bg.resx b/NAPS2.Lib/Lang/Resources/UiStrings.bg.resx index a2638634bf..ec765d6e31 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.bg.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.bg.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.bs.resx b/NAPS2.Lib/Lang/Resources/UiStrings.bs.resx index fa01966831..1a572bf1be 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.bs.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.bs.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Zaustavi dijeljenje skenera + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.ca.resx b/NAPS2.Lib/Lang/Resources/UiStrings.ca.resx index 74af4133b1..c646e93199 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.ca.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.ca.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Atura la compartició d'escàner + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.cs.resx b/NAPS2.Lib/Lang/Resources/UiStrings.cs.resx index e31270aef2..8768d0ac94 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.cs.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.cs.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Zastavit sdílení skeneru + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.da.resx b/NAPS2.Lib/Lang/Resources/UiStrings.da.resx index a7f718b581..7080e1321e 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.da.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.da.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.de.resx b/NAPS2.Lib/Lang/Resources/UiStrings.de.resx index 6aa2c7da4f..1e8c5d20e2 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.de.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.de.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Scanner nicht mehr teilen + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.el.resx b/NAPS2.Lib/Lang/Resources/UiStrings.el.resx index 975ebace8d..d0314fe395 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.el.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.el.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.es.resx b/NAPS2.Lib/Lang/Resources/UiStrings.es.resx index ccb79fe976..76a69cc2bd 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.es.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.es.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Detener escáner compartido + + Utilice imágenes existentes de NAPS2 + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.et.resx b/NAPS2.Lib/Lang/Resources/UiStrings.et.resx index 57f9276414..f74ba450d7 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.et.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.et.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.fa.resx b/NAPS2.Lib/Lang/Resources/UiStrings.fa.resx index 0702bc78d9..c703f2843d 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.fa.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.fa.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.fi.resx b/NAPS2.Lib/Lang/Resources/UiStrings.fi.resx index e039b45f3f..e9348edd9a 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.fi.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.fi.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.fr.resx b/NAPS2.Lib/Lang/Resources/UiStrings.fr.resx index 6acbe3e57d..1f6d26eff5 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.fr.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.fr.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Arrêt du partage du scanner + + Utiliser les images existantes de NAPS + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.he.resx b/NAPS2.Lib/Lang/Resources/UiStrings.he.resx index b97aaecc24..72eab8c70a 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.he.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.he.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ הפסקת שיתוף סורק + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.hi.resx b/NAPS2.Lib/Lang/Resources/UiStrings.hi.resx index ed452fce05..5d27e9c22e 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.hi.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.hi.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.hr.resx b/NAPS2.Lib/Lang/Resources/UiStrings.hr.resx index ab653eaddd..e25f6497f4 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.hr.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.hr.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Zaustavi dijeljenje skenera + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.hu.resx b/NAPS2.Lib/Lang/Resources/UiStrings.hu.resx index eb578d8976..a4df619702 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.hu.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.hu.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ A lapolvasó megosztásának leállítása + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.id.resx b/NAPS2.Lib/Lang/Resources/UiStrings.id.resx index 5391327caa..24b1b41755 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.id.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.id.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.it.resx b/NAPS2.Lib/Lang/Resources/UiStrings.it.resx index e7dd540cdb..77282eb51b 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.it.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.it.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop condivisione scanner + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.ja.resx b/NAPS2.Lib/Lang/Resources/UiStrings.ja.resx index 701474f772..d688d76828 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.ja.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.ja.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.ko.resx b/NAPS2.Lib/Lang/Resources/UiStrings.ko.resx index 914ac7ad17..284f6bb646 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.ko.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.ko.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.lt.resx b/NAPS2.Lib/Lang/Resources/UiStrings.lt.resx index b76490b63c..1f6a790b5d 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.lt.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.lt.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.lv.resx b/NAPS2.Lib/Lang/Resources/UiStrings.lv.resx index 4b6c582adc..70cb56f49e 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.lv.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.lv.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.nb.resx b/NAPS2.Lib/Lang/Resources/UiStrings.nb.resx index f7911144ec..5396f1f505 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.nb.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.nb.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.nl.resx b/NAPS2.Lib/Lang/Resources/UiStrings.nl.resx index caec66ff0c..3c55ba405b 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.nl.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.nl.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Scanner delen stoppen + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.nn.resx b/NAPS2.Lib/Lang/Resources/UiStrings.nn.resx index d2c567f071..523c71c243 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.nn.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.nn.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stopp skannerdeling + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.pl.resx b/NAPS2.Lib/Lang/Resources/UiStrings.pl.resx index 34ca577ef2..eae649d273 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.pl.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.pl.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Zatrzymaj udostępnianie skanera + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.pt-BR.resx b/NAPS2.Lib/Lang/Resources/UiStrings.pt-BR.resx index ee335f3afd..e1802d3a88 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.pt-BR.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.pt-BR.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Parar Compartilhamento de Scanner + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.pt-PT.resx b/NAPS2.Lib/Lang/Resources/UiStrings.pt-PT.resx index f9025b85d1..273120cf4f 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.pt-PT.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.pt-PT.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Parar partilha de digitalizador + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.resx b/NAPS2.Lib/Lang/Resources/UiStrings.resx index ee2f198c70..2e7e870ca4 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.resx @@ -993,4 +993,7 @@ Stop Scanner Sharing + + Use existing NAPS2 images + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.ro.resx b/NAPS2.Lib/Lang/Resources/UiStrings.ro.resx index 2a836e1b8b..7674ea99d3 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.ro.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.ro.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.ru.resx b/NAPS2.Lib/Lang/Resources/UiStrings.ru.resx index f2719841f9..8bc990bbac 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.ru.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.ru.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Отключить общий доступ к сканеру + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.si.resx b/NAPS2.Lib/Lang/Resources/UiStrings.si.resx index 3ad2c09d6e..ba15f96ebd 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.si.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.si.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.sk.resx b/NAPS2.Lib/Lang/Resources/UiStrings.sk.resx index 38d85daeed..2d428252e9 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.sk.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.sk.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.sl.resx b/NAPS2.Lib/Lang/Resources/UiStrings.sl.resx index b882dea62d..3d6fde989a 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.sl.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.sl.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.sq.resx b/NAPS2.Lib/Lang/Resources/UiStrings.sq.resx index 7a7e0f8eab..7c20af27b4 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.sq.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.sq.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Ndalo ndarjen e skanerit + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.sr.resx b/NAPS2.Lib/Lang/Resources/UiStrings.sr.resx index 2c0b2391a2..20b53e1869 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.sr.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.sr.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.sv.resx b/NAPS2.Lib/Lang/Resources/UiStrings.sv.resx index 085734563a..5d5e80e2a1 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.sv.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.sv.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stäng av skannerdelning + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.th.resx b/NAPS2.Lib/Lang/Resources/UiStrings.th.resx index c143d13368..9b9a68d308 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.th.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.th.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.tr.resx b/NAPS2.Lib/Lang/Resources/UiStrings.tr.resx index e569c3e505..d5408dfa0e 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.tr.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.tr.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Tarayıcı Paylaşımını Durdur + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.uk.resx b/NAPS2.Lib/Lang/Resources/UiStrings.uk.resx index 84b8d041c9..79f4fd4df9 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.uk.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.uk.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Зупинити спільний доступ до сканера + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.vi.resx b/NAPS2.Lib/Lang/Resources/UiStrings.vi.resx index 84983ed611..386197d9c3 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.vi.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.vi.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.zh-CN.resx b/NAPS2.Lib/Lang/Resources/UiStrings.zh-CN.resx index e088a15e92..9778e9491b 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.zh-CN.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.zh-CN.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ 停止扫描仪共享 + + + \ No newline at end of file diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.zh-TW.resx b/NAPS2.Lib/Lang/Resources/UiStrings.zh-TW.resx index af5ba3589c..607ad8763d 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.zh-TW.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.zh-TW.resx @@ -1,5 +1,110 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx @@ -885,4 +990,7 @@ Stop Scanner Sharing + + + \ No newline at end of file diff --git a/NAPS2.Lib/NAPS2.Lib.csproj b/NAPS2.Lib/NAPS2.Lib.csproj index 88eb1d3435..c46ab946cc 100644 --- a/NAPS2.Lib/NAPS2.Lib.csproj +++ b/NAPS2.Lib/NAPS2.Lib.csproj @@ -110,5 +110,17 @@ + + + True + True + UiStrings.resx + + + + + UiStrings.Designer.cs + + \ No newline at end of file diff --git a/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs b/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs index d54a05efd4..7deb1381fd 100644 --- a/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs +++ b/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs @@ -1,11 +1,14 @@ -using System.Threading; -using Eto.Forms; +using Eto.Forms; using NAPS2.EtoForms; +using NAPS2.EtoForms.Desktop; using NAPS2.EtoForms.Ui; +using NAPS2.Images; using NAPS2.ImportExport; using NAPS2.ImportExport.Images; using NAPS2.Ocr; using NAPS2.Pdf; +using System; +using System.Threading; namespace NAPS2.Scan.Batch; @@ -18,11 +21,13 @@ public class BatchScanPerformer : IBatchScanPerformer private readonly Naps2Config _config; private readonly IProfileManager _profileManager; private readonly ThumbnailController _thumbnailController; + private readonly UiImageList _imageList; public BatchScanPerformer(IScanPerformer scanPerformer, PdfExporter pdfExporter, IOperationFactory operationFactory, IFormFactory formFactory, Naps2Config config, IProfileManager profileManager, - ThumbnailController thumbnailController) + ThumbnailController thumbnailController, + UiImageList imageList) { _scanPerformer = scanPerformer; _pdfExporter = pdfExporter; @@ -31,13 +36,15 @@ public BatchScanPerformer(IScanPerformer scanPerformer, PdfExporter pdfExporter, _config = config; _profileManager = profileManager; _thumbnailController = thumbnailController; + _imageList = imageList; } + public async Task PerformBatchScan(BatchSettings settings, IFormBase batchForm, Action imageCallback, Action progressCallback, CancellationToken cancelToken) { var state = new BatchState(_scanPerformer, _pdfExporter, _operationFactory, _formFactory, _config, - _profileManager, _thumbnailController, settings, progressCallback, cancelToken, batchForm, imageCallback); + _profileManager, _thumbnailController, settings, progressCallback, cancelToken, batchForm, imageCallback, _imageList); await state.Do(); } @@ -59,12 +66,13 @@ private class BatchState private ScanProfile _profile; private ScanParams _scanParams; private List> _scans; + private UiImageList _imageList; public BatchState(IScanPerformer scanPerformer, PdfExporter pdfExporter, IOperationFactory operationFactory, IFormFactory formFactory, Naps2Config config, IProfileManager profileManager, ThumbnailController thumbnailController, BatchSettings settings, Action progressCallback, CancellationToken cancelToken, IFormBase batchForm, - Action loadImageCallback) + Action loadImageCallback, UiImageList imageList) { _scanPerformer = scanPerformer; _pdfExporter = pdfExporter; @@ -77,6 +85,7 @@ public BatchState(IScanPerformer scanPerformer, PdfExporter pdfExporter, IOperat _cancelToken = cancelToken; _batchForm = batchForm; _loadImageCallback = loadImageCallback; + _imageList = imageList; _profile = _profileManager.Profiles.First(x => x.DisplayName == _settings.ProfileDisplayName); _scanParams = new ScanParams @@ -129,7 +138,11 @@ private async Task Input() { await Task.Run(async () => { - if (_settings.ScanType == BatchScanType.Single) + if (_settings.ScanType == BatchScanType.UseExistingImages) + { + _scans.Add(_imageList.Images.Select(x => x.GetClonedImage()).ToList()); + } + else if (_settings.ScanType == BatchScanType.Single) { await InputOneScan(-1); } diff --git a/NAPS2.Lib/Scan/Batch/BatchScanType.cs b/NAPS2.Lib/Scan/Batch/BatchScanType.cs index 5af4cb68dd..78323f0ab1 100644 --- a/NAPS2.Lib/Scan/Batch/BatchScanType.cs +++ b/NAPS2.Lib/Scan/Batch/BatchScanType.cs @@ -2,6 +2,7 @@ public enum BatchScanType { + UseExistingImages, Single, MultipleWithPrompt, MultipleWithDelay From 8a053d72a469245d06573f134c7b691fbd75df6f Mon Sep 17 00:00:00 2001 From: Christian Clavet Date: Sun, 21 Sep 2025 16:08:17 -0400 Subject: [PATCH 2/2] Updated to have a better patch to submit to NAPS2 --- .../EtoForms/Desktop/DesktopController.cs | 5 ----- NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs | 6 +++--- NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs | 18 +++++++++--------- NAPS2.Lib/Lang/Resources/UiStrings.resx | 4 ++-- NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs | 3 +-- NAPS2.Lib/Scan/Batch/BatchScanType.cs | 2 +- 6 files changed, 16 insertions(+), 22 deletions(-) diff --git a/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs b/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs index 7835087efe..2048650d9e 100644 --- a/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs +++ b/NAPS2.Lib/EtoForms/Desktop/DesktopController.cs @@ -103,11 +103,6 @@ public async Task Initialize() ShowUpdatePrompt(); } - public UiImageList GetImages() - { - return _imageList; - } - private void ShowDonationOrReviewPrompt() { // Show a review prompt after a month of using the Microsoft Store msix version diff --git a/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs b/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs index 5126415945..13e3f9e622 100644 --- a/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs +++ b/NAPS2.Lib/EtoForms/Ui/BatchScanForm.cs @@ -64,7 +64,7 @@ public BatchScanForm(Naps2Config config, DialogHelper dialogHelper, IProfileMana _batchScanPerformer = batchScanPerformer; _errorOutput = errorOutput; _singleScan = new RadioButton { Text = UiStrings.SingleScan }; - _UseExistingImages = new RadioButton(_singleScan) { Text = UiStrings.UseExistingImages }; + _UseExistingImages = new RadioButton(_singleScan) { Text = UiStrings.LoadFromNaps2 }; _multipleScansPrompt = new RadioButton(_singleScan) { Text = UiStrings.MultipleScansPrompt }; _multipleScansDelay = new RadioButton(_singleScan) { Text = UiStrings.MultipleScansDelay }; _load = new RadioButton { Text = UiStrings.LoadIn }; @@ -193,7 +193,7 @@ private void UpdateUIFromSettings() { UpdateProfiles(); - _UseExistingImages.Checked = _transactionConfig.Get(c => c.BatchSettings.ScanType) == BatchScanType.UseExistingImages; + _UseExistingImages.Checked = _transactionConfig.Get(c => c.BatchSettings.ScanType) == BatchScanType.loadFromNaps2; if (_UseExistingImages.Checked) { _load.Enabled = false; @@ -244,7 +244,7 @@ private bool ValidateSettings() ? BatchScanType.MultipleWithPrompt : _multipleScansDelay.Checked ? BatchScanType.MultipleWithDelay - : _UseExistingImages.Checked ? BatchScanType.UseExistingImages + : _UseExistingImages.Checked ? BatchScanType.loadFromNaps2 : BatchScanType.Single); diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs b/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs index 384dc269d5..3069017f81 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs +++ b/NAPS2.Lib/Lang/Resources/UiStrings.Designer.cs @@ -1212,6 +1212,15 @@ internal static string Language { } } + /// + /// Recherche une chaîne localisée semblable à Load images from NAPS2. + /// + internal static string LoadFromNaps2 { + get { + return ResourceManager.GetString("LoadFromNaps2", resourceCulture); + } + } + /// /// Recherche une chaîne localisée semblable à Load images into NAPS2. /// @@ -2544,15 +2553,6 @@ internal static string UndoFormat { } } - /// - /// Recherche une chaîne localisée semblable à Use existing NAPS2 images. - /// - internal static string UseExistingImages { - get { - return ResourceManager.GetString("UseExistingImages", resourceCulture); - } - } - /// /// Recherche une chaîne localisée semblable à Use native UI. /// diff --git a/NAPS2.Lib/Lang/Resources/UiStrings.resx b/NAPS2.Lib/Lang/Resources/UiStrings.resx index 2e7e870ca4..20609cfce8 100644 --- a/NAPS2.Lib/Lang/Resources/UiStrings.resx +++ b/NAPS2.Lib/Lang/Resources/UiStrings.resx @@ -993,7 +993,7 @@ Stop Scanner Sharing - - Use existing NAPS2 images + + Load images from NAPS2 \ No newline at end of file diff --git a/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs b/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs index 7deb1381fd..429db57ed1 100644 --- a/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs +++ b/NAPS2.Lib/Scan/Batch/BatchScanPerformer.cs @@ -1,6 +1,5 @@ using Eto.Forms; using NAPS2.EtoForms; -using NAPS2.EtoForms.Desktop; using NAPS2.EtoForms.Ui; using NAPS2.Images; using NAPS2.ImportExport; @@ -138,7 +137,7 @@ private async Task Input() { await Task.Run(async () => { - if (_settings.ScanType == BatchScanType.UseExistingImages) + if (_settings.ScanType == BatchScanType.loadFromNaps2) { _scans.Add(_imageList.Images.Select(x => x.GetClonedImage()).ToList()); } diff --git a/NAPS2.Lib/Scan/Batch/BatchScanType.cs b/NAPS2.Lib/Scan/Batch/BatchScanType.cs index 78323f0ab1..8ee9ae9939 100644 --- a/NAPS2.Lib/Scan/Batch/BatchScanType.cs +++ b/NAPS2.Lib/Scan/Batch/BatchScanType.cs @@ -2,7 +2,7 @@ public enum BatchScanType { - UseExistingImages, + loadFromNaps2, Single, MultipleWithPrompt, MultipleWithDelay