From 26c4650cfcf5b3f5fde8caaa09de60e566f06411 Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Sun, 9 Jan 2022 18:27:28 -0600 Subject: [PATCH 1/7] Remove WindowsSetting resource not found warning --- .../Helper/TranslationHelper.cs | 25 ------------------- 1 file changed, 25 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 88e624a9e..3a74d738f 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -28,30 +28,10 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper var name = Resources.ResourceManager.GetString(settings.Name); var type = Resources.ResourceManager.GetString(settings.Type); - if (string.IsNullOrEmpty(area)) - { - Log.Warn($"Resource string for [Area{settings.Area}] not found", typeof(Main)); - } - - if (string.IsNullOrEmpty(name)) - { - Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main)); - } - - if (string.IsNullOrEmpty(type)) - { - Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main)); - } - - if (!string.IsNullOrEmpty(settings.Note)) { var note = Resources.ResourceManager.GetString(settings.Note); - if (string.IsNullOrEmpty(note)) - { - Log.Warn($"Resource string for [{settings.Note}] not found", typeof(Main)); - } settings.Note = note ?? settings.Note ?? string.Empty; } @@ -67,11 +47,6 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper } var translatedAltName = Resources.ResourceManager.GetString(altName); - if (string.IsNullOrEmpty(translatedAltName)) - { - Log.Warn($"Resource string for [{altName}] not found", typeof(Main)); - } - translatedAltNames.Add(translatedAltName ?? altName); } From 0dcf2ba52204886e0e269797d3c7d2df56e6c47f Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Sat, 11 Jun 2022 02:45:36 -0500 Subject: [PATCH 2/7] Fix a missing logic of updating language in plugin;Adjust Resource Name to match the culture we use; Adjust some of the key name; Put Tasklink item into culture --- .../Resource/Internationalization.cs | 3 +- ...low.Launcher.Plugin.WindowsSettings.csproj | 21 +- .../Helper/TranslationHelper.cs | 1 + .../Properties/Resources.Designer.cs | 3179 ++++++++++++++--- ...Resources.cs-CZ.resx => Resources.cs.resx} | 0 ...Resources.de-DE.resx => Resources.de.resx} | 0 ...Resources.es-ES.resx => Resources.es.resx} | 0 ...Resources.fr-FR.resx => Resources.fr.resx} | 0 ...Resources.hu-HU.resx => Resources.hu.resx} | 0 ...Resources.it-IT.resx => Resources.it.resx} | 0 ...Resources.ja-JP.resx => Resources.ja.resx} | 0 ...Resources.ko-KR.resx => Resources.ko.resx} | 0 ...Resources.pl-PL.resx => Resources.pl.resx} | 0 .../Properties/Resources.resx | 771 +++- ...Resources.ru-RU.resx => Resources.ru.resx} | 0 ...Resources.sv-SE.resx => Resources.sv.resx} | 0 ...Resources.tr-TR.resx => Resources.tr.resx} | 0 .../WindowsSettings.json | 510 +-- 18 files changed, 3778 insertions(+), 707 deletions(-) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.cs-CZ.resx => Resources.cs.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.de-DE.resx => Resources.de.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.es-ES.resx => Resources.es.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.fr-FR.resx => Resources.fr.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.hu-HU.resx => Resources.hu.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.it-IT.resx => Resources.it.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.ja-JP.resx => Resources.ja.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.ko-KR.resx => Resources.ko.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.pl-PL.resx => Resources.pl.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.ru-RU.resx => Resources.ru.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.sv-SE.resx => Resources.sv.resx} (100%) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/{Resources.tr-TR.resx => Resources.tr.resx} (100%) diff --git a/Flow.Launcher.Core/Resource/Internationalization.cs b/Flow.Launcher.Core/Resource/Internationalization.cs index 374f7c71f..5c99bc239 100644 --- a/Flow.Launcher.Core/Resource/Internationalization.cs +++ b/Flow.Launcher.Core/Resource/Internationalization.cs @@ -99,7 +99,7 @@ namespace Flow.Launcher.Core.Resource Settings.Language = language.LanguageCode; CultureInfo.CurrentCulture = new CultureInfo(language.LanguageCode); CultureInfo.CurrentUICulture = CultureInfo.CurrentCulture; - Task.Run(() => + _ = Task.Run(() => { UpdatePluginMetadataTranslations(); }); @@ -182,6 +182,7 @@ namespace Flow.Launcher.Core.Resource { p.Metadata.Name = pluginI18N.GetTranslatedPluginTitle(); p.Metadata.Description = pluginI18N.GetTranslatedPluginDescription(); + pluginI18N.OnCultureInfoChanged(CultureInfo.CurrentCulture); } catch (Exception e) { diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj index 81ea31c21..aa3eb8e6f 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj @@ -1,4 +1,4 @@ - + Library net6.0-windows @@ -32,22 +32,11 @@ true - - - - PreserveNewest - - - - - Never - - @@ -59,7 +48,7 @@ - ResXFileCodeGenerator + PublicResXFileCodeGenerator Resources.Designer.cs @@ -69,6 +58,12 @@ PreserveNewest + + + + + + diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 3a74d738f..b19998917 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Collections.ObjectModel; +using System.Globalization; using System.Linq; using Flow.Launcher.Plugin.WindowsSettings.Classes; using Flow.Launcher.Plugin.WindowsSettings.Properties; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs index 1cfc92f28..7bc45320b 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs @@ -19,10 +19,10 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { // 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", "16.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { + public class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -36,7 +36,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Flow.Launcher.Plugin.WindowsSettings.Properties.Resources", typeof(Resources).Assembly); @@ -51,7 +51,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + public static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -60,10 +60,29 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { } } + /// + /// Looks up a localized string similar to 16-Bit Application Support. + /// + public static string _16BitApplicationSupport { + get { + return ResourceManager.GetString("16BitApplicationSupport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to + /// . + /// + public static string _null { + get { + return ResourceManager.GetString("null", resourceCulture); + } + } + /// /// Looks up a localized string similar to About. /// - internal static string About { + public static string About { get { return ResourceManager.GetString("About", resourceCulture); } @@ -72,7 +91,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to access.cpl. /// - internal static string access_cpl { + public static string access_cpl { get { return ResourceManager.GetString("access.cpl", resourceCulture); } @@ -81,7 +100,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Accessibility Options. /// - internal static string AccessibilityOptions { + public static string AccessibilityOptions { get { return ResourceManager.GetString("AccessibilityOptions", resourceCulture); } @@ -90,25 +109,52 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Accessory apps. /// - internal static string AccessoryApps { + public static string AccessoryApps { get { return ResourceManager.GetString("AccessoryApps", resourceCulture); } } + /// + /// Looks up a localized string similar to Access RemoteApp and desktops. + /// + public static string AccessRemoteappAndDesktops { + get { + return ResourceManager.GetString("AccessRemoteappAndDesktops", resourceCulture); + } + } + /// /// Looks up a localized string similar to Access work or school. /// - internal static string AccessWorkOrSchool { + public static string AccessWorkOrSchool { get { return ResourceManager.GetString("AccessWorkOrSchool", resourceCulture); } } + /// + /// Looks up a localized string similar to Accommodate learning abilities. + /// + public static string AccommodateLearningAbilities { + get { + return ResourceManager.GetString("AccommodateLearningAbilities", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accommodate low vision. + /// + public static string AccommodateLowVision { + get { + return ResourceManager.GetString("AccommodateLowVision", resourceCulture); + } + } + /// /// Looks up a localized string similar to Account info. /// - internal static string AccountInfo { + public static string AccountInfo { get { return ResourceManager.GetString("AccountInfo", resourceCulture); } @@ -117,7 +163,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Accounts. /// - internal static string Accounts { + public static string Accounts { get { return ResourceManager.GetString("Accounts", resourceCulture); } @@ -126,7 +172,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Action Center. /// - internal static string ActionCenter { + public static string ActionCenter { get { return ResourceManager.GetString("ActionCenter", resourceCulture); } @@ -135,7 +181,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Activation. /// - internal static string Activation { + public static string Activation { get { return ResourceManager.GetString("Activation", resourceCulture); } @@ -144,25 +190,79 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Activity history. /// - internal static string ActivityHistory { + public static string ActivityHistory { get { return ResourceManager.GetString("ActivityHistory", resourceCulture); } } + /// + /// Looks up a localized string similar to Add a Bluetooth device. + /// + public static string AddABluetoothDevice { + get { + return ResourceManager.GetString("AddABluetoothDevice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add a device. + /// + public static string AddADevice { + get { + return ResourceManager.GetString("AddADevice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add a language. + /// + public static string AddALanguage { + get { + return ResourceManager.GetString("AddALanguage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add clocks for different time zones. + /// + public static string AddClocksForDifferentTimeZones { + get { + return ResourceManager.GetString("AddClocksForDifferentTimeZones", resourceCulture); + } + } + /// /// Looks up a localized string similar to Add Hardware. /// - internal static string AddHardware { + public static string AddHardware { get { return ResourceManager.GetString("AddHardware", resourceCulture); } } + /// + /// Looks up a localized string similar to Add or remove programs. + /// + public static string AddOrRemovePrograms { + get { + return ResourceManager.GetString("AddOrRemovePrograms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add or remove user accounts. + /// + public static string AddOrRemoveUserAccounts { + get { + return ResourceManager.GetString("AddOrRemoveUserAccounts", resourceCulture); + } + } + /// /// Looks up a localized string similar to Add/Remove Programs. /// - internal static string AddRemovePrograms { + public static string AddRemovePrograms { get { return ResourceManager.GetString("AddRemovePrograms", resourceCulture); } @@ -171,16 +271,61 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Add your phone. /// - internal static string AddYourPhone { + public static string AddYourPhone { get { return ResourceManager.GetString("AddYourPhone", resourceCulture); } } + /// + /// Looks up a localized string similar to Adjust ClearType text. + /// + public static string AdjustCleartypeText { + get { + return ResourceManager.GetString("AdjustCleartypeText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Adjust commonly used mobility settings. + /// + public static string AdjustCommonlyUsedMobilitySettings { + get { + return ResourceManager.GetString("AdjustCommonlyUsedMobilitySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Adjust settings before giving a presentation. + /// + public static string AdjustSettingsBeforeGivingAPresentation { + get { + return ResourceManager.GetString("AdjustSettingsBeforeGivingAPresentation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Adjust system volume. + /// + public static string AdjustSystemVolume { + get { + return ResourceManager.GetString("AdjustSystemVolume", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Adjust the appearance and performance of Windows. + /// + public static string AdjustTheAppearanceAndPerformanceOfWindows { + get { + return ResourceManager.GetString("AdjustTheAppearanceAndPerformanceOfWindows", resourceCulture); + } + } + /// /// Looks up a localized string similar to Administrative Tools. /// - internal static string AdministrativeTools { + public static string AdministrativeTools { get { return ResourceManager.GetString("AdministrativeTools", resourceCulture); } @@ -189,7 +334,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Advanced display settings. /// - internal static string AdvancedDisplaySettings { + public static string AdvancedDisplaySettings { get { return ResourceManager.GetString("AdvancedDisplaySettings", resourceCulture); } @@ -198,16 +343,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Advanced graphics. /// - internal static string AdvancedGraphics { + public static string AdvancedGraphics { get { return ResourceManager.GetString("AdvancedGraphics", resourceCulture); } } + /// + /// Looks up a localized string similar to Advanced printer setup. + /// + public static string AdvancedPrinterSetup { + get { + return ResourceManager.GetString("AdvancedPrinterSetup", resourceCulture); + } + } + /// /// Looks up a localized string similar to Advertising ID. /// - internal static string AdvertisingId { + public static string AdvertisingId { get { return ResourceManager.GetString("AdvertisingId", resourceCulture); } @@ -216,16 +370,43 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Airplane mode. /// - internal static string AirplaneMode { + public static string AirplaneMode { get { return ResourceManager.GetString("AirplaneMode", resourceCulture); } } + /// + /// Looks up a localized string similar to Allow an app through Windows Firewall. + /// + public static string AllowAnAppThroughWindowsFirewall { + get { + return ResourceManager.GetString("AllowAnAppThroughWindowsFirewall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow remote access to your computer. + /// + public static string AllowRemoteAccessToYourComputer { + get { + return ResourceManager.GetString("AllowRemoteAccessToYourComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow Remote Assistance invitations to be sent from this computer. + /// + public static string AllowRemoteAssistanceInvitationsToBeSentFromThisComputer { + get { + return ResourceManager.GetString("AllowRemoteAssistanceInvitationsToBeSentFromThisComputer", resourceCulture); + } + } + /// /// Looks up a localized string similar to Alt+Tab. /// - internal static string AltAndTab { + public static string AltAndTab { get { return ResourceManager.GetString("AltAndTab", resourceCulture); } @@ -234,7 +415,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Alternative names. /// - internal static string AlternativeName { + public static string AlternativeName { get { return ResourceManager.GetString("AlternativeName", resourceCulture); } @@ -243,7 +424,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Animations. /// - internal static string Animations { + public static string Animations { get { return ResourceManager.GetString("Animations", resourceCulture); } @@ -252,16 +433,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to App color. /// - internal static string AppColor { + public static string AppColor { get { return ResourceManager.GetString("AppColor", resourceCulture); } } + /// + /// Looks up a localized string similar to Control Panel. + /// + public static string AppControlPanel { + get { + return ResourceManager.GetString("AppControlPanel", resourceCulture); + } + } + /// /// Looks up a localized string similar to App diagnostics. /// - internal static string AppDiagnostics { + public static string AppDiagnostics { get { return ResourceManager.GetString("AppDiagnostics", resourceCulture); } @@ -270,7 +460,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to App features. /// - internal static string AppFeatures { + public static string AppFeatures { get { return ResourceManager.GetString("AppFeatures", resourceCulture); } @@ -279,7 +469,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to App. /// - internal static string Application { + public static string Application { get { return ResourceManager.GetString("Application", resourceCulture); } @@ -288,7 +478,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Apps and Features. /// - internal static string AppsAndFeatures { + public static string AppsAndFeatures { get { return ResourceManager.GetString("AppsAndFeatures", resourceCulture); } @@ -297,7 +487,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to System settings. /// - internal static string AppSettingsApp { + public static string AppSettingsApp { get { return ResourceManager.GetString("AppSettingsApp", resourceCulture); } @@ -306,7 +496,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Apps for websites. /// - internal static string AppsForWebsites { + public static string AppsForWebsites { get { return ResourceManager.GetString("AppsForWebsites", resourceCulture); } @@ -315,7 +505,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to App volume and device preferences. /// - internal static string AppVolumeAndDevicePreferences { + public static string AppVolumeAndDevicePreferences { get { return ResourceManager.GetString("AppVolumeAndDevicePreferences", resourceCulture); } @@ -324,7 +514,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to appwiz.cpl. /// - internal static string appwiz_cpl { + public static string appwiz_cpl { get { return ResourceManager.GetString("appwiz.cpl", resourceCulture); } @@ -333,7 +523,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Area. /// - internal static string Area { + public static string Area { get { return ResourceManager.GetString("Area", resourceCulture); } @@ -342,7 +532,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Accounts. /// - internal static string AreaAccounts { + public static string AreaAccounts { get { return ResourceManager.GetString("AreaAccounts", resourceCulture); } @@ -351,7 +541,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Administrative Tools. /// - internal static string AreaAdministrativeTools { + public static string AreaAdministrativeTools { get { return ResourceManager.GetString("AreaAdministrativeTools", resourceCulture); } @@ -360,7 +550,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Appearance and Personalization. /// - internal static string AreaAppearanceAndPersonalization { + public static string AreaAppearanceAndPersonalization { get { return ResourceManager.GetString("AreaAppearanceAndPersonalization", resourceCulture); } @@ -369,7 +559,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Apps. /// - internal static string AreaApps { + public static string AreaApps { get { return ResourceManager.GetString("AreaApps", resourceCulture); } @@ -378,7 +568,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Clock and Region. /// - internal static string AreaClockAndRegion { + public static string AreaClockAndRegion { get { return ResourceManager.GetString("AreaClockAndRegion", resourceCulture); } @@ -387,7 +577,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Control Panel. /// - internal static string AreaControlPanel { + public static string AreaControlPanel { get { return ResourceManager.GetString("AreaControlPanel", resourceCulture); } @@ -396,7 +586,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Cortana. /// - internal static string AreaCortana { + public static string AreaCortana { get { return ResourceManager.GetString("AreaCortana", resourceCulture); } @@ -405,7 +595,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Devices. /// - internal static string AreaDevices { + public static string AreaDevices { get { return ResourceManager.GetString("AreaDevices", resourceCulture); } @@ -414,7 +604,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Ease of access. /// - internal static string AreaEaseOfAccess { + public static string AreaEaseOfAccess { get { return ResourceManager.GetString("AreaEaseOfAccess", resourceCulture); } @@ -423,7 +613,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Extras. /// - internal static string AreaExtras { + public static string AreaExtras { get { return ResourceManager.GetString("AreaExtras", resourceCulture); } @@ -432,7 +622,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Gaming. /// - internal static string AreaGaming { + public static string AreaGaming { get { return ResourceManager.GetString("AreaGaming", resourceCulture); } @@ -441,7 +631,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Hardware and Sound. /// - internal static string AreaHardwareAndSound { + public static string AreaHardwareAndSound { get { return ResourceManager.GetString("AreaHardwareAndSound", resourceCulture); } @@ -450,7 +640,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Home page. /// - internal static string AreaHomePage { + public static string AreaHomePage { get { return ResourceManager.GetString("AreaHomePage", resourceCulture); } @@ -459,7 +649,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mixed reality. /// - internal static string AreaMixedReality { + public static string AreaMixedReality { get { return ResourceManager.GetString("AreaMixedReality", resourceCulture); } @@ -468,7 +658,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network and Internet. /// - internal static string AreaNetworkAndInternet { + public static string AreaNetworkAndInternet { get { return ResourceManager.GetString("AreaNetworkAndInternet", resourceCulture); } @@ -477,7 +667,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Personalization. /// - internal static string AreaPersonalization { + public static string AreaPersonalization { get { return ResourceManager.GetString("AreaPersonalization", resourceCulture); } @@ -486,7 +676,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Phone. /// - internal static string AreaPhone { + public static string AreaPhone { get { return ResourceManager.GetString("AreaPhone", resourceCulture); } @@ -495,7 +685,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Privacy. /// - internal static string AreaPrivacy { + public static string AreaPrivacy { get { return ResourceManager.GetString("AreaPrivacy", resourceCulture); } @@ -504,7 +694,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Programs. /// - internal static string AreaPrograms { + public static string AreaPrograms { get { return ResourceManager.GetString("AreaPrograms", resourceCulture); } @@ -513,7 +703,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to SurfaceHub. /// - internal static string AreaSurfaceHub { + public static string AreaSurfaceHub { get { return ResourceManager.GetString("AreaSurfaceHub", resourceCulture); } @@ -522,7 +712,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to System. /// - internal static string AreaSystem { + public static string AreaSystem { get { return ResourceManager.GetString("AreaSystem", resourceCulture); } @@ -531,7 +721,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to System and Security. /// - internal static string AreaSystemAndSecurity { + public static string AreaSystemAndSecurity { get { return ResourceManager.GetString("AreaSystemAndSecurity", resourceCulture); } @@ -540,7 +730,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Time and language. /// - internal static string AreaTimeAndLanguage { + public static string AreaTimeAndLanguage { get { return ResourceManager.GetString("AreaTimeAndLanguage", resourceCulture); } @@ -549,7 +739,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Update and security. /// - internal static string AreaUpdateAndSecurity { + public static string AreaUpdateAndSecurity { get { return ResourceManager.GetString("AreaUpdateAndSecurity", resourceCulture); } @@ -558,7 +748,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to User accounts. /// - internal static string AreaUserAccounts { + public static string AreaUserAccounts { get { return ResourceManager.GetString("AreaUserAccounts", resourceCulture); } @@ -567,7 +757,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Assigned access. /// - internal static string AssignedAccess { + public static string AssignedAccess { get { return ResourceManager.GetString("AssignedAccess", resourceCulture); } @@ -576,7 +766,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Audio. /// - internal static string Audio { + public static string Audio { get { return ResourceManager.GetString("Audio", resourceCulture); } @@ -585,7 +775,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Audio alerts. /// - internal static string AudioAlerts { + public static string AudioAlerts { get { return ResourceManager.GetString("AudioAlerts", resourceCulture); } @@ -594,16 +784,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Audio and speech. /// - internal static string AudioAndSpeech { + public static string AudioAndSpeech { get { return ResourceManager.GetString("AudioAndSpeech", resourceCulture); } } + /// + /// Looks up a localized string similar to Auto-hide the taskbar. + /// + public static string AutoHideTheTaskbar { + get { + return ResourceManager.GetString("AutoHideTheTaskbar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatically adjust for daylight saving time. + /// + public static string AutomaticallyAdjustForDaylightSavingTime { + get { + return ResourceManager.GetString("AutomaticallyAdjustForDaylightSavingTime", resourceCulture); + } + } + /// /// Looks up a localized string similar to Automatic file downloads. /// - internal static string AutomaticFileDownloads { + public static string AutomaticFileDownloads { get { return ResourceManager.GetString("AutomaticFileDownloads", resourceCulture); } @@ -612,7 +820,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to AutoPlay. /// - internal static string AutoPlay { + public static string AutoPlay { get { return ResourceManager.GetString("AutoPlay", resourceCulture); } @@ -621,7 +829,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Background. /// - internal static string Background { + public static string Background { get { return ResourceManager.GetString("Background", resourceCulture); } @@ -630,7 +838,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Background Apps. /// - internal static string BackgroundApps { + public static string BackgroundApps { get { return ResourceManager.GetString("BackgroundApps", resourceCulture); } @@ -639,7 +847,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Backup. /// - internal static string Backup { + public static string Backup { get { return ResourceManager.GetString("Backup", resourceCulture); } @@ -648,16 +856,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Backup and Restore. /// - internal static string BackupAndRestore { + public static string BackupAndRestore { get { return ResourceManager.GetString("BackupAndRestore", resourceCulture); } } + /// + /// Looks up a localized string similar to Back up and Restore (Windows 7). + /// + public static string BackUpAndRestoreWindows7 { + get { + return ResourceManager.GetString("BackUpAndRestoreWindows7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Back up your recovery key. + /// + public static string BackUpYourRecoveryKey { + get { + return ResourceManager.GetString("BackUpYourRecoveryKey", resourceCulture); + } + } + /// /// Looks up a localized string similar to Battery Saver. /// - internal static string BatterySaver { + public static string BatterySaver { get { return ResourceManager.GetString("BatterySaver", resourceCulture); } @@ -666,7 +892,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Battery Saver settings. /// - internal static string BatterySaverSettings { + public static string BatterySaverSettings { get { return ResourceManager.GetString("BatterySaverSettings", resourceCulture); } @@ -675,7 +901,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Battery saver usage details. /// - internal static string BatterySaverUsageDetails { + public static string BatterySaverUsageDetails { get { return ResourceManager.GetString("BatterySaverUsageDetails", resourceCulture); } @@ -684,7 +910,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Battery use. /// - internal static string BatteryUse { + public static string BatteryUse { get { return ResourceManager.GetString("BatteryUse", resourceCulture); } @@ -693,7 +919,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Biometric Devices. /// - internal static string BiometricDevices { + public static string BiometricDevices { get { return ResourceManager.GetString("BiometricDevices", resourceCulture); } @@ -702,16 +928,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to BitLocker Drive Encryption. /// - internal static string BitLockerDriveEncryption { + public static string BitLockerDriveEncryption { get { return ResourceManager.GetString("BitLockerDriveEncryption", resourceCulture); } } + /// + /// Looks up a localized string similar to Block or allow pop-ups. + /// + public static string BlockOrAllowPopUps { + get { + return ResourceManager.GetString("BlockOrAllowPopUps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Block or allow third-party cookies. + /// + public static string BlockOrAllowThirdPartyCookies { + get { + return ResourceManager.GetString("BlockOrAllowThirdPartyCookies", resourceCulture); + } + } + /// /// Looks up a localized string similar to Blue light. /// - internal static string BlueLight { + public static string BlueLight { get { return ResourceManager.GetString("BlueLight", resourceCulture); } @@ -720,7 +964,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Bluetooth. /// - internal static string Bluetooth { + public static string Bluetooth { get { return ResourceManager.GetString("Bluetooth", resourceCulture); } @@ -729,7 +973,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Bluetooth devices. /// - internal static string BluetoothDevices { + public static string BluetoothDevices { get { return ResourceManager.GetString("BluetoothDevices", resourceCulture); } @@ -738,7 +982,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Blue-yellow. /// - internal static string BlueYellow { + public static string BlueYellow { get { return ResourceManager.GetString("BlueYellow", resourceCulture); } @@ -747,7 +991,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Bopomofo IME. /// - internal static string BopomofoIme { + public static string BopomofoIme { get { return ResourceManager.GetString("BopomofoIme", resourceCulture); } @@ -756,7 +1000,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to bpmf. /// - internal static string bpmf { + public static string bpmf { get { return ResourceManager.GetString("bpmf", resourceCulture); } @@ -765,7 +1009,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Broadcasting. /// - internal static string Broadcasting { + public static string Broadcasting { get { return ResourceManager.GetString("Broadcasting", resourceCulture); } @@ -774,16 +1018,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Calendar. /// - internal static string Calendar { + public static string Calendar { get { return ResourceManager.GetString("Calendar", resourceCulture); } } + /// + /// Looks up a localized string similar to Calibrate display colour. + /// + public static string CalibrateDisplayColour { + get { + return ResourceManager.GetString("CalibrateDisplayColour", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calibrate the screen for pen or touch input. + /// + public static string CalibrateTheScreenForPenOrTouchInput { + get { + return ResourceManager.GetString("CalibrateTheScreenForPenOrTouchInput", resourceCulture); + } + } + /// /// Looks up a localized string similar to Call history. /// - internal static string CallHistory { + public static string CallHistory { get { return ResourceManager.GetString("CallHistory", resourceCulture); } @@ -792,7 +1054,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to calling. /// - internal static string calling { + public static string calling { get { return ResourceManager.GetString("calling", resourceCulture); } @@ -801,7 +1063,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Camera. /// - internal static string Camera { + public static string Camera { get { return ResourceManager.GetString("Camera", resourceCulture); } @@ -810,7 +1072,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Cangjie IME. /// - internal static string CangjieIme { + public static string CangjieIme { get { return ResourceManager.GetString("CangjieIme", resourceCulture); } @@ -819,7 +1081,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Caps Lock. /// - internal static string CapsLock { + public static string CapsLock { get { return ResourceManager.GetString("CapsLock", resourceCulture); } @@ -828,25 +1090,601 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Cellular and SIM. /// - internal static string CellularAndSim { + public static string CellularAndSim { get { return ResourceManager.GetString("CellularAndSim", resourceCulture); } } + /// + /// Looks up a localized string similar to Change account type. + /// + public static string ChangeAccountType { + get { + return ResourceManager.GetString("ChangeAccountType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change advanced colour management settings for displays, scanners and printers. + /// + public static string ChangeAdvancedColourManagementSettingsForDisplaysScannersAndPrinters { + get { + return ResourceManager.GetString("ChangeAdvancedColourManagementSettingsForDisplaysScannersAndPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Automatic Maintenance settings. + /// + public static string ChangeAutomaticMaintenanceSettings { + get { + return ResourceManager.GetString("ChangeAutomaticMaintenanceSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change battery settings. + /// + public static string ChangeBatterySettings { + get { + return ResourceManager.GetString("ChangeBatterySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Bluetooth settings. + /// + public static string ChangeBluetoothSettings { + get { + return ResourceManager.GetString("ChangeBluetoothSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change cursor blink rate. + /// + public static string ChangeCursorBlinkRate { + get { + return ResourceManager.GetString("ChangeCursorBlinkRate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change date, time or number formats. + /// + public static string ChangeDateTimeOrNumberFormats { + get { + return ResourceManager.GetString("ChangeDateTimeOrNumberFormats", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change default printer. + /// + public static string ChangeDefaultPrinter { + get { + return ResourceManager.GetString("ChangeDefaultPrinter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change default settings for media or devices. + /// + public static string ChangeDefaultSettingsForMediaOrDevices { + get { + return ResourceManager.GetString("ChangeDefaultSettingsForMediaOrDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change device installation settings. + /// + public static string ChangeDeviceInstallationSettings { + get { + return ResourceManager.GetString("ChangeDeviceInstallationSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Font Settings. + /// + public static string ChangeFontSettings { + get { + return ResourceManager.GetString("ChangeFontSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change how the mouse pointer looks. + /// + public static string ChangeHowTheMousePointerLooks { + get { + return ResourceManager.GetString("ChangeHowTheMousePointerLooks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change how the mouse pointer looks when it’s moving. + /// + public static string ChangeHowTheMousePointerLooksWhenItSMoving { + get { + return ResourceManager.GetString("ChangeHowTheMousePointerLooksWhenItSMoving", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change how web pages are displayed in tabs. + /// + public static string ChangeHowWebPagesAreDisplayedInTabs { + get { + return ResourceManager.GetString("ChangeHowWebPagesAreDisplayedInTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change how Windows searches. + /// + public static string ChangeHowWindowsSearches { + get { + return ResourceManager.GetString("ChangeHowWindowsSearches", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change how your keyboard works. + /// + public static string ChangeHowYourKeyboardWorks { + get { + return ResourceManager.GetString("ChangeHowYourKeyboardWorks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change how your mouse works. + /// + public static string ChangeHowYourMouseWorks { + get { + return ResourceManager.GetString("ChangeHowYourMouseWorks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change input methods. + /// + public static string ChangeInputMethods { + get { + return ResourceManager.GetString("ChangeInputMethods", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change location settings. + /// + public static string ChangeLocationSettings { + get { + return ResourceManager.GetString("ChangeLocationSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change mouse click settings. + /// + public static string ChangeMouseClickSettings { + get { + return ResourceManager.GetString("ChangeMouseClickSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change mouse settings. + /// + public static string ChangeMouseSettings { + get { + return ResourceManager.GetString("ChangeMouseSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change mouse wheel settings. + /// + public static string ChangeMouseWheelSettings { + get { + return ResourceManager.GetString("ChangeMouseWheelSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change multi-touch gesture settings. + /// + public static string ChangeMultiTouchGestureSettings { + get { + return ResourceManager.GetString("ChangeMultiTouchGestureSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change or remove a program. + /// + public static string ChangeOrRemoveAProgram { + get { + return ResourceManager.GetString("ChangeOrRemoveAProgram", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change PC wake-up settings. + /// + public static string ChangePCWakeUpSettings { + get { + return ResourceManager.GetString("ChangePCWakeUpSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change power-saving settings. + /// + public static string ChangePowerSavingSettings { + get { + return ResourceManager.GetString("ChangePowerSavingSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change screen saver. + /// + public static string ChangeScreenSaver { + get { + return ResourceManager.GetString("ChangeScreenSaver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change search options for files and folders. + /// + public static string ChangeSearchOptionsForFilesAndFolders { + get { + return ResourceManager.GetString("ChangeSearchOptionsForFilesAndFolders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change security settings. + /// + public static string ChangeSecuritySettings { + get { + return ResourceManager.GetString("ChangeSecuritySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change settings for content received using Tap and send. + /// + public static string ChangeSettingsForContentReceivedUsingTapAndSend { + get { + return ResourceManager.GetString("ChangeSettingsForContentReceivedUsingTapAndSend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change sound card settings. + /// + public static string ChangeSoundCardSettings { + get { + return ResourceManager.GetString("ChangeSoundCardSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change system sounds. + /// + public static string ChangeSystemSounds { + get { + return ResourceManager.GetString("ChangeSystemSounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change tablet pen settings. + /// + public static string ChangeTabletPenSettings { + get { + return ResourceManager.GetString("ChangeTabletPenSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change temporary Internet file settings. + /// + public static string ChangeTemporaryInternetFileSettings { + get { + return ResourceManager.GetString("ChangeTemporaryInternetFileSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change text-to-speech settings. + /// + public static string ChangeTextToSpeechSettings { + get { + return ResourceManager.GetString("ChangeTextToSpeechSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the file type associated with a file extension. + /// + public static string ChangeTheFileTypeAssociatedWithAFileExtension { + get { + return ResourceManager.GetString("ChangeTheFileTypeAssociatedWithAFileExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the mouse pointer display or speed. + /// + public static string ChangeTheMousePointerDisplayOrSpeed { + get { + return ResourceManager.GetString("ChangeTheMousePointerDisplayOrSpeed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the Narrator’s voice. + /// + public static string ChangeTheNarratorSVoice { + get { + return ResourceManager.GetString("ChangeTheNarratorSVoice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the order of Windows SideShow gadgets. + /// + public static string ChangeTheOrderOfWindowsSideshowGadgets { + get { + return ResourceManager.GetString("ChangeTheOrderOfWindowsSideshowGadgets", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the search provider in Internet Explorer. + /// + public static string ChangeTheSearchProviderInInternetExplorer { + get { + return ResourceManager.GetString("ChangeTheSearchProviderInInternetExplorer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the time zone. + /// + public static string ChangeTheTimeZone { + get { + return ResourceManager.GetString("ChangeTheTimeZone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the way currency is displayed. + /// + public static string ChangeTheWayCurrencyIsDisplayed { + get { + return ResourceManager.GetString("ChangeTheWayCurrencyIsDisplayed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the way dates and lists are displayed. + /// + public static string ChangeTheWayDatesAndListsAreDisplayed { + get { + return ResourceManager.GetString("ChangeTheWayDatesAndListsAreDisplayed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the way measurements are displayed. + /// + public static string ChangeTheWayMeasurementsAreDisplayed { + get { + return ResourceManager.GetString("ChangeTheWayMeasurementsAreDisplayed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the way time is displayed. + /// + public static string ChangeTheWayTimeIsDisplayed { + get { + return ResourceManager.GetString("ChangeTheWayTimeIsDisplayed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change touch input settings. + /// + public static string ChangeTouchInputSettings { + get { + return ResourceManager.GetString("ChangeTouchInputSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change User Account Control settings. + /// + public static string ChangeUserAccountControlSettings { + get { + return ResourceManager.GetString("ChangeUserAccountControlSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change what closing the lid does. + /// + public static string ChangeWhatClosingTheLidDoes { + get { + return ResourceManager.GetString("ChangeWhatClosingTheLidDoes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change what the power buttons do. + /// + public static string ChangeWhatThePowerButtonsDo { + get { + return ResourceManager.GetString("ChangeWhatThePowerButtonsDo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change when the computer sleeps. + /// + public static string ChangeWhenTheComputerSleeps { + get { + return ResourceManager.GetString("ChangeWhenTheComputerSleeps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Windows SideShow-compatible device settings. + /// + public static string ChangeWindowsSideshowCompatibleDeviceSettings { + get { + return ResourceManager.GetString("ChangeWindowsSideshowCompatibleDeviceSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Windows SideShow settings. + /// + public static string ChangeWindowsSideshowSettings { + get { + return ResourceManager.GetString("ChangeWindowsSideshowSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Windows To Go start-up options. + /// + public static string ChangeWindowsToGoStartUpOptions { + get { + return ResourceManager.GetString("ChangeWindowsToGoStartUpOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change workgroup name. + /// + public static string ChangeWorkgroupName { + get { + return ResourceManager.GetString("ChangeWorkgroupName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change your homepage. + /// + public static string ChangeYourHomepage { + get { + return ResourceManager.GetString("ChangeYourHomepage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check firewall status. + /// + public static string CheckFirewallStatus { + get { + return ResourceManager.GetString("CheckFirewallStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check keyboard status. + /// + public static string CheckKeyboardStatus { + get { + return ResourceManager.GetString("CheckKeyboardStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check processor speed. + /// + public static string CheckProcessorSpeed { + get { + return ResourceManager.GetString("CheckProcessorSpeed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check security status. + /// + public static string CheckSecurityStatus { + get { + return ResourceManager.GetString("CheckSecurityStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a power plan. + /// + public static string ChooseAPowerPlan { + get { + return ResourceManager.GetString("ChooseAPowerPlan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose how you open links. + /// + public static string ChooseHowYouOpenLinks { + get { + return ResourceManager.GetString("ChooseHowYouOpenLinks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the order of how your screen rotates. + /// + public static string ChooseTheOrderOfHowYourScreenRotates { + get { + return ResourceManager.GetString("ChooseTheOrderOfHowYourScreenRotates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose when to turn off display. + /// + public static string ChooseWhenToTurnOffDisplay { + get { + return ResourceManager.GetString("ChooseWhenToTurnOffDisplay", resourceCulture); + } + } + /// /// Looks up a localized string similar to Choose which folders appear on Start. /// - internal static string ChooseWhichFoldersAppearOnStart { + public static string ChooseWhichFoldersAppearOnStart { get { return ResourceManager.GetString("ChooseWhichFoldersAppearOnStart", resourceCulture); } } + /// + /// Looks up a localized string similar to Clear disk space by deleting unnecessary files. + /// + public static string ClearDiskSpaceByDeletingUnnecessaryFiles { + get { + return ResourceManager.GetString("ClearDiskSpaceByDeletingUnnecessaryFiles", resourceCulture); + } + } + /// /// Looks up a localized string similar to Client service for NetWare. /// - internal static string ClientServiceForNetWare { + public static string ClientServiceForNetWare { get { return ResourceManager.GetString("ClientServiceForNetWare", resourceCulture); } @@ -855,7 +1693,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Clipboard. /// - internal static string Clipboard { + public static string Clipboard { get { return ResourceManager.GetString("Clipboard", resourceCulture); } @@ -864,7 +1702,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Closed captions. /// - internal static string ClosedCaptions { + public static string ClosedCaptions { get { return ResourceManager.GetString("ClosedCaptions", resourceCulture); } @@ -873,7 +1711,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Color filters. /// - internal static string ColorFilters { + public static string ColorFilters { get { return ResourceManager.GetString("ColorFilters", resourceCulture); } @@ -882,7 +1720,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Color management. /// - internal static string ColorManagement { + public static string ColorManagement { get { return ResourceManager.GetString("ColorManagement", resourceCulture); } @@ -891,7 +1729,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Colors. /// - internal static string Colors { + public static string Colors { get { return ResourceManager.GetString("Colors", resourceCulture); } @@ -900,25 +1738,61 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Command. /// - internal static string Command { + public static string Command { get { return ResourceManager.GetString("Command", resourceCulture); } } + /// + /// Looks up a localized string similar to Configure advanced user profile properties. + /// + public static string ConfigureAdvancedUserProfileProperties { + get { + return ResourceManager.GetString("ConfigureAdvancedUserProfileProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Configure proxy server. + /// + public static string ConfigureProxyServer { + get { + return ResourceManager.GetString("ConfigureProxyServer", resourceCulture); + } + } + /// /// Looks up a localized string similar to Connected Devices. /// - internal static string ConnectedDevices { + public static string ConnectedDevices { get { return ResourceManager.GetString("ConnectedDevices", resourceCulture); } } + /// + /// Looks up a localized string similar to Connect to a network. + /// + public static string ConnectToANetwork { + get { + return ResourceManager.GetString("ConnectToANetwork", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect to the Internet. + /// + public static string ConnectToTheInternet { + get { + return ResourceManager.GetString("ConnectToTheInternet", resourceCulture); + } + } + /// /// Looks up a localized string similar to Contacts. /// - internal static string Contacts { + public static string Contacts { get { return ResourceManager.GetString("Contacts", resourceCulture); } @@ -927,16 +1801,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Control Panel. /// - internal static string ControlPanel { + public static string ControlPanel { get { return ResourceManager.GetString("ControlPanel", resourceCulture); } } + /// + /// Looks up a localized string similar to Control the computer without the mouse or keyboard. + /// + public static string ControlTheComputerWithoutTheMouseOrKeyboard { + get { + return ResourceManager.GetString("ControlTheComputerWithoutTheMouseOrKeyboard", resourceCulture); + } + } + /// /// Looks up a localized string similar to Copy command. /// - internal static string CopyCommand { + public static string CopyCommand { get { return ResourceManager.GetString("CopyCommand", resourceCulture); } @@ -945,7 +1828,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Core Isolation. /// - internal static string CoreIsolation { + public static string CoreIsolation { get { return ResourceManager.GetString("CoreIsolation", resourceCulture); } @@ -954,7 +1837,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Cortana. /// - internal static string Cortana { + public static string Cortana { get { return ResourceManager.GetString("Cortana", resourceCulture); } @@ -963,7 +1846,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Cortana across my devices. /// - internal static string CortanaAcrossMyDevices { + public static string CortanaAcrossMyDevices { get { return ResourceManager.GetString("CortanaAcrossMyDevices", resourceCulture); } @@ -972,16 +1855,70 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Cortana - Language. /// - internal static string CortanaLanguage { + public static string CortanaLanguage { get { return ResourceManager.GetString("CortanaLanguage", resourceCulture); } } + /// + /// Looks up a localized string similar to Create an account. + /// + public static string CreateAnAccount { + get { + return ResourceManager.GetString("CreateAnAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create and format hard disk partitions. + /// + public static string CreateAndFormatHardDiskPartitions { + get { + return ResourceManager.GetString("CreateAndFormatHardDiskPartitions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a password reset disk. + /// + public static string CreateAPasswordResetDisk { + get { + return ResourceManager.GetString("CreateAPasswordResetDisk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a recovery drive. + /// + public static string CreateARecoveryDrive { + get { + return ResourceManager.GetString("CreateARecoveryDrive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a restore point. + /// + public static string CreateARestorePoint { + get { + return ResourceManager.GetString("CreateARestorePoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create standard user account. + /// + public static string CreateStandardUserAccount { + get { + return ResourceManager.GetString("CreateStandardUserAccount", resourceCulture); + } + } + /// /// Looks up a localized string similar to Credential manager. /// - internal static string CredentialManager { + public static string CredentialManager { get { return ResourceManager.GetString("CredentialManager", resourceCulture); } @@ -990,7 +1927,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Crossdevice. /// - internal static string Crossdevice { + public static string Crossdevice { get { return ResourceManager.GetString("Crossdevice", resourceCulture); } @@ -999,16 +1936,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Custom devices. /// - internal static string CustomDevices { + public static string CustomDevices { get { return ResourceManager.GetString("CustomDevices", resourceCulture); } } + /// + /// Looks up a localized string similar to Customise the mouse buttons. + /// + public static string CustomiseTheMouseButtons { + get { + return ResourceManager.GetString("CustomiseTheMouseButtons", resourceCulture); + } + } + /// /// Looks up a localized string similar to Dark color. /// - internal static string DarkColor { + public static string DarkColor { get { return ResourceManager.GetString("DarkColor", resourceCulture); } @@ -1017,7 +1963,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Dark mode. /// - internal static string DarkMode { + public static string DarkMode { get { return ResourceManager.GetString("DarkMode", resourceCulture); } @@ -1026,7 +1972,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Data usage. /// - internal static string DataUsage { + public static string DataUsage { get { return ResourceManager.GetString("DataUsage", resourceCulture); } @@ -1035,7 +1981,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Date and time. /// - internal static string DateAndTime { + public static string DateAndTime { get { return ResourceManager.GetString("DateAndTime", resourceCulture); } @@ -1044,7 +1990,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Default apps. /// - internal static string DefaultApps { + public static string DefaultApps { get { return ResourceManager.GetString("DefaultApps", resourceCulture); } @@ -1053,7 +1999,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Default camera. /// - internal static string DefaultCamera { + public static string DefaultCamera { get { return ResourceManager.GetString("DefaultCamera", resourceCulture); } @@ -1062,7 +2008,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Default location. /// - internal static string DefaultLocation { + public static string DefaultLocation { get { return ResourceManager.GetString("DefaultLocation", resourceCulture); } @@ -1071,7 +2017,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Default programs. /// - internal static string DefaultPrograms { + public static string DefaultPrograms { get { return ResourceManager.GetString("DefaultPrograms", resourceCulture); } @@ -1080,16 +2026,43 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Default Save Locations. /// - internal static string DefaultSaveLocations { + public static string DefaultSaveLocations { get { return ResourceManager.GetString("DefaultSaveLocations", resourceCulture); } } + /// + /// Looks up a localized string similar to Defragment and optimise your drives. + /// + public static string DefragmentAndOptimiseYourDrives { + get { + return ResourceManager.GetString("DefragmentAndOptimiseYourDrives", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete browsing history. + /// + public static string DeleteBrowsingHistory { + get { + return ResourceManager.GetString("DeleteBrowsingHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete cookies or temporary files. + /// + public static string DeleteCookiesOrTemporaryFiles { + get { + return ResourceManager.GetString("DeleteCookiesOrTemporaryFiles", resourceCulture); + } + } + /// /// Looks up a localized string similar to Delivery Optimization. /// - internal static string DeliveryOptimization { + public static string DeliveryOptimization { get { return ResourceManager.GetString("DeliveryOptimization", resourceCulture); } @@ -1098,7 +2071,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to desk.cpl. /// - internal static string desk_cpl { + public static string desk_cpl { get { return ResourceManager.GetString("desk.cpl", resourceCulture); } @@ -1107,7 +2080,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Desktop themes. /// - internal static string DesktopThemes { + public static string DesktopThemes { get { return ResourceManager.GetString("DesktopThemes", resourceCulture); } @@ -1116,7 +2089,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to deuteranopia. /// - internal static string deuteranopia { + public static string deuteranopia { get { return ResourceManager.GetString("deuteranopia", resourceCulture); } @@ -1125,7 +2098,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Device manager. /// - internal static string DeviceManager { + public static string DeviceManager { get { return ResourceManager.GetString("DeviceManager", resourceCulture); } @@ -1134,7 +2107,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Devices and printers. /// - internal static string DevicesAndPrinters { + public static string DevicesAndPrinters { get { return ResourceManager.GetString("DevicesAndPrinters", resourceCulture); } @@ -1143,16 +2116,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to DHCP. /// - internal static string Dhcp { + public static string Dhcp { get { return ResourceManager.GetString("Dhcp", resourceCulture); } } + /// + /// Looks up a localized string similar to Diagnose your computer's memory problems. + /// + public static string DiagnoseYourComputersMemoryProblems { + get { + return ResourceManager.GetString("DiagnoseYourComputersMemoryProblems", resourceCulture); + } + } + /// /// Looks up a localized string similar to Dial-up. /// - internal static string DialUp { + public static string DialUp { get { return ResourceManager.GetString("DialUp", resourceCulture); } @@ -1161,7 +2143,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Direct access. /// - internal static string DirectAccess { + public static string DirectAccess { get { return ResourceManager.GetString("DirectAccess", resourceCulture); } @@ -1170,7 +2152,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Direct open your phone. /// - internal static string DirectOpenYourPhone { + public static string DirectOpenYourPhone { get { return ResourceManager.GetString("DirectOpenYourPhone", resourceCulture); } @@ -1179,7 +2161,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Display. /// - internal static string Display { + public static string Display { get { return ResourceManager.GetString("Display", resourceCulture); } @@ -1188,7 +2170,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Display properties. /// - internal static string DisplayProperties { + public static string DisplayProperties { get { return ResourceManager.GetString("DisplayProperties", resourceCulture); } @@ -1197,7 +2179,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to DNS. /// - internal static string DNS { + public static string DNS { get { return ResourceManager.GetString("DNS", resourceCulture); } @@ -1206,7 +2188,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Documents. /// - internal static string Documents { + public static string Documents { get { return ResourceManager.GetString("Documents", resourceCulture); } @@ -1215,7 +2197,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Duplicating my display. /// - internal static string DuplicatingMyDisplay { + public static string DuplicatingMyDisplay { get { return ResourceManager.GetString("DuplicatingMyDisplay", resourceCulture); } @@ -1224,7 +2206,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to During these hours. /// - internal static string DuringTheseHours { + public static string DuringTheseHours { get { return ResourceManager.GetString("DuringTheseHours", resourceCulture); } @@ -1233,25 +2215,70 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Ease of access center. /// - internal static string EaseOfAccessCenter { + public static string EaseOfAccessCenter { get { return ResourceManager.GetString("EaseOfAccessCenter", resourceCulture); } } + /// + /// Looks up a localized string similar to Edit environment variables for your account. + /// + public static string EditEnvironmentVariablesForYourAccount { + get { + return ResourceManager.GetString("EditEnvironmentVariablesForYourAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit group policy. + /// + public static string EditGroupPolicy { + get { + return ResourceManager.GetString("EditGroupPolicy", resourceCulture); + } + } + /// /// Looks up a localized string similar to Edition. /// - internal static string Edition { + public static string Edition { get { return ResourceManager.GetString("Edition", resourceCulture); } } + /// + /// Looks up a localized string similar to Edit local users and groups. + /// + public static string EditLocalUsersAndGroups { + get { + return ResourceManager.GetString("EditLocalUsersAndGroups", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit power plan. + /// + public static string EditPowerPlan { + get { + return ResourceManager.GetString("EditPowerPlan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit the system environment variables. + /// + public static string EditTheSystemEnvironmentVariables { + get { + return ResourceManager.GetString("EditTheSystemEnvironmentVariables", resourceCulture); + } + } + /// /// Looks up a localized string similar to Email. /// - internal static string Email { + public static string Email { get { return ResourceManager.GetString("Email", resourceCulture); } @@ -1260,25 +2287,43 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Email and app accounts. /// - internal static string EmailAndAppAccounts { + public static string EmailAndAppAccounts { get { return ResourceManager.GetString("EmailAndAppAccounts", resourceCulture); } } + /// + /// Looks up a localized string similar to Enable or disable session cookies. + /// + public static string EnableOrDisableSessionCookies { + get { + return ResourceManager.GetString("EnableOrDisableSessionCookies", resourceCulture); + } + } + /// /// Looks up a localized string similar to Encryption. /// - internal static string Encryption { + public static string Encryption { get { return ResourceManager.GetString("Encryption", resourceCulture); } } + /// + /// Looks up a localized string similar to Encrypt your offline files. + /// + public static string EncryptYourOfflineFiles { + get { + return ResourceManager.GetString("EncryptYourOfflineFiles", resourceCulture); + } + } + /// /// Looks up a localized string similar to Environment. /// - internal static string Environment { + public static string Environment { get { return ResourceManager.GetString("Environment", resourceCulture); } @@ -1287,7 +2332,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Ethernet. /// - internal static string Ethernet { + public static string Ethernet { get { return ResourceManager.GetString("Ethernet", resourceCulture); } @@ -1296,7 +2341,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Exploit Protection. /// - internal static string ExploitProtection { + public static string ExploitProtection { get { return ResourceManager.GetString("ExploitProtection", resourceCulture); } @@ -1305,7 +2350,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Extras. /// - internal static string Extras { + public static string Extras { get { return ResourceManager.GetString("Extras", resourceCulture); } @@ -1314,7 +2359,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Eye control. /// - internal static string EyeControl { + public static string EyeControl { get { return ResourceManager.GetString("EyeControl", resourceCulture); } @@ -1323,7 +2368,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Eye tracker. /// - internal static string EyeTracker { + public static string EyeTracker { get { return ResourceManager.GetString("EyeTracker", resourceCulture); } @@ -1332,7 +2377,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Family and other people. /// - internal static string FamilyAndOtherPeople { + public static string FamilyAndOtherPeople { get { return ResourceManager.GetString("FamilyAndOtherPeople", resourceCulture); } @@ -1341,7 +2386,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Feedback and diagnostics. /// - internal static string FeedbackAndDiagnostics { + public static string FeedbackAndDiagnostics { get { return ResourceManager.GetString("FeedbackAndDiagnostics", resourceCulture); } @@ -1350,16 +2395,97 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to File system. /// - internal static string FileSystem { + public static string FileSystem { get { return ResourceManager.GetString("FileSystem", resourceCulture); } } + /// + /// Looks up a localized string similar to Find and fix audio playback problems. + /// + public static string FindAndFixAudioPlaybackProblems { + get { + return ResourceManager.GetString("FindAndFixAudioPlaybackProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix audio recording problems. + /// + public static string FindAndFixAudioRecordingProblems { + get { + return ResourceManager.GetString("FindAndFixAudioRecordingProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix bluescreen problems. + /// + public static string FindAndFixBluescreenProblems { + get { + return ResourceManager.GetString("FindAndFixBluescreenProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix keyboard problems. + /// + public static string FindAndFixKeyboardProblems { + get { + return ResourceManager.GetString("FindAndFixKeyboardProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix networking and connection problems. + /// + public static string FindAndFixNetworkingAndConnectionProblems { + get { + return ResourceManager.GetString("FindAndFixNetworkingAndConnectionProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix printing problems. + /// + public static string FindAndFixPrintingProblems { + get { + return ResourceManager.GetString("FindAndFixPrintingProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix problems. + /// + public static string FindAndFixProblems { + get { + return ResourceManager.GetString("FindAndFixProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix problems with Windows Search. + /// + public static string FindAndFixProblemsWithWindowsSearch { + get { + return ResourceManager.GetString("FindAndFixProblemsWithWindowsSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find and fix windows update problems. + /// + public static string FindAndFixWindowsUpdateProblems { + get { + return ResourceManager.GetString("FindAndFixWindowsUpdateProblems", resourceCulture); + } + } + /// /// Looks up a localized string similar to FindFast. /// - internal static string FindFast { + public static string FindFast { get { return ResourceManager.GetString("FindFast", resourceCulture); } @@ -1368,7 +2494,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to findfast.cpl. /// - internal static string findfast_cpl { + public static string findfast_cpl { get { return ResourceManager.GetString("findfast.cpl", resourceCulture); } @@ -1377,7 +2503,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Find My Device. /// - internal static string FindMyDevice { + public static string FindMyDevice { get { return ResourceManager.GetString("FindMyDevice", resourceCulture); } @@ -1386,16 +2512,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Firewall. /// - internal static string Firewall { + public static string Firewall { get { return ResourceManager.GetString("Firewall", resourceCulture); } } + /// + /// Looks up a localized string similar to Fix problems with your computer. + /// + public static string FixProblemsWithYourComputer { + get { + return ResourceManager.GetString("FixProblemsWithYourComputer", resourceCulture); + } + } + /// /// Looks up a localized string similar to Focus assist - Quiet hours. /// - internal static string FocusAssistQuietHours { + public static string FocusAssistQuietHours { get { return ResourceManager.GetString("FocusAssistQuietHours", resourceCulture); } @@ -1404,7 +2539,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Focus assist - Quiet moments. /// - internal static string FocusAssistQuietMoments { + public static string FocusAssistQuietMoments { get { return ResourceManager.GetString("FocusAssistQuietMoments", resourceCulture); } @@ -1413,7 +2548,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Folder options. /// - internal static string FolderOptions { + public static string FolderOptions { get { return ResourceManager.GetString("FolderOptions", resourceCulture); } @@ -1422,7 +2557,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Fonts. /// - internal static string Fonts { + public static string Fonts { get { return ResourceManager.GetString("Fonts", resourceCulture); } @@ -1431,7 +2566,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to For developers. /// - internal static string ForDevelopers { + public static string ForDevelopers { get { return ResourceManager.GetString("ForDevelopers", resourceCulture); } @@ -1440,7 +2575,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Game bar. /// - internal static string GameBar { + public static string GameBar { get { return ResourceManager.GetString("GameBar", resourceCulture); } @@ -1449,7 +2584,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Game controllers. /// - internal static string GameControllers { + public static string GameControllers { get { return ResourceManager.GetString("GameControllers", resourceCulture); } @@ -1458,7 +2593,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Game DVR. /// - internal static string GameDvr { + public static string GameDvr { get { return ResourceManager.GetString("GameDvr", resourceCulture); } @@ -1467,7 +2602,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Game Mode. /// - internal static string GameMode { + public static string GameMode { get { return ResourceManager.GetString("GameMode", resourceCulture); } @@ -1476,7 +2611,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Gateway. /// - internal static string Gateway { + public static string Gateway { get { return ResourceManager.GetString("Gateway", resourceCulture); } @@ -1485,16 +2620,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to General. /// - internal static string General { + public static string General { get { return ResourceManager.GetString("General", resourceCulture); } } + /// + /// Looks up a localized string similar to Generate a system health report. + /// + public static string GenerateASystemHealthReport { + get { + return ResourceManager.GetString("GenerateASystemHealthReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get more features with a new edition of Windows. + /// + public static string GetMoreFeaturesWithANewEditionOfWindows { + get { + return ResourceManager.GetString("GetMoreFeaturesWithANewEditionOfWindows", resourceCulture); + } + } + /// /// Looks up a localized string similar to Get programs. /// - internal static string GetPrograms { + public static string GetPrograms { get { return ResourceManager.GetString("GetPrograms", resourceCulture); } @@ -1503,16 +2656,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Getting started. /// - internal static string GettingStarted { + public static string GettingStarted { get { return ResourceManager.GetString("GettingStarted", resourceCulture); } } + /// + /// Looks up a localized string similar to Give administrative rights to a domain user. + /// + public static string GiveAdministrativeRightsToADomainUser { + get { + return ResourceManager.GetString("GiveAdministrativeRightsToADomainUser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Give other users access to this computer. + /// + public static string GiveOtherUsersAccessToThisComputer { + get { + return ResourceManager.GetString("GiveOtherUsersAccessToThisComputer", resourceCulture); + } + } + /// /// Looks up a localized string similar to Glance. /// - internal static string Glance { + public static string Glance { get { return ResourceManager.GetString("Glance", resourceCulture); } @@ -1521,7 +2692,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Graphics settings. /// - internal static string GraphicsSettings { + public static string GraphicsSettings { get { return ResourceManager.GetString("GraphicsSettings", resourceCulture); } @@ -1530,7 +2701,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Grayscale. /// - internal static string Grayscale { + public static string Grayscale { get { return ResourceManager.GetString("Grayscale", resourceCulture); } @@ -1539,25 +2710,52 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Green week. /// - internal static string GreenWeek { + public static string GreenWeek { get { return ResourceManager.GetString("GreenWeek", resourceCulture); } } + /// + /// Looks up a localized string similar to Group similar windows on the taskbar. + /// + public static string GroupSimilarWindowsOnTheTaskbar { + get { + return ResourceManager.GetString("GroupSimilarWindowsOnTheTaskbar", resourceCulture); + } + } + /// /// Looks up a localized string similar to Headset display. /// - internal static string HeadsetDisplay { + public static string HeadsetDisplay { get { return ResourceManager.GetString("HeadsetDisplay", resourceCulture); } } + /// + /// Looks up a localized string similar to Hear a tone when keys are pressed. + /// + public static string HearAToneWhenKeysArePressed { + get { + return ResourceManager.GetString("HearAToneWhenKeysArePressed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hear text read aloud with Narrator. + /// + public static string HearTextReadAloudWithNarrator { + get { + return ResourceManager.GetString("HearTextReadAloudWithNarrator", resourceCulture); + } + } + /// /// Looks up a localized string similar to High contrast. /// - internal static string HighContrast { + public static string HighContrast { get { return ResourceManager.GetString("HighContrast", resourceCulture); } @@ -1566,7 +2764,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Holographic audio. /// - internal static string HolographicAudio { + public static string HolographicAudio { get { return ResourceManager.GetString("HolographicAudio", resourceCulture); } @@ -1575,7 +2773,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Holographic Environment. /// - internal static string HolographicEnvironment { + public static string HolographicEnvironment { get { return ResourceManager.GetString("HolographicEnvironment", resourceCulture); } @@ -1584,7 +2782,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Holographic Headset. /// - internal static string HolographicHeadset { + public static string HolographicHeadset { get { return ResourceManager.GetString("HolographicHeadset", resourceCulture); } @@ -1593,7 +2791,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Holographic Management. /// - internal static string HolographicManagement { + public static string HolographicManagement { get { return ResourceManager.GetString("HolographicManagement", resourceCulture); } @@ -1602,25 +2800,70 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Home group. /// - internal static string HomeGroup { + public static string HomeGroup { get { return ResourceManager.GetString("HomeGroup", resourceCulture); } } + /// + /// Looks up a localized string similar to How to change the size of virtual memory. + /// + public static string HowToChangeTheSizeOfVirtualMemory { + get { + return ResourceManager.GetString("HowToChangeTheSizeOfVirtualMemory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How to change your Windows password. + /// + public static string HowToChangeYourWindowsPassword { + get { + return ResourceManager.GetString("HowToChangeYourWindowsPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How to install a program. + /// + public static string HowToInstallAProgram { + get { + return ResourceManager.GetString("HowToInstallAProgram", resourceCulture); + } + } + /// /// Looks up a localized string similar to ID. /// - internal static string Id { + public static string Id { get { return ResourceManager.GetString("Id", resourceCulture); } } + /// + /// Looks up a localized string similar to Identify and repair network problems. + /// + public static string IdentifyAndRepairNetworkProblems { + get { + return ResourceManager.GetString("IdentifyAndRepairNetworkProblems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore repeated keystrokes using FilterKeys. + /// + public static string IgnoreRepeatedKeystrokesUsingFilterkeys { + get { + return ResourceManager.GetString("IgnoreRepeatedKeystrokesUsingFilterkeys", resourceCulture); + } + } + /// /// Looks up a localized string similar to Image. /// - internal static string Image { + public static string Image { get { return ResourceManager.GetString("Image", resourceCulture); } @@ -1629,7 +2872,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Indexing options. /// - internal static string IndexingOptions { + public static string IndexingOptions { get { return ResourceManager.GetString("IndexingOptions", resourceCulture); } @@ -1638,7 +2881,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to inetcpl.cpl. /// - internal static string inetcpl_cpl { + public static string inetcpl_cpl { get { return ResourceManager.GetString("inetcpl.cpl", resourceCulture); } @@ -1647,7 +2890,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Infrared. /// - internal static string Infrared { + public static string Infrared { get { return ResourceManager.GetString("Infrared", resourceCulture); } @@ -1656,16 +2899,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Inking and typing. /// - internal static string InkingAndTyping { + public static string InkingAndTyping { get { return ResourceManager.GetString("InkingAndTyping", resourceCulture); } } + /// + /// Looks up a localized string similar to Install a program from the network. + /// + public static string InstallAProgramFromTheNetwork { + get { + return ResourceManager.GetString("InstallAProgramFromTheNetwork", resourceCulture); + } + } + /// /// Looks up a localized string similar to Internet options. /// - internal static string InternetOptions { + public static string InternetOptions { get { return ResourceManager.GetString("InternetOptions", resourceCulture); } @@ -1674,7 +2926,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to intl.cpl. /// - internal static string intl_cpl { + public static string intl_cpl { get { return ResourceManager.GetString("intl.cpl", resourceCulture); } @@ -1683,16 +2935,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Inverted colors. /// - internal static string InvertedColors { + public static string InvertedColors { get { return ResourceManager.GetString("InvertedColors", resourceCulture); } } + /// + /// Looks up a localized string similar to Invite someone to connect to your PC and help you, or offer to help someone else. + /// + public static string InviteSomeoneToConnectToYourPCAndHelpYouOrOfferToHelpSomeoneElse { + get { + return ResourceManager.GetString("InviteSomeoneToConnectToYourPCAndHelpYouOrOfferToHelpSomeoneElse", resourceCulture); + } + } + /// /// Looks up a localized string similar to IP. /// - internal static string Ip { + public static string Ip { get { return ResourceManager.GetString("Ip", resourceCulture); } @@ -1701,7 +2962,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Isolated Browsing. /// - internal static string IsolatedBrowsing { + public static string IsolatedBrowsing { get { return ResourceManager.GetString("IsolatedBrowsing", resourceCulture); } @@ -1710,16 +2971,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Japan IME settings. /// - internal static string JapanImeSettings { + public static string JapanImeSettings { get { return ResourceManager.GetString("JapanImeSettings", resourceCulture); } } + /// + /// Looks up a localized string similar to Join a domain. + /// + public static string JoinADomain { + get { + return ResourceManager.GetString("JoinADomain", resourceCulture); + } + } + /// /// Looks up a localized string similar to joy.cpl. /// - internal static string joy_cpl { + public static string joy_cpl { get { return ResourceManager.GetString("joy.cpl", resourceCulture); } @@ -1728,7 +2998,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Joystick properties. /// - internal static string JoystickProperties { + public static string JoystickProperties { get { return ResourceManager.GetString("JoystickProperties", resourceCulture); } @@ -1737,7 +3007,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to jpnime. /// - internal static string jpnime { + public static string jpnime { get { return ResourceManager.GetString("jpnime", resourceCulture); } @@ -1746,7 +3016,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Keyboard. /// - internal static string Keyboard { + public static string Keyboard { get { return ResourceManager.GetString("Keyboard", resourceCulture); } @@ -1755,7 +3025,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Keypad. /// - internal static string Keypad { + public static string Keypad { get { return ResourceManager.GetString("Keypad", resourceCulture); } @@ -1764,7 +3034,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Keys. /// - internal static string Keys { + public static string Keys { get { return ResourceManager.GetString("Keys", resourceCulture); } @@ -1773,16 +3043,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Language. /// - internal static string Language { + public static string Language { get { return ResourceManager.GetString("Language", resourceCulture); } } + /// + /// Looks up a localized string similar to Let Windows suggest Ease of Access settings. + /// + public static string LetWindowsSuggestEaseOfAccessSettings { + get { + return ResourceManager.GetString("LetWindowsSuggestEaseOfAccessSettings", resourceCulture); + } + } + /// /// Looks up a localized string similar to Light color. /// - internal static string LightColor { + public static string LightColor { get { return ResourceManager.GetString("LightColor", resourceCulture); } @@ -1791,7 +3070,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Light mode. /// - internal static string LightMode { + public static string LightMode { get { return ResourceManager.GetString("LightMode", resourceCulture); } @@ -1800,16 +3079,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Location. /// - internal static string Location { + public static string Location { get { return ResourceManager.GetString("Location", resourceCulture); } } + /// + /// Looks up a localized string similar to Lock or unlock the taskbar. + /// + public static string LockOrUnlockTheTaskbar { + get { + return ResourceManager.GetString("LockOrUnlockTheTaskbar", resourceCulture); + } + } + /// /// Looks up a localized string similar to Lock screen. /// - internal static string LockScreen { + public static string LockScreen { get { return ResourceManager.GetString("LockScreen", resourceCulture); } @@ -1818,16 +3106,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Magnifier. /// - internal static string Magnifier { + public static string Magnifier { get { return ResourceManager.GetString("Magnifier", resourceCulture); } } + /// + /// Looks up a localized string similar to Magnify portions of the screen using Magnifier. + /// + public static string MagnifyPortionsOfTheScreenUsingMagnifier { + get { + return ResourceManager.GetString("MagnifyPortionsOfTheScreenUsingMagnifier", resourceCulture); + } + } + /// /// Looks up a localized string similar to Mail - Microsoft Exchange or Windows Messaging. /// - internal static string MailMicrosoftExchangeOrWindowsMessaging { + public static string MailMicrosoftExchangeOrWindowsMessaging { get { return ResourceManager.GetString("MailMicrosoftExchangeOrWindowsMessaging", resourceCulture); } @@ -1836,34 +3133,196 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to main.cpl. /// - internal static string main_cpl { + public static string main_cpl { get { return ResourceManager.GetString("main.cpl", resourceCulture); } } + /// + /// Looks up a localized string similar to Make a file type always open in a specific program. + /// + public static string MakeAFileTypeAlwaysOpenInASpecificProgram { + get { + return ResourceManager.GetString("MakeAFileTypeAlwaysOpenInASpecificProgram", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Make changes to accounts. + /// + public static string MakeChangesToAccounts { + get { + return ResourceManager.GetString("MakeChangesToAccounts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Make it easier to see the mouse pointer. + /// + public static string MakeItEasierToSeeTheMousePointer { + get { + return ResourceManager.GetString("MakeItEasierToSeeTheMousePointer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage advanced sharing settings. + /// + public static string ManageAdvancedSharingSettings { + get { + return ResourceManager.GetString("ManageAdvancedSharingSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage audio devices. + /// + public static string ManageAudioDevices { + get { + return ResourceManager.GetString("ManageAudioDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage BitLocker. + /// + public static string ManageBitlocker { + get { + return ResourceManager.GetString("ManageBitlocker", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage browser add-ons. + /// + public static string ManageBrowserAddOns { + get { + return ResourceManager.GetString("ManageBrowserAddOns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage computer certificates. + /// + public static string ManageComputerCertificates { + get { + return ResourceManager.GetString("ManageComputerCertificates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage disk space used by your offline files. + /// + public static string ManageDiskSpaceUsedByYourOfflineFiles { + get { + return ResourceManager.GetString("ManageDiskSpaceUsedByYourOfflineFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage file encryption certificates. + /// + public static string ManageFileEncryptionCertificates { + get { + return ResourceManager.GetString("ManageFileEncryptionCertificates", resourceCulture); + } + } + /// /// Looks up a localized string similar to Manage known networks. /// - internal static string ManageKnownNetworks { + public static string ManageKnownNetworks { get { return ResourceManager.GetString("ManageKnownNetworks", resourceCulture); } } + /// + /// Looks up a localized string similar to Manage network passwords. + /// + public static string ManageNetworkPasswords { + get { + return ResourceManager.GetString("ManageNetworkPasswords", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage offline files. + /// + public static string ManageOfflineFiles { + get { + return ResourceManager.GetString("ManageOfflineFiles", resourceCulture); + } + } + /// /// Looks up a localized string similar to Manage optional features. /// - internal static string ManageOptionalFeatures { + public static string ManageOptionalFeatures { get { return ResourceManager.GetString("ManageOptionalFeatures", resourceCulture); } } + /// + /// Looks up a localized string similar to Manage Storage Spaces. + /// + public static string ManageStorageSpaces { + get { + return ResourceManager.GetString("ManageStorageSpaces", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage user certificates. + /// + public static string ManageUserCertificates { + get { + return ResourceManager.GetString("ManageUserCertificates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage Web Credentials. + /// + public static string ManageWebCredentials { + get { + return ResourceManager.GetString("ManageWebCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage Windows Credentials. + /// + public static string ManageWindowsCredentials { + get { + return ResourceManager.GetString("ManageWindowsCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage Work Folders. + /// + public static string ManageWorkFolders { + get { + return ResourceManager.GetString("ManageWorkFolders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media streaming options. + /// + public static string MediaStreamingOptions { + get { + return ResourceManager.GetString("MediaStreamingOptions", resourceCulture); + } + } + /// /// Looks up a localized string similar to Messaging. /// - internal static string Messaging { + public static string Messaging { get { return ResourceManager.GetString("Messaging", resourceCulture); } @@ -1872,7 +3331,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Metered connection. /// - internal static string MeteredConnection { + public static string MeteredConnection { get { return ResourceManager.GetString("MeteredConnection", resourceCulture); } @@ -1881,25 +3340,70 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Microphone. /// - internal static string Microphone { + public static string Microphone { get { return ResourceManager.GetString("Microphone", resourceCulture); } } + /// + /// Looks up a localized string similar to Microsoft ChangJie Settings. + /// + public static string MicrosoftChangjieSettings { + get { + return ResourceManager.GetString("MicrosoftChangjieSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microsoft IME Register Word (Japanese). + /// + public static string MicrosoftIMERegisterWordJapanese { + get { + return ResourceManager.GetString("MicrosoftIMERegisterWordJapanese", resourceCulture); + } + } + /// /// Looks up a localized string similar to Microsoft Mail Post Office. /// - internal static string MicrosoftMailPostOffice { + public static string MicrosoftMailPostOffice { get { return ResourceManager.GetString("MicrosoftMailPostOffice", resourceCulture); } } + /// + /// Looks up a localized string similar to Microsoft New Phonetic Settings. + /// + public static string MicrosoftNewPhoneticSettings { + get { + return ResourceManager.GetString("MicrosoftNewPhoneticSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microsoft Pinyin SimpleFast Options. + /// + public static string MicrosoftPinyinSimplefastOptions { + get { + return ResourceManager.GetString("MicrosoftPinyinSimplefastOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microsoft Quick Settings. + /// + public static string MicrosoftQuickSettings { + get { + return ResourceManager.GetString("MicrosoftQuickSettings", resourceCulture); + } + } + /// /// Looks up a localized string similar to mlcfg32.cpl. /// - internal static string mlcfg32_cpl { + public static string mlcfg32_cpl { get { return ResourceManager.GetString("mlcfg32.cpl", resourceCulture); } @@ -1908,7 +3412,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to mmsys.cpl. /// - internal static string mmsys_cpl { + public static string mmsys_cpl { get { return ResourceManager.GetString("mmsys.cpl", resourceCulture); } @@ -1917,7 +3421,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mobile devices. /// - internal static string MobileDevices { + public static string MobileDevices { get { return ResourceManager.GetString("MobileDevices", resourceCulture); } @@ -1926,7 +3430,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mobile hotspot. /// - internal static string MobileHotspot { + public static string MobileHotspot { get { return ResourceManager.GetString("MobileHotspot", resourceCulture); } @@ -1935,7 +3439,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to modem.cpl. /// - internal static string modem_cpl { + public static string modem_cpl { get { return ResourceManager.GetString("modem.cpl", resourceCulture); } @@ -1944,7 +3448,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mono. /// - internal static string Mono { + public static string Mono { get { return ResourceManager.GetString("Mono", resourceCulture); } @@ -1953,7 +3457,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to More details. /// - internal static string MoreDetails { + public static string MoreDetails { get { return ResourceManager.GetString("MoreDetails", resourceCulture); } @@ -1962,7 +3466,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Motion. /// - internal static string Motion { + public static string Motion { get { return ResourceManager.GetString("Motion", resourceCulture); } @@ -1971,7 +3475,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mouse. /// - internal static string Mouse { + public static string Mouse { get { return ResourceManager.GetString("Mouse", resourceCulture); } @@ -1980,7 +3484,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mouse and touchpad. /// - internal static string MouseAndTouchpad { + public static string MouseAndTouchpad { get { return ResourceManager.GetString("MouseAndTouchpad", resourceCulture); } @@ -1989,7 +3493,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mouse, Fonts, Keyboard, and Printers properties. /// - internal static string MouseFontsKeyboardAndPrintersProperties { + public static string MouseFontsKeyboardAndPrintersProperties { get { return ResourceManager.GetString("MouseFontsKeyboardAndPrintersProperties", resourceCulture); } @@ -1998,16 +3502,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Mouse pointer. /// - internal static string MousePointer { + public static string MousePointer { get { return ResourceManager.GetString("MousePointer", resourceCulture); } } + /// + /// Looks up a localized string similar to Move the pointer with the keypad using MouseKeys. + /// + public static string MoveThePointerWithTheKeypadUsingMousekeys { + get { + return ResourceManager.GetString("MoveThePointerWithTheKeypadUsingMousekeys", resourceCulture); + } + } + /// /// Looks up a localized string similar to Multimedia properties. /// - internal static string MultimediaProperties { + public static string MultimediaProperties { get { return ResourceManager.GetString("MultimediaProperties", resourceCulture); } @@ -2016,7 +3529,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Multitasking. /// - internal static string Multitasking { + public static string Multitasking { get { return ResourceManager.GetString("Multitasking", resourceCulture); } @@ -2025,7 +3538,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Narrator. /// - internal static string Narrator { + public static string Narrator { get { return ResourceManager.GetString("Narrator", resourceCulture); } @@ -2034,16 +3547,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Navigation bar. /// - internal static string NavigationBar { + public static string NavigationBar { get { return ResourceManager.GetString("NavigationBar", resourceCulture); } } + /// + /// Looks up a localized string similar to Navigation properties. + /// + public static string NavigationProperties { + get { + return ResourceManager.GetString("NavigationProperties", resourceCulture); + } + } + /// /// Looks up a localized string similar to netcpl.cpl. /// - internal static string netcpl_cpl { + public static string netcpl_cpl { get { return ResourceManager.GetString("netcpl.cpl", resourceCulture); } @@ -2052,7 +3574,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to netsetup.cpl. /// - internal static string netsetup_cpl { + public static string netsetup_cpl { get { return ResourceManager.GetString("netsetup.cpl", resourceCulture); } @@ -2061,7 +3583,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network. /// - internal static string Network { + public static string Network { get { return ResourceManager.GetString("Network", resourceCulture); } @@ -2070,7 +3592,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network and sharing center. /// - internal static string NetworkAndSharingCenter { + public static string NetworkAndSharingCenter { get { return ResourceManager.GetString("NetworkAndSharingCenter", resourceCulture); } @@ -2079,7 +3601,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network connection. /// - internal static string NetworkConnection { + public static string NetworkConnection { get { return ResourceManager.GetString("NetworkConnection", resourceCulture); } @@ -2088,7 +3610,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network properties. /// - internal static string NetworkProperties { + public static string NetworkProperties { get { return ResourceManager.GetString("NetworkProperties", resourceCulture); } @@ -2097,7 +3619,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network Setup Wizard. /// - internal static string NetworkSetupWizard { + public static string NetworkSetupWizard { get { return ResourceManager.GetString("NetworkSetupWizard", resourceCulture); } @@ -2106,7 +3628,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Network status. /// - internal static string NetworkStatus { + public static string NetworkStatus { get { return ResourceManager.GetString("NetworkStatus", resourceCulture); } @@ -2115,7 +3637,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to NFC. /// - internal static string NFC { + public static string NFC { get { return ResourceManager.GetString("NFC", resourceCulture); } @@ -2124,7 +3646,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to NFC Transactions. /// - internal static string NFCTransactions { + public static string NFCTransactions { get { return ResourceManager.GetString("NFCTransactions", resourceCulture); } @@ -2133,7 +3655,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Night light. /// - internal static string NightLight { + public static string NightLight { get { return ResourceManager.GetString("NightLight", resourceCulture); } @@ -2142,7 +3664,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Night light settings. /// - internal static string NightLightSettings { + public static string NightLightSettings { get { return ResourceManager.GetString("NightLightSettings", resourceCulture); } @@ -2151,7 +3673,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Note. /// - internal static string Note { + public static string Note { get { return ResourceManager.GetString("Note", resourceCulture); } @@ -2160,7 +3682,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available when you have connected a mobile device to your device.. /// - internal static string NoteAddYourPhone { + public static string NoteAddYourPhone { get { return ResourceManager.GetString("NoteAddYourPhone", resourceCulture); } @@ -2169,7 +3691,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available on devices that support advanced graphics options.. /// - internal static string NoteAdvancedGraphics { + public static string NoteAdvancedGraphics { get { return ResourceManager.GetString("NoteAdvancedGraphics", resourceCulture); } @@ -2178,7 +3700,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available on devices that have a battery, such as a tablet.. /// - internal static string NoteBattery { + public static string NoteBattery { get { return ResourceManager.GetString("NoteBattery", resourceCulture); } @@ -2187,7 +3709,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Deprecated in Windows 10, version 1809 (build 17763) and later.. /// - internal static string NoteDeprecated17763 { + public static string NoteDeprecated17763 { get { return ResourceManager.GetString("NoteDeprecated17763", resourceCulture); } @@ -2196,7 +3718,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if Dial is paired.. /// - internal static string NoteDialPaired { + public static string NoteDialPaired { get { return ResourceManager.GetString("NoteDialPaired", resourceCulture); } @@ -2205,7 +3727,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if DirectAccess is enabled.. /// - internal static string NoteDirectAccess { + public static string NoteDirectAccess { get { return ResourceManager.GetString("NoteDirectAccess", resourceCulture); } @@ -2214,7 +3736,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available on devices that support advanced display options.. /// - internal static string NoteDisplayGraphics { + public static string NoteDisplayGraphics { get { return ResourceManager.GetString("NoteDisplayGraphics", resourceCulture); } @@ -2223,7 +3745,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only present if user is enrolled in WIP.. /// - internal static string NoteEnrolledWIP { + public static string NoteEnrolledWIP { get { return ResourceManager.GetString("NoteEnrolledWIP", resourceCulture); } @@ -2232,7 +3754,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Requires eyetracker hardware.. /// - internal static string NoteEyetrackerHardware { + public static string NoteEyetrackerHardware { get { return ResourceManager.GetString("NoteEyetrackerHardware", resourceCulture); } @@ -2241,7 +3763,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Available if the Microsoft Japan input method editor is installed.. /// - internal static string NoteImeJapan { + public static string NoteImeJapan { get { return ResourceManager.GetString("NoteImeJapan", resourceCulture); } @@ -2250,7 +3772,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Available if the Microsoft Pinyin input method editor is installed.. /// - internal static string NoteImePinyin { + public static string NoteImePinyin { get { return ResourceManager.GetString("NoteImePinyin", resourceCulture); } @@ -2259,7 +3781,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Available if the Microsoft Wubi input method editor is installed.. /// - internal static string NoteImeWubi { + public static string NoteImeWubi { get { return ResourceManager.GetString("NoteImeWubi", resourceCulture); } @@ -2268,7 +3790,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if the Mixed Reality Portal app is installed.. /// - internal static string NoteMixedReality { + public static string NoteMixedReality { get { return ResourceManager.GetString("NoteMixedReality", resourceCulture); } @@ -2277,7 +3799,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available on mobile and if the enterprise has deployed a provisioning package.. /// - internal static string NoteMobileProvisioning { + public static string NoteMobileProvisioning { get { return ResourceManager.GetString("NoteMobileProvisioning", resourceCulture); } @@ -2286,7 +3808,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Added in Windows 10, version 1903 (build 18362).. /// - internal static string NoteSince18362 { + public static string NoteSince18362 { get { return ResourceManager.GetString("NoteSince18362", resourceCulture); } @@ -2295,7 +3817,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Added in Windows 10, version 2004 (build 19041).. /// - internal static string NoteSince19041 { + public static string NoteSince19041 { get { return ResourceManager.GetString("NoteSince19041", resourceCulture); } @@ -2304,7 +3826,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if "settings apps" are installed, for example, by a 3rd party.. /// - internal static string NoteThirdParty { + public static string NoteThirdParty { get { return ResourceManager.GetString("NoteThirdParty", resourceCulture); } @@ -2313,7 +3835,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if touchpad hardware is present.. /// - internal static string NoteTouchpad { + public static string NoteTouchpad { get { return ResourceManager.GetString("NoteTouchpad", resourceCulture); } @@ -2322,7 +3844,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if the device has a Wi-Fi adapter.. /// - internal static string NoteWiFiAdapter { + public static string NoteWiFiAdapter { get { return ResourceManager.GetString("NoteWiFiAdapter", resourceCulture); } @@ -2331,7 +3853,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Device must be Windows Anywhere-capable.. /// - internal static string NoteWindowsAnywhere { + public static string NoteWindowsAnywhere { get { return ResourceManager.GetString("NoteWindowsAnywhere", resourceCulture); } @@ -2340,7 +3862,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Only available if enterprise has deployed a provisioning package.. /// - internal static string NoteWorkplaceProvisioning { + public static string NoteWorkplaceProvisioning { get { return ResourceManager.GetString("NoteWorkplaceProvisioning", resourceCulture); } @@ -2349,7 +3871,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Notifications. /// - internal static string Notifications { + public static string Notifications { get { return ResourceManager.GetString("Notifications", resourceCulture); } @@ -2358,7 +3880,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Notifications and actions. /// - internal static string NotificationsAndActions { + public static string NotificationsAndActions { get { return ResourceManager.GetString("NotificationsAndActions", resourceCulture); } @@ -2367,7 +3889,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Num Lock. /// - internal static string NumLock { + public static string NumLock { get { return ResourceManager.GetString("NumLock", resourceCulture); } @@ -2376,7 +3898,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to nwc.cpl. /// - internal static string nwc_cpl { + public static string nwc_cpl { get { return ResourceManager.GetString("nwc.cpl", resourceCulture); } @@ -2385,7 +3907,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to odbccp32.cpl. /// - internal static string odbccp32_cpl { + public static string odbccp32_cpl { get { return ResourceManager.GetString("odbccp32.cpl", resourceCulture); } @@ -2394,7 +3916,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to ODBC Data Source Administrator (32-bit). /// - internal static string OdbcDataSourceAdministrator32Bit { + public static string OdbcDataSourceAdministrator32Bit { get { return ResourceManager.GetString("OdbcDataSourceAdministrator32Bit", resourceCulture); } @@ -2403,7 +3925,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to ODBC Data Source Administrator (64-bit). /// - internal static string OdbcDataSourceAdministrator64Bit { + public static string OdbcDataSourceAdministrator64Bit { get { return ResourceManager.GetString("OdbcDataSourceAdministrator64Bit", resourceCulture); } @@ -2412,7 +3934,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Offline files. /// - internal static string OfflineFiles { + public static string OfflineFiles { get { return ResourceManager.GetString("OfflineFiles", resourceCulture); } @@ -2421,7 +3943,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Offline Maps. /// - internal static string OfflineMaps { + public static string OfflineMaps { get { return ResourceManager.GetString("OfflineMaps", resourceCulture); } @@ -2430,7 +3952,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Offline Maps - Download maps. /// - internal static string OfflineMapsDownloadMaps { + public static string OfflineMapsDownloadMaps { get { return ResourceManager.GetString("OfflineMapsDownloadMaps", resourceCulture); } @@ -2439,16 +3961,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to On-Screen. /// - internal static string OnScreen { + public static string OnScreen { get { return ResourceManager.GetString("OnScreen", resourceCulture); } } + /// + /// Looks up a localized string similar to Optimise for blindness. + /// + public static string OptimiseForBlindness { + get { + return ResourceManager.GetString("OptimiseForBlindness", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Optimise visual display. + /// + public static string OptimiseVisualDisplay { + get { + return ResourceManager.GetString("OptimiseVisualDisplay", resourceCulture); + } + } + /// /// Looks up a localized string similar to OS. /// - internal static string Os { + public static string Os { get { return ResourceManager.GetString("Os", resourceCulture); } @@ -2457,7 +3997,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Other devices. /// - internal static string OtherDevices { + public static string OtherDevices { get { return ResourceManager.GetString("OtherDevices", resourceCulture); } @@ -2466,7 +4006,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Other options. /// - internal static string OtherOptions { + public static string OtherOptions { get { return ResourceManager.GetString("OtherOptions", resourceCulture); } @@ -2475,7 +4015,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Other users. /// - internal static string OtherUsers { + public static string OtherUsers { get { return ResourceManager.GetString("OtherUsers", resourceCulture); } @@ -2484,7 +4024,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Parental controls. /// - internal static string ParentalControls { + public static string ParentalControls { get { return ResourceManager.GetString("ParentalControls", resourceCulture); } @@ -2493,7 +4033,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Password. /// - internal static string Password { + public static string Password { get { return ResourceManager.GetString("Password", resourceCulture); } @@ -2502,7 +4042,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to password.cpl. /// - internal static string password_cpl { + public static string password_cpl { get { return ResourceManager.GetString("password.cpl", resourceCulture); } @@ -2511,7 +4051,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Password properties. /// - internal static string PasswordProperties { + public static string PasswordProperties { get { return ResourceManager.GetString("PasswordProperties", resourceCulture); } @@ -2520,7 +4060,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pen and input devices. /// - internal static string PenAndInputDevices { + public static string PenAndInputDevices { get { return ResourceManager.GetString("PenAndInputDevices", resourceCulture); } @@ -2529,7 +4069,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pen and touch. /// - internal static string PenAndTouch { + public static string PenAndTouch { get { return ResourceManager.GetString("PenAndTouch", resourceCulture); } @@ -2538,7 +4078,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pen and Windows Ink. /// - internal static string PenAndWindowsInk { + public static string PenAndWindowsInk { get { return ResourceManager.GetString("PenAndWindowsInk", resourceCulture); } @@ -2547,7 +4087,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to People Near Me. /// - internal static string PeopleNearMe { + public static string PeopleNearMe { get { return ResourceManager.GetString("PeopleNearMe", resourceCulture); } @@ -2556,16 +4096,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Performance information and tools. /// - internal static string PerformanceInformationAndTools { + public static string PerformanceInformationAndTools { get { return ResourceManager.GetString("PerformanceInformationAndTools", resourceCulture); } } + /// + /// Looks up a localized string similar to Perform recommended maintenance tasks automatically. + /// + public static string PerformRecommendedMaintenanceTasksAutomatically { + get { + return ResourceManager.GetString("PerformRecommendedMaintenanceTasksAutomatically", resourceCulture); + } + } + /// /// Looks up a localized string similar to Permissions and history. /// - internal static string PermissionsAndHistory { + public static string PermissionsAndHistory { get { return ResourceManager.GetString("PermissionsAndHistory", resourceCulture); } @@ -2574,7 +4123,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Personalization (category). /// - internal static string PersonalizationCategory { + public static string PersonalizationCategory { get { return ResourceManager.GetString("PersonalizationCategory", resourceCulture); } @@ -2583,7 +4132,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Phone. /// - internal static string Phone { + public static string Phone { get { return ResourceManager.GetString("Phone", resourceCulture); } @@ -2592,7 +4141,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Phone and modem. /// - internal static string PhoneAndModem { + public static string PhoneAndModem { get { return ResourceManager.GetString("PhoneAndModem", resourceCulture); } @@ -2601,7 +4150,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Phone and modem - Options. /// - internal static string PhoneAndModemOptions { + public static string PhoneAndModemOptions { get { return ResourceManager.GetString("PhoneAndModemOptions", resourceCulture); } @@ -2610,7 +4159,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Phone calls. /// - internal static string PhoneCalls { + public static string PhoneCalls { get { return ResourceManager.GetString("PhoneCalls", resourceCulture); } @@ -2619,7 +4168,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Phone - Default apps. /// - internal static string PhoneDefaultApps { + public static string PhoneDefaultApps { get { return ResourceManager.GetString("PhoneDefaultApps", resourceCulture); } @@ -2628,7 +4177,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Picture. /// - internal static string Picture { + public static string Picture { get { return ResourceManager.GetString("Picture", resourceCulture); } @@ -2637,7 +4186,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pictures. /// - internal static string Pictures { + public static string Pictures { get { return ResourceManager.GetString("Pictures", resourceCulture); } @@ -2646,7 +4195,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pinyin IME settings. /// - internal static string PinyinImeSettings { + public static string PinyinImeSettings { get { return ResourceManager.GetString("PinyinImeSettings", resourceCulture); } @@ -2655,7 +4204,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pinyin IME settings - domain lexicon. /// - internal static string PinyinImeSettingsDomainLexicon { + public static string PinyinImeSettingsDomainLexicon { get { return ResourceManager.GetString("PinyinImeSettingsDomainLexicon", resourceCulture); } @@ -2664,7 +4213,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pinyin IME settings - Key configuration. /// - internal static string PinyinImeSettingsKeyConfiguration { + public static string PinyinImeSettingsKeyConfiguration { get { return ResourceManager.GetString("PinyinImeSettingsKeyConfiguration", resourceCulture); } @@ -2673,16 +4222,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Pinyin IME settings - UDP. /// - internal static string PinyinImeSettingsUdp { + public static string PinyinImeSettingsUdp { get { return ResourceManager.GetString("PinyinImeSettingsUdp", resourceCulture); } } + /// + /// Looks up a localized string similar to Play CDs or other media automatically. + /// + public static string PlayCdsOrOtherMediaAutomatically { + get { + return ResourceManager.GetString("PlayCdsOrOtherMediaAutomatically", resourceCulture); + } + } + /// /// Looks up a localized string similar to Playing a game full screen. /// - internal static string PlayingGameFullScreen { + public static string PlayingGameFullScreen { get { return ResourceManager.GetString("PlayingGameFullScreen", resourceCulture); } @@ -2691,16 +4249,16 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Plugin to search for Windows settings. /// - internal static string PluginDescription { + public static string PluginDescription { get { return ResourceManager.GetString("PluginDescription", resourceCulture); } } /// - /// Looks up a localized string similar to Windows settings. + /// Looks up a localized string similar to Windows Settings. /// - internal static string PluginTitle { + public static string PluginTitle { get { return ResourceManager.GetString("PluginTitle", resourceCulture); } @@ -2709,7 +4267,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Power and sleep. /// - internal static string PowerAndSleep { + public static string PowerAndSleep { get { return ResourceManager.GetString("PowerAndSleep", resourceCulture); } @@ -2718,7 +4276,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to powercfg.cpl. /// - internal static string powercfg_cpl { + public static string powercfg_cpl { get { return ResourceManager.GetString("powercfg.cpl", resourceCulture); } @@ -2727,7 +4285,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Power options. /// - internal static string PowerOptions { + public static string PowerOptions { get { return ResourceManager.GetString("PowerOptions", resourceCulture); } @@ -2736,16 +4294,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Presentation. /// - internal static string Presentation { + public static string Presentation { get { return ResourceManager.GetString("Presentation", resourceCulture); } } + /// + /// Looks up a localized string similar to Press key combinations one at a time. + /// + public static string PressKeyCombinationsOneAtATime { + get { + return ResourceManager.GetString("PressKeyCombinationsOneAtATime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preview, delete, show or hide fonts. + /// + public static string PreviewDeleteShowOrHideFonts { + get { + return ResourceManager.GetString("PreviewDeleteShowOrHideFonts", resourceCulture); + } + } + /// /// Looks up a localized string similar to Printers. /// - internal static string Printers { + public static string Printers { get { return ResourceManager.GetString("Printers", resourceCulture); } @@ -2754,7 +4330,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Printers and scanners. /// - internal static string PrintersAndScanners { + public static string PrintersAndScanners { get { return ResourceManager.GetString("PrintersAndScanners", resourceCulture); } @@ -2763,16 +4339,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Print screen. /// - internal static string PrintScreen { + public static string PrintScreen { get { return ResourceManager.GetString("PrintScreen", resourceCulture); } } + /// + /// Looks up a localized string similar to Print the speech reference card. + /// + public static string PrintTheSpeechReferenceCard { + get { + return ResourceManager.GetString("PrintTheSpeechReferenceCard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Private Character Editor. + /// + public static string PrivateCharacterEditor { + get { + return ResourceManager.GetString("PrivateCharacterEditor", resourceCulture); + } + } + /// /// Looks up a localized string similar to Problem reports and solutions. /// - internal static string ProblemReportsAndSolutions { + public static string ProblemReportsAndSolutions { get { return ResourceManager.GetString("ProblemReportsAndSolutions", resourceCulture); } @@ -2781,7 +4375,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Processor. /// - internal static string Processor { + public static string Processor { get { return ResourceManager.GetString("Processor", resourceCulture); } @@ -2790,7 +4384,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Programs and features. /// - internal static string ProgramsAndFeatures { + public static string ProgramsAndFeatures { get { return ResourceManager.GetString("ProgramsAndFeatures", resourceCulture); } @@ -2799,7 +4393,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Projecting to this PC. /// - internal static string ProjectingToThisPc { + public static string ProjectingToThisPc { get { return ResourceManager.GetString("ProjectingToThisPc", resourceCulture); } @@ -2808,7 +4402,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to protanopia. /// - internal static string protanopia { + public static string protanopia { get { return ResourceManager.GetString("protanopia", resourceCulture); } @@ -2817,7 +4411,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Provisioning. /// - internal static string Provisioning { + public static string Provisioning { get { return ResourceManager.GetString("Provisioning", resourceCulture); } @@ -2826,7 +4420,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Proximity. /// - internal static string Proximity { + public static string Proximity { get { return ResourceManager.GetString("Proximity", resourceCulture); } @@ -2835,7 +4429,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Proxy. /// - internal static string Proxy { + public static string Proxy { get { return ResourceManager.GetString("Proxy", resourceCulture); } @@ -2844,7 +4438,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Quickime. /// - internal static string Quickime { + public static string Quickime { get { return ResourceManager.GetString("Quickime", resourceCulture); } @@ -2853,7 +4447,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Quiet moments game. /// - internal static string QuietMomentsGame { + public static string QuietMomentsGame { get { return ResourceManager.GetString("QuietMomentsGame", resourceCulture); } @@ -2862,7 +4456,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Radios. /// - internal static string Radios { + public static string Radios { get { return ResourceManager.GetString("Radios", resourceCulture); } @@ -2871,7 +4465,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to RAM. /// - internal static string Ram { + public static string Ram { get { return ResourceManager.GetString("Ram", resourceCulture); } @@ -2880,16 +4474,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Recognition. /// - internal static string Recognition { + public static string Recognition { get { return ResourceManager.GetString("Recognition", resourceCulture); } } + /// + /// Looks up a localized string similar to Record steps to reproduce a problem. + /// + public static string RecordStepsToReproduceAProblem { + get { + return ResourceManager.GetString("RecordStepsToReproduceAProblem", resourceCulture); + } + } + /// /// Looks up a localized string similar to Recovery. /// - internal static string Recovery { + public static string Recovery { get { return ResourceManager.GetString("Recovery", resourceCulture); } @@ -2898,7 +4501,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Red eye. /// - internal static string RedEye { + public static string RedEye { get { return ResourceManager.GetString("RedEye", resourceCulture); } @@ -2907,7 +4510,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Red-green. /// - internal static string RedGreen { + public static string RedGreen { get { return ResourceManager.GetString("RedGreen", resourceCulture); } @@ -2916,7 +4519,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Red week. /// - internal static string RedWeek { + public static string RedWeek { get { return ResourceManager.GetString("RedWeek", resourceCulture); } @@ -2925,7 +4528,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Region. /// - internal static string Region { + public static string Region { get { return ResourceManager.GetString("Region", resourceCulture); } @@ -2934,7 +4537,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Regional language. /// - internal static string RegionalLanguage { + public static string RegionalLanguage { get { return ResourceManager.GetString("RegionalLanguage", resourceCulture); } @@ -2943,7 +4546,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Regional settings properties. /// - internal static string RegionalSettingsProperties { + public static string RegionalSettingsProperties { get { return ResourceManager.GetString("RegionalSettingsProperties", resourceCulture); } @@ -2952,7 +4555,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Region and language. /// - internal static string RegionAndLanguage { + public static string RegionAndLanguage { get { return ResourceManager.GetString("RegionAndLanguage", resourceCulture); } @@ -2961,7 +4564,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Region formatting. /// - internal static string RegionFormatting { + public static string RegionFormatting { get { return ResourceManager.GetString("RegionFormatting", resourceCulture); } @@ -2970,7 +4573,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to RemoteApp and desktop connections. /// - internal static string RemoteAppAndDesktopConnections { + public static string RemoteAppAndDesktopConnections { get { return ResourceManager.GetString("RemoteAppAndDesktopConnections", resourceCulture); } @@ -2979,16 +4582,97 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Remote Desktop. /// - internal static string RemoteDesktop { + public static string RemoteDesktop { get { return ResourceManager.GetString("RemoteDesktop", resourceCulture); } } + /// + /// Looks up a localized string similar to Rename this computer. + /// + public static string RenameThisComputer { + get { + return ResourceManager.GetString("RenameThisComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace sounds with visual cues. + /// + public static string ReplaceSoundsWithVisualCues { + get { + return ResourceManager.GetString("ReplaceSoundsWithVisualCues", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset Security Policies. + /// + public static string ResetSecurityPolicies { + get { + return ResourceManager.GetString("ResetSecurityPolicies", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restore data, files or computer from backup (Windows 7). + /// + public static string RestoreDataFilesOrComputerFromBackupWindows7 { + get { + return ResourceManager.GetString("RestoreDataFilesOrComputerFromBackupWindows7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restore your files with File History. + /// + public static string RestoreYourFilesWithFileHistory { + get { + return ResourceManager.GetString("RestoreYourFilesWithFileHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Review your computer's status and resolve issues. + /// + public static string ReviewYourComputersStatusAndResolveIssues { + get { + return ResourceManager.GetString("ReviewYourComputersStatusAndResolveIssues", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Run programs made for previous versions of Windows. + /// + public static string RunProgramsMadeForPreviousVersionsOfWindows { + get { + return ResourceManager.GetString("RunProgramsMadeForPreviousVersionsOfWindows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save backup copies of your files with File History. + /// + public static string SaveBackupCopiesOfYourFilesWithFileHistory { + get { + return ResourceManager.GetString("SaveBackupCopiesOfYourFilesWithFileHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scan a document or picture. + /// + public static string ScanADocumentOrPicture { + get { + return ResourceManager.GetString("ScanADocumentOrPicture", resourceCulture); + } + } + /// /// Looks up a localized string similar to Scanners and cameras. /// - internal static string ScannersAndCameras { + public static string ScannersAndCameras { get { return ResourceManager.GetString("ScannersAndCameras", resourceCulture); } @@ -2997,7 +4681,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to schedtasks. /// - internal static string schedtasks { + public static string schedtasks { get { return ResourceManager.GetString("schedtasks", resourceCulture); } @@ -3006,7 +4690,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Scheduled. /// - internal static string Scheduled { + public static string Scheduled { get { return ResourceManager.GetString("Scheduled", resourceCulture); } @@ -3015,16 +4699,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Scheduled tasks. /// - internal static string ScheduledTasks { + public static string ScheduledTasks { get { return ResourceManager.GetString("ScheduledTasks", resourceCulture); } } + /// + /// Looks up a localized string similar to Schedule tasks. + /// + public static string ScheduleTasks { + get { + return ResourceManager.GetString("ScheduleTasks", resourceCulture); + } + } + /// /// Looks up a localized string similar to Screen rotation. /// - internal static string ScreenRotation { + public static string ScreenRotation { get { return ResourceManager.GetString("ScreenRotation", resourceCulture); } @@ -3033,7 +4726,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Scroll bars. /// - internal static string ScrollBars { + public static string ScrollBars { get { return ResourceManager.GetString("ScrollBars", resourceCulture); } @@ -3042,7 +4735,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Scroll Lock. /// - internal static string ScrollLock { + public static string ScrollLock { get { return ResourceManager.GetString("ScrollLock", resourceCulture); } @@ -3051,7 +4744,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to SDNS. /// - internal static string Sdns { + public static string Sdns { get { return ResourceManager.GetString("Sdns", resourceCulture); } @@ -3060,7 +4753,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Searching Windows. /// - internal static string SearchingWindows { + public static string SearchingWindows { get { return ResourceManager.GetString("SearchingWindows", resourceCulture); } @@ -3069,7 +4762,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to SecureDNS. /// - internal static string SecureDNS { + public static string SecureDNS { get { return ResourceManager.GetString("SecureDNS", resourceCulture); } @@ -3078,7 +4771,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Security Center. /// - internal static string SecurityCenter { + public static string SecurityCenter { get { return ResourceManager.GetString("SecurityCenter", resourceCulture); } @@ -3087,43 +4780,223 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Security Processor. /// - internal static string SecurityProcessor { + public static string SecurityProcessor { get { return ResourceManager.GetString("SecurityProcessor", resourceCulture); } } + /// + /// Looks up a localized string similar to See the name of this computer. + /// + public static string SeeTheNameOfThisComputer { + get { + return ResourceManager.GetString("SeeTheNameOfThisComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to See which processes start up automatically when you start Windows. + /// + public static string SeeWhichProcessesStartUpAutomaticallyWhenYouStartWindows { + get { + return ResourceManager.GetString("SeeWhichProcessesStartUpAutomaticallyWhenYouStartWindows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select users who can use remote desktop. + /// + public static string SelectUsersWhoCanUseRemoteDesktop { + get { + return ResourceManager.GetString("SelectUsersWhoCanUseRemoteDesktop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send or receive a file. + /// + public static string SendOrReceiveAFile { + get { + return ResourceManager.GetString("SendOrReceiveAFile", resourceCulture); + } + } + /// /// Looks up a localized string similar to Session cleanup. /// - internal static string SessionCleanup { + public static string SessionCleanup { get { return ResourceManager.GetString("SessionCleanup", resourceCulture); } } + /// + /// Looks up a localized string similar to Set flicks to perform certain tasks. + /// + public static string SetFlicksToPerformCertainTasks { + get { + return ResourceManager.GetString("SetFlicksToPerformCertainTasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set tablet buttons to perform certain tasks. + /// + public static string SetTabletButtonsToPerformCertainTasks { + get { + return ResourceManager.GetString("SetTabletButtonsToPerformCertainTasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set the time and date. + /// + public static string SetTheTimeAndDate { + get { + return ResourceManager.GetString("SetTheTimeAndDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings for Microsoft IME (Japanese). + /// + public static string SettingsForMicrosoftIMEJapanese { + get { + return ResourceManager.GetString("SettingsForMicrosoftIMEJapanese", resourceCulture); + } + } + /// /// Looks up a localized string similar to Settings home page. /// - internal static string SettingsHomePage { + public static string SettingsHomePage { get { return ResourceManager.GetString("SettingsHomePage", resourceCulture); } } + /// + /// Looks up a localized string similar to Set up a broadband connection. + /// + public static string SetUpABroadbandConnection { + get { + return ResourceManager.GetString("SetUpABroadbandConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up a connection or network. + /// + public static string SetUpAConnectionOrNetwork { + get { + return ResourceManager.GetString("SetUpAConnectionOrNetwork", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up a dial-up connection. + /// + public static string SetUpADialUpConnection { + get { + return ResourceManager.GetString("SetUpADialUpConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up a microphone. + /// + public static string SetUpAMicrophone { + get { + return ResourceManager.GetString("SetUpAMicrophone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up a virtual private network (VPN) connection. + /// + public static string SetUpAVirtualPrivateNetworkVPNConnection { + get { + return ResourceManager.GetString("SetUpAVirtualPrivateNetworkVPNConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up dialling rules. + /// + public static string SetUpDiallingRules { + get { + return ResourceManager.GetString("SetUpDiallingRules", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up iSCSI initiator. + /// + public static string SetUpIscsiInitiator { + get { + return ResourceManager.GetString("SetUpIscsiInitiator", resourceCulture); + } + } + /// /// Looks up a localized string similar to Set up a kiosk. /// - internal static string SetUpKiosk { + public static string SetUpKiosk { get { return ResourceManager.GetString("SetUpKiosk", resourceCulture); } } + /// + /// Looks up a localized string similar to Set up ODBC data sources. + /// + public static string SetUpODBCDataSources { + get { + return ResourceManager.GetString("SetUpODBCDataSources", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up ODBC data sources (32-bit). + /// + public static string SetUpODBCDataSources32Bit { + get { + return ResourceManager.GetString("SetUpODBCDataSources32Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up ODBC data sources (64-bit). + /// + public static string SetUpODBCDataSources64Bit { + get { + return ResourceManager.GetString("SetUpODBCDataSources64Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up USB game controllers. + /// + public static string SetUpUSBGameControllers { + get { + return ResourceManager.GetString("SetUpUSBGameControllers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set your default programs. + /// + public static string SetYourDefaultPrograms { + get { + return ResourceManager.GetString("SetYourDefaultPrograms", resourceCulture); + } + } + /// /// Looks up a localized string similar to Shared experiences. /// - internal static string SharedExperiences { + public static string SharedExperiences { get { return ResourceManager.GetString("SharedExperiences", resourceCulture); } @@ -3132,7 +5005,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Shortcuts. /// - internal static string Shortcuts { + public static string Shortcuts { get { return ResourceManager.GetString("Shortcuts", resourceCulture); } @@ -3141,16 +5014,79 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to wifi. /// - internal static string ShortNameWiFi { + public static string ShortNameWiFi { get { return ResourceManager.GetString("ShortNameWiFi", resourceCulture); } } + /// + /// Looks up a localized string similar to Show hidden files and folders. + /// + public static string ShowHiddenFilesAndFolders { + get { + return ResourceManager.GetString("ShowHiddenFilesAndFolders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show how much RAM is on this computer. + /// + public static string ShowHowMuchRAMIsOnThisComputer { + get { + return ResourceManager.GetString("ShowHowMuchRAMIsOnThisComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show or hide file extensions. + /// + public static string ShowOrHideFileExtensions { + get { + return ResourceManager.GetString("ShowOrHideFileExtensions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show which domain your computer is on. + /// + public static string ShowWhichDomainYourComputerIsOn { + get { + return ResourceManager.GetString("ShowWhichDomainYourComputerIsOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show which operating system your computer is running. + /// + public static string ShowWhichOperatingSystemYourComputerIsRunning { + get { + return ResourceManager.GetString("ShowWhichOperatingSystemYourComputerIsRunning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show which programs are installed on your computer. + /// + public static string ShowWhichProgramsAreInstalledOnYourComputer { + get { + return ResourceManager.GetString("ShowWhichProgramsAreInstalledOnYourComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show which workgroup this computer is on. + /// + public static string ShowWhichWorkgroupThisComputerIsOn { + get { + return ResourceManager.GetString("ShowWhichWorkgroupThisComputerIsOn", resourceCulture); + } + } + /// /// Looks up a localized string similar to Sign-in options. /// - internal static string SignInOptions { + public static string SignInOptions { get { return ResourceManager.GetString("SignInOptions", resourceCulture); } @@ -3159,7 +5095,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Sign-in options - Dynamic lock. /// - internal static string SignInOptionsDynamicLock { + public static string SignInOptionsDynamicLock { get { return ResourceManager.GetString("SignInOptionsDynamicLock", resourceCulture); } @@ -3168,7 +5104,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Size. /// - internal static string Size { + public static string Size { get { return ResourceManager.GetString("Size", resourceCulture); } @@ -3177,16 +5113,34 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Sound. /// - internal static string Sound { + public static string Sound { get { return ResourceManager.GetString("Sound", resourceCulture); } } + /// + /// Looks up a localized string similar to Specify single- or double-click to open. + /// + public static string SpecifySingleOrDoubleClickToOpen { + get { + return ResourceManager.GetString("SpecifySingleOrDoubleClickToOpen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specify which hand you write with. + /// + public static string SpecifyWhichHandYouWriteWith { + get { + return ResourceManager.GetString("SpecifyWhichHandYouWriteWith", resourceCulture); + } + } + /// /// Looks up a localized string similar to Speech. /// - internal static string Speech { + public static string Speech { get { return ResourceManager.GetString("Speech", resourceCulture); } @@ -3195,7 +5149,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Speech recognition. /// - internal static string SpeechRecognition { + public static string SpeechRecognition { get { return ResourceManager.GetString("SpeechRecognition", resourceCulture); } @@ -3204,7 +5158,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Speech typing. /// - internal static string SpeechTyping { + public static string SpeechTyping { get { return ResourceManager.GetString("SpeechTyping", resourceCulture); } @@ -3213,25 +5167,43 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Start. /// - internal static string Start { + public static string Start { get { return ResourceManager.GetString("Start", resourceCulture); } } + /// + /// Looks up a localized string similar to Start or stop using AutoPlay for all media and devices. + /// + public static string StartOrStopUsingAutoplayForAllMediaAndDevices { + get { + return ResourceManager.GetString("StartOrStopUsingAutoplayForAllMediaAndDevices", resourceCulture); + } + } + /// /// Looks up a localized string similar to Start places. /// - internal static string StartPlaces { + public static string StartPlaces { get { return ResourceManager.GetString("StartPlaces", resourceCulture); } } + /// + /// Looks up a localized string similar to Start speech recognition. + /// + public static string StartSpeechRecognition { + get { + return ResourceManager.GetString("StartSpeechRecognition", resourceCulture); + } + } + /// /// Looks up a localized string similar to Startup apps. /// - internal static string StartupApps { + public static string StartupApps { get { return ResourceManager.GetString("StartupApps", resourceCulture); } @@ -3240,7 +5212,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to sticpl.cpl. /// - internal static string sticpl_cpl { + public static string sticpl_cpl { get { return ResourceManager.GetString("sticpl.cpl", resourceCulture); } @@ -3249,7 +5221,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Storage. /// - internal static string Storage { + public static string Storage { get { return ResourceManager.GetString("Storage", resourceCulture); } @@ -3258,7 +5230,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Storage policies. /// - internal static string StoragePolicies { + public static string StoragePolicies { get { return ResourceManager.GetString("StoragePolicies", resourceCulture); } @@ -3267,7 +5239,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Storage Sense. /// - internal static string StorageSense { + public static string StorageSense { get { return ResourceManager.GetString("StorageSense", resourceCulture); } @@ -3276,7 +5248,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to in. /// - internal static string SubtitlePreposition { + public static string SubtitlePreposition { get { return ResourceManager.GetString("SubtitlePreposition", resourceCulture); } @@ -3285,7 +5257,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Sync center. /// - internal static string SyncCenter { + public static string SyncCenter { get { return ResourceManager.GetString("SyncCenter", resourceCulture); } @@ -3294,7 +5266,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Sync your settings. /// - internal static string SyncYourSettings { + public static string SyncYourSettings { get { return ResourceManager.GetString("SyncYourSettings", resourceCulture); } @@ -3303,7 +5275,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to sysdm.cpl. /// - internal static string sysdm_cpl { + public static string sysdm_cpl { get { return ResourceManager.GetString("sysdm.cpl", resourceCulture); } @@ -3312,7 +5284,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to System. /// - internal static string System { + public static string System { get { return ResourceManager.GetString("System", resourceCulture); } @@ -3321,7 +5293,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to System properties and Add New Hardware wizard. /// - internal static string SystemPropertiesAndAddNewHardwareWizard { + public static string SystemPropertiesAndAddNewHardwareWizard { get { return ResourceManager.GetString("SystemPropertiesAndAddNewHardwareWizard", resourceCulture); } @@ -3330,7 +5302,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Tab. /// - internal static string Tab { + public static string Tab { get { return ResourceManager.GetString("Tab", resourceCulture); } @@ -3339,7 +5311,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Tablet mode. /// - internal static string TabletMode { + public static string TabletMode { get { return ResourceManager.GetString("TabletMode", resourceCulture); } @@ -3348,16 +5320,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Tablet PC settings. /// - internal static string TabletPcSettings { + public static string TabletPcSettings { get { return ResourceManager.GetString("TabletPcSettings", resourceCulture); } } + /// + /// Looks up a localized string similar to Take speech tutorials. + /// + public static string TakeSpeechTutorials { + get { + return ResourceManager.GetString("TakeSpeechTutorials", resourceCulture); + } + } + /// /// Looks up a localized string similar to Talk. /// - internal static string Talk { + public static string Talk { get { return ResourceManager.GetString("Talk", resourceCulture); } @@ -3366,7 +5347,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Talk to Cortana. /// - internal static string TalkToCortana { + public static string TalkToCortana { get { return ResourceManager.GetString("TalkToCortana", resourceCulture); } @@ -3375,7 +5356,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Taskbar. /// - internal static string Taskbar { + public static string Taskbar { get { return ResourceManager.GetString("Taskbar", resourceCulture); } @@ -3384,16 +5365,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Taskbar color. /// - internal static string TaskbarColor { + public static string TaskbarColor { get { return ResourceManager.GetString("TaskbarColor", resourceCulture); } } + /// + /// Looks up a localized string similar to Task Manager. + /// + public static string TaskManager { + get { + return ResourceManager.GetString("TaskManager", resourceCulture); + } + } + /// /// Looks up a localized string similar to Tasks. /// - internal static string Tasks { + public static string Tasks { get { return ResourceManager.GetString("Tasks", resourceCulture); } @@ -3402,7 +5392,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Team Conferencing. /// - internal static string TeamConferencing { + public static string TeamConferencing { get { return ResourceManager.GetString("TeamConferencing", resourceCulture); } @@ -3411,16 +5401,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Team device management. /// - internal static string TeamDeviceManagement { + public static string TeamDeviceManagement { get { return ResourceManager.GetString("TeamDeviceManagement", resourceCulture); } } + /// + /// Looks up a localized string similar to Tell if an RSS feed is available on a website. + /// + public static string TellIfAnRSSFeedIsAvailableOnAWebsite { + get { + return ResourceManager.GetString("TellIfAnRSSFeedIsAvailableOnAWebsite", resourceCulture); + } + } + /// /// Looks up a localized string similar to Text to speech. /// - internal static string TextToSpeech { + public static string TextToSpeech { get { return ResourceManager.GetString("TextToSpeech", resourceCulture); } @@ -3429,7 +5428,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Themes. /// - internal static string Themes { + public static string Themes { get { return ResourceManager.GetString("Themes", resourceCulture); } @@ -3438,7 +5437,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to themes.cpl. /// - internal static string themes_cpl { + public static string themes_cpl { get { return ResourceManager.GetString("themes.cpl", resourceCulture); } @@ -3447,7 +5446,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to timedate.cpl. /// - internal static string timedate_cpl { + public static string timedate_cpl { get { return ResourceManager.GetString("timedate.cpl", resourceCulture); } @@ -3456,7 +5455,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Timeline. /// - internal static string Timeline { + public static string Timeline { get { return ResourceManager.GetString("Timeline", resourceCulture); } @@ -3465,7 +5464,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Touch. /// - internal static string Touch { + public static string Touch { get { return ResourceManager.GetString("Touch", resourceCulture); } @@ -3474,7 +5473,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Touch feedback. /// - internal static string TouchFeedback { + public static string TouchFeedback { get { return ResourceManager.GetString("TouchFeedback", resourceCulture); } @@ -3483,16 +5482,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Touchpad. /// - internal static string Touchpad { + public static string Touchpad { get { return ResourceManager.GetString("Touchpad", resourceCulture); } } + /// + /// Looks up a localized string similar to Train the computer to recognise your voice. + /// + public static string TrainTheComputerToRecogniseYourVoice { + get { + return ResourceManager.GetString("TrainTheComputerToRecogniseYourVoice", resourceCulture); + } + } + /// /// Looks up a localized string similar to Transparency. /// - internal static string Transparency { + public static string Transparency { get { return ResourceManager.GetString("Transparency", resourceCulture); } @@ -3501,7 +5509,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to tritanopia. /// - internal static string tritanopia { + public static string tritanopia { get { return ResourceManager.GetString("tritanopia", resourceCulture); } @@ -3510,25 +5518,133 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Troubleshoot. /// - internal static string Troubleshoot { + public static string Troubleshoot { get { return ResourceManager.GetString("Troubleshoot", resourceCulture); } } + /// + /// Looks up a localized string similar to Troubleshooting History. + /// + public static string TroubleshootingHistory { + get { + return ResourceManager.GetString("TroubleshootingHistory", resourceCulture); + } + } + /// /// Looks up a localized string similar to TruePlay. /// - internal static string TruePlay { + public static string TruePlay { get { return ResourceManager.GetString("TruePlay", resourceCulture); } } + /// + /// Looks up a localized string similar to Turn autocomplete in Internet Explorer on or off. + /// + public static string TurnAutocompleteInInternetExplorerOnOrOff { + get { + return ResourceManager.GetString("TurnAutocompleteInInternetExplorerOnOrOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn flicks on or off. + /// + public static string TurnFlicksOnOrOff { + get { + return ResourceManager.GetString("TurnFlicksOnOrOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn High Contrast on or off. + /// + public static string TurnHighContrastOnOrOff { + get { + return ResourceManager.GetString("TurnHighContrastOnOrOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn Magnifier on or off. + /// + public static string TurnMagnifierOnOrOff { + get { + return ResourceManager.GetString("TurnMagnifierOnOrOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn off automatic window arrangement. + /// + public static string TurnOffAutomaticWindowArrangement { + get { + return ResourceManager.GetString("TurnOffAutomaticWindowArrangement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn off background images. + /// + public static string TurnOffBackgroundImages { + get { + return ResourceManager.GetString("TurnOffBackgroundImages", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn off unnecessary animations. + /// + public static string TurnOffUnnecessaryAnimations { + get { + return ResourceManager.GetString("TurnOffUnnecessaryAnimations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn on easy access keys. + /// + public static string TurnOnEasyAccessKeys { + get { + return ResourceManager.GetString("TurnOnEasyAccessKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn On-Screen keyboard on or off. + /// + public static string TurnOnScreenKeyboardOnOrOff { + get { + return ResourceManager.GetString("TurnOnScreenKeyboardOnOrOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn screen saver on or off. + /// + public static string TurnScreenSaverOnOrOff { + get { + return ResourceManager.GetString("TurnScreenSaverOnOrOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turn Windows features on or off. + /// + public static string TurnWindowsFeaturesOnOrOff { + get { + return ResourceManager.GetString("TurnWindowsFeaturesOnOrOff", resourceCulture); + } + } + /// /// Looks up a localized string similar to Typing. /// - internal static string Typing { + public static string Typing { get { return ResourceManager.GetString("Typing", resourceCulture); } @@ -3537,34 +5653,61 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Uninstall. /// - internal static string Uninstall { + public static string Uninstall { get { return ResourceManager.GetString("Uninstall", resourceCulture); } } + /// + /// Looks up a localized string similar to Uninstall a program. + /// + public static string UninstallAProgram { + get { + return ResourceManager.GetString("UninstallAProgram", resourceCulture); + } + } + /// /// Looks up a localized string similar to USB. /// - internal static string Usb { + public static string Usb { get { return ResourceManager.GetString("Usb", resourceCulture); } } + /// + /// Looks up a localized string similar to Use audio description for video. + /// + public static string UseAudioDescriptionForVideo { + get { + return ResourceManager.GetString("UseAudioDescriptionForVideo", resourceCulture); + } + } + /// /// Looks up a localized string similar to User accounts. /// - internal static string UserAccounts { + public static string UserAccounts { get { return ResourceManager.GetString("UserAccounts", resourceCulture); } } + /// + /// Looks up a localized string similar to Use screen reader. + /// + public static string UseScreenReader { + get { + return ResourceManager.GetString("UseScreenReader", resourceCulture); + } + } + /// /// Looks up a localized string similar to Version. /// - internal static string Version { + public static string Version { get { return ResourceManager.GetString("Version", resourceCulture); } @@ -3573,7 +5716,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Video playback. /// - internal static string VideoPlayback { + public static string VideoPlayback { get { return ResourceManager.GetString("VideoPlayback", resourceCulture); } @@ -3582,16 +5725,169 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Videos. /// - internal static string Videos { + public static string Videos { get { return ResourceManager.GetString("Videos", resourceCulture); } } + /// + /// Looks up a localized string similar to View advanced system settings. + /// + public static string ViewAdvancedSystemSettings { + get { + return ResourceManager.GetString("ViewAdvancedSystemSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View all problem reports. + /// + public static string ViewAllProblemReports { + get { + return ResourceManager.GetString("ViewAllProblemReports", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View basic information about your computer. + /// + public static string ViewBasicInformationAboutYourComputer { + get { + return ResourceManager.GetString("ViewBasicInformationAboutYourComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View current accessibility settings. + /// + public static string ViewCurrentAccessibilitySettings { + get { + return ResourceManager.GetString("ViewCurrentAccessibilitySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View devices and printers. + /// + public static string ViewDevicesAndPrinters { + get { + return ResourceManager.GetString("ViewDevicesAndPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View event logs. + /// + public static string ViewEventLogs { + get { + return ResourceManager.GetString("ViewEventLogs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View installed fonts. + /// + public static string ViewInstalledFonts { + get { + return ResourceManager.GetString("ViewInstalledFonts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View installed updates. + /// + public static string ViewInstalledUpdates { + get { + return ResourceManager.GetString("ViewInstalledUpdates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View local services. + /// + public static string ViewLocalServices { + get { + return ResourceManager.GetString("ViewLocalServices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View network computers and devices. + /// + public static string ViewNetworkComputersAndDevices { + get { + return ResourceManager.GetString("ViewNetworkComputersAndDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View network connections. + /// + public static string ViewNetworkConnections { + get { + return ResourceManager.GetString("ViewNetworkConnections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View network status and tasks. + /// + public static string ViewNetworkStatusAndTasks { + get { + return ResourceManager.GetString("ViewNetworkStatusAndTasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View recent messages about your computer. + /// + public static string ViewRecentMessagesAboutYourComputer { + get { + return ResourceManager.GetString("ViewRecentMessagesAboutYourComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View recommended actions to keep Windows running smoothly. + /// + public static string ViewRecommendedActionsToKeepWindowsRunningSmoothly { + get { + return ResourceManager.GetString("ViewRecommendedActionsToKeepWindowsRunningSmoothly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View reliability history. + /// + public static string ViewReliabilityHistory { + get { + return ResourceManager.GetString("ViewReliabilityHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View scanners and cameras. + /// + public static string ViewScannersAndCameras { + get { + return ResourceManager.GetString("ViewScannersAndCameras", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View system resource usage in Task Manager. + /// + public static string ViewSystemResourceUsageInTaskManager { + get { + return ResourceManager.GetString("ViewSystemResourceUsageInTaskManager", resourceCulture); + } + } + /// /// Looks up a localized string similar to Virtual Desktops. /// - internal static string VirtualDesktops { + public static string VirtualDesktops { get { return ResourceManager.GetString("VirtualDesktops", resourceCulture); } @@ -3600,7 +5896,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Virus. /// - internal static string Virus { + public static string Virus { get { return ResourceManager.GetString("Virus", resourceCulture); } @@ -3609,7 +5905,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Voice activation. /// - internal static string VoiceActivation { + public static string VoiceActivation { get { return ResourceManager.GetString("VoiceActivation", resourceCulture); } @@ -3618,7 +5914,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Volume. /// - internal static string Volume { + public static string Volume { get { return ResourceManager.GetString("Volume", resourceCulture); } @@ -3627,7 +5923,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to VPN. /// - internal static string Vpn { + public static string Vpn { get { return ResourceManager.GetString("Vpn", resourceCulture); } @@ -3636,7 +5932,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wallpaper. /// - internal static string Wallpaper { + public static string Wallpaper { get { return ResourceManager.GetString("Wallpaper", resourceCulture); } @@ -3645,7 +5941,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Warmer color. /// - internal static string WarmerColor { + public static string WarmerColor { get { return ResourceManager.GetString("WarmerColor", resourceCulture); } @@ -3654,7 +5950,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Welcome center. /// - internal static string WelcomeCenter { + public static string WelcomeCenter { get { return ResourceManager.GetString("WelcomeCenter", resourceCulture); } @@ -3663,7 +5959,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Welcome screen. /// - internal static string WelcomeScreen { + public static string WelcomeScreen { get { return ResourceManager.GetString("WelcomeScreen", resourceCulture); } @@ -3672,16 +5968,25 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to wgpocpl.cpl. /// - internal static string wgpocpl_cpl { + public static string wgpocpl_cpl { get { return ResourceManager.GetString("wgpocpl.cpl", resourceCulture); } } + /// + /// Looks up a localized string similar to What's happened to the Quick Launch toolbar?. + /// + public static string WhatsHappenedToTheQuickLaunchToolbar { + get { + return ResourceManager.GetString("WhatsHappenedToTheQuickLaunchToolbar", resourceCulture); + } + } + /// /// Looks up a localized string similar to Wheel. /// - internal static string Wheel { + public static string Wheel { get { return ResourceManager.GetString("Wheel", resourceCulture); } @@ -3690,7 +5995,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wi-Fi. /// - internal static string WiFi { + public static string WiFi { get { return ResourceManager.GetString("WiFi", resourceCulture); } @@ -3699,7 +6004,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wi-Fi Calling. /// - internal static string WiFiCalling { + public static string WiFiCalling { get { return ResourceManager.GetString("WiFiCalling", resourceCulture); } @@ -3708,7 +6013,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wi-Fi settings. /// - internal static string WiFiSettings { + public static string WiFiSettings { get { return ResourceManager.GetString("WiFiSettings", resourceCulture); } @@ -3717,7 +6022,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Window border. /// - internal static string WindowBorder { + public static string WindowBorder { get { return ResourceManager.GetString("WindowBorder", resourceCulture); } @@ -3726,7 +6031,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Anytime Upgrade. /// - internal static string WindowsAnytimeUpgrade { + public static string WindowsAnytimeUpgrade { get { return ResourceManager.GetString("WindowsAnytimeUpgrade", resourceCulture); } @@ -3735,7 +6040,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Anywhere. /// - internal static string WindowsAnywhere { + public static string WindowsAnywhere { get { return ResourceManager.GetString("WindowsAnywhere", resourceCulture); } @@ -3744,7 +6049,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows CardSpace. /// - internal static string WindowsCardSpace { + public static string WindowsCardSpace { get { return ResourceManager.GetString("WindowsCardSpace", resourceCulture); } @@ -3753,7 +6058,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Defender. /// - internal static string WindowsDefender { + public static string WindowsDefender { get { return ResourceManager.GetString("WindowsDefender", resourceCulture); } @@ -3762,7 +6067,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Firewall. /// - internal static string WindowsFirewall { + public static string WindowsFirewall { get { return ResourceManager.GetString("WindowsFirewall", resourceCulture); } @@ -3771,7 +6076,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Hello setup - Face. /// - internal static string WindowsHelloSetupFace { + public static string WindowsHelloSetupFace { get { return ResourceManager.GetString("WindowsHelloSetupFace", resourceCulture); } @@ -3780,7 +6085,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Hello setup - Fingerprint. /// - internal static string WindowsHelloSetupFingerprint { + public static string WindowsHelloSetupFingerprint { get { return ResourceManager.GetString("WindowsHelloSetupFingerprint", resourceCulture); } @@ -3789,7 +6094,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Insider Program. /// - internal static string WindowsInsiderProgram { + public static string WindowsInsiderProgram { get { return ResourceManager.GetString("WindowsInsiderProgram", resourceCulture); } @@ -3798,7 +6103,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Mobility Center. /// - internal static string WindowsMobilityCenter { + public static string WindowsMobilityCenter { get { return ResourceManager.GetString("WindowsMobilityCenter", resourceCulture); } @@ -3807,7 +6112,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows search. /// - internal static string WindowsSearch { + public static string WindowsSearch { get { return ResourceManager.GetString("WindowsSearch", resourceCulture); } @@ -3816,7 +6121,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Security. /// - internal static string WindowsSecurity { + public static string WindowsSecurity { get { return ResourceManager.GetString("WindowsSecurity", resourceCulture); } @@ -3825,7 +6130,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Update. /// - internal static string WindowsUpdate { + public static string WindowsUpdate { get { return ResourceManager.GetString("WindowsUpdate", resourceCulture); } @@ -3834,7 +6139,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Update - Advanced options. /// - internal static string WindowsUpdateAdvancedOptions { + public static string WindowsUpdateAdvancedOptions { get { return ResourceManager.GetString("WindowsUpdateAdvancedOptions", resourceCulture); } @@ -3843,7 +6148,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Update - Check for updates. /// - internal static string WindowsUpdateCheckForUpdates { + public static string WindowsUpdateCheckForUpdates { get { return ResourceManager.GetString("WindowsUpdateCheckForUpdates", resourceCulture); } @@ -3852,7 +6157,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Update - Restart options. /// - internal static string WindowsUpdateRestartOptions { + public static string WindowsUpdateRestartOptions { get { return ResourceManager.GetString("WindowsUpdateRestartOptions", resourceCulture); } @@ -3861,7 +6166,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Update - View optional updates. /// - internal static string WindowsUpdateViewOptionalUpdates { + public static string WindowsUpdateViewOptionalUpdates { get { return ResourceManager.GetString("WindowsUpdateViewOptionalUpdates", resourceCulture); } @@ -3870,7 +6175,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Windows Update - View update history. /// - internal static string WindowsUpdateViewUpdateHistory { + public static string WindowsUpdateViewUpdateHistory { get { return ResourceManager.GetString("WindowsUpdateViewUpdateHistory", resourceCulture); } @@ -3879,7 +6184,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wireless. /// - internal static string Wireless { + public static string Wireless { get { return ResourceManager.GetString("Wireless", resourceCulture); } @@ -3888,7 +6193,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Workplace. /// - internal static string Workplace { + public static string Workplace { get { return ResourceManager.GetString("Workplace", resourceCulture); } @@ -3897,7 +6202,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Workplace provisioning. /// - internal static string WorkplaceProvisioning { + public static string WorkplaceProvisioning { get { return ResourceManager.GetString("WorkplaceProvisioning", resourceCulture); } @@ -3906,7 +6211,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wubi IME settings. /// - internal static string WubiImeSettings { + public static string WubiImeSettings { get { return ResourceManager.GetString("WubiImeSettings", resourceCulture); } @@ -3915,7 +6220,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Wubi IME settings - UDP. /// - internal static string WubiImeSettingsUdp { + public static string WubiImeSettingsUdp { get { return ResourceManager.GetString("WubiImeSettingsUdp", resourceCulture); } @@ -3924,7 +6229,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Xbox Networking. /// - internal static string XboxNetworking { + public static string XboxNetworking { get { return ResourceManager.GetString("XboxNetworking", resourceCulture); } @@ -3933,7 +6238,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Your info. /// - internal static string YourInfo { + public static string YourInfo { get { return ResourceManager.GetString("YourInfo", resourceCulture); } @@ -3942,7 +6247,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Properties { /// /// Looks up a localized string similar to Zoom. /// - internal static string Zoom { + public static string Zoom { get { return ResourceManager.GetString("Zoom", resourceCulture); } diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-ES.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-ES.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.hu.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.hu.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl.resx similarity index 100% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl.resx diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx index dc6895d21..bc03349f0 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx @@ -1,4 +1,4 @@ - +