diff --git a/Flow.Launcher.Core/Resource/Internationalization.cs b/Flow.Launcher.Core/Resource/Internationalization.cs
index 374f7c71fc8..5c99bc23906 100644
--- a/Flow.Launcher.Core/Resource/Internationalization.cs
+++ b/Flow.Launcher.Core/Resource/Internationalization.cs
@@ -99,7 +99,7 @@ public void ChangeLanguage(Language language)
Settings.Language = language.LanguageCode;
CultureInfo.CurrentCulture = new CultureInfo(language.LanguageCode);
CultureInfo.CurrentUICulture = CultureInfo.CurrentCulture;
- Task.Run(() =>
+ _ = Task.Run(() =>
{
UpdatePluginMetadataTranslations();
});
@@ -182,6 +182,7 @@ private void UpdatePluginMetadataTranslations()
{
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/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs
index 0140254817f..c3a8a066880 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs
@@ -57,7 +57,7 @@ public WindowsSetting()
///
/// Gets or sets the Glyph of this setting
///
- public string? glyph { get; set; }
+ public GlyphInfo? IconGlyph { get; set; }
///
/// Gets or sets a additional note of this settings.
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 81ea31c21ca..aa3eb8e6f33 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/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs
index c693331e900..84af6a72c1a 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs
@@ -18,6 +18,18 @@ internal static class ResultHelper
public static void Init(IPublicAPI api) => _api = api;
+ private static List GetDefaultReuslts(in IEnumerable list,
+ string windowsSettingIconPath,
+ string controlPanelIconPath)
+ {
+ return list.Select(entry =>
+ {
+ var result = NewSettingResult(100, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
+ AddOptionalToolTip(entry, result);
+ return result;
+ }).ToList();
+ }
+
///
/// Return a list with s, based on the given list.
///
@@ -31,13 +43,20 @@ internal static List GetResultList(
string windowsSettingIconPath,
string controlPanelIconPath)
{
+ if (string.IsNullOrWhiteSpace(query.Search))
+ {
+ return GetDefaultReuslts(list, windowsSettingIconPath, controlPanelIconPath);
+ }
+
var resultList = new List();
+
foreach (var entry in list)
{
// Adjust the score to lower the order of many irrelevant matches from area strings
// that may only be for description.
const int nonNameMatchScoreAdj = 10;
+
Result? result;
Debug.Assert(_api != null, nameof(_api) + " != null");
@@ -45,7 +64,7 @@ internal static List GetResultList(
if (nameMatch.IsSearchPrecisionScoreMet())
{
- var settingResult = NewSettingResult(nameMatch.Score, entry.Type);
+ var settingResult = NewSettingResult(nameMatch.Score, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
settingResult.TitleHighlightData = nameMatch.MatchData;
result = settingResult;
}
@@ -54,7 +73,7 @@ internal static List GetResultList(
var areaMatch = _api.FuzzySearch(query.Search, entry.Area);
if (areaMatch.IsSearchPrecisionScoreMet())
{
- var settingResult = NewSettingResult(areaMatch.Score - nonNameMatchScoreAdj, entry.Type);
+ var settingResult = NewSettingResult(areaMatch.Score - nonNameMatchScoreAdj, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
result = settingResult;
}
else
@@ -62,7 +81,7 @@ internal static List GetResultList(
result = entry.AltNames?
.Select(altName => _api.FuzzySearch(query.Search, altName))
.Where(match => match.IsSearchPrecisionScoreMet())
- .Select(altNameMatch => NewSettingResult(altNameMatch.Score - nonNameMatchScoreAdj, entry.Type))
+ .Select(altNameMatch => NewSettingResult(altNameMatch.Score - nonNameMatchScoreAdj, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry))
.FirstOrDefault();
}
@@ -76,7 +95,7 @@ internal static List GetResultList(
.SelectMany(x => x)
.Contains(x, StringComparer.CurrentCultureIgnoreCase))
)
- result = NewSettingResult(nonNameMatchScoreAdj, entry.Type);
+ result = NewSettingResult(nonNameMatchScoreAdj, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
}
}
@@ -86,21 +105,24 @@ internal static List GetResultList(
AddOptionalToolTip(entry, result);
resultList.Add(result);
-
- Result NewSettingResult(int score, string type) => new()
- {
- Action = _ => DoOpenSettingsAction(entry),
- IcoPath = type == "AppSettingsApp" ? windowsSettingIconPath : controlPanelIconPath,
- SubTitle = GetSubtitle(entry.Area, type),
- Title = entry.Name + entry.glyph,
- ContextData = entry,
- Score = score
- };
}
return resultList;
}
+ private const int TaskLinkScorePanelty = 50;
+
+ private static Result NewSettingResult(int score, string type, string windowsSettingIconPath, string controlPanelIconPath, WindowsSetting entry) => new()
+ {
+ Action = _ => DoOpenSettingsAction(entry),
+ IcoPath = type == "AppSettingsApp" ? windowsSettingIconPath : controlPanelIconPath,
+ Glyph = entry.IconGlyph,
+ SubTitle = GetSubtitle(entry.Area, type),
+ Title = entry.Name,
+ ContextData = entry,
+ Score = score - (type == "TaskLink" ? TaskLinkScorePanelty : 0),
+ };
+
private static string GetSubtitle(string section, string entryType)
{
var settingType = entryType == "AppSettingsApp" ? "System settings" : "Control Panel";
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs
index 88e624a9e97..327d7029662 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;
@@ -40,7 +41,7 @@ internal static IEnumerable TranslateAllSettings(in IEnumerable<
if (string.IsNullOrEmpty(type))
{
- Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main));
+ Log.Warn($"Resource string for [{settings.Type}] not found", typeof(Main));
}
@@ -48,10 +49,6 @@ internal static IEnumerable TranslateAllSettings(in IEnumerable<
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,10 +64,6 @@ internal static IEnumerable TranslateAllSettings(in IEnumerable<
}
var translatedAltName = Resources.ResourceManager.GetString(altName);
- if (string.IsNullOrEmpty(translatedAltName))
- {
- Log.Warn($"Resource string for [{altName}] not found", typeof(Main));
- }
translatedAltNames.Add(translatedAltName ?? altName);
}
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs
index 1cfc92f28aa..0f4c5f3266b 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 @@ internal Resources() {
/// 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 @@ internal Resources() {
/// 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 @@ internal Resources() {
}
}
+ ///
+ /// 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 @@ internal static string About {
///
/// 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 @@ internal static string access_cpl {
///
/// 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 @@ internal static string AccessibilityOptions {
///
/// 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 @@ internal static string AccountInfo {
///
/// 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 @@ internal static string Accounts {
///
/// 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 @@ internal static string ActionCenter {
///
/// 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 @@ internal static string Activation {
///
/// 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 @@ internal static string AddRemovePrograms {
///
/// 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 @@ internal static string AdministrativeTools {
///
/// 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 @@ internal static string AdvancedDisplaySettings {
///
/// 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 @@ internal static string AdvertisingId {
///
/// 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 @@ internal static string AltAndTab {
///
/// 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 @@ internal static string AlternativeName {
///
/// 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 @@ internal static string Animations {
///
/// 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 @@ internal static string AppDiagnostics {
///
/// 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 @@ internal static string AppFeatures {
///
/// 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 @@ internal static string Application {
///
/// 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 @@ internal static string AppsAndFeatures {
///
/// 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 @@ internal static string AppSettingsApp {
///
/// 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 @@ internal static string AppsForWebsites {
///
/// 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 @@ internal static string AppVolumeAndDevicePreferences {
///
/// 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 @@ internal static string appwiz_cpl {
///
/// 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 @@ internal static string Area {
///
/// 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 @@ internal static string AreaAccounts {
///
/// 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 @@ internal static string AreaAdministrativeTools {
///
/// 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 @@ internal static string AreaAppearanceAndPersonalization {
///
/// 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 @@ internal static string AreaApps {
///
/// 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 @@ internal static string AreaClockAndRegion {
///
/// 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 @@ internal static string AreaControlPanel {
///
/// 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 @@ internal static string AreaCortana {
///
/// 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 @@ internal static string AreaDevices {
///
/// 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 @@ internal static string AreaEaseOfAccess {
///
/// 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 @@ internal static string AreaExtras {
///
/// 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 @@ internal static string AreaGaming {
///
/// 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 @@ internal static string AreaHardwareAndSound {
///
/// 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 @@ internal static string AreaHomePage {
///
/// 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 @@ internal static string AreaMixedReality {
///
/// 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 @@ internal static string AreaNetworkAndInternet {
///
/// 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 @@ internal static string AreaPersonalization {
///
/// 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 @@ internal static string AreaPhone {
///
/// 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 @@ internal static string AreaPrivacy {
///
/// 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 @@ internal static string AreaPrograms {
///
/// 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 @@ internal static string AreaSurfaceHub {
///
/// 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 @@ internal static string AreaSystem {
///
/// 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,16 +730,25 @@ internal static string AreaSystemAndSecurity {
///
/// Looks up a localized string similar to Time and language.
///
- internal static string AreaTimeAndLanguage {
+ public static string AreaTimeAndLanguage {
get {
return ResourceManager.GetString("AreaTimeAndLanguage", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ public static string AreaUnknown {
+ get {
+ return ResourceManager.GetString("AreaUnknown", resourceCulture);
+ }
+ }
+
///
/// 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 +757,7 @@ internal static string AreaUpdateAndSecurity {
///
/// 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 +766,7 @@ internal static string AreaUserAccounts {
///
/// 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 +775,7 @@ internal static string AssignedAccess {
///
/// Looks up a localized string similar to Audio.
///
- internal static string Audio {
+ public static string Audio {
get {
return ResourceManager.GetString("Audio", resourceCulture);
}
@@ -585,7 +784,7 @@ internal static string Audio {
///
/// 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 +793,34 @@ internal static string AudioAlerts {
///
/// 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 +829,7 @@ internal static string AutomaticFileDownloads {
///
/// Looks up a localized string similar to AutoPlay.
///
- internal static string AutoPlay {
+ public static string AutoPlay {
get {
return ResourceManager.GetString("AutoPlay", resourceCulture);
}
@@ -621,7 +838,7 @@ internal static string AutoPlay {
///
/// Looks up a localized string similar to Background.
///
- internal static string Background {
+ public static string Background {
get {
return ResourceManager.GetString("Background", resourceCulture);
}
@@ -630,7 +847,7 @@ internal static string Background {
///
/// 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 +856,7 @@ internal static string BackgroundApps {
///
/// Looks up a localized string similar to Backup.
///
- internal static string Backup {
+ public static string Backup {
get {
return ResourceManager.GetString("Backup", resourceCulture);
}
@@ -648,16 +865,34 @@ internal static string Backup {
///
/// 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 +901,7 @@ internal static string BatterySaver {
///
/// 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 +910,7 @@ internal static string BatterySaverSettings {
///
/// 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 +919,7 @@ internal static string BatterySaverUsageDetails {
///
/// 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 +928,7 @@ internal static string BatteryUse {
///
/// 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 +937,34 @@ internal static string BiometricDevices {
///
/// 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 +973,7 @@ internal static string BlueLight {
///
/// Looks up a localized string similar to Bluetooth.
///
- internal static string Bluetooth {
+ public static string Bluetooth {
get {
return ResourceManager.GetString("Bluetooth", resourceCulture);
}
@@ -729,7 +982,7 @@ internal static string Bluetooth {
///
/// 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 +991,7 @@ internal static string BluetoothDevices {
///
/// 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 +1000,7 @@ internal static string BlueYellow {
///
/// 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 +1009,7 @@ internal static string BopomofoIme {
///
/// Looks up a localized string similar to bpmf.
///
- internal static string bpmf {
+ public static string bpmf {
get {
return ResourceManager.GetString("bpmf", resourceCulture);
}
@@ -765,7 +1018,7 @@ internal static string bpmf {
///
/// Looks up a localized string similar to Broadcasting.
///
- internal static string Broadcasting {
+ public static string Broadcasting {
get {
return ResourceManager.GetString("Broadcasting", resourceCulture);
}
@@ -774,16 +1027,34 @@ internal static string Broadcasting {
///
/// 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 +1063,7 @@ internal static string CallHistory {
///
/// Looks up a localized string similar to calling.
///
- internal static string calling {
+ public static string calling {
get {
return ResourceManager.GetString("calling", resourceCulture);
}
@@ -801,7 +1072,7 @@ internal static string calling {
///
/// Looks up a localized string similar to Camera.
///
- internal static string Camera {
+ public static string Camera {
get {
return ResourceManager.GetString("Camera", resourceCulture);
}
@@ -810,7 +1081,7 @@ internal static string Camera {
///
/// 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 +1090,7 @@ internal static string CangjieIme {
///
/// Looks up a localized string similar to Caps Lock.
///
- internal static string CapsLock {
+ public static string CapsLock {
get {
return ResourceManager.GetString("CapsLock", resourceCulture);
}
@@ -828,2770 +1099,4813 @@ internal static string CapsLock {
///
/// 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 Choose which folders appear on Start.
+ /// Looks up a localized string similar to Change account type.
///
- internal static string ChooseWhichFoldersAppearOnStart {
+ public static string ChangeAccountType {
get {
- return ResourceManager.GetString("ChooseWhichFoldersAppearOnStart", resourceCulture);
+ return ResourceManager.GetString("ChangeAccountType", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Client service for NetWare.
+ /// Looks up a localized string similar to Change advanced colour management settings for displays, scanners and printers.
///
- internal static string ClientServiceForNetWare {
+ public static string ChangeAdvancedColourManagementSettingsForDisplaysScannersAndPrinters {
get {
- return ResourceManager.GetString("ClientServiceForNetWare", resourceCulture);
+ return ResourceManager.GetString("ChangeAdvancedColourManagementSettingsForDisplaysScannersAndPrinters", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Clipboard.
+ /// Looks up a localized string similar to Change Automatic Maintenance settings.
///
- internal static string Clipboard {
+ public static string ChangeAutomaticMaintenanceSettings {
get {
- return ResourceManager.GetString("Clipboard", resourceCulture);
+ return ResourceManager.GetString("ChangeAutomaticMaintenanceSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Closed captions.
+ /// Looks up a localized string similar to Change battery settings.
///
- internal static string ClosedCaptions {
+ public static string ChangeBatterySettings {
get {
- return ResourceManager.GetString("ClosedCaptions", resourceCulture);
+ return ResourceManager.GetString("ChangeBatterySettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Color filters.
+ /// Looks up a localized string similar to Change Bluetooth settings.
///
- internal static string ColorFilters {
+ public static string ChangeBluetoothSettings {
get {
- return ResourceManager.GetString("ColorFilters", resourceCulture);
+ return ResourceManager.GetString("ChangeBluetoothSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Color management.
+ /// Looks up a localized string similar to Change cursor blink rate.
///
- internal static string ColorManagement {
+ public static string ChangeCursorBlinkRate {
get {
- return ResourceManager.GetString("ColorManagement", resourceCulture);
+ return ResourceManager.GetString("ChangeCursorBlinkRate", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Colors.
+ /// Looks up a localized string similar to Change date, time or number formats.
///
- internal static string Colors {
+ public static string ChangeDateTimeOrNumberFormats {
get {
- return ResourceManager.GetString("Colors", resourceCulture);
+ return ResourceManager.GetString("ChangeDateTimeOrNumberFormats", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Command.
+ /// Looks up a localized string similar to Change default printer.
///
- internal static string Command {
+ public static string ChangeDefaultPrinter {
get {
- return ResourceManager.GetString("Command", resourceCulture);
+ return ResourceManager.GetString("ChangeDefaultPrinter", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Connected Devices.
+ /// Looks up a localized string similar to Change default settings for media or devices.
///
- internal static string ConnectedDevices {
+ public static string ChangeDefaultSettingsForMediaOrDevices {
get {
- return ResourceManager.GetString("ConnectedDevices", resourceCulture);
+ return ResourceManager.GetString("ChangeDefaultSettingsForMediaOrDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Contacts.
+ /// Looks up a localized string similar to Change device installation settings.
///
- internal static string Contacts {
+ public static string ChangeDeviceInstallationSettings {
get {
- return ResourceManager.GetString("Contacts", resourceCulture);
+ return ResourceManager.GetString("ChangeDeviceInstallationSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Control Panel.
+ /// Looks up a localized string similar to Change Font Settings.
///
- internal static string ControlPanel {
+ public static string ChangeFontSettings {
get {
- return ResourceManager.GetString("ControlPanel", resourceCulture);
+ return ResourceManager.GetString("ChangeFontSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Copy command.
+ /// Looks up a localized string similar to Change how the mouse pointer looks.
///
- internal static string CopyCommand {
+ public static string ChangeHowTheMousePointerLooks {
get {
- return ResourceManager.GetString("CopyCommand", resourceCulture);
+ return ResourceManager.GetString("ChangeHowTheMousePointerLooks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Core Isolation.
+ /// Looks up a localized string similar to Change how the mouse pointer looks when it’s moving.
///
- internal static string CoreIsolation {
+ public static string ChangeHowTheMousePointerLooksWhenItSMoving {
get {
- return ResourceManager.GetString("CoreIsolation", resourceCulture);
+ return ResourceManager.GetString("ChangeHowTheMousePointerLooksWhenItSMoving", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Cortana.
+ /// Looks up a localized string similar to Change how web pages are displayed in tabs.
///
- internal static string Cortana {
+ public static string ChangeHowWebPagesAreDisplayedInTabs {
get {
- return ResourceManager.GetString("Cortana", resourceCulture);
+ return ResourceManager.GetString("ChangeHowWebPagesAreDisplayedInTabs", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Cortana across my devices.
+ /// Looks up a localized string similar to Change how Windows searches.
///
- internal static string CortanaAcrossMyDevices {
+ public static string ChangeHowWindowsSearches {
get {
- return ResourceManager.GetString("CortanaAcrossMyDevices", resourceCulture);
+ return ResourceManager.GetString("ChangeHowWindowsSearches", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Cortana - Language.
+ /// Looks up a localized string similar to Change how your keyboard works.
///
- internal static string CortanaLanguage {
+ public static string ChangeHowYourKeyboardWorks {
get {
- return ResourceManager.GetString("CortanaLanguage", resourceCulture);
+ return ResourceManager.GetString("ChangeHowYourKeyboardWorks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Credential manager.
+ /// Looks up a localized string similar to Change how your mouse works.
///
- internal static string CredentialManager {
+ public static string ChangeHowYourMouseWorks {
get {
- return ResourceManager.GetString("CredentialManager", resourceCulture);
+ return ResourceManager.GetString("ChangeHowYourMouseWorks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Crossdevice.
+ /// Looks up a localized string similar to Change input methods.
///
- internal static string Crossdevice {
+ public static string ChangeInputMethods {
get {
- return ResourceManager.GetString("Crossdevice", resourceCulture);
+ return ResourceManager.GetString("ChangeInputMethods", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Custom devices.
+ /// Looks up a localized string similar to Change location settings.
///
- internal static string CustomDevices {
+ public static string ChangeLocationSettings {
get {
- return ResourceManager.GetString("CustomDevices", resourceCulture);
+ return ResourceManager.GetString("ChangeLocationSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Dark color.
+ /// Looks up a localized string similar to Change mouse click settings.
///
- internal static string DarkColor {
+ public static string ChangeMouseClickSettings {
get {
- return ResourceManager.GetString("DarkColor", resourceCulture);
+ return ResourceManager.GetString("ChangeMouseClickSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Dark mode.
+ /// Looks up a localized string similar to Change mouse settings.
///
- internal static string DarkMode {
+ public static string ChangeMouseSettings {
get {
- return ResourceManager.GetString("DarkMode", resourceCulture);
+ return ResourceManager.GetString("ChangeMouseSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Data usage.
+ /// Looks up a localized string similar to Change mouse wheel settings.
///
- internal static string DataUsage {
+ public static string ChangeMouseWheelSettings {
get {
- return ResourceManager.GetString("DataUsage", resourceCulture);
+ return ResourceManager.GetString("ChangeMouseWheelSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Date and time.
+ /// Looks up a localized string similar to Change multi-touch gesture settings.
///
- internal static string DateAndTime {
+ public static string ChangeMultiTouchGestureSettings {
get {
- return ResourceManager.GetString("DateAndTime", resourceCulture);
+ return ResourceManager.GetString("ChangeMultiTouchGestureSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Default apps.
+ /// Looks up a localized string similar to Change or remove a program.
///
- internal static string DefaultApps {
+ public static string ChangeOrRemoveAProgram {
get {
- return ResourceManager.GetString("DefaultApps", resourceCulture);
+ return ResourceManager.GetString("ChangeOrRemoveAProgram", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Default camera.
+ /// Looks up a localized string similar to Change PC wake-up settings.
///
- internal static string DefaultCamera {
+ public static string ChangePCWakeUpSettings {
get {
- return ResourceManager.GetString("DefaultCamera", resourceCulture);
+ return ResourceManager.GetString("ChangePCWakeUpSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Default location.
+ /// Looks up a localized string similar to Change power-saving settings.
///
- internal static string DefaultLocation {
+ public static string ChangePowerSavingSettings {
get {
- return ResourceManager.GetString("DefaultLocation", resourceCulture);
+ return ResourceManager.GetString("ChangePowerSavingSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Default programs.
+ /// Looks up a localized string similar to Change screen saver.
///
- internal static string DefaultPrograms {
+ public static string ChangeScreenSaver {
get {
- return ResourceManager.GetString("DefaultPrograms", resourceCulture);
+ return ResourceManager.GetString("ChangeScreenSaver", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Default Save Locations.
+ /// Looks up a localized string similar to Change search options for files and folders.
///
- internal static string DefaultSaveLocations {
+ public static string ChangeSearchOptionsForFilesAndFolders {
get {
- return ResourceManager.GetString("DefaultSaveLocations", resourceCulture);
+ return ResourceManager.GetString("ChangeSearchOptionsForFilesAndFolders", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Delivery Optimization.
+ /// Looks up a localized string similar to Change security settings.
///
- internal static string DeliveryOptimization {
+ public static string ChangeSecuritySettings {
get {
- return ResourceManager.GetString("DeliveryOptimization", resourceCulture);
+ return ResourceManager.GetString("ChangeSecuritySettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to desk.cpl.
+ /// Looks up a localized string similar to Change settings for content received using Tap and send.
///
- internal static string desk_cpl {
+ public static string ChangeSettingsForContentReceivedUsingTapAndSend {
get {
- return ResourceManager.GetString("desk.cpl", resourceCulture);
+ return ResourceManager.GetString("ChangeSettingsForContentReceivedUsingTapAndSend", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Desktop themes.
+ /// Looks up a localized string similar to Change sound card settings.
///
- internal static string DesktopThemes {
+ public static string ChangeSoundCardSettings {
get {
- return ResourceManager.GetString("DesktopThemes", resourceCulture);
+ return ResourceManager.GetString("ChangeSoundCardSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to deuteranopia.
+ /// Looks up a localized string similar to Change system sounds.
///
- internal static string deuteranopia {
+ public static string ChangeSystemSounds {
get {
- return ResourceManager.GetString("deuteranopia", resourceCulture);
+ return ResourceManager.GetString("ChangeSystemSounds", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Device manager.
+ /// Looks up a localized string similar to Change tablet pen settings.
///
- internal static string DeviceManager {
+ public static string ChangeTabletPenSettings {
get {
- return ResourceManager.GetString("DeviceManager", resourceCulture);
+ return ResourceManager.GetString("ChangeTabletPenSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Devices and printers.
+ /// Looks up a localized string similar to Change temporary Internet file settings.
///
- internal static string DevicesAndPrinters {
+ public static string ChangeTemporaryInternetFileSettings {
get {
- return ResourceManager.GetString("DevicesAndPrinters", resourceCulture);
+ return ResourceManager.GetString("ChangeTemporaryInternetFileSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to DHCP.
+ /// Looks up a localized string similar to Change text-to-speech settings.
///
- internal static string Dhcp {
+ public static string ChangeTextToSpeechSettings {
get {
- return ResourceManager.GetString("Dhcp", resourceCulture);
+ return ResourceManager.GetString("ChangeTextToSpeechSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Dial-up.
+ /// Looks up a localized string similar to Change the file type associated with a file extension.
///
- internal static string DialUp {
+ public static string ChangeTheFileTypeAssociatedWithAFileExtension {
get {
- return ResourceManager.GetString("DialUp", resourceCulture);
+ return ResourceManager.GetString("ChangeTheFileTypeAssociatedWithAFileExtension", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Direct access.
+ /// Looks up a localized string similar to Change the mouse pointer display or speed.
///
- internal static string DirectAccess {
+ public static string ChangeTheMousePointerDisplayOrSpeed {
get {
- return ResourceManager.GetString("DirectAccess", resourceCulture);
+ return ResourceManager.GetString("ChangeTheMousePointerDisplayOrSpeed", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Direct open your phone.
+ /// Looks up a localized string similar to Change the Narrator’s voice.
///
- internal static string DirectOpenYourPhone {
+ public static string ChangeTheNarratorSVoice {
get {
- return ResourceManager.GetString("DirectOpenYourPhone", resourceCulture);
+ return ResourceManager.GetString("ChangeTheNarratorSVoice", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Display.
+ /// Looks up a localized string similar to Change the order of Windows SideShow gadgets.
///
- internal static string Display {
+ public static string ChangeTheOrderOfWindowsSideshowGadgets {
get {
- return ResourceManager.GetString("Display", resourceCulture);
+ return ResourceManager.GetString("ChangeTheOrderOfWindowsSideshowGadgets", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Display properties.
+ /// Looks up a localized string similar to Change the search provider in Internet Explorer.
///
- internal static string DisplayProperties {
+ public static string ChangeTheSearchProviderInInternetExplorer {
get {
- return ResourceManager.GetString("DisplayProperties", resourceCulture);
+ return ResourceManager.GetString("ChangeTheSearchProviderInInternetExplorer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to DNS.
+ /// Looks up a localized string similar to Change the time zone.
///
- internal static string DNS {
+ public static string ChangeTheTimeZone {
get {
- return ResourceManager.GetString("DNS", resourceCulture);
+ return ResourceManager.GetString("ChangeTheTimeZone", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Documents.
+ /// Looks up a localized string similar to Change the way currency is displayed.
///
- internal static string Documents {
+ public static string ChangeTheWayCurrencyIsDisplayed {
get {
- return ResourceManager.GetString("Documents", resourceCulture);
+ return ResourceManager.GetString("ChangeTheWayCurrencyIsDisplayed", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Duplicating my display.
+ /// Looks up a localized string similar to Change the way dates and lists are displayed.
///
- internal static string DuplicatingMyDisplay {
+ public static string ChangeTheWayDatesAndListsAreDisplayed {
get {
- return ResourceManager.GetString("DuplicatingMyDisplay", resourceCulture);
+ return ResourceManager.GetString("ChangeTheWayDatesAndListsAreDisplayed", resourceCulture);
}
}
///
- /// Looks up a localized string similar to During these hours.
+ /// Looks up a localized string similar to Change the way measurements are displayed.
///
- internal static string DuringTheseHours {
+ public static string ChangeTheWayMeasurementsAreDisplayed {
get {
- return ResourceManager.GetString("DuringTheseHours", resourceCulture);
+ return ResourceManager.GetString("ChangeTheWayMeasurementsAreDisplayed", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Ease of access center.
+ /// Looks up a localized string similar to Change the way time is displayed.
///
- internal static string EaseOfAccessCenter {
+ public static string ChangeTheWayTimeIsDisplayed {
get {
- return ResourceManager.GetString("EaseOfAccessCenter", resourceCulture);
+ return ResourceManager.GetString("ChangeTheWayTimeIsDisplayed", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Edition.
+ /// Looks up a localized string similar to Change touch input settings.
///
- internal static string Edition {
+ public static string ChangeTouchInputSettings {
get {
- return ResourceManager.GetString("Edition", resourceCulture);
+ return ResourceManager.GetString("ChangeTouchInputSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Email.
+ /// Looks up a localized string similar to Change User Account Control settings.
///
- internal static string Email {
+ public static string ChangeUserAccountControlSettings {
get {
- return ResourceManager.GetString("Email", resourceCulture);
+ return ResourceManager.GetString("ChangeUserAccountControlSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Email and app accounts.
+ /// Looks up a localized string similar to Change what closing the lid does.
///
- internal static string EmailAndAppAccounts {
+ public static string ChangeWhatClosingTheLidDoes {
get {
- return ResourceManager.GetString("EmailAndAppAccounts", resourceCulture);
+ return ResourceManager.GetString("ChangeWhatClosingTheLidDoes", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Encryption.
+ /// Looks up a localized string similar to Change what the power buttons do.
///
- internal static string Encryption {
+ public static string ChangeWhatThePowerButtonsDo {
get {
- return ResourceManager.GetString("Encryption", resourceCulture);
+ return ResourceManager.GetString("ChangeWhatThePowerButtonsDo", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Environment.
+ /// Looks up a localized string similar to Change when the computer sleeps.
///
- internal static string Environment {
+ public static string ChangeWhenTheComputerSleeps {
get {
- return ResourceManager.GetString("Environment", resourceCulture);
+ return ResourceManager.GetString("ChangeWhenTheComputerSleeps", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Ethernet.
+ /// Looks up a localized string similar to Change Windows SideShow-compatible device settings.
///
- internal static string Ethernet {
+ public static string ChangeWindowsSideshowCompatibleDeviceSettings {
get {
- return ResourceManager.GetString("Ethernet", resourceCulture);
+ return ResourceManager.GetString("ChangeWindowsSideshowCompatibleDeviceSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Exploit Protection.
+ /// Looks up a localized string similar to Change Windows SideShow settings.
///
- internal static string ExploitProtection {
+ public static string ChangeWindowsSideshowSettings {
get {
- return ResourceManager.GetString("ExploitProtection", resourceCulture);
+ return ResourceManager.GetString("ChangeWindowsSideshowSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Extras.
+ /// Looks up a localized string similar to Change Windows To Go start-up options.
///
- internal static string Extras {
+ public static string ChangeWindowsToGoStartUpOptions {
get {
- return ResourceManager.GetString("Extras", resourceCulture);
+ return ResourceManager.GetString("ChangeWindowsToGoStartUpOptions", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Eye control.
+ /// Looks up a localized string similar to Change workgroup name.
///
- internal static string EyeControl {
+ public static string ChangeWorkgroupName {
get {
- return ResourceManager.GetString("EyeControl", resourceCulture);
+ return ResourceManager.GetString("ChangeWorkgroupName", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Eye tracker.
+ /// Looks up a localized string similar to Change your homepage.
///
- internal static string EyeTracker {
+ public static string ChangeYourHomepage {
get {
- return ResourceManager.GetString("EyeTracker", resourceCulture);
+ return ResourceManager.GetString("ChangeYourHomepage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Family and other people.
+ /// Looks up a localized string similar to Check firewall status.
///
- internal static string FamilyAndOtherPeople {
+ public static string CheckFirewallStatus {
get {
- return ResourceManager.GetString("FamilyAndOtherPeople", resourceCulture);
+ return ResourceManager.GetString("CheckFirewallStatus", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Feedback and diagnostics.
+ /// Looks up a localized string similar to Check keyboard status.
///
- internal static string FeedbackAndDiagnostics {
+ public static string CheckKeyboardStatus {
get {
- return ResourceManager.GetString("FeedbackAndDiagnostics", resourceCulture);
+ return ResourceManager.GetString("CheckKeyboardStatus", resourceCulture);
}
}
///
- /// Looks up a localized string similar to File system.
+ /// Looks up a localized string similar to Check processor speed.
///
- internal static string FileSystem {
+ public static string CheckProcessorSpeed {
get {
- return ResourceManager.GetString("FileSystem", resourceCulture);
+ return ResourceManager.GetString("CheckProcessorSpeed", resourceCulture);
}
}
///
- /// Looks up a localized string similar to FindFast.
+ /// Looks up a localized string similar to Check security status.
///
- internal static string FindFast {
+ public static string CheckSecurityStatus {
get {
- return ResourceManager.GetString("FindFast", resourceCulture);
+ return ResourceManager.GetString("CheckSecurityStatus", resourceCulture);
}
}
///
- /// Looks up a localized string similar to findfast.cpl.
+ /// Looks up a localized string similar to Choose a power plan.
///
- internal static string findfast_cpl {
+ public static string ChooseAPowerPlan {
get {
- return ResourceManager.GetString("findfast.cpl", resourceCulture);
+ return ResourceManager.GetString("ChooseAPowerPlan", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Find My Device.
+ /// Looks up a localized string similar to Choose how you open links.
///
- internal static string FindMyDevice {
+ public static string ChooseHowYouOpenLinks {
get {
- return ResourceManager.GetString("FindMyDevice", resourceCulture);
+ return ResourceManager.GetString("ChooseHowYouOpenLinks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Firewall.
+ /// Looks up a localized string similar to Choose the order of how your screen rotates.
///
- internal static string Firewall {
+ public static string ChooseTheOrderOfHowYourScreenRotates {
get {
- return ResourceManager.GetString("Firewall", resourceCulture);
+ return ResourceManager.GetString("ChooseTheOrderOfHowYourScreenRotates", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Focus assist - Quiet hours.
+ /// Looks up a localized string similar to Choose when to turn off display.
///
- internal static string FocusAssistQuietHours {
+ public static string ChooseWhenToTurnOffDisplay {
get {
- return ResourceManager.GetString("FocusAssistQuietHours", resourceCulture);
+ return ResourceManager.GetString("ChooseWhenToTurnOffDisplay", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Focus assist - Quiet moments.
+ /// Looks up a localized string similar to Choose which folders appear on Start.
///
- internal static string FocusAssistQuietMoments {
+ public static string ChooseWhichFoldersAppearOnStart {
get {
- return ResourceManager.GetString("FocusAssistQuietMoments", resourceCulture);
+ return ResourceManager.GetString("ChooseWhichFoldersAppearOnStart", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Folder options.
+ /// Looks up a localized string similar to Clear disk space by deleting unnecessary files.
///
- internal static string FolderOptions {
+ public static string ClearDiskSpaceByDeletingUnnecessaryFiles {
get {
- return ResourceManager.GetString("FolderOptions", resourceCulture);
+ return ResourceManager.GetString("ClearDiskSpaceByDeletingUnnecessaryFiles", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Fonts.
+ /// Looks up a localized string similar to Client service for NetWare.
///
- internal static string Fonts {
+ public static string ClientServiceForNetWare {
get {
- return ResourceManager.GetString("Fonts", resourceCulture);
+ return ResourceManager.GetString("ClientServiceForNetWare", resourceCulture);
}
}
///
- /// Looks up a localized string similar to For developers.
+ /// Looks up a localized string similar to Clipboard.
///
- internal static string ForDevelopers {
+ public static string Clipboard {
get {
- return ResourceManager.GetString("ForDevelopers", resourceCulture);
+ return ResourceManager.GetString("Clipboard", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Game bar.
+ /// Looks up a localized string similar to Closed captions.
///
- internal static string GameBar {
+ public static string ClosedCaptions {
get {
- return ResourceManager.GetString("GameBar", resourceCulture);
+ return ResourceManager.GetString("ClosedCaptions", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Game controllers.
+ /// Looks up a localized string similar to Color filters.
///
- internal static string GameControllers {
+ public static string ColorFilters {
get {
- return ResourceManager.GetString("GameControllers", resourceCulture);
+ return ResourceManager.GetString("ColorFilters", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Game DVR.
+ /// Looks up a localized string similar to Color management.
///
- internal static string GameDvr {
+ public static string ColorManagement {
get {
- return ResourceManager.GetString("GameDvr", resourceCulture);
+ return ResourceManager.GetString("ColorManagement", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Game Mode.
+ /// Looks up a localized string similar to Colors.
///
- internal static string GameMode {
+ public static string Colors {
get {
- return ResourceManager.GetString("GameMode", resourceCulture);
+ return ResourceManager.GetString("Colors", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Gateway.
+ /// Looks up a localized string similar to Command.
///
- internal static string Gateway {
+ public static string Command {
get {
- return ResourceManager.GetString("Gateway", resourceCulture);
+ return ResourceManager.GetString("Command", resourceCulture);
}
}
///
- /// Looks up a localized string similar to General.
+ /// Looks up a localized string similar to Configure advanced user profile properties.
///
- internal static string General {
+ public static string ConfigureAdvancedUserProfileProperties {
get {
- return ResourceManager.GetString("General", resourceCulture);
+ return ResourceManager.GetString("ConfigureAdvancedUserProfileProperties", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Get programs.
+ /// Looks up a localized string similar to Configure proxy server.
///
- internal static string GetPrograms {
+ public static string ConfigureProxyServer {
get {
- return ResourceManager.GetString("GetPrograms", resourceCulture);
+ return ResourceManager.GetString("ConfigureProxyServer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Getting started.
+ /// Looks up a localized string similar to Connected Devices.
///
- internal static string GettingStarted {
+ public static string ConnectedDevices {
get {
- return ResourceManager.GetString("GettingStarted", resourceCulture);
+ return ResourceManager.GetString("ConnectedDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Glance.
+ /// Looks up a localized string similar to Connect to a network.
///
- internal static string Glance {
+ public static string ConnectToANetwork {
get {
- return ResourceManager.GetString("Glance", resourceCulture);
+ return ResourceManager.GetString("ConnectToANetwork", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Graphics settings.
+ /// Looks up a localized string similar to Connect to the Internet.
///
- internal static string GraphicsSettings {
+ public static string ConnectToTheInternet {
get {
- return ResourceManager.GetString("GraphicsSettings", resourceCulture);
+ return ResourceManager.GetString("ConnectToTheInternet", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Grayscale.
+ /// Looks up a localized string similar to Contacts.
///
- internal static string Grayscale {
+ public static string Contacts {
get {
- return ResourceManager.GetString("Grayscale", resourceCulture);
+ return ResourceManager.GetString("Contacts", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Green week.
+ /// Looks up a localized string similar to Control Panel.
///
- internal static string GreenWeek {
+ public static string ControlPanel {
get {
- return ResourceManager.GetString("GreenWeek", resourceCulture);
+ return ResourceManager.GetString("ControlPanel", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Headset display.
+ /// Looks up a localized string similar to Control the computer without the mouse or keyboard.
///
- internal static string HeadsetDisplay {
+ public static string ControlTheComputerWithoutTheMouseOrKeyboard {
get {
- return ResourceManager.GetString("HeadsetDisplay", resourceCulture);
+ return ResourceManager.GetString("ControlTheComputerWithoutTheMouseOrKeyboard", resourceCulture);
}
}
///
- /// Looks up a localized string similar to High contrast.
+ /// Looks up a localized string similar to Copy command.
///
- internal static string HighContrast {
+ public static string CopyCommand {
get {
- return ResourceManager.GetString("HighContrast", resourceCulture);
+ return ResourceManager.GetString("CopyCommand", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Holographic audio.
+ /// Looks up a localized string similar to Core Isolation.
///
- internal static string HolographicAudio {
+ public static string CoreIsolation {
get {
- return ResourceManager.GetString("HolographicAudio", resourceCulture);
+ return ResourceManager.GetString("CoreIsolation", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Holographic Environment.
+ /// Looks up a localized string similar to Cortana.
///
- internal static string HolographicEnvironment {
+ public static string Cortana {
get {
- return ResourceManager.GetString("HolographicEnvironment", resourceCulture);
+ return ResourceManager.GetString("Cortana", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Holographic Headset.
+ /// Looks up a localized string similar to Cortana across my devices.
///
- internal static string HolographicHeadset {
+ public static string CortanaAcrossMyDevices {
get {
- return ResourceManager.GetString("HolographicHeadset", resourceCulture);
+ return ResourceManager.GetString("CortanaAcrossMyDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Holographic Management.
+ /// Looks up a localized string similar to Cortana - Language.
///
- internal static string HolographicManagement {
+ public static string CortanaLanguage {
get {
- return ResourceManager.GetString("HolographicManagement", resourceCulture);
+ return ResourceManager.GetString("CortanaLanguage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Home group.
+ /// Looks up a localized string similar to Create an account.
///
- internal static string HomeGroup {
+ public static string CreateAnAccount {
get {
- return ResourceManager.GetString("HomeGroup", resourceCulture);
+ return ResourceManager.GetString("CreateAnAccount", resourceCulture);
}
}
///
- /// Looks up a localized string similar to ID.
+ /// Looks up a localized string similar to Create and format hard disk partitions.
///
- internal static string Id {
+ public static string CreateAndFormatHardDiskPartitions {
get {
- return ResourceManager.GetString("Id", resourceCulture);
+ return ResourceManager.GetString("CreateAndFormatHardDiskPartitions", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Image.
+ /// Looks up a localized string similar to Create a password reset disk.
///
- internal static string Image {
+ public static string CreateAPasswordResetDisk {
get {
- return ResourceManager.GetString("Image", resourceCulture);
+ return ResourceManager.GetString("CreateAPasswordResetDisk", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Indexing options.
+ /// Looks up a localized string similar to Create a recovery drive.
///
- internal static string IndexingOptions {
+ public static string CreateARecoveryDrive {
get {
- return ResourceManager.GetString("IndexingOptions", resourceCulture);
+ return ResourceManager.GetString("CreateARecoveryDrive", resourceCulture);
}
}
///
- /// Looks up a localized string similar to inetcpl.cpl.
+ /// Looks up a localized string similar to Create a restore point.
///
- internal static string inetcpl_cpl {
+ public static string CreateARestorePoint {
get {
- return ResourceManager.GetString("inetcpl.cpl", resourceCulture);
+ return ResourceManager.GetString("CreateARestorePoint", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Infrared.
+ /// Looks up a localized string similar to Create standard user account.
///
- internal static string Infrared {
+ public static string CreateStandardUserAccount {
get {
- return ResourceManager.GetString("Infrared", resourceCulture);
+ return ResourceManager.GetString("CreateStandardUserAccount", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Inking and typing.
+ /// Looks up a localized string similar to Credential manager.
///
- internal static string InkingAndTyping {
+ public static string CredentialManager {
get {
- return ResourceManager.GetString("InkingAndTyping", resourceCulture);
+ return ResourceManager.GetString("CredentialManager", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Internet options.
+ /// Looks up a localized string similar to Crossdevice.
///
- internal static string InternetOptions {
+ public static string Crossdevice {
get {
- return ResourceManager.GetString("InternetOptions", resourceCulture);
+ return ResourceManager.GetString("Crossdevice", resourceCulture);
}
}
///
- /// Looks up a localized string similar to intl.cpl.
+ /// Looks up a localized string similar to Custom devices.
///
- internal static string intl_cpl {
+ public static string CustomDevices {
get {
- return ResourceManager.GetString("intl.cpl", resourceCulture);
+ return ResourceManager.GetString("CustomDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Inverted colors.
+ /// Looks up a localized string similar to Customise the mouse buttons.
///
- internal static string InvertedColors {
+ public static string CustomiseTheMouseButtons {
get {
- return ResourceManager.GetString("InvertedColors", resourceCulture);
+ return ResourceManager.GetString("CustomiseTheMouseButtons", resourceCulture);
}
}
///
- /// Looks up a localized string similar to IP.
+ /// Looks up a localized string similar to Dark color.
///
- internal static string Ip {
+ public static string DarkColor {
get {
- return ResourceManager.GetString("Ip", resourceCulture);
+ return ResourceManager.GetString("DarkColor", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Isolated Browsing.
+ /// Looks up a localized string similar to Dark mode.
///
- internal static string IsolatedBrowsing {
+ public static string DarkMode {
get {
- return ResourceManager.GetString("IsolatedBrowsing", resourceCulture);
+ return ResourceManager.GetString("DarkMode", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Japan IME settings.
+ /// Looks up a localized string similar to Data usage.
///
- internal static string JapanImeSettings {
+ public static string DataUsage {
get {
- return ResourceManager.GetString("JapanImeSettings", resourceCulture);
+ return ResourceManager.GetString("DataUsage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to joy.cpl.
+ /// Looks up a localized string similar to Date and time.
///
- internal static string joy_cpl {
+ public static string DateAndTime {
get {
- return ResourceManager.GetString("joy.cpl", resourceCulture);
+ return ResourceManager.GetString("DateAndTime", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Joystick properties.
+ /// Looks up a localized string similar to Default apps.
///
- internal static string JoystickProperties {
+ public static string DefaultApps {
get {
- return ResourceManager.GetString("JoystickProperties", resourceCulture);
+ return ResourceManager.GetString("DefaultApps", resourceCulture);
}
}
///
- /// Looks up a localized string similar to jpnime.
+ /// Looks up a localized string similar to Default camera.
///
- internal static string jpnime {
+ public static string DefaultCamera {
get {
- return ResourceManager.GetString("jpnime", resourceCulture);
+ return ResourceManager.GetString("DefaultCamera", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Keyboard.
+ /// Looks up a localized string similar to Default location.
///
- internal static string Keyboard {
+ public static string DefaultLocation {
get {
- return ResourceManager.GetString("Keyboard", resourceCulture);
+ return ResourceManager.GetString("DefaultLocation", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Keypad.
+ /// Looks up a localized string similar to Default programs.
///
- internal static string Keypad {
+ public static string DefaultPrograms {
get {
- return ResourceManager.GetString("Keypad", resourceCulture);
+ return ResourceManager.GetString("DefaultPrograms", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Keys.
+ /// Looks up a localized string similar to Default Save Locations.
///
- internal static string Keys {
+ public static string DefaultSaveLocations {
get {
- return ResourceManager.GetString("Keys", resourceCulture);
+ return ResourceManager.GetString("DefaultSaveLocations", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Language.
+ /// Looks up a localized string similar to Defragment and optimise your drives.
///
- internal static string Language {
+ public static string DefragmentAndOptimiseYourDrives {
get {
- return ResourceManager.GetString("Language", resourceCulture);
+ return ResourceManager.GetString("DefragmentAndOptimiseYourDrives", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Light color.
+ /// Looks up a localized string similar to Delete browsing history.
///
- internal static string LightColor {
+ public static string DeleteBrowsingHistory {
get {
- return ResourceManager.GetString("LightColor", resourceCulture);
+ return ResourceManager.GetString("DeleteBrowsingHistory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Light mode.
+ /// Looks up a localized string similar to Delete cookies or temporary files.
///
- internal static string LightMode {
+ public static string DeleteCookiesOrTemporaryFiles {
get {
- return ResourceManager.GetString("LightMode", resourceCulture);
+ return ResourceManager.GetString("DeleteCookiesOrTemporaryFiles", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Location.
+ /// Looks up a localized string similar to Delivery Optimization.
///
- internal static string Location {
+ public static string DeliveryOptimization {
get {
- return ResourceManager.GetString("Location", resourceCulture);
+ return ResourceManager.GetString("DeliveryOptimization", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Lock screen.
+ /// Looks up a localized string similar to desk.cpl.
///
- internal static string LockScreen {
+ public static string desk_cpl {
get {
- return ResourceManager.GetString("LockScreen", resourceCulture);
+ return ResourceManager.GetString("desk.cpl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Magnifier.
+ /// Looks up a localized string similar to Desktop themes.
///
- internal static string Magnifier {
+ public static string DesktopThemes {
get {
- return ResourceManager.GetString("Magnifier", resourceCulture);
+ return ResourceManager.GetString("DesktopThemes", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mail - Microsoft Exchange or Windows Messaging.
+ /// Looks up a localized string similar to deuteranopia.
///
- internal static string MailMicrosoftExchangeOrWindowsMessaging {
+ public static string deuteranopia {
get {
- return ResourceManager.GetString("MailMicrosoftExchangeOrWindowsMessaging", resourceCulture);
+ return ResourceManager.GetString("deuteranopia", resourceCulture);
}
}
///
- /// Looks up a localized string similar to main.cpl.
+ /// Looks up a localized string similar to Device manager.
///
- internal static string main_cpl {
+ public static string DeviceManager {
get {
- return ResourceManager.GetString("main.cpl", resourceCulture);
+ return ResourceManager.GetString("DeviceManager", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Manage known networks.
+ /// Looks up a localized string similar to Devices and printers.
///
- internal static string ManageKnownNetworks {
+ public static string DevicesAndPrinters {
get {
- return ResourceManager.GetString("ManageKnownNetworks", resourceCulture);
+ return ResourceManager.GetString("DevicesAndPrinters", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Manage optional features.
+ /// Looks up a localized string similar to DHCP.
///
- internal static string ManageOptionalFeatures {
+ public static string Dhcp {
get {
- return ResourceManager.GetString("ManageOptionalFeatures", resourceCulture);
+ return ResourceManager.GetString("Dhcp", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Messaging.
+ /// Looks up a localized string similar to Diagnose your computer's memory problems.
///
- internal static string Messaging {
+ public static string DiagnoseYourComputersMemoryProblems {
get {
- return ResourceManager.GetString("Messaging", resourceCulture);
+ return ResourceManager.GetString("DiagnoseYourComputersMemoryProblems", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Metered connection.
+ /// Looks up a localized string similar to Dial-up.
///
- internal static string MeteredConnection {
+ public static string DialUp {
get {
- return ResourceManager.GetString("MeteredConnection", resourceCulture);
+ return ResourceManager.GetString("DialUp", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Microphone.
+ /// Looks up a localized string similar to Direct access.
///
- internal static string Microphone {
+ public static string DirectAccess {
get {
- return ResourceManager.GetString("Microphone", resourceCulture);
+ return ResourceManager.GetString("DirectAccess", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Microsoft Mail Post Office.
+ /// Looks up a localized string similar to Direct open your phone.
///
- internal static string MicrosoftMailPostOffice {
+ public static string DirectOpenYourPhone {
get {
- return ResourceManager.GetString("MicrosoftMailPostOffice", resourceCulture);
+ return ResourceManager.GetString("DirectOpenYourPhone", resourceCulture);
}
}
///
- /// Looks up a localized string similar to mlcfg32.cpl.
+ /// Looks up a localized string similar to Display.
///
- internal static string mlcfg32_cpl {
+ public static string Display {
get {
- return ResourceManager.GetString("mlcfg32.cpl", resourceCulture);
+ return ResourceManager.GetString("Display", resourceCulture);
}
}
///
- /// Looks up a localized string similar to mmsys.cpl.
+ /// Looks up a localized string similar to Display properties.
///
- internal static string mmsys_cpl {
+ public static string DisplayProperties {
get {
- return ResourceManager.GetString("mmsys.cpl", resourceCulture);
+ return ResourceManager.GetString("DisplayProperties", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mobile devices.
+ /// Looks up a localized string similar to DNS.
///
- internal static string MobileDevices {
+ public static string DNS {
get {
- return ResourceManager.GetString("MobileDevices", resourceCulture);
+ return ResourceManager.GetString("DNS", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mobile hotspot.
+ /// Looks up a localized string similar to Documents.
///
- internal static string MobileHotspot {
+ public static string Documents {
get {
- return ResourceManager.GetString("MobileHotspot", resourceCulture);
+ return ResourceManager.GetString("Documents", resourceCulture);
}
}
///
- /// Looks up a localized string similar to modem.cpl.
+ /// Looks up a localized string similar to Duplicating my display.
///
- internal static string modem_cpl {
+ public static string DuplicatingMyDisplay {
get {
- return ResourceManager.GetString("modem.cpl", resourceCulture);
+ return ResourceManager.GetString("DuplicatingMyDisplay", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to During these hours.
+ ///
+ public static string DuringTheseHours {
+ get {
+ return ResourceManager.GetString("DuringTheseHours", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ease of access center.
+ ///
+ 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.
+ ///
+ 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.
+ ///
+ public static string Email {
+ get {
+ return ResourceManager.GetString("Email", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Email and app accounts.
+ ///
+ 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.
+ ///
+ 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.
+ ///
+ public static string Environment {
+ get {
+ return ResourceManager.GetString("Environment", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ethernet.
+ ///
+ public static string Ethernet {
+ get {
+ return ResourceManager.GetString("Ethernet", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Exploit Protection.
+ ///
+ public static string ExploitProtection {
+ get {
+ return ResourceManager.GetString("ExploitProtection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Extras.
+ ///
+ public static string Extras {
+ get {
+ return ResourceManager.GetString("Extras", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eye control.
+ ///
+ public static string EyeControl {
+ get {
+ return ResourceManager.GetString("EyeControl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Eye tracker.
+ ///
+ public static string EyeTracker {
+ get {
+ return ResourceManager.GetString("EyeTracker", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Family and other people.
+ ///
+ public static string FamilyAndOtherPeople {
+ get {
+ return ResourceManager.GetString("FamilyAndOtherPeople", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Feedback and diagnostics.
+ ///
+ public static string FeedbackAndDiagnostics {
+ get {
+ return ResourceManager.GetString("FeedbackAndDiagnostics", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to File system.
+ ///
+ 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.
+ ///
+ public static string FindFast {
+ get {
+ return ResourceManager.GetString("FindFast", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to findfast.cpl.
+ ///
+ public static string findfast_cpl {
+ get {
+ return ResourceManager.GetString("findfast.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Find My Device.
+ ///
+ public static string FindMyDevice {
+ get {
+ return ResourceManager.GetString("FindMyDevice", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ public static string FocusAssistQuietHours {
+ get {
+ return ResourceManager.GetString("FocusAssistQuietHours", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Focus assist - Quiet moments.
+ ///
+ public static string FocusAssistQuietMoments {
+ get {
+ return ResourceManager.GetString("FocusAssistQuietMoments", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Folder options.
+ ///
+ public static string FolderOptions {
+ get {
+ return ResourceManager.GetString("FolderOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Fonts.
+ ///
+ public static string Fonts {
+ get {
+ return ResourceManager.GetString("Fonts", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to For developers.
+ ///
+ public static string ForDevelopers {
+ get {
+ return ResourceManager.GetString("ForDevelopers", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Game bar.
+ ///
+ public static string GameBar {
+ get {
+ return ResourceManager.GetString("GameBar", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Game controllers.
+ ///
+ public static string GameControllers {
+ get {
+ return ResourceManager.GetString("GameControllers", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Game DVR.
+ ///
+ public static string GameDvr {
+ get {
+ return ResourceManager.GetString("GameDvr", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Game Mode.
+ ///
+ public static string GameMode {
+ get {
+ return ResourceManager.GetString("GameMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gateway.
+ ///
+ public static string Gateway {
+ get {
+ return ResourceManager.GetString("Gateway", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ public static string GetPrograms {
+ get {
+ return ResourceManager.GetString("GetPrograms", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Getting started.
+ ///
+ 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.
+ ///
+ public static string Glance {
+ get {
+ return ResourceManager.GetString("Glance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Graphics settings.
+ ///
+ public static string GraphicsSettings {
+ get {
+ return ResourceManager.GetString("GraphicsSettings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Grayscale.
+ ///
+ public static string Grayscale {
+ get {
+ return ResourceManager.GetString("Grayscale", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Green week.
+ ///
+ 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.
+ ///
+ 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.
+ ///
+ public static string HighContrast {
+ get {
+ return ResourceManager.GetString("HighContrast", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Holographic audio.
+ ///
+ public static string HolographicAudio {
+ get {
+ return ResourceManager.GetString("HolographicAudio", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Holographic Environment.
+ ///
+ public static string HolographicEnvironment {
+ get {
+ return ResourceManager.GetString("HolographicEnvironment", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Holographic Headset.
+ ///
+ public static string HolographicHeadset {
+ get {
+ return ResourceManager.GetString("HolographicHeadset", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Holographic Management.
+ ///
+ public static string HolographicManagement {
+ get {
+ return ResourceManager.GetString("HolographicManagement", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Home group.
+ ///
+ 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.
+ ///
+ 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.
+ ///
+ public static string Image {
+ get {
+ return ResourceManager.GetString("Image", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Indexing options.
+ ///
+ public static string IndexingOptions {
+ get {
+ return ResourceManager.GetString("IndexingOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to inetcpl.cpl.
+ ///
+ public static string inetcpl_cpl {
+ get {
+ return ResourceManager.GetString("inetcpl.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Infrared.
+ ///
+ public static string Infrared {
+ get {
+ return ResourceManager.GetString("Infrared", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Inking and typing.
+ ///
+ 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.
+ ///
+ public static string InternetOptions {
+ get {
+ return ResourceManager.GetString("InternetOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to intl.cpl.
+ ///
+ public static string intl_cpl {
+ get {
+ return ResourceManager.GetString("intl.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Inverted colors.
+ ///
+ 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.
+ ///
+ public static string Ip {
+ get {
+ return ResourceManager.GetString("Ip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Isolated Browsing.
+ ///
+ public static string IsolatedBrowsing {
+ get {
+ return ResourceManager.GetString("IsolatedBrowsing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Japan IME settings.
+ ///
+ 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.
+ ///
+ public static string joy_cpl {
+ get {
+ return ResourceManager.GetString("joy.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Joystick properties.
+ ///
+ public static string JoystickProperties {
+ get {
+ return ResourceManager.GetString("JoystickProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to jpnime.
+ ///
+ public static string jpnime {
+ get {
+ return ResourceManager.GetString("jpnime", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Keyboard.
+ ///
+ public static string Keyboard {
+ get {
+ return ResourceManager.GetString("Keyboard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Keypad.
+ ///
+ public static string Keypad {
+ get {
+ return ResourceManager.GetString("Keypad", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Keys.
+ ///
+ public static string Keys {
+ get {
+ return ResourceManager.GetString("Keys", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ public static string LightColor {
+ get {
+ return ResourceManager.GetString("LightColor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Light mode.
+ ///
+ public static string LightMode {
+ get {
+ return ResourceManager.GetString("LightMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ public static string LockScreen {
+ get {
+ return ResourceManager.GetString("LockScreen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ public static string MailMicrosoftExchangeOrWindowsMessaging {
+ get {
+ return ResourceManager.GetString("MailMicrosoftExchangeOrWindowsMessaging", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ 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.
+ ///
+ 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.
+ ///
+ public static string Messaging {
+ get {
+ return ResourceManager.GetString("Messaging", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Metered connection.
+ ///
+ public static string MeteredConnection {
+ get {
+ return ResourceManager.GetString("MeteredConnection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ 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.
+ ///
+ public static string mlcfg32_cpl {
+ get {
+ return ResourceManager.GetString("mlcfg32.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mmsys.cpl.
+ ///
+ public static string mmsys_cpl {
+ get {
+ return ResourceManager.GetString("mmsys.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mobile devices.
+ ///
+ public static string MobileDevices {
+ get {
+ return ResourceManager.GetString("MobileDevices", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mobile hotspot.
+ ///
+ public static string MobileHotspot {
+ get {
+ return ResourceManager.GetString("MobileHotspot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to modem.cpl.
+ ///
+ public static string modem_cpl {
+ get {
+ return ResourceManager.GetString("modem.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mono.
+ ///
+ public static string Mono {
+ get {
+ return ResourceManager.GetString("Mono", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to More details.
+ ///
+ public static string MoreDetails {
+ get {
+ return ResourceManager.GetString("MoreDetails", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Motion.
+ ///
+ public static string Motion {
+ get {
+ return ResourceManager.GetString("Motion", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mouse.
+ ///
+ public static string Mouse {
+ get {
+ return ResourceManager.GetString("Mouse", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mouse and touchpad.
+ ///
+ public static string MouseAndTouchpad {
+ get {
+ return ResourceManager.GetString("MouseAndTouchpad", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mouse, Fonts, Keyboard, and Printers properties.
+ ///
+ public static string MouseFontsKeyboardAndPrintersProperties {
+ get {
+ return ResourceManager.GetString("MouseFontsKeyboardAndPrintersProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mouse pointer.
+ ///
+ 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.
+ ///
+ public static string MultimediaProperties {
+ get {
+ return ResourceManager.GetString("MultimediaProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multitasking.
+ ///
+ public static string Multitasking {
+ get {
+ return ResourceManager.GetString("Multitasking", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Narrator.
+ ///
+ public static string Narrator {
+ get {
+ return ResourceManager.GetString("Narrator", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Navigation bar.
+ ///
+ 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.
+ ///
+ public static string netcpl_cpl {
+ get {
+ return ResourceManager.GetString("netcpl.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to netsetup.cpl.
+ ///
+ public static string netsetup_cpl {
+ get {
+ return ResourceManager.GetString("netsetup.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Network.
+ ///
+ public static string Network {
+ get {
+ return ResourceManager.GetString("Network", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Network and sharing center.
+ ///
+ public static string NetworkAndSharingCenter {
+ get {
+ return ResourceManager.GetString("NetworkAndSharingCenter", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Network connection.
+ ///
+ public static string NetworkConnection {
+ get {
+ return ResourceManager.GetString("NetworkConnection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Network properties.
+ ///
+ public static string NetworkProperties {
+ get {
+ return ResourceManager.GetString("NetworkProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Network Setup Wizard.
+ ///
+ public static string NetworkSetupWizard {
+ get {
+ return ResourceManager.GetString("NetworkSetupWizard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Network status.
+ ///
+ public static string NetworkStatus {
+ get {
+ return ResourceManager.GetString("NetworkStatus", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NFC.
+ ///
+ public static string NFC {
+ get {
+ return ResourceManager.GetString("NFC", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NFC Transactions.
+ ///
+ public static string NFCTransactions {
+ get {
+ return ResourceManager.GetString("NFCTransactions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Night light.
+ ///
+ public static string NightLight {
+ get {
+ return ResourceManager.GetString("NightLight", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Night light settings.
+ ///
+ public static string NightLightSettings {
+ get {
+ return ResourceManager.GetString("NightLightSettings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Note.
+ ///
+ public static string Note {
+ get {
+ return ResourceManager.GetString("Note", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available when you have connected a mobile device to your device..
+ ///
+ public static string NoteAddYourPhone {
+ get {
+ return ResourceManager.GetString("NoteAddYourPhone", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available on devices that support advanced graphics options..
+ ///
+ public static string NoteAdvancedGraphics {
+ get {
+ return ResourceManager.GetString("NoteAdvancedGraphics", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available on devices that have a battery, such as a tablet..
+ ///
+ public static string NoteBattery {
+ get {
+ return ResourceManager.GetString("NoteBattery", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Deprecated in Windows 10, version 1809 (build 17763) and later..
+ ///
+ public static string NoteDeprecated17763 {
+ get {
+ return ResourceManager.GetString("NoteDeprecated17763", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if Dial is paired..
+ ///
+ public static string NoteDialPaired {
+ get {
+ return ResourceManager.GetString("NoteDialPaired", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if DirectAccess is enabled..
+ ///
+ public static string NoteDirectAccess {
+ get {
+ return ResourceManager.GetString("NoteDirectAccess", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available on devices that support advanced display options..
+ ///
+ public static string NoteDisplayGraphics {
+ get {
+ return ResourceManager.GetString("NoteDisplayGraphics", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only present if user is enrolled in WIP..
+ ///
+ public static string NoteEnrolledWIP {
+ get {
+ return ResourceManager.GetString("NoteEnrolledWIP", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Requires eyetracker hardware..
+ ///
+ public static string NoteEyetrackerHardware {
+ get {
+ return ResourceManager.GetString("NoteEyetrackerHardware", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Available if the Microsoft Japan input method editor is installed..
+ ///
+ public static string NoteImeJapan {
+ get {
+ return ResourceManager.GetString("NoteImeJapan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Available if the Microsoft Pinyin input method editor is installed..
+ ///
+ public static string NoteImePinyin {
+ get {
+ return ResourceManager.GetString("NoteImePinyin", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Available if the Microsoft Wubi input method editor is installed..
+ ///
+ public static string NoteImeWubi {
+ get {
+ return ResourceManager.GetString("NoteImeWubi", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if the Mixed Reality Portal app is installed..
+ ///
+ public static string NoteMixedReality {
+ get {
+ return ResourceManager.GetString("NoteMixedReality", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available on mobile and if the enterprise has deployed a provisioning package..
+ ///
+ public static string NoteMobileProvisioning {
+ get {
+ return ResourceManager.GetString("NoteMobileProvisioning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Added in Windows 10, version 1903 (build 18362)..
+ ///
+ public static string NoteSince18362 {
+ get {
+ return ResourceManager.GetString("NoteSince18362", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Added in Windows 10, version 2004 (build 19041)..
+ ///
+ public static string NoteSince19041 {
+ get {
+ return ResourceManager.GetString("NoteSince19041", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if "settings apps" are installed, for example, by a 3rd party..
+ ///
+ public static string NoteThirdParty {
+ get {
+ return ResourceManager.GetString("NoteThirdParty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if touchpad hardware is present..
+ ///
+ public static string NoteTouchpad {
+ get {
+ return ResourceManager.GetString("NoteTouchpad", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if the device has a Wi-Fi adapter..
+ ///
+ public static string NoteWiFiAdapter {
+ get {
+ return ResourceManager.GetString("NoteWiFiAdapter", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Device must be Windows Anywhere-capable..
+ ///
+ public static string NoteWindowsAnywhere {
+ get {
+ return ResourceManager.GetString("NoteWindowsAnywhere", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Only available if enterprise has deployed a provisioning package..
+ ///
+ public static string NoteWorkplaceProvisioning {
+ get {
+ return ResourceManager.GetString("NoteWorkplaceProvisioning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Notifications.
+ ///
+ public static string Notifications {
+ get {
+ return ResourceManager.GetString("Notifications", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Notifications and actions.
+ ///
+ public static string NotificationsAndActions {
+ get {
+ return ResourceManager.GetString("NotificationsAndActions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Num Lock.
+ ///
+ public static string NumLock {
+ get {
+ return ResourceManager.GetString("NumLock", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to nwc.cpl.
+ ///
+ public static string nwc_cpl {
+ get {
+ return ResourceManager.GetString("nwc.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to odbccp32.cpl.
+ ///
+ public static string odbccp32_cpl {
+ get {
+ return ResourceManager.GetString("odbccp32.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ODBC Data Source Administrator (32-bit).
+ ///
+ public static string OdbcDataSourceAdministrator32Bit {
+ get {
+ return ResourceManager.GetString("OdbcDataSourceAdministrator32Bit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ODBC Data Source Administrator (64-bit).
+ ///
+ public static string OdbcDataSourceAdministrator64Bit {
+ get {
+ return ResourceManager.GetString("OdbcDataSourceAdministrator64Bit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Offline files.
+ ///
+ public static string OfflineFiles {
+ get {
+ return ResourceManager.GetString("OfflineFiles", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Offline Maps.
+ ///
+ public static string OfflineMaps {
+ get {
+ return ResourceManager.GetString("OfflineMaps", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Offline Maps - Download maps.
+ ///
+ public static string OfflineMapsDownloadMaps {
+ get {
+ return ResourceManager.GetString("OfflineMapsDownloadMaps", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to On-Screen.
+ ///
+ 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.
+ ///
+ public static string Os {
+ get {
+ return ResourceManager.GetString("Os", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Other devices.
+ ///
+ public static string OtherDevices {
+ get {
+ return ResourceManager.GetString("OtherDevices", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Other options.
+ ///
+ public static string OtherOptions {
+ get {
+ return ResourceManager.GetString("OtherOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Other users.
+ ///
+ public static string OtherUsers {
+ get {
+ return ResourceManager.GetString("OtherUsers", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mono.
+ /// Looks up a localized string similar to Parental controls.
///
- internal static string Mono {
+ public static string ParentalControls {
get {
- return ResourceManager.GetString("Mono", resourceCulture);
+ return ResourceManager.GetString("ParentalControls", resourceCulture);
}
}
///
- /// Looks up a localized string similar to More details.
+ /// Looks up a localized string similar to Password.
///
- internal static string MoreDetails {
+ public static string Password {
get {
- return ResourceManager.GetString("MoreDetails", resourceCulture);
+ return ResourceManager.GetString("Password", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Motion.
+ /// Looks up a localized string similar to password.cpl.
///
- internal static string Motion {
+ public static string password_cpl {
get {
- return ResourceManager.GetString("Motion", resourceCulture);
+ return ResourceManager.GetString("password.cpl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mouse.
+ /// Looks up a localized string similar to Password properties.
///
- internal static string Mouse {
+ public static string PasswordProperties {
get {
- return ResourceManager.GetString("Mouse", resourceCulture);
+ return ResourceManager.GetString("PasswordProperties", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mouse and touchpad.
+ /// Looks up a localized string similar to Pen and input devices.
///
- internal static string MouseAndTouchpad {
+ public static string PenAndInputDevices {
get {
- return ResourceManager.GetString("MouseAndTouchpad", resourceCulture);
+ return ResourceManager.GetString("PenAndInputDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mouse, Fonts, Keyboard, and Printers properties.
+ /// Looks up a localized string similar to Pen and touch.
///
- internal static string MouseFontsKeyboardAndPrintersProperties {
+ public static string PenAndTouch {
get {
- return ResourceManager.GetString("MouseFontsKeyboardAndPrintersProperties", resourceCulture);
+ return ResourceManager.GetString("PenAndTouch", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Mouse pointer.
+ /// Looks up a localized string similar to Pen and Windows Ink.
///
- internal static string MousePointer {
+ public static string PenAndWindowsInk {
get {
- return ResourceManager.GetString("MousePointer", resourceCulture);
+ return ResourceManager.GetString("PenAndWindowsInk", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Multimedia properties.
+ /// Looks up a localized string similar to People Near Me.
///
- internal static string MultimediaProperties {
+ public static string PeopleNearMe {
get {
- return ResourceManager.GetString("MultimediaProperties", resourceCulture);
+ return ResourceManager.GetString("PeopleNearMe", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Multitasking.
+ /// Looks up a localized string similar to Performance information and tools.
///
- internal static string Multitasking {
+ public static string PerformanceInformationAndTools {
get {
- return ResourceManager.GetString("Multitasking", resourceCulture);
+ return ResourceManager.GetString("PerformanceInformationAndTools", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Narrator.
+ /// Looks up a localized string similar to Perform recommended maintenance tasks automatically.
///
- internal static string Narrator {
+ public static string PerformRecommendedMaintenanceTasksAutomatically {
get {
- return ResourceManager.GetString("Narrator", resourceCulture);
+ return ResourceManager.GetString("PerformRecommendedMaintenanceTasksAutomatically", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Navigation bar.
+ /// Looks up a localized string similar to Permissions and history.
///
- internal static string NavigationBar {
+ public static string PermissionsAndHistory {
get {
- return ResourceManager.GetString("NavigationBar", resourceCulture);
+ return ResourceManager.GetString("PermissionsAndHistory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to netcpl.cpl.
+ /// Looks up a localized string similar to Personalization (category).
///
- internal static string netcpl_cpl {
+ public static string PersonalizationCategory {
get {
- return ResourceManager.GetString("netcpl.cpl", resourceCulture);
+ return ResourceManager.GetString("PersonalizationCategory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to netsetup.cpl.
+ /// Looks up a localized string similar to Phone.
///
- internal static string netsetup_cpl {
+ public static string Phone {
get {
- return ResourceManager.GetString("netsetup.cpl", resourceCulture);
+ return ResourceManager.GetString("Phone", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Network.
+ /// Looks up a localized string similar to Phone and modem.
///
- internal static string Network {
+ public static string PhoneAndModem {
get {
- return ResourceManager.GetString("Network", resourceCulture);
+ return ResourceManager.GetString("PhoneAndModem", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Network and sharing center.
+ /// Looks up a localized string similar to Phone and modem - Options.
///
- internal static string NetworkAndSharingCenter {
+ public static string PhoneAndModemOptions {
get {
- return ResourceManager.GetString("NetworkAndSharingCenter", resourceCulture);
+ return ResourceManager.GetString("PhoneAndModemOptions", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Network connection.
+ /// Looks up a localized string similar to Phone calls.
///
- internal static string NetworkConnection {
+ public static string PhoneCalls {
get {
- return ResourceManager.GetString("NetworkConnection", resourceCulture);
+ return ResourceManager.GetString("PhoneCalls", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Network properties.
+ /// Looks up a localized string similar to Phone - Default apps.
///
- internal static string NetworkProperties {
+ public static string PhoneDefaultApps {
get {
- return ResourceManager.GetString("NetworkProperties", resourceCulture);
+ return ResourceManager.GetString("PhoneDefaultApps", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Picture.
+ ///
+ public static string Picture {
+ get {
+ return ResourceManager.GetString("Picture", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pictures.
+ ///
+ public static string Pictures {
+ get {
+ return ResourceManager.GetString("Pictures", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pinyin IME settings.
+ ///
+ public static string PinyinImeSettings {
+ get {
+ return ResourceManager.GetString("PinyinImeSettings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pinyin IME settings - domain lexicon.
+ ///
+ public static string PinyinImeSettingsDomainLexicon {
+ get {
+ return ResourceManager.GetString("PinyinImeSettingsDomainLexicon", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pinyin IME settings - Key configuration.
+ ///
+ public static string PinyinImeSettingsKeyConfiguration {
+ get {
+ return ResourceManager.GetString("PinyinImeSettingsKeyConfiguration", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Pinyin IME settings - UDP.
+ ///
+ 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.
+ ///
+ public static string PlayingGameFullScreen {
+ get {
+ return ResourceManager.GetString("PlayingGameFullScreen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Plugin to search for Windows settings.
+ ///
+ public static string PluginDescription {
+ get {
+ return ResourceManager.GetString("PluginDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Windows Settings.
+ ///
+ public static string PluginTitle {
+ get {
+ return ResourceManager.GetString("PluginTitle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Power and sleep.
+ ///
+ public static string PowerAndSleep {
+ get {
+ return ResourceManager.GetString("PowerAndSleep", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to powercfg.cpl.
+ ///
+ public static string powercfg_cpl {
+ get {
+ return ResourceManager.GetString("powercfg.cpl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Power options.
+ ///
+ public static string PowerOptions {
+ get {
+ return ResourceManager.GetString("PowerOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 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.
+ ///
+ public static string Printers {
+ get {
+ return ResourceManager.GetString("Printers", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Printers and scanners.
+ ///
+ public static string PrintersAndScanners {
+ get {
+ return ResourceManager.GetString("PrintersAndScanners", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Print screen.
+ ///
+ 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.
+ ///
+ public static string ProblemReportsAndSolutions {
+ get {
+ return ResourceManager.GetString("ProblemReportsAndSolutions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Processor.
+ ///
+ public static string Processor {
+ get {
+ return ResourceManager.GetString("Processor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Programs and features.
+ ///
+ public static string ProgramsAndFeatures {
+ get {
+ return ResourceManager.GetString("ProgramsAndFeatures", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Projecting to this PC.
+ ///
+ public static string ProjectingToThisPc {
+ get {
+ return ResourceManager.GetString("ProjectingToThisPc", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Network Setup Wizard.
+ /// Looks up a localized string similar to protanopia.
///
- internal static string NetworkSetupWizard {
+ public static string protanopia {
get {
- return ResourceManager.GetString("NetworkSetupWizard", resourceCulture);
+ return ResourceManager.GetString("protanopia", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Network status.
+ /// Looks up a localized string similar to Provisioning.
///
- internal static string NetworkStatus {
+ public static string Provisioning {
get {
- return ResourceManager.GetString("NetworkStatus", resourceCulture);
+ return ResourceManager.GetString("Provisioning", resourceCulture);
}
}
///
- /// Looks up a localized string similar to NFC.
+ /// Looks up a localized string similar to Proximity.
///
- internal static string NFC {
+ public static string Proximity {
get {
- return ResourceManager.GetString("NFC", resourceCulture);
+ return ResourceManager.GetString("Proximity", resourceCulture);
}
}
///
- /// Looks up a localized string similar to NFC Transactions.
+ /// Looks up a localized string similar to Proxy.
///
- internal static string NFCTransactions {
+ public static string Proxy {
get {
- return ResourceManager.GetString("NFCTransactions", resourceCulture);
+ return ResourceManager.GetString("Proxy", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Night light.
+ /// Looks up a localized string similar to Quickime.
///
- internal static string NightLight {
+ public static string Quickime {
get {
- return ResourceManager.GetString("NightLight", resourceCulture);
+ return ResourceManager.GetString("Quickime", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Night light settings.
+ /// Looks up a localized string similar to Quiet moments game.
///
- internal static string NightLightSettings {
+ public static string QuietMomentsGame {
get {
- return ResourceManager.GetString("NightLightSettings", resourceCulture);
+ return ResourceManager.GetString("QuietMomentsGame", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Note.
+ /// Looks up a localized string similar to Radios.
///
- internal static string Note {
+ public static string Radios {
get {
- return ResourceManager.GetString("Note", resourceCulture);
+ return ResourceManager.GetString("Radios", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available when you have connected a mobile device to your device..
+ /// Looks up a localized string similar to RAM.
///
- internal static string NoteAddYourPhone {
+ public static string Ram {
get {
- return ResourceManager.GetString("NoteAddYourPhone", resourceCulture);
+ return ResourceManager.GetString("Ram", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available on devices that support advanced graphics options..
+ /// Looks up a localized string similar to Recognition.
///
- internal static string NoteAdvancedGraphics {
+ public static string Recognition {
get {
- return ResourceManager.GetString("NoteAdvancedGraphics", resourceCulture);
+ return ResourceManager.GetString("Recognition", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available on devices that have a battery, such as a tablet..
+ /// Looks up a localized string similar to Record steps to reproduce a problem.
///
- internal static string NoteBattery {
+ public static string RecordStepsToReproduceAProblem {
get {
- return ResourceManager.GetString("NoteBattery", resourceCulture);
+ return ResourceManager.GetString("RecordStepsToReproduceAProblem", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Deprecated in Windows 10, version 1809 (build 17763) and later..
+ /// Looks up a localized string similar to Recovery.
///
- internal static string NoteDeprecated17763 {
+ public static string Recovery {
get {
- return ResourceManager.GetString("NoteDeprecated17763", resourceCulture);
+ return ResourceManager.GetString("Recovery", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if Dial is paired..
+ /// Looks up a localized string similar to Red eye.
///
- internal static string NoteDialPaired {
+ public static string RedEye {
get {
- return ResourceManager.GetString("NoteDialPaired", resourceCulture);
+ return ResourceManager.GetString("RedEye", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if DirectAccess is enabled..
+ /// Looks up a localized string similar to Red-green.
///
- internal static string NoteDirectAccess {
+ public static string RedGreen {
get {
- return ResourceManager.GetString("NoteDirectAccess", resourceCulture);
+ return ResourceManager.GetString("RedGreen", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available on devices that support advanced display options..
+ /// Looks up a localized string similar to Red week.
///
- internal static string NoteDisplayGraphics {
+ public static string RedWeek {
get {
- return ResourceManager.GetString("NoteDisplayGraphics", resourceCulture);
+ return ResourceManager.GetString("RedWeek", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only present if user is enrolled in WIP..
+ /// Looks up a localized string similar to Region.
///
- internal static string NoteEnrolledWIP {
+ public static string Region {
get {
- return ResourceManager.GetString("NoteEnrolledWIP", resourceCulture);
+ return ResourceManager.GetString("Region", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Requires eyetracker hardware..
+ /// Looks up a localized string similar to Regional language.
///
- internal static string NoteEyetrackerHardware {
+ public static string RegionalLanguage {
get {
- return ResourceManager.GetString("NoteEyetrackerHardware", resourceCulture);
+ return ResourceManager.GetString("RegionalLanguage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Available if the Microsoft Japan input method editor is installed..
+ /// Looks up a localized string similar to Regional settings properties.
///
- internal static string NoteImeJapan {
+ public static string RegionalSettingsProperties {
get {
- return ResourceManager.GetString("NoteImeJapan", resourceCulture);
+ return ResourceManager.GetString("RegionalSettingsProperties", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Available if the Microsoft Pinyin input method editor is installed..
+ /// Looks up a localized string similar to Region and language.
///
- internal static string NoteImePinyin {
+ public static string RegionAndLanguage {
get {
- return ResourceManager.GetString("NoteImePinyin", resourceCulture);
+ return ResourceManager.GetString("RegionAndLanguage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Available if the Microsoft Wubi input method editor is installed..
+ /// Looks up a localized string similar to Region formatting.
///
- internal static string NoteImeWubi {
+ public static string RegionFormatting {
get {
- return ResourceManager.GetString("NoteImeWubi", resourceCulture);
+ return ResourceManager.GetString("RegionFormatting", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if the Mixed Reality Portal app is installed..
+ /// Looks up a localized string similar to RemoteApp and desktop connections.
///
- internal static string NoteMixedReality {
+ public static string RemoteAppAndDesktopConnections {
get {
- return ResourceManager.GetString("NoteMixedReality", resourceCulture);
+ return ResourceManager.GetString("RemoteAppAndDesktopConnections", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available on mobile and if the enterprise has deployed a provisioning package..
+ /// Looks up a localized string similar to Remote Desktop.
///
- internal static string NoteMobileProvisioning {
+ public static string RemoteDesktop {
get {
- return ResourceManager.GetString("NoteMobileProvisioning", resourceCulture);
+ return ResourceManager.GetString("RemoteDesktop", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Added in Windows 10, version 1903 (build 18362)..
+ /// Looks up a localized string similar to Rename this computer.
///
- internal static string NoteSince18362 {
+ public static string RenameThisComputer {
get {
- return ResourceManager.GetString("NoteSince18362", resourceCulture);
+ return ResourceManager.GetString("RenameThisComputer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Added in Windows 10, version 2004 (build 19041)..
+ /// Looks up a localized string similar to Replace sounds with visual cues.
///
- internal static string NoteSince19041 {
+ public static string ReplaceSoundsWithVisualCues {
get {
- return ResourceManager.GetString("NoteSince19041", resourceCulture);
+ return ResourceManager.GetString("ReplaceSoundsWithVisualCues", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if "settings apps" are installed, for example, by a 3rd party..
+ /// Looks up a localized string similar to Reset Security Policies.
///
- internal static string NoteThirdParty {
+ public static string ResetSecurityPolicies {
get {
- return ResourceManager.GetString("NoteThirdParty", resourceCulture);
+ return ResourceManager.GetString("ResetSecurityPolicies", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if touchpad hardware is present..
+ /// Looks up a localized string similar to Restore data, files or computer from backup (Windows 7).
///
- internal static string NoteTouchpad {
+ public static string RestoreDataFilesOrComputerFromBackupWindows7 {
get {
- return ResourceManager.GetString("NoteTouchpad", resourceCulture);
+ return ResourceManager.GetString("RestoreDataFilesOrComputerFromBackupWindows7", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if the device has a Wi-Fi adapter..
+ /// Looks up a localized string similar to Restore your files with File History.
///
- internal static string NoteWiFiAdapter {
+ public static string RestoreYourFilesWithFileHistory {
get {
- return ResourceManager.GetString("NoteWiFiAdapter", resourceCulture);
+ return ResourceManager.GetString("RestoreYourFilesWithFileHistory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Device must be Windows Anywhere-capable..
+ /// Looks up a localized string similar to Review your computer's status and resolve issues.
///
- internal static string NoteWindowsAnywhere {
+ public static string ReviewYourComputersStatusAndResolveIssues {
get {
- return ResourceManager.GetString("NoteWindowsAnywhere", resourceCulture);
+ return ResourceManager.GetString("ReviewYourComputersStatusAndResolveIssues", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Only available if enterprise has deployed a provisioning package..
+ /// Looks up a localized string similar to Run programs made for previous versions of Windows.
///
- internal static string NoteWorkplaceProvisioning {
+ public static string RunProgramsMadeForPreviousVersionsOfWindows {
get {
- return ResourceManager.GetString("NoteWorkplaceProvisioning", resourceCulture);
+ return ResourceManager.GetString("RunProgramsMadeForPreviousVersionsOfWindows", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Notifications.
+ /// Looks up a localized string similar to Save backup copies of your files with File History.
///
- internal static string Notifications {
+ public static string SaveBackupCopiesOfYourFilesWithFileHistory {
get {
- return ResourceManager.GetString("Notifications", resourceCulture);
+ return ResourceManager.GetString("SaveBackupCopiesOfYourFilesWithFileHistory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Notifications and actions.
+ /// Looks up a localized string similar to Scan a document or picture.
///
- internal static string NotificationsAndActions {
+ public static string ScanADocumentOrPicture {
get {
- return ResourceManager.GetString("NotificationsAndActions", resourceCulture);
+ return ResourceManager.GetString("ScanADocumentOrPicture", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Num Lock.
+ /// Looks up a localized string similar to Scanners and cameras.
///
- internal static string NumLock {
+ public static string ScannersAndCameras {
get {
- return ResourceManager.GetString("NumLock", resourceCulture);
+ return ResourceManager.GetString("ScannersAndCameras", resourceCulture);
}
}
///
- /// Looks up a localized string similar to nwc.cpl.
+ /// Looks up a localized string similar to schedtasks.
///
- internal static string nwc_cpl {
+ public static string schedtasks {
get {
- return ResourceManager.GetString("nwc.cpl", resourceCulture);
+ return ResourceManager.GetString("schedtasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to odbccp32.cpl.
+ /// Looks up a localized string similar to Scheduled.
///
- internal static string odbccp32_cpl {
+ public static string Scheduled {
get {
- return ResourceManager.GetString("odbccp32.cpl", resourceCulture);
+ return ResourceManager.GetString("Scheduled", resourceCulture);
}
}
///
- /// Looks up a localized string similar to ODBC Data Source Administrator (32-bit).
+ /// Looks up a localized string similar to Scheduled tasks.
///
- internal static string OdbcDataSourceAdministrator32Bit {
+ public static string ScheduledTasks {
get {
- return ResourceManager.GetString("OdbcDataSourceAdministrator32Bit", resourceCulture);
+ return ResourceManager.GetString("ScheduledTasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to ODBC Data Source Administrator (64-bit).
+ /// Looks up a localized string similar to Schedule tasks.
///
- internal static string OdbcDataSourceAdministrator64Bit {
+ public static string ScheduleTasks {
get {
- return ResourceManager.GetString("OdbcDataSourceAdministrator64Bit", resourceCulture);
+ return ResourceManager.GetString("ScheduleTasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Offline files.
+ /// Looks up a localized string similar to Screen rotation.
///
- internal static string OfflineFiles {
+ public static string ScreenRotation {
get {
- return ResourceManager.GetString("OfflineFiles", resourceCulture);
+ return ResourceManager.GetString("ScreenRotation", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Offline Maps.
+ /// Looks up a localized string similar to Scroll bars.
///
- internal static string OfflineMaps {
+ public static string ScrollBars {
get {
- return ResourceManager.GetString("OfflineMaps", resourceCulture);
+ return ResourceManager.GetString("ScrollBars", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Offline Maps - Download maps.
+ /// Looks up a localized string similar to Scroll Lock.
///
- internal static string OfflineMapsDownloadMaps {
+ public static string ScrollLock {
get {
- return ResourceManager.GetString("OfflineMapsDownloadMaps", resourceCulture);
+ return ResourceManager.GetString("ScrollLock", resourceCulture);
}
}
///
- /// Looks up a localized string similar to On-Screen.
+ /// Looks up a localized string similar to SDNS.
///
- internal static string OnScreen {
+ public static string Sdns {
get {
- return ResourceManager.GetString("OnScreen", resourceCulture);
+ return ResourceManager.GetString("Sdns", resourceCulture);
}
}
///
- /// Looks up a localized string similar to OS.
+ /// Looks up a localized string similar to Searching Windows.
///
- internal static string Os {
+ public static string SearchingWindows {
get {
- return ResourceManager.GetString("Os", resourceCulture);
+ return ResourceManager.GetString("SearchingWindows", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Other devices.
+ /// Looks up a localized string similar to SecureDNS.
///
- internal static string OtherDevices {
+ public static string SecureDNS {
get {
- return ResourceManager.GetString("OtherDevices", resourceCulture);
+ return ResourceManager.GetString("SecureDNS", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Other options.
+ /// Looks up a localized string similar to Security Center.
///
- internal static string OtherOptions {
+ public static string SecurityCenter {
get {
- return ResourceManager.GetString("OtherOptions", resourceCulture);
+ return ResourceManager.GetString("SecurityCenter", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Other users.
+ /// Looks up a localized string similar to Security Processor.
///
- internal static string OtherUsers {
+ public static string SecurityProcessor {
get {
- return ResourceManager.GetString("OtherUsers", resourceCulture);
+ return ResourceManager.GetString("SecurityProcessor", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Parental controls.
+ /// Looks up a localized string similar to See the name of this computer.
///
- internal static string ParentalControls {
+ public static string SeeTheNameOfThisComputer {
get {
- return ResourceManager.GetString("ParentalControls", resourceCulture);
+ return ResourceManager.GetString("SeeTheNameOfThisComputer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Password.
+ /// Looks up a localized string similar to See which processes start up automatically when you start Windows.
///
- internal static string Password {
+ public static string SeeWhichProcessesStartUpAutomaticallyWhenYouStartWindows {
get {
- return ResourceManager.GetString("Password", resourceCulture);
+ return ResourceManager.GetString("SeeWhichProcessesStartUpAutomaticallyWhenYouStartWindows", resourceCulture);
}
}
///
- /// Looks up a localized string similar to password.cpl.
+ /// Looks up a localized string similar to Select users who can use remote desktop.
///
- internal static string password_cpl {
+ public static string SelectUsersWhoCanUseRemoteDesktop {
get {
- return ResourceManager.GetString("password.cpl", resourceCulture);
+ return ResourceManager.GetString("SelectUsersWhoCanUseRemoteDesktop", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Password properties.
+ /// Looks up a localized string similar to Send or receive a file.
///
- internal static string PasswordProperties {
+ public static string SendOrReceiveAFile {
get {
- return ResourceManager.GetString("PasswordProperties", resourceCulture);
+ return ResourceManager.GetString("SendOrReceiveAFile", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pen and input devices.
+ /// Looks up a localized string similar to Session cleanup.
///
- internal static string PenAndInputDevices {
+ public static string SessionCleanup {
get {
- return ResourceManager.GetString("PenAndInputDevices", resourceCulture);
+ return ResourceManager.GetString("SessionCleanup", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pen and touch.
+ /// Looks up a localized string similar to Set flicks to perform certain tasks.
///
- internal static string PenAndTouch {
+ public static string SetFlicksToPerformCertainTasks {
get {
- return ResourceManager.GetString("PenAndTouch", resourceCulture);
+ return ResourceManager.GetString("SetFlicksToPerformCertainTasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pen and Windows Ink.
+ /// Looks up a localized string similar to Set tablet buttons to perform certain tasks.
///
- internal static string PenAndWindowsInk {
+ public static string SetTabletButtonsToPerformCertainTasks {
get {
- return ResourceManager.GetString("PenAndWindowsInk", resourceCulture);
+ return ResourceManager.GetString("SetTabletButtonsToPerformCertainTasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to People Near Me.
+ /// Looks up a localized string similar to Set the time and date.
///
- internal static string PeopleNearMe {
+ public static string SetTheTimeAndDate {
get {
- return ResourceManager.GetString("PeopleNearMe", resourceCulture);
+ return ResourceManager.GetString("SetTheTimeAndDate", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Performance information and tools.
+ /// Looks up a localized string similar to Settings for Microsoft IME (Japanese).
///
- internal static string PerformanceInformationAndTools {
+ public static string SettingsForMicrosoftIMEJapanese {
get {
- return ResourceManager.GetString("PerformanceInformationAndTools", resourceCulture);
+ return ResourceManager.GetString("SettingsForMicrosoftIMEJapanese", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Permissions and history.
+ /// Looks up a localized string similar to Settings home page.
///
- internal static string PermissionsAndHistory {
+ public static string SettingsHomePage {
get {
- return ResourceManager.GetString("PermissionsAndHistory", resourceCulture);
+ return ResourceManager.GetString("SettingsHomePage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Personalization (category).
+ /// Looks up a localized string similar to Set up a broadband connection.
///
- internal static string PersonalizationCategory {
+ public static string SetUpABroadbandConnection {
get {
- return ResourceManager.GetString("PersonalizationCategory", resourceCulture);
+ return ResourceManager.GetString("SetUpABroadbandConnection", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Phone.
+ /// Looks up a localized string similar to Set up a connection or network.
///
- internal static string Phone {
+ public static string SetUpAConnectionOrNetwork {
get {
- return ResourceManager.GetString("Phone", resourceCulture);
+ return ResourceManager.GetString("SetUpAConnectionOrNetwork", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Phone and modem.
+ /// Looks up a localized string similar to Set up a dial-up connection.
///
- internal static string PhoneAndModem {
+ public static string SetUpADialUpConnection {
get {
- return ResourceManager.GetString("PhoneAndModem", resourceCulture);
+ return ResourceManager.GetString("SetUpADialUpConnection", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Phone and modem - Options.
+ /// Looks up a localized string similar to Set up a microphone.
///
- internal static string PhoneAndModemOptions {
+ public static string SetUpAMicrophone {
get {
- return ResourceManager.GetString("PhoneAndModemOptions", resourceCulture);
+ return ResourceManager.GetString("SetUpAMicrophone", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Phone calls.
+ /// Looks up a localized string similar to Set up a virtual private network (VPN) connection.
///
- internal static string PhoneCalls {
+ public static string SetUpAVirtualPrivateNetworkVPNConnection {
get {
- return ResourceManager.GetString("PhoneCalls", resourceCulture);
+ return ResourceManager.GetString("SetUpAVirtualPrivateNetworkVPNConnection", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Phone - Default apps.
+ /// Looks up a localized string similar to Set up dialling rules.
///
- internal static string PhoneDefaultApps {
+ public static string SetUpDiallingRules {
get {
- return ResourceManager.GetString("PhoneDefaultApps", resourceCulture);
+ return ResourceManager.GetString("SetUpDiallingRules", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Picture.
+ /// Looks up a localized string similar to Set up iSCSI initiator.
///
- internal static string Picture {
+ public static string SetUpIscsiInitiator {
get {
- return ResourceManager.GetString("Picture", resourceCulture);
+ return ResourceManager.GetString("SetUpIscsiInitiator", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pictures.
+ /// Looks up a localized string similar to Set up a kiosk.
///
- internal static string Pictures {
+ public static string SetUpKiosk {
get {
- return ResourceManager.GetString("Pictures", resourceCulture);
+ return ResourceManager.GetString("SetUpKiosk", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pinyin IME settings.
+ /// Looks up a localized string similar to Set up ODBC data sources.
///
- internal static string PinyinImeSettings {
+ public static string SetUpODBCDataSources {
get {
- return ResourceManager.GetString("PinyinImeSettings", resourceCulture);
+ return ResourceManager.GetString("SetUpODBCDataSources", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pinyin IME settings - domain lexicon.
+ /// Looks up a localized string similar to Set up ODBC data sources (32-bit).
///
- internal static string PinyinImeSettingsDomainLexicon {
+ public static string SetUpODBCDataSources32Bit {
get {
- return ResourceManager.GetString("PinyinImeSettingsDomainLexicon", resourceCulture);
+ return ResourceManager.GetString("SetUpODBCDataSources32Bit", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pinyin IME settings - Key configuration.
+ /// Looks up a localized string similar to Set up ODBC data sources (64-bit).
///
- internal static string PinyinImeSettingsKeyConfiguration {
+ public static string SetUpODBCDataSources64Bit {
get {
- return ResourceManager.GetString("PinyinImeSettingsKeyConfiguration", resourceCulture);
+ return ResourceManager.GetString("SetUpODBCDataSources64Bit", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pinyin IME settings - UDP.
+ /// Looks up a localized string similar to Set up USB game controllers.
///
- internal static string PinyinImeSettingsUdp {
+ public static string SetUpUSBGameControllers {
get {
- return ResourceManager.GetString("PinyinImeSettingsUdp", resourceCulture);
+ return ResourceManager.GetString("SetUpUSBGameControllers", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Playing a game full screen.
+ /// Looks up a localized string similar to Set your default programs.
///
- internal static string PlayingGameFullScreen {
+ public static string SetYourDefaultPrograms {
get {
- return ResourceManager.GetString("PlayingGameFullScreen", resourceCulture);
+ return ResourceManager.GetString("SetYourDefaultPrograms", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Plugin to search for Windows settings.
+ /// Looks up a localized string similar to Shared experiences.
///
- internal static string PluginDescription {
+ public static string SharedExperiences {
get {
- return ResourceManager.GetString("PluginDescription", resourceCulture);
+ return ResourceManager.GetString("SharedExperiences", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Windows settings.
+ /// Looks up a localized string similar to Shortcuts.
///
- internal static string PluginTitle {
+ public static string Shortcuts {
get {
- return ResourceManager.GetString("PluginTitle", resourceCulture);
+ return ResourceManager.GetString("Shortcuts", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Power and sleep.
+ /// Looks up a localized string similar to wifi.
///
- internal static string PowerAndSleep {
+ public static string ShortNameWiFi {
get {
- return ResourceManager.GetString("PowerAndSleep", resourceCulture);
+ return ResourceManager.GetString("ShortNameWiFi", resourceCulture);
}
}
///
- /// Looks up a localized string similar to powercfg.cpl.
+ /// Looks up a localized string similar to Show hidden files and folders.
///
- internal static string powercfg_cpl {
+ public static string ShowHiddenFilesAndFolders {
get {
- return ResourceManager.GetString("powercfg.cpl", resourceCulture);
+ return ResourceManager.GetString("ShowHiddenFilesAndFolders", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Power options.
+ /// Looks up a localized string similar to Show how much RAM is on this computer.
///
- internal static string PowerOptions {
+ public static string ShowHowMuchRAMIsOnThisComputer {
get {
- return ResourceManager.GetString("PowerOptions", resourceCulture);
+ return ResourceManager.GetString("ShowHowMuchRAMIsOnThisComputer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Presentation.
+ /// Looks up a localized string similar to Show or hide file extensions.
///
- internal static string Presentation {
+ public static string ShowOrHideFileExtensions {
get {
- return ResourceManager.GetString("Presentation", resourceCulture);
+ return ResourceManager.GetString("ShowOrHideFileExtensions", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Printers.
+ /// Looks up a localized string similar to Show which domain your computer is on.
///
- internal static string Printers {
+ public static string ShowWhichDomainYourComputerIsOn {
get {
- return ResourceManager.GetString("Printers", resourceCulture);
+ return ResourceManager.GetString("ShowWhichDomainYourComputerIsOn", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Printers and scanners.
+ /// Looks up a localized string similar to Show which operating system your computer is running.
///
- internal static string PrintersAndScanners {
+ public static string ShowWhichOperatingSystemYourComputerIsRunning {
get {
- return ResourceManager.GetString("PrintersAndScanners", resourceCulture);
+ return ResourceManager.GetString("ShowWhichOperatingSystemYourComputerIsRunning", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Print screen.
+ /// Looks up a localized string similar to Show which programs are installed on your computer.
///
- internal static string PrintScreen {
+ public static string ShowWhichProgramsAreInstalledOnYourComputer {
get {
- return ResourceManager.GetString("PrintScreen", resourceCulture);
+ return ResourceManager.GetString("ShowWhichProgramsAreInstalledOnYourComputer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Problem reports and solutions.
+ /// Looks up a localized string similar to Show which workgroup this computer is on.
///
- internal static string ProblemReportsAndSolutions {
+ public static string ShowWhichWorkgroupThisComputerIsOn {
get {
- return ResourceManager.GetString("ProblemReportsAndSolutions", resourceCulture);
+ return ResourceManager.GetString("ShowWhichWorkgroupThisComputerIsOn", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Processor.
+ /// Looks up a localized string similar to Sign-in options.
///
- internal static string Processor {
+ public static string SignInOptions {
get {
- return ResourceManager.GetString("Processor", resourceCulture);
+ return ResourceManager.GetString("SignInOptions", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Programs and features.
+ /// Looks up a localized string similar to Sign-in options - Dynamic lock.
///
- internal static string ProgramsAndFeatures {
+ public static string SignInOptionsDynamicLock {
get {
- return ResourceManager.GetString("ProgramsAndFeatures", resourceCulture);
+ return ResourceManager.GetString("SignInOptionsDynamicLock", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Projecting to this PC.
+ /// Looks up a localized string similar to Size.
///
- internal static string ProjectingToThisPc {
+ public static string Size {
get {
- return ResourceManager.GetString("ProjectingToThisPc", resourceCulture);
+ return ResourceManager.GetString("Size", resourceCulture);
}
}
///
- /// Looks up a localized string similar to protanopia.
+ /// Looks up a localized string similar to Sound.
///
- internal static string protanopia {
+ public static string Sound {
get {
- return ResourceManager.GetString("protanopia", resourceCulture);
+ return ResourceManager.GetString("Sound", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Provisioning.
+ /// Looks up a localized string similar to Specify single- or double-click to open.
///
- internal static string Provisioning {
+ public static string SpecifySingleOrDoubleClickToOpen {
get {
- return ResourceManager.GetString("Provisioning", resourceCulture);
+ return ResourceManager.GetString("SpecifySingleOrDoubleClickToOpen", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Proximity.
+ /// Looks up a localized string similar to Specify which hand you write with.
///
- internal static string Proximity {
+ public static string SpecifyWhichHandYouWriteWith {
get {
- return ResourceManager.GetString("Proximity", resourceCulture);
+ return ResourceManager.GetString("SpecifyWhichHandYouWriteWith", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Proxy.
+ /// Looks up a localized string similar to Speech.
///
- internal static string Proxy {
+ public static string Speech {
get {
- return ResourceManager.GetString("Proxy", resourceCulture);
+ return ResourceManager.GetString("Speech", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Quickime.
+ /// Looks up a localized string similar to Speech recognition.
///
- internal static string Quickime {
+ public static string SpeechRecognition {
get {
- return ResourceManager.GetString("Quickime", resourceCulture);
+ return ResourceManager.GetString("SpeechRecognition", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Quiet moments game.
+ /// Looks up a localized string similar to Speech typing.
///
- internal static string QuietMomentsGame {
+ public static string SpeechTyping {
get {
- return ResourceManager.GetString("QuietMomentsGame", resourceCulture);
+ return ResourceManager.GetString("SpeechTyping", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Radios.
+ /// Looks up a localized string similar to Start.
///
- internal static string Radios {
+ public static string Start {
get {
- return ResourceManager.GetString("Radios", resourceCulture);
+ return ResourceManager.GetString("Start", resourceCulture);
}
}
///
- /// Looks up a localized string similar to RAM.
+ /// Looks up a localized string similar to Start or stop using AutoPlay for all media and devices.
///
- internal static string Ram {
+ public static string StartOrStopUsingAutoplayForAllMediaAndDevices {
get {
- return ResourceManager.GetString("Ram", resourceCulture);
+ return ResourceManager.GetString("StartOrStopUsingAutoplayForAllMediaAndDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Recognition.
+ /// Looks up a localized string similar to Start places.
///
- internal static string Recognition {
+ public static string StartPlaces {
get {
- return ResourceManager.GetString("Recognition", resourceCulture);
+ return ResourceManager.GetString("StartPlaces", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Recovery.
+ /// Looks up a localized string similar to Start speech recognition.
///
- internal static string Recovery {
+ public static string StartSpeechRecognition {
get {
- return ResourceManager.GetString("Recovery", resourceCulture);
+ return ResourceManager.GetString("StartSpeechRecognition", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Red eye.
+ /// Looks up a localized string similar to Startup apps.
///
- internal static string RedEye {
+ public static string StartupApps {
get {
- return ResourceManager.GetString("RedEye", resourceCulture);
+ return ResourceManager.GetString("StartupApps", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Red-green.
+ /// Looks up a localized string similar to sticpl.cpl.
///
- internal static string RedGreen {
+ public static string sticpl_cpl {
get {
- return ResourceManager.GetString("RedGreen", resourceCulture);
+ return ResourceManager.GetString("sticpl.cpl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Red week.
+ /// Looks up a localized string similar to Storage.
///
- internal static string RedWeek {
+ public static string Storage {
get {
- return ResourceManager.GetString("RedWeek", resourceCulture);
+ return ResourceManager.GetString("Storage", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Region.
+ /// Looks up a localized string similar to Storage policies.
///
- internal static string Region {
+ public static string StoragePolicies {
get {
- return ResourceManager.GetString("Region", resourceCulture);
+ return ResourceManager.GetString("StoragePolicies", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Regional language.
+ /// Looks up a localized string similar to Storage Sense.
///
- internal static string RegionalLanguage {
+ public static string StorageSense {
get {
- return ResourceManager.GetString("RegionalLanguage", resourceCulture);
+ return ResourceManager.GetString("StorageSense", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Regional settings properties.
+ /// Looks up a localized string similar to in.
///
- internal static string RegionalSettingsProperties {
+ public static string SubtitlePreposition {
get {
- return ResourceManager.GetString("RegionalSettingsProperties", resourceCulture);
+ return ResourceManager.GetString("SubtitlePreposition", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Region and language.
+ /// Looks up a localized string similar to Sync center.
///
- internal static string RegionAndLanguage {
+ public static string SyncCenter {
get {
- return ResourceManager.GetString("RegionAndLanguage", resourceCulture);
+ return ResourceManager.GetString("SyncCenter", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Region formatting.
+ /// Looks up a localized string similar to Sync your settings.
///
- internal static string RegionFormatting {
+ public static string SyncYourSettings {
get {
- return ResourceManager.GetString("RegionFormatting", resourceCulture);
+ return ResourceManager.GetString("SyncYourSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to RemoteApp and desktop connections.
+ /// Looks up a localized string similar to sysdm.cpl.
///
- internal static string RemoteAppAndDesktopConnections {
+ public static string sysdm_cpl {
get {
- return ResourceManager.GetString("RemoteAppAndDesktopConnections", resourceCulture);
+ return ResourceManager.GetString("sysdm.cpl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Remote Desktop.
+ /// Looks up a localized string similar to System.
///
- internal static string RemoteDesktop {
+ public static string System {
get {
- return ResourceManager.GetString("RemoteDesktop", resourceCulture);
+ return ResourceManager.GetString("System", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Scanners and cameras.
+ /// Looks up a localized string similar to System properties and Add New Hardware wizard.
///
- internal static string ScannersAndCameras {
+ public static string SystemPropertiesAndAddNewHardwareWizard {
get {
- return ResourceManager.GetString("ScannersAndCameras", resourceCulture);
+ return ResourceManager.GetString("SystemPropertiesAndAddNewHardwareWizard", resourceCulture);
}
}
///
- /// Looks up a localized string similar to schedtasks.
+ /// Looks up a localized string similar to Tab.
///
- internal static string schedtasks {
+ public static string Tab {
get {
- return ResourceManager.GetString("schedtasks", resourceCulture);
+ return ResourceManager.GetString("Tab", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Scheduled.
+ /// Looks up a localized string similar to Tablet mode.
///
- internal static string Scheduled {
+ public static string TabletMode {
get {
- return ResourceManager.GetString("Scheduled", resourceCulture);
+ return ResourceManager.GetString("TabletMode", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Scheduled tasks.
+ /// Looks up a localized string similar to Tablet PC settings.
///
- internal static string ScheduledTasks {
+ public static string TabletPcSettings {
get {
- return ResourceManager.GetString("ScheduledTasks", resourceCulture);
+ return ResourceManager.GetString("TabletPcSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Screen rotation.
+ /// Looks up a localized string similar to Take speech tutorials.
///
- internal static string ScreenRotation {
+ public static string TakeSpeechTutorials {
get {
- return ResourceManager.GetString("ScreenRotation", resourceCulture);
+ return ResourceManager.GetString("TakeSpeechTutorials", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Scroll bars.
+ /// Looks up a localized string similar to Talk.
///
- internal static string ScrollBars {
+ public static string Talk {
get {
- return ResourceManager.GetString("ScrollBars", resourceCulture);
+ return ResourceManager.GetString("Talk", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Scroll Lock.
+ /// Looks up a localized string similar to Talk to Cortana.
///
- internal static string ScrollLock {
+ public static string TalkToCortana {
get {
- return ResourceManager.GetString("ScrollLock", resourceCulture);
+ return ResourceManager.GetString("TalkToCortana", resourceCulture);
}
}
///
- /// Looks up a localized string similar to SDNS.
+ /// Looks up a localized string similar to Taskbar.
///
- internal static string Sdns {
+ public static string Taskbar {
get {
- return ResourceManager.GetString("Sdns", resourceCulture);
+ return ResourceManager.GetString("Taskbar", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Searching Windows.
+ /// Looks up a localized string similar to Taskbar color.
///
- internal static string SearchingWindows {
+ public static string TaskbarColor {
get {
- return ResourceManager.GetString("SearchingWindows", resourceCulture);
+ return ResourceManager.GetString("TaskbarColor", resourceCulture);
}
}
///
- /// Looks up a localized string similar to SecureDNS.
+ /// Looks up a localized string similar to TaskLink.
///
- internal static string SecureDNS {
+ public static string TaskLink {
get {
- return ResourceManager.GetString("SecureDNS", resourceCulture);
+ return ResourceManager.GetString("TaskLink", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Security Center.
+ /// Looks up a localized string similar to Task Manager.
///
- internal static string SecurityCenter {
+ public static string TaskManager {
get {
- return ResourceManager.GetString("SecurityCenter", resourceCulture);
+ return ResourceManager.GetString("TaskManager", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Security Processor.
+ /// Looks up a localized string similar to Tasks.
///
- internal static string SecurityProcessor {
+ public static string Tasks {
get {
- return ResourceManager.GetString("SecurityProcessor", resourceCulture);
+ return ResourceManager.GetString("Tasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Session cleanup.
+ /// Looks up a localized string similar to Team Conferencing.
///
- internal static string SessionCleanup {
+ public static string TeamConferencing {
get {
- return ResourceManager.GetString("SessionCleanup", resourceCulture);
+ return ResourceManager.GetString("TeamConferencing", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Settings home page.
+ /// Looks up a localized string similar to Team device management.
///
- internal static string SettingsHomePage {
+ public static string TeamDeviceManagement {
get {
- return ResourceManager.GetString("SettingsHomePage", resourceCulture);
+ return ResourceManager.GetString("TeamDeviceManagement", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Set up a kiosk.
+ /// Looks up a localized string similar to Tell if an RSS feed is available on a website.
///
- internal static string SetUpKiosk {
+ public static string TellIfAnRSSFeedIsAvailableOnAWebsite {
get {
- return ResourceManager.GetString("SetUpKiosk", resourceCulture);
+ return ResourceManager.GetString("TellIfAnRSSFeedIsAvailableOnAWebsite", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Shared experiences.
+ /// Looks up a localized string similar to Text to speech.
///
- internal static string SharedExperiences {
+ public static string TextToSpeech {
get {
- return ResourceManager.GetString("SharedExperiences", resourceCulture);
+ return ResourceManager.GetString("TextToSpeech", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Shortcuts.
+ /// Looks up a localized string similar to Themes.
///
- internal static string Shortcuts {
+ public static string Themes {
get {
- return ResourceManager.GetString("Shortcuts", resourceCulture);
+ return ResourceManager.GetString("Themes", resourceCulture);
}
}
///
- /// Looks up a localized string similar to wifi.
+ /// Looks up a localized string similar to themes.cpl.
///
- internal static string ShortNameWiFi {
+ public static string themes_cpl {
get {
- return ResourceManager.GetString("ShortNameWiFi", resourceCulture);
+ return ResourceManager.GetString("themes.cpl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Sign-in options.
+ /// Looks up a localized string similar to timedate.cpl.
///
- internal static string SignInOptions {
+ public static string timedate_cpl {
get {
- return ResourceManager.GetString("SignInOptions", resourceCulture);
+ return ResourceManager.GetString("timedate.cpl", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Sign-in options - Dynamic lock.
+ /// Looks up a localized string similar to Timeline.
///
- internal static string SignInOptionsDynamicLock {
+ public static string Timeline {
get {
- return ResourceManager.GetString("SignInOptionsDynamicLock", resourceCulture);
+ return ResourceManager.GetString("Timeline", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Size.
+ /// Looks up a localized string similar to Touch.
///
- internal static string Size {
+ public static string Touch {
get {
- return ResourceManager.GetString("Size", resourceCulture);
+ return ResourceManager.GetString("Touch", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Sound.
+ /// Looks up a localized string similar to Touch feedback.
///
- internal static string Sound {
+ public static string TouchFeedback {
get {
- return ResourceManager.GetString("Sound", resourceCulture);
+ return ResourceManager.GetString("TouchFeedback", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Speech.
+ /// Looks up a localized string similar to Touchpad.
///
- internal static string Speech {
+ public static string Touchpad {
get {
- return ResourceManager.GetString("Speech", resourceCulture);
+ return ResourceManager.GetString("Touchpad", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Speech recognition.
+ /// Looks up a localized string similar to Train the computer to recognise your voice.
///
- internal static string SpeechRecognition {
+ public static string TrainTheComputerToRecogniseYourVoice {
get {
- return ResourceManager.GetString("SpeechRecognition", resourceCulture);
+ return ResourceManager.GetString("TrainTheComputerToRecogniseYourVoice", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Speech typing.
+ /// Looks up a localized string similar to Transparency.
///
- internal static string SpeechTyping {
+ public static string Transparency {
get {
- return ResourceManager.GetString("SpeechTyping", resourceCulture);
+ return ResourceManager.GetString("Transparency", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Start.
+ /// Looks up a localized string similar to tritanopia.
///
- internal static string Start {
+ public static string tritanopia {
get {
- return ResourceManager.GetString("Start", resourceCulture);
+ return ResourceManager.GetString("tritanopia", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Start places.
+ /// Looks up a localized string similar to Troubleshoot.
///
- internal static string StartPlaces {
+ public static string Troubleshoot {
get {
- return ResourceManager.GetString("StartPlaces", resourceCulture);
+ return ResourceManager.GetString("Troubleshoot", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Startup apps.
+ /// Looks up a localized string similar to Troubleshooting History.
///
- internal static string StartupApps {
+ public static string TroubleshootingHistory {
get {
- return ResourceManager.GetString("StartupApps", resourceCulture);
+ return ResourceManager.GetString("TroubleshootingHistory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to sticpl.cpl.
+ /// Looks up a localized string similar to TruePlay.
///
- internal static string sticpl_cpl {
+ public static string TruePlay {
get {
- return ResourceManager.GetString("sticpl.cpl", resourceCulture);
+ return ResourceManager.GetString("TruePlay", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Storage.
+ /// Looks up a localized string similar to Turn autocomplete in Internet Explorer on or off.
///
- internal static string Storage {
+ public static string TurnAutocompleteInInternetExplorerOnOrOff {
get {
- return ResourceManager.GetString("Storage", resourceCulture);
+ return ResourceManager.GetString("TurnAutocompleteInInternetExplorerOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Storage policies.
+ /// Looks up a localized string similar to Turn flicks on or off.
///
- internal static string StoragePolicies {
+ public static string TurnFlicksOnOrOff {
get {
- return ResourceManager.GetString("StoragePolicies", resourceCulture);
+ return ResourceManager.GetString("TurnFlicksOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Storage Sense.
+ /// Looks up a localized string similar to Turn High Contrast on or off.
///
- internal static string StorageSense {
+ public static string TurnHighContrastOnOrOff {
get {
- return ResourceManager.GetString("StorageSense", resourceCulture);
+ return ResourceManager.GetString("TurnHighContrastOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to in.
+ /// Looks up a localized string similar to Turn Magnifier on or off.
///
- internal static string SubtitlePreposition {
+ public static string TurnMagnifierOnOrOff {
get {
- return ResourceManager.GetString("SubtitlePreposition", resourceCulture);
+ return ResourceManager.GetString("TurnMagnifierOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Sync center.
+ /// Looks up a localized string similar to Turn off automatic window arrangement.
///
- internal static string SyncCenter {
+ public static string TurnOffAutomaticWindowArrangement {
get {
- return ResourceManager.GetString("SyncCenter", resourceCulture);
+ return ResourceManager.GetString("TurnOffAutomaticWindowArrangement", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Sync your settings.
+ /// Looks up a localized string similar to Turn off background images.
///
- internal static string SyncYourSettings {
+ public static string TurnOffBackgroundImages {
get {
- return ResourceManager.GetString("SyncYourSettings", resourceCulture);
+ return ResourceManager.GetString("TurnOffBackgroundImages", resourceCulture);
}
}
///
- /// Looks up a localized string similar to sysdm.cpl.
+ /// Looks up a localized string similar to Turn off unnecessary animations.
///
- internal static string sysdm_cpl {
+ public static string TurnOffUnnecessaryAnimations {
get {
- return ResourceManager.GetString("sysdm.cpl", resourceCulture);
+ return ResourceManager.GetString("TurnOffUnnecessaryAnimations", resourceCulture);
}
}
///
- /// Looks up a localized string similar to System.
+ /// Looks up a localized string similar to Turn on easy access keys.
///
- internal static string System {
+ public static string TurnOnEasyAccessKeys {
get {
- return ResourceManager.GetString("System", resourceCulture);
+ return ResourceManager.GetString("TurnOnEasyAccessKeys", resourceCulture);
}
}
///
- /// Looks up a localized string similar to System properties and Add New Hardware wizard.
+ /// Looks up a localized string similar to Turn On-Screen keyboard on or off.
///
- internal static string SystemPropertiesAndAddNewHardwareWizard {
+ public static string TurnOnScreenKeyboardOnOrOff {
get {
- return ResourceManager.GetString("SystemPropertiesAndAddNewHardwareWizard", resourceCulture);
+ return ResourceManager.GetString("TurnOnScreenKeyboardOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Tab.
+ /// Looks up a localized string similar to Turn screen saver on or off.
///
- internal static string Tab {
+ public static string TurnScreenSaverOnOrOff {
get {
- return ResourceManager.GetString("Tab", resourceCulture);
+ return ResourceManager.GetString("TurnScreenSaverOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Tablet mode.
+ /// Looks up a localized string similar to Turn Windows features on or off.
///
- internal static string TabletMode {
+ public static string TurnWindowsFeaturesOnOrOff {
get {
- return ResourceManager.GetString("TabletMode", resourceCulture);
+ return ResourceManager.GetString("TurnWindowsFeaturesOnOrOff", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Tablet PC settings.
+ /// Looks up a localized string similar to Typing.
///
- internal static string TabletPcSettings {
+ public static string Typing {
get {
- return ResourceManager.GetString("TabletPcSettings", resourceCulture);
+ return ResourceManager.GetString("Typing", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Talk.
+ /// Looks up a localized string similar to Uninstall.
///
- internal static string Talk {
+ public static string Uninstall {
get {
- return ResourceManager.GetString("Talk", resourceCulture);
+ return ResourceManager.GetString("Uninstall", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Talk to Cortana.
+ /// Looks up a localized string similar to Uninstall a program.
///
- internal static string TalkToCortana {
+ public static string UninstallAProgram {
get {
- return ResourceManager.GetString("TalkToCortana", resourceCulture);
+ return ResourceManager.GetString("UninstallAProgram", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Taskbar.
+ /// Looks up a localized string similar to USB.
///
- internal static string Taskbar {
+ public static string Usb {
get {
- return ResourceManager.GetString("Taskbar", resourceCulture);
+ return ResourceManager.GetString("Usb", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Taskbar color.
+ /// Looks up a localized string similar to Use audio description for video.
///
- internal static string TaskbarColor {
+ public static string UseAudioDescriptionForVideo {
get {
- return ResourceManager.GetString("TaskbarColor", resourceCulture);
+ return ResourceManager.GetString("UseAudioDescriptionForVideo", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Tasks.
+ /// Looks up a localized string similar to User accounts.
///
- internal static string Tasks {
+ public static string UserAccounts {
get {
- return ResourceManager.GetString("Tasks", resourceCulture);
+ return ResourceManager.GetString("UserAccounts", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Team Conferencing.
+ /// Looks up a localized string similar to Use screen reader.
///
- internal static string TeamConferencing {
+ public static string UseScreenReader {
get {
- return ResourceManager.GetString("TeamConferencing", resourceCulture);
+ return ResourceManager.GetString("UseScreenReader", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Team device management.
+ /// Looks up a localized string similar to Version.
///
- internal static string TeamDeviceManagement {
+ public static string Version {
get {
- return ResourceManager.GetString("TeamDeviceManagement", resourceCulture);
+ return ResourceManager.GetString("Version", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Text to speech.
+ /// Looks up a localized string similar to Video playback.
///
- internal static string TextToSpeech {
+ public static string VideoPlayback {
get {
- return ResourceManager.GetString("TextToSpeech", resourceCulture);
+ return ResourceManager.GetString("VideoPlayback", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Themes.
+ /// Looks up a localized string similar to Videos.
///
- internal static string Themes {
+ public static string Videos {
get {
- return ResourceManager.GetString("Themes", resourceCulture);
+ return ResourceManager.GetString("Videos", resourceCulture);
}
}
///
- /// Looks up a localized string similar to themes.cpl.
+ /// Looks up a localized string similar to View advanced system settings.
///
- internal static string themes_cpl {
+ public static string ViewAdvancedSystemSettings {
get {
- return ResourceManager.GetString("themes.cpl", resourceCulture);
+ return ResourceManager.GetString("ViewAdvancedSystemSettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to timedate.cpl.
+ /// Looks up a localized string similar to View all problem reports.
///
- internal static string timedate_cpl {
+ public static string ViewAllProblemReports {
get {
- return ResourceManager.GetString("timedate.cpl", resourceCulture);
+ return ResourceManager.GetString("ViewAllProblemReports", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Timeline.
+ /// Looks up a localized string similar to View basic information about your computer.
///
- internal static string Timeline {
+ public static string ViewBasicInformationAboutYourComputer {
get {
- return ResourceManager.GetString("Timeline", resourceCulture);
+ return ResourceManager.GetString("ViewBasicInformationAboutYourComputer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Touch.
+ /// Looks up a localized string similar to View current accessibility settings.
///
- internal static string Touch {
+ public static string ViewCurrentAccessibilitySettings {
get {
- return ResourceManager.GetString("Touch", resourceCulture);
+ return ResourceManager.GetString("ViewCurrentAccessibilitySettings", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Touch feedback.
+ /// Looks up a localized string similar to View devices and printers.
///
- internal static string TouchFeedback {
+ public static string ViewDevicesAndPrinters {
get {
- return ResourceManager.GetString("TouchFeedback", resourceCulture);
+ return ResourceManager.GetString("ViewDevicesAndPrinters", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Touchpad.
+ /// Looks up a localized string similar to View event logs.
///
- internal static string Touchpad {
+ public static string ViewEventLogs {
get {
- return ResourceManager.GetString("Touchpad", resourceCulture);
+ return ResourceManager.GetString("ViewEventLogs", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Transparency.
+ /// Looks up a localized string similar to View installed fonts.
///
- internal static string Transparency {
+ public static string ViewInstalledFonts {
get {
- return ResourceManager.GetString("Transparency", resourceCulture);
+ return ResourceManager.GetString("ViewInstalledFonts", resourceCulture);
}
}
///
- /// Looks up a localized string similar to tritanopia.
+ /// Looks up a localized string similar to View installed updates.
///
- internal static string tritanopia {
+ public static string ViewInstalledUpdates {
get {
- return ResourceManager.GetString("tritanopia", resourceCulture);
+ return ResourceManager.GetString("ViewInstalledUpdates", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Troubleshoot.
+ /// Looks up a localized string similar to View local services.
///
- internal static string Troubleshoot {
+ public static string ViewLocalServices {
get {
- return ResourceManager.GetString("Troubleshoot", resourceCulture);
+ return ResourceManager.GetString("ViewLocalServices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to TruePlay.
+ /// Looks up a localized string similar to View network computers and devices.
///
- internal static string TruePlay {
+ public static string ViewNetworkComputersAndDevices {
get {
- return ResourceManager.GetString("TruePlay", resourceCulture);
+ return ResourceManager.GetString("ViewNetworkComputersAndDevices", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Typing.
+ /// Looks up a localized string similar to View network connections.
///
- internal static string Typing {
+ public static string ViewNetworkConnections {
get {
- return ResourceManager.GetString("Typing", resourceCulture);
+ return ResourceManager.GetString("ViewNetworkConnections", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Uninstall.
+ /// Looks up a localized string similar to View network status and tasks.
///
- internal static string Uninstall {
+ public static string ViewNetworkStatusAndTasks {
get {
- return ResourceManager.GetString("Uninstall", resourceCulture);
+ return ResourceManager.GetString("ViewNetworkStatusAndTasks", resourceCulture);
}
}
///
- /// Looks up a localized string similar to USB.
+ /// Looks up a localized string similar to View recent messages about your computer.
///
- internal static string Usb {
+ public static string ViewRecentMessagesAboutYourComputer {
get {
- return ResourceManager.GetString("Usb", resourceCulture);
+ return ResourceManager.GetString("ViewRecentMessagesAboutYourComputer", resourceCulture);
}
}
///
- /// Looks up a localized string similar to User accounts.
+ /// Looks up a localized string similar to View recommended actions to keep Windows running smoothly.
///
- internal static string UserAccounts {
+ public static string ViewRecommendedActionsToKeepWindowsRunningSmoothly {
get {
- return ResourceManager.GetString("UserAccounts", resourceCulture);
+ return ResourceManager.GetString("ViewRecommendedActionsToKeepWindowsRunningSmoothly", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Version.
+ /// Looks up a localized string similar to View reliability history.
///
- internal static string Version {
+ public static string ViewReliabilityHistory {
get {
- return ResourceManager.GetString("Version", resourceCulture);
+ return ResourceManager.GetString("ViewReliabilityHistory", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Video playback.
+ /// Looks up a localized string similar to View scanners and cameras.
///
- internal static string VideoPlayback {
+ public static string ViewScannersAndCameras {
get {
- return ResourceManager.GetString("VideoPlayback", resourceCulture);
+ return ResourceManager.GetString("ViewScannersAndCameras", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Videos.
+ /// Looks up a localized string similar to View system resource usage in Task Manager.
///
- internal static string Videos {
+ public static string ViewSystemResourceUsageInTaskManager {
get {
- return ResourceManager.GetString("Videos", resourceCulture);
+ 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 +5914,7 @@ internal static string VirtualDesktops {
///
/// Looks up a localized string similar to Virus.
///
- internal static string Virus {
+ public static string Virus {
get {
return ResourceManager.GetString("Virus", resourceCulture);
}
@@ -3609,7 +5923,7 @@ internal static string Virus {
///
/// 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 +5932,7 @@ internal static string VoiceActivation {
///
/// Looks up a localized string similar to Volume.
///
- internal static string Volume {
+ public static string Volume {
get {
return ResourceManager.GetString("Volume", resourceCulture);
}
@@ -3627,7 +5941,7 @@ internal static string Volume {
///
/// Looks up a localized string similar to VPN.
///
- internal static string Vpn {
+ public static string Vpn {
get {
return ResourceManager.GetString("Vpn", resourceCulture);
}
@@ -3636,7 +5950,7 @@ internal static string Vpn {
///
/// Looks up a localized string similar to Wallpaper.
///
- internal static string Wallpaper {
+ public static string Wallpaper {
get {
return ResourceManager.GetString("Wallpaper", resourceCulture);
}
@@ -3645,7 +5959,7 @@ internal static string Wallpaper {
///
/// 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 +5968,7 @@ internal static string WarmerColor {
///
/// 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 +5977,7 @@ internal static string WelcomeCenter {
///
/// 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 +5986,25 @@ internal static string WelcomeScreen {
///
/// 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 +6013,7 @@ internal static string Wheel {
///
/// 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 +6022,7 @@ internal static string WiFi {
///
/// 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 +6031,7 @@ internal static string WiFiCalling {
///
/// 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 +6040,7 @@ internal static string WiFiSettings {
///
/// 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 +6049,7 @@ internal static string WindowBorder {
///
/// 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 +6058,7 @@ internal static string WindowsAnytimeUpgrade {
///
/// 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 +6067,7 @@ internal static string WindowsAnywhere {
///
/// 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 +6076,7 @@ internal static string WindowsCardSpace {
///
/// 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 +6085,7 @@ internal static string WindowsDefender {
///
/// 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 +6094,7 @@ internal static string WindowsFirewall {
///
/// 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 +6103,7 @@ internal static string WindowsHelloSetupFace {
///
/// 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 +6112,7 @@ internal static string WindowsHelloSetupFingerprint {
///
/// 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 +6121,7 @@ internal static string WindowsInsiderProgram {
///
/// 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 +6130,7 @@ internal static string WindowsMobilityCenter {
///
/// 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 +6139,7 @@ internal static string WindowsSearch {
///
/// 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 +6148,7 @@ internal static string WindowsSecurity {
///
/// 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 +6157,7 @@ internal static string WindowsUpdate {
///
/// 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 +6166,7 @@ internal static string WindowsUpdateAdvancedOptions {
///
/// 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 +6175,7 @@ internal static string WindowsUpdateCheckForUpdates {
///
/// 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 +6184,7 @@ internal static string WindowsUpdateRestartOptions {
///
/// 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 +6193,7 @@ internal static string WindowsUpdateViewOptionalUpdates {
///
/// 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 +6202,7 @@ internal static string WindowsUpdateViewUpdateHistory {
///
/// Looks up a localized string similar to Wireless.
///
- internal static string Wireless {
+ public static string Wireless {
get {
return ResourceManager.GetString("Wireless", resourceCulture);
}
@@ -3888,7 +6211,7 @@ internal static string Wireless {
///
/// Looks up a localized string similar to Workplace.
///
- internal static string Workplace {
+ public static string Workplace {
get {
return ResourceManager.GetString("Workplace", resourceCulture);
}
@@ -3897,7 +6220,7 @@ internal static string Workplace {
///
/// 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 +6229,7 @@ internal static string WorkplaceProvisioning {
///
/// 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 +6238,7 @@ internal static string WubiImeSettings {
///
/// 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 +6247,7 @@ internal static string WubiImeSettingsUdp {
///
/// 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 +6256,7 @@ internal static string XboxNetworking {
///
/// 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 +6265,7 @@ internal static string YourInfo {
///
/// 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 dc6895d21d8..e18d7624288 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx
@@ -1,4 +1,4 @@
-
+