From 6c61f5ddecb5c6c8560fe3c136749d5ddd0dab1e Mon Sep 17 00:00:00 2001 From: Mykhailo Pylyp Date: Wed, 9 Jun 2021 18:04:03 +0300 Subject: [PATCH 01/45] [Run-Plugin] Settings plugin (#11663) * Current settings plugin state on fresh master * typo fixes * Add to YML * Add to WXS * Address feedback - highlight the note in the tool-tip a little bit * Address feedback add extra note for "Manage known networks" * Address feedback - Show type of settings in sub-line and remove extra ControlPanel prefix in json * Add "WiFi" as alternative name for each Wi-Fi setting * Add a few more alternative names * Make RESX happy * exclude WindowsSettings.json from spell checker because all entries are placeholders for the translation * Translate all alternative names * Translate all notes * fix for not find "wifi" * fix typo * typo fixes and remove debug * Address feedback - correct author * Address feedback - settings entries * Address feedback - code changes * Address feedback - RESX changes and tool-tip * fix typo * Address feedback - remove superfluous interface * Address feedback - Update RESX * Address feedback - simplification * Address feedback - remove enumeration * Address feedback - move big function in extra helper classes * Address feedback - move big function in extra helper class * Address feedback - correct namespace * Address feedback - move translation to translation helper and make translation more robust * fix typo * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * fix build * Address feedback * ups * Address feedback - Correct windows update settings name * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * adding in dependencies so when you build Launcher, all plugins are included * Address feedback - add optional updates * Address feedback - use build numebr instaed of Windows version * Address feedback - Log difference between registry values + fix wrong ValueType (ushort -> uint) * Address feebdback - improved warning message on different registry values * fix typo * removed not need using * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Update src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Addrress feedback, don't copy embed file * Address feedback - Remove duplicated or not available settings * Address feedback - Improve scoring * Address feedback - Add extra filter * Address feedback - replace the are filter sign with a better one * Address feedback - fix unwanted behavior * Address feedback - Change class name * Address feedback - Rename settings type * typo fix * Fix installer * Comment out localization support Co-authored-by: Sekan, Tobias Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> Co-authored-by: crutkas --- .../Classes/WindowsSetting.cs | 66 + .../Helper/ContextMenuHelper.cs | 71 + .../Helper/JsonSettingsListHelper.cs | 62 + .../Helper/ResultHelper.cs | 188 + .../Helper/TranslationHelper.cs | 90 + .../Helper/UnsupportedSettingsHelper.cs | 89 + .../Images/WindowsSettings.dark.png | Bin 0 -> 2882 bytes .../Images/WindowsSettings.light.png | Bin 0 -> 2781 bytes .../Main.cs | 217 + ...owerToys.Run.Plugin.WindowsSettings.csproj | 111 + .../Properties/Resources.Designer.cs | 3951 +++++++++++++++++ .../Properties/Resources.resx | 1739 ++++++++ .../WindowsSettings.json | 1739 ++++++++ .../plugin.json | 13 + 14 files changed, 8336 insertions(+) create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/TranslationHelper.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.dark.png create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.light.png create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json create mode 100644 src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs new file mode 100644 index 00000000000..5c5d2654ada --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System.Collections.Generic; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings +{ + /// + /// A windows setting + /// + internal class WindowsSetting + { + /// + /// Initializes a new instance of the class. + /// + public WindowsSetting() + { + Name = string.Empty; + Area = string.Empty; + Command = string.Empty; + Type = string.Empty; + } + + /// + /// Gets or sets the name of this setting. + /// + public string Name { get; set; } + + /// + /// Gets or sets the area of this setting. + /// + public string Area { get; set; } + + /// + /// Gets or sets the command of this setting. + /// + public string Command { get; set; } + + /// + /// Gets or sets the type of the windows setting. + /// + public string Type { get; set; } + + /// + /// Gets or sets the alternative names of this setting. + /// + public IEnumerable? AltNames { get; set; } + + /// + /// Gets or sets a additional note of this settings. + /// (e.g. why is not supported on your system) + /// + public string? Note { get; set; } + + /// + /// Gets or sets the minimum need Windows build for this setting. + /// + public uint? IntroducedInBuild { get; set; } + + /// + /// Gets or sets the Windows build since this settings is not longer present. + /// + public uint? DeprecatedInBuild { get; set; } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs new file mode 100644 index 00000000000..b5cbe173c7e --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System; +using System.Collections.Generic; +using System.Windows; +using System.Windows.Input; +using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Wox.Plugin; +using Wox.Plugin.Logger; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +{ + /// + /// Helper class to easier work with context menu entries + /// + internal static class ContextMenuHelper + { + /// + /// Return a list with all context menu entries for the given + /// Symbols taken from + /// + /// The result for the context menu entires + /// The name of the this assembly + /// A list with context menu entries + internal static List GetContextMenu(in Result result, in string assemblyName) + { + if (!(result?.ContextData is WindowsSetting entry)) + { + return new List(0); + } + + var list = new List(1) + { + new ContextMenuResult + { + AcceleratorKey = Key.C, + AcceleratorModifiers = ModifierKeys.Control, + Action = _ => TryToCopyToClipBoard(entry.Command), + FontFamily = "Segoe MDL2 Assets", + Glyph = "\xE8C8", // E8C8 => Symbol: Copy + PluginName = assemblyName, + Title = $"{Resources.CopyCommand} (Ctrl+C)", + }, + }; + + return list; + } + + /// + /// Copy the given text to the clipboard + /// + /// The text to copy to the clipboard + /// The text successful copy to the clipboard, otherwise + private static bool TryToCopyToClipBoard(in string text) + { + try + { + Clipboard.Clear(); + Clipboard.SetText(text); + return true; + } + catch (Exception exception) + { + Log.Exception("Can't copy to clipboard", exception, typeof(Main)); + return false; + } + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs new file mode 100644 index 00000000000..0ec818589ed --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text.Json; +using System.Text.Json.Serialization; +using Wox.Plugin.Logger; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +{ + /// + /// Helper class to easier work with the JSON file that contains all Windows settings + /// + internal static class JsonSettingsListHelper + { + /// + /// The name of the file that contains all settings for the query + /// + private const string _settingsFile = "WindowsSettings.json"; + + /// + /// Read all possible Windows settings. + /// + /// A list with all possible windows settings. + internal static IEnumerable ReadAllPossibleSettings() + { + var assembly = Assembly.GetExecutingAssembly(); + var type = assembly.GetTypes().FirstOrDefault(x => x.Name == nameof(Main)); + + IEnumerable? settingsList = null; + + try + { + var resourceName = $"{type?.Namespace}.{_settingsFile}"; + using var stream = assembly.GetManifestResourceStream(resourceName); + if (stream is null) + { + throw new Exception("stream is null"); + } + + var options = new JsonSerializerOptions(); + options.Converters.Add(new JsonStringEnumConverter()); + + using var reader = new StreamReader(stream); + var text = reader.ReadToEnd(); + + settingsList = JsonSerializer.Deserialize>(text, options); + } + catch (Exception exception) + { + Log.Exception("Error loading settings JSON file", exception, typeof(Main)); + } + + return settingsList ?? Enumerable.Empty(); + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs new file mode 100644 index 00000000000..fbea9bab1ba --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -0,0 +1,188 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text; +using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Wox.Plugin; +using Wox.Plugin.Logger; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +{ + /// + /// Helper class to easier work with results + /// + internal static class ResultHelper + { + /// + /// Return a list with s, based on the given list. + /// + /// The original result list to convert. + /// The path to the icon of each entry. + /// A list with . + internal static List GetResultList( + in IEnumerable list, + string query, + in string iconPath) + { + var resultList = new List(list.Count()); + + foreach (var entry in list) + { + var result = new Result + { + Action = (_) => DoOpenSettingsAction(entry), + IcoPath = iconPath, + SubTitle = $"{Resources.Area} \"{entry.Area}\" {Resources.SubtitlePreposition} {entry.Type}", + Title = entry.Name, + ContextData = entry, + }; + + AddOptionalToolTip(entry, result); + + resultList.Add(result); + } + + SetScores(resultList, query); + + return resultList; + } + + /// + /// Add a tool-tip to the given , based o the given . + /// + /// The that contain informations for the tool-tip. + /// The that need a tool-tip. + private static void AddOptionalToolTip(WindowsSetting entry, Result result) + { + var toolTipText = new StringBuilder(); + + toolTipText.AppendLine($"{Resources.Application}: {entry.Type}"); + toolTipText.AppendLine($"{Resources.Area}: {entry.Area}"); + + if (entry.AltNames != null && entry.AltNames.Any()) + { + var altList = entry.AltNames.Aggregate((current, next) => $"{current}, {next}"); + + toolTipText.AppendLine($"{Resources.AlternativeName}: {altList}"); + } + + toolTipText.Append($"{Resources.Command}: {entry.Command}"); + + if (!string.IsNullOrEmpty(entry.Note)) + { + toolTipText.AppendLine(string.Empty); + toolTipText.AppendLine(string.Empty); + toolTipText.Append($"{Resources.Note}: {entry.Note}"); + } + + result.ToolTipData = new ToolTipData(entry.Name, toolTipText.ToString()); + } + + /// + /// Open the settings page of the given . + /// + /// The that contain the information to open the setting on command level. + /// if the settings could be opened, otherwise . + private static bool DoOpenSettingsAction(WindowsSetting entry) + { + ProcessStartInfo processStartInfo; + + var command = entry.Command; + + if (command.Contains("%windir%", StringComparison.InvariantCultureIgnoreCase)) + { + var windowsFolder = Environment.GetFolderPath(Environment.SpecialFolder.Windows); + command = command.Replace("%windir%", windowsFolder, StringComparison.InvariantCultureIgnoreCase); + } + + if (command.Contains(' ')) + { + var commandSplit = command.Split(' '); + var file = commandSplit.FirstOrDefault(); + var arguments = command[file.Length..].TrimStart(); + + processStartInfo = new ProcessStartInfo(file, arguments) + { + UseShellExecute = false, + }; + } + else + { + processStartInfo = new ProcessStartInfo(command) + { + UseShellExecute = true, + }; + } + + try + { + Process.Start(processStartInfo); + return true; + } + catch (Exception exception) + { + Log.Exception("can't open settings", exception, typeof(ResultHelper)); + return false; + } + } + + /// + /// Set the score (known as order number or ranking number) + /// for all in the given list, based on the given query. + /// + /// A list with s that need scores. + /// The query to calculated the score for the s. + private static void SetScores(IEnumerable resultList, string query) + { + var lowScore = 1_000; + var mediumScore = 5_000; + var highScore = 10_000; + + foreach (var result in resultList) + { + if (!(result.ContextData is WindowsSetting windowsSetting)) + { + continue; + } + + if (windowsSetting.Name.StartsWith(query, StringComparison.CurrentCultureIgnoreCase)) + { + result.Score = highScore--; + continue; + } + + // If query starts with second or next word of name, set score. + if (windowsSetting.Name.Contains($" {query}", StringComparison.CurrentCultureIgnoreCase)) + { + result.Score = mediumScore--; + continue; + } + + if (windowsSetting.Area.StartsWith(query, StringComparison.CurrentCultureIgnoreCase)) + { + result.Score = lowScore--; + continue; + } + + if (windowsSetting.AltNames is null) + { + result.Score = lowScore--; + continue; + } + + if (windowsSetting.AltNames.Any(x => x.StartsWith(query, StringComparison.CurrentCultureIgnoreCase))) + { + result.Score = mediumScore--; + continue; + } + + result.Score = lowScore--; + } + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/TranslationHelper.cs new file mode 100644 index 00000000000..ee3d92c36a7 --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -0,0 +1,90 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Wox.Plugin.Logger; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +{ + /// + /// Helper class to easier work with translations. + /// + internal static class TranslationHelper + { + /// + /// Translate all settings of the given list with . + /// + /// The list that contains to translate. + internal static void TranslateAllSettings(in IEnumerable? settingsList) + { + if (settingsList is null) + { + return; + } + + foreach (var settings in settingsList) + { + var area = Resources.ResourceManager.GetString($"Area{settings.Area}"); + var name = Resources.ResourceManager.GetString(settings.Name); + var type = Resources.ResourceManager.GetString(settings.Type); + + if (string.IsNullOrEmpty(area)) + { + Log.Warn($"Resource string for [Area{settings.Area}] not found", typeof(Main)); + } + + if (string.IsNullOrEmpty(name)) + { + Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main)); + } + + if (string.IsNullOrEmpty(type)) + { + Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main)); + } + + settings.Area = area ?? settings.Area ?? string.Empty; + settings.Name = name ?? settings.Name ?? string.Empty; + settings.Type = type ?? settings.Type ?? string.Empty; + + 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; + } + + if (!(settings.AltNames is null) && settings.AltNames.Any()) + { + var translatedAltNames = new Collection(); + + foreach (var altName in settings.AltNames) + { + if (string.IsNullOrWhiteSpace(altName)) + { + continue; + } + + var translatedAltName = Resources.ResourceManager.GetString(altName); + if (string.IsNullOrEmpty(translatedAltName)) + { + Log.Warn($"Resource string for [{altName}] not found", typeof(Main)); + } + + translatedAltNames.Add(translatedAltName ?? altName); + } + + settings.AltNames = translatedAltNames; + } + } + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs new file mode 100644 index 00000000000..d455067f463 --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs @@ -0,0 +1,89 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System; +using System.Collections.Generic; +using System.Linq; +using Wox.Plugin.Logger; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +{ + /// + /// Helper class to easier work with the version of the Windows OS + /// + internal static class UnsupportedSettingsHelper + { + private const string _keyPath = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion"; + private const string _keyNameBuild = "CurrentBuild"; + private const string _keyNameBuildNumber = "CurrentBuildNumber"; + + /// + /// Remove all of the given list that are not present on the current used Windows build. + /// + /// The list with to filter. + /// A new list with that only contain present Windows settings for this OS. + internal static IEnumerable FilterByBuild(in IEnumerable? settingsList) + { + if (settingsList is null) + { + return Enumerable.Empty(); + } + + var currentBuild = GetNumericRegistryValue(_keyPath, _keyNameBuild); + var currentBuildNumber = GetNumericRegistryValue(_keyPath, _keyNameBuildNumber); + + if (currentBuild != currentBuildNumber) + { + var usedValueName = currentBuild != uint.MinValue ? _keyNameBuild : _keyNameBuildNumber; + var warningMessage = + $"Detecting the Windows version in registry ({_keyPath}) leads to an inconclusive" + + $" result ({_keyNameBuild}={currentBuild}, {_keyNameBuildNumber}={currentBuildNumber})!" + + $" For resolving the conflict we use the value of '{usedValueName}'."; + + Log.Warn(warningMessage, typeof(UnsupportedSettingsHelper)); + } + + var currentWindowsBuild = currentBuild != uint.MinValue + ? currentBuild + : currentBuildNumber; + + var filteredSettingsList = settingsList.Where(found + => (found.DeprecatedInBuild == null || currentWindowsBuild < found.DeprecatedInBuild) + && (found.IntroducedInBuild == null || currentWindowsBuild >= found.IntroducedInBuild)); + + filteredSettingsList = filteredSettingsList.OrderBy(found => found.Name); + + return filteredSettingsList; + } + + /// + /// Return a unsigned numeric value from given registry value name inside the given registry key. + /// + /// The registry key. + /// The name of the registry value. + /// A registry value or on error. + private static uint GetNumericRegistryValue(in string registryKey, in string valueName) + { + object registryValueData; + + try + { + registryValueData = Win32.Registry.GetValue(registryKey, valueName, uint.MinValue); + } + catch (Exception exception) + { + Log.Exception( + $"Can't get registry value for '{valueName}'", + exception, + typeof(UnsupportedSettingsHelper)); + + return uint.MinValue; + } + + return uint.TryParse(registryValueData as string, out var buildNumber) + ? buildNumber + : uint.MinValue; + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.dark.png b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.dark.png new file mode 100644 index 0000000000000000000000000000000000000000..b45708305fa713735a7d9eb4068286994c2b73dc GIT binary patch literal 2882 zcmcIm4Nw%<9Y3TZIF&Zokk)GFWpUCpxVK;T;cd7?;Ut`J7g<*h*Cw`Kul{$tvI$CZQ4mEK@!t^_}RC|0h&?k zWZJuXx4ZBC-tYhWf4uj0lehAb1@jlpH@vX8EKSi2#nB{V<*hW&EeGijfvu@x zfUk0urfuOTClS*1C{I!Gc-$Q4%!(SM7>C0_(JaNXBu0>0i>$*0DQgAO3@)Szsua~F zMFs{V^eZvlNnoW@E<~a;w6c~C6Al=afKiGu(}qjaK#%A4&`4wkt?8?pv6Zymn-Xg^ zEm1^OAx(*?0$SCKWW8Y8STv;QiWX9Cp>1aP28E(9V=x+1!>RCy0)@gTg1I$}Wm5X0 ze2I#nuBbJN5}r4y8s3Rv~WR0Y4_*cVNc+SpS=t7$1 zX?hCk!F3=)9nOFml4eN8Zh$Q`Z&_YQGqYetlmabx0`+)!x2)+<7LeQJB(Ny6B#AtY z?8^fJ%aJVO50DOK1;521*rwSYRVBP~VEB4gLzRdbS&ruXHUW~N!)7O0 z(c&i^n3D9s-=@z41=?2oyDavl`w*feqzJ3QdEmYfM~1`ph-Hw{rWN> zD6)nG9qBO@Kv9ZHnjpzRfWi_U)R2fL03^k<>sMKd*AVeP;EgCE&`~6cMM*N=L?kgL z>ma6sFg{=KafeUVlw<_(!jvI^VW}ww&0tMT(!i8UT1<-~S(G#lfmm2qB>`z5sKRDR z#K0;Ek7G9@*pdR8rDmk65R)MR$xs7Ozk-s4oIAhR2M#VjoX>y9zV>yFks0}LdCBG!9d6BCexfByIm`5LhbMQjy?Sg z`itKm@5>6clkJ80OSX3n_HNBPk+(0eEN2^T-t`lQ-#GJ0*h}{>)AoPuOJ6SUSz6xv zZg*$)6T_p&=MSBw8yXj9g|{4T`%SVpV{TjiihsN_y6=^`n2XpP$+_z>*PF*WkC*(V z{>qXIOOxk*|G>JntN(rZuaj|f?6J#h4_gL~)GAV2Vqnky=YG51d9eR11{?t23|f!lk*T$uF!JIe$+_X+rKCeCn%# z#>qFwK5pDtn>g@V+oIvd+HZWgv8hiFuE>1r)n5k#TbjP@UUOf0G5pZgMU@Sn@@@If zuYOV&$?dval=(@{nI(hs+8%7PFDoA^yzn>Q@droq|F|vVz`X9xns4^x-goahX4lf{ z`(g3D=wkcbSG|)X|FTXd#=I5PzpLIk9?fe#)%4vxBY)bupr@{2gZRKgxjNKPbZz@U z{Om^~2j8yX=04H=DP5H)*uDScn6RnAKJMF|@l0Kp@|E|cv6HWM*N(V;7kl5{W82U++5XZ-U;aOLT)JyXMd$OR?}g?UbM`(tu=nqe zyYgbqFLytl>}Yl5UbMZGZ)$3EUO9BG|46k!W}bS!Z+*^>GD?pvzBaMz&_c8#oE`Z= z^6tjLiC6NEZ0{d96(=@BSmAqKGlW$M9 z>=rPOG|kilfrJ)&XaX}SQyNThn1p7)&}JAyP1{M_PMS7u>gLHGyb@aKxHNQ6mTkxY zWiqWs(%tQS`~AM(@AvKPJz2SY(WKmhT$jr=sbX<3%#Nb-8$Xu)uO9R16YMY{x%gq~ za^;e2n;21Fi+=U~@ zIY9IPx7r&LL&-8+M;5nOcvZ{tD%4VsRGoWZ0hpiG7(oKt5Tp}vgKFsjm*Lgexic(q zAOo@M16-*S5LAaML78b`;B$*S5=9yKRk!5xC|-FkkVRP(L`hIYUh-;QQB&rD?1y8~ zEIq1)gAZn7v8w=AXWL0l5Sp5r+)awxv|@s!s;VH$f-Lh4!P92LhH2iQvxXUhm?DcL zZDJb0VT2JgWd}H>bSQ;Ha)j2P*)p+$32B%VB)90KGz<)dZVgQ&M$ptQZ)8!jdT&Tf ztD2Ko2xDrdEQHG&v0={|4wkGlZIjlSH_8VQ(8S@BGHbR^(7PB3oDuu?`} zQY*7Cv`wqZG~>gKsvM38WQGIxttN(UHqqIRqU;15gf5NfUL?z-wkk?h8pOR8G=zWYBxa(m&RC2{;Laxn~A5e@z&Cz>VuxB%zT0TIxqS?ejcj2 z%qvKaDoBx#q%ep4AEjrxQ5`g5m_1udtRBt@@XWf@*a#Q%UdVd}ufi6j$64E7Kqddjdt$_8<^zp(9& z?W`He7_fzDKmg;UAqCxFWr|QRloCzRBsO$HDF&&yZ4rbih*_|a=nNPp>^@5~!6KQU zku+kd=HM}iO{NBueyx989gNt6z z{q^`qe>J1@&`)Qj@5Fa*?Qa8HcYh{UzB+ey@5|wum)^PmS?;dFiyK`7+t%E>=!b1H ze=;e3ckzba>Iu)BT(W!K$%b8Ve`MU>OY#TaJazal`!D~tWcS#b{+zbn!PZC2W6wRm z;#(ahv9^Nu{|zp5Zma*`@TOA}_kMfz_STlQTQ5cVv3Z{yzIs6ZPG9`)S-X|~*N(P) zS1hbuvG;Eiq9xsDrjPrhG_z+y(JSjW|FX8{)toJ#^yM5|TR6Dpx%Zy08gqEcnbxNM zRnL5_Vb7&?PZ;NZzcYsHE59iyQZ}!7WZpm`-P+pu;JOzMojqOn*n2N+`{$OW8{a`k ziyF3f)lB=>oS%m;KeR8{`Lo=W;V;$p?}BeV+V=MMue2|%zS481_6Nt5gQ2P0+orv> zZRPnkt9I>`H=phre7EP4v1LklQ{J?m&i$RsruXH}n6vL#{%5CtS6bqS9S8SxOm;U; z&Of;icK!LU?|$XTxDNHJ^7@NA8}@ihyV}7tySJ~n>l@Yg9U44!VL>GC^|fz2v~%y- zBOjIIpWd|V{atio|I7L9=Rd7?7rpV?kLIuXx{mn;4a&Wz4;}wFx8mr4JotyZ{TPzLGQb_>aea^l_d)|KV|$#-Dw>bqh|3{tZ)J%=_@mC)_y)F3u?KdVJ1ge%ZdV z?#u0kPo3DL92}_MarMK<((dkGyii^}@WFwt>(_NZ+qY!?{Zp^b?ATF4_U9}?MU@4| a@94Vcq*`;28gyPjE6SG#4=j9a<9`6(f!QGd literal 0 HcmV?d00001 diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs new file mode 100644 index 00000000000..dfc9b229648 --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs @@ -0,0 +1,217 @@ +// Copyright (c) Microsoft Corporation +// The Microsoft Corporation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using ManagedCommon; +using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper; +using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Wox.Plugin; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings +{ + /// + /// Main class of this plugin that implement all used interfaces. + /// + public class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable + { + /// + /// The path to the symbol for a light theme. + /// + private const string _lightSymbol = "Images/WindowsSettings.light.png"; + + /// + /// The path to the symbol for a dark theme. + /// + private const string _darkSymbol = "Images/WindowsSettings.dark.png"; + + /// + /// The name of this assembly. + /// + private readonly string _assemblyName; + + /// + /// The initial context for this plugin (contains API and meta-data). + /// + private PluginInitContext? _context; + + /// + /// The path to the icon for each result. + /// + private string _defaultIconPath; + + /// + /// Indicate that the plugin is disposed. + /// + private bool _disposed; + + /// + /// List that contain all settings. + /// + private IEnumerable? _settingsList; + + /// + /// Initializes a new instance of the class. + /// + public Main() + { + _assemblyName = Assembly.GetExecutingAssembly().GetName().Name ?? Name; + _defaultIconPath = _lightSymbol; + } + + /// + /// Gets the localized name. + /// + public string Name => Resources.PluginTitle; + + /// + /// Gets the localized description. + /// + public string Description => Resources.PluginDescription; + + /// + /// Initialize the plugin with the given . + /// + /// The for this plugin. + public void Init(PluginInitContext context) + { + _context = context ?? throw new ArgumentNullException(nameof(context)); + _context.API.ThemeChanged += OnThemeChanged; + UpdateIconPath(_context.API.GetCurrentTheme()); + + _settingsList = JsonSettingsListHelper.ReadAllPossibleSettings(); + _settingsList = UnsupportedSettingsHelper.FilterByBuild(_settingsList); + + TranslationHelper.TranslateAllSettings(_settingsList); + } + + /// + /// Return a filtered list, based on the given query. + /// + /// The query to filter the list. + /// A filtered list, can be empty when nothing was found. + public List Query(Query query) + { + if (_settingsList is null) + { + return new List(0); + } + + var filteredList = _settingsList + .Where(Predicate) + .OrderBy(found => found.Name); + + var newList = ResultHelper.GetResultList(filteredList, query.Search, _defaultIconPath); + return newList; + + bool Predicate(WindowsSetting found) + { + if (found.Name.Contains(query.Search, StringComparison.CurrentCultureIgnoreCase)) + { + return true; + } + + // Search for Area only by key char + if (found.Area.Contains(query.Search.Replace(":", string.Empty), StringComparison.CurrentCultureIgnoreCase) + && query.Search.EndsWith(":")) + { + return true; + } + + if (found.Area.Contains(query.Search, StringComparison.CurrentCultureIgnoreCase)) + { + return true; + } + + if (!(found.AltNames is null)) + { + foreach (var altName in found.AltNames) + { + if (altName.Contains(query.Search, StringComparison.CurrentCultureIgnoreCase)) + { + return true; + } + } + } + + return false; + } + } + + /// + /// Return a list context menu entries for a given (shown at the right side of the result). + /// + /// The for the list with context menu entries. + /// A list context menu entries. + public List LoadContextMenus(Result selectedResult) + { + return ContextMenuHelper.GetContextMenu(selectedResult, _assemblyName); + } + + /// + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + + /// + /// Wrapper method for that dispose additional objects and events form the plugin itself. + /// + /// Indicate that the plugin is disposed. + protected virtual void Dispose(bool disposing) + { + if (_disposed || !disposing) + { + return; + } + + if (!(_context is null)) + { + _context.API.ThemeChanged -= OnThemeChanged; + } + + _disposed = true; + } + + /// + /// Gets the localized name. + /// + public string GetTranslatedPluginTitle() + { + return Name; + } + + /// + /// Gets the localized description. + /// + public string GetTranslatedPluginDescription() + { + return Description; + } + + /// + /// Change all theme-based elements (typical called when the plugin theme has changed). + /// + /// The old . + /// The new . + private void OnThemeChanged(Theme oldtheme, Theme newTheme) + { + UpdateIconPath(newTheme); + } + + /// + /// Update all icons (typical called when the plugin theme has changed). + /// + /// The new for the icons. + private void UpdateIconPath(Theme theme) + { + _defaultIconPath = theme == Theme.Light || theme == Theme.HighContrastWhite + ? _lightSymbol + : _darkSymbol; + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj new file mode 100644 index 00000000000..4b7cf12b224 --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj @@ -0,0 +1,111 @@ + + + + + netcoreapp3.1 + {5043CECE-E6A7-4867-9CBE-02D27D83747A} + Properties + Microsoft.PowerToys.Run.Plugin.WindowsSettings + Microsoft.PowerToys.Run.Plugin.WindowsSettings + $(Version).0 + false + false + x64 + prompt + true + en-US + enable + + + + ..\..\..\..\..\x64\Debug\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\ + DEBUG;TRACE + false + full + true + 8.0 + x64 + MinimumRecommendedRules.ruleset + 4 + true + + + + ..\..\..\..\..\x64\Release\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\ + TRACE + true + pdbonly + 8.0 + x64 + MinimumRecommendedRules.ruleset + 4 + true + + + + + + + + + false + + + false + + + + + + PreserveNewest + + + + + + GlobalSuppressions.cs + + + StyleCop.json + + + + + + Never + + + + + + 1.1.118 + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + + + PreserveNewest + + + PreserveNewest + + + + \ No newline at end of file diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs new file mode 100644 index 00000000000..37a3d1e4271 --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs @@ -0,0 +1,3951 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + 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 { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to About. + /// + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to access.cpl. + /// + internal static string access_cpl { + get { + return ResourceManager.GetString("access.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accessibility Options. + /// + internal static string AccessibilityOptions { + get { + return ResourceManager.GetString("AccessibilityOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accessory apps. + /// + internal static string AccessoryApps { + get { + return ResourceManager.GetString("AccessoryApps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access work or school. + /// + internal static string AccessWorkOrSchool { + get { + return ResourceManager.GetString("AccessWorkOrSchool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account info. + /// + internal static string AccountInfo { + get { + return ResourceManager.GetString("AccountInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accounts. + /// + internal static string Accounts { + get { + return ResourceManager.GetString("Accounts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Action Center. + /// + internal static string ActionCenter { + get { + return ResourceManager.GetString("ActionCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Activation. + /// + internal static string Activation { + get { + return ResourceManager.GetString("Activation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Activity history. + /// + internal static string ActivityHistory { + get { + return ResourceManager.GetString("ActivityHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Hardware. + /// + internal static string AddHardware { + get { + return ResourceManager.GetString("AddHardware", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add/Remove Programs. + /// + internal static string AddRemovePrograms { + get { + return ResourceManager.GetString("AddRemovePrograms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add your phone. + /// + internal static string AddYourPhone { + get { + return ResourceManager.GetString("AddYourPhone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Administrative Tools. + /// + internal static string AdministrativeTools { + get { + return ResourceManager.GetString("AdministrativeTools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Advanced display settings. + /// + internal static string AdvancedDisplaySettings { + get { + return ResourceManager.GetString("AdvancedDisplaySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Advanced graphics. + /// + internal static string AdvancedGraphics { + get { + return ResourceManager.GetString("AdvancedGraphics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Advertising ID. + /// + internal static string AdvertisingId { + get { + return ResourceManager.GetString("AdvertisingId", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Airplane mode. + /// + internal static string AirplaneMode { + get { + return ResourceManager.GetString("AirplaneMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alt+Tab. + /// + internal static string AltAndTab { + get { + return ResourceManager.GetString("AltAndTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alternative names. + /// + internal static string AlternativeName { + get { + return ResourceManager.GetString("AlternativeName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Animations. + /// + internal static string Animations { + get { + return ResourceManager.GetString("Animations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to App color. + /// + internal static string AppColor { + get { + return ResourceManager.GetString("AppColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to App diagnostics. + /// + internal static string AppDiagnostics { + get { + return ResourceManager.GetString("AppDiagnostics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to App features. + /// + internal static string AppFeatures { + get { + return ResourceManager.GetString("AppFeatures", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to App. + /// + internal static string Application { + get { + return ResourceManager.GetString("Application", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apps and Features. + /// + internal static string AppsAndFeatures { + get { + return ResourceManager.GetString("AppsAndFeatures", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System settings. + /// + internal static string AppSettingsApp { + get { + return ResourceManager.GetString("AppSettingsApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apps for websites. + /// + internal static string AppsForWebsites { + get { + return ResourceManager.GetString("AppsForWebsites", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to App volume and device preferences. + /// + internal static string AppVolumeAndDevicePreferences { + get { + return ResourceManager.GetString("AppVolumeAndDevicePreferences", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to appwiz.cpl. + /// + internal static string appwiz_cpl { + get { + return ResourceManager.GetString("appwiz.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Area. + /// + internal static string Area { + get { + return ResourceManager.GetString("Area", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accounts. + /// + internal static string AreaAccounts { + get { + return ResourceManager.GetString("AreaAccounts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Administrative Tools. + /// + internal static string AreaAdministrativeTools { + get { + return ResourceManager.GetString("AreaAdministrativeTools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Appearance and Personalization. + /// + internal static string AreaAppearanceAndPersonalization { + get { + return ResourceManager.GetString("AreaAppearanceAndPersonalization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apps. + /// + internal static string AreaApps { + get { + return ResourceManager.GetString("AreaApps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clock and Region. + /// + internal static string AreaClockAndRegion { + get { + return ResourceManager.GetString("AreaClockAndRegion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Control Panel. + /// + internal static string AreaControlPanel { + get { + return ResourceManager.GetString("AreaControlPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cortana. + /// + internal static string AreaCortana { + get { + return ResourceManager.GetString("AreaCortana", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Devices. + /// + internal static string AreaDevices { + get { + return ResourceManager.GetString("AreaDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ease of access. + /// + internal static string AreaEaseOfAccess { + get { + return ResourceManager.GetString("AreaEaseOfAccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extras. + /// + internal static string AreaExtras { + get { + return ResourceManager.GetString("AreaExtras", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gaming. + /// + internal static string AreaGaming { + get { + return ResourceManager.GetString("AreaGaming", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hardware and Sound. + /// + internal static string AreaHardwareAndSound { + get { + return ResourceManager.GetString("AreaHardwareAndSound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Home page. + /// + internal static string AreaHomePage { + get { + return ResourceManager.GetString("AreaHomePage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mixed reality. + /// + internal static string AreaMixedReality { + get { + return ResourceManager.GetString("AreaMixedReality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network and Internet. + /// + internal static string AreaNetworkAndInternet { + get { + return ResourceManager.GetString("AreaNetworkAndInternet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Personalization. + /// + internal static string AreaPersonalization { + get { + return ResourceManager.GetString("AreaPersonalization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone. + /// + internal static string AreaPhone { + get { + return ResourceManager.GetString("AreaPhone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Privacy. + /// + internal static string AreaPrivacy { + get { + return ResourceManager.GetString("AreaPrivacy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Programs. + /// + internal static string AreaPrograms { + get { + return ResourceManager.GetString("AreaPrograms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SurfaceHub. + /// + internal static string AreaSurfaceHub { + get { + return ResourceManager.GetString("AreaSurfaceHub", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System. + /// + internal static string AreaSystem { + get { + return ResourceManager.GetString("AreaSystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System and Security. + /// + internal static string AreaSystemAndSecurity { + get { + return ResourceManager.GetString("AreaSystemAndSecurity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time and language. + /// + internal static string AreaTimeAndLanguage { + get { + return ResourceManager.GetString("AreaTimeAndLanguage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update and security. + /// + internal static string AreaUpdateAndSecurity { + get { + return ResourceManager.GetString("AreaUpdateAndSecurity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User accounts. + /// + internal static string AreaUserAccounts { + get { + return ResourceManager.GetString("AreaUserAccounts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Assigned access. + /// + internal static string AssignedAccess { + get { + return ResourceManager.GetString("AssignedAccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Audio. + /// + internal static string Audio { + get { + return ResourceManager.GetString("Audio", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Audio alerts. + /// + internal static string AudioAlerts { + get { + return ResourceManager.GetString("AudioAlerts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Audio and speech. + /// + internal static string AudioAndSpeech { + get { + return ResourceManager.GetString("AudioAndSpeech", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatic file downloads. + /// + internal static string AutomaticFileDownloads { + get { + return ResourceManager.GetString("AutomaticFileDownloads", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AutoPlay. + /// + internal static string AutoPlay { + get { + return ResourceManager.GetString("AutoPlay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Background. + /// + internal static string Background { + get { + return ResourceManager.GetString("Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Background Apps. + /// + internal static string BackgroundApps { + get { + return ResourceManager.GetString("BackgroundApps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Backup. + /// + internal static string Backup { + get { + return ResourceManager.GetString("Backup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Backup and Restore. + /// + internal static string BackupAndRestore { + get { + return ResourceManager.GetString("BackupAndRestore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery Saver. + /// + internal static string BatterySaver { + get { + return ResourceManager.GetString("BatterySaver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery Saver settings. + /// + internal static string BatterySaverSettings { + get { + return ResourceManager.GetString("BatterySaverSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery saver usage details. + /// + internal static string BatterySaverUsageDetails { + get { + return ResourceManager.GetString("BatterySaverUsageDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery use. + /// + internal static string BatteryUse { + get { + return ResourceManager.GetString("BatteryUse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biometric Devices. + /// + internal static string BiometricDevices { + get { + return ResourceManager.GetString("BiometricDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BitLocker Drive Encryption. + /// + internal static string BitLockerDriveEncryption { + get { + return ResourceManager.GetString("BitLockerDriveEncryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue light. + /// + internal static string BlueLight { + get { + return ResourceManager.GetString("BlueLight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bluetooth. + /// + internal static string Bluetooth { + get { + return ResourceManager.GetString("Bluetooth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bluetooth devices. + /// + internal static string BluetoothDevices { + get { + return ResourceManager.GetString("BluetoothDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blue-yellow. + /// + internal static string BlueYellow { + get { + return ResourceManager.GetString("BlueYellow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bopomofo IME. + /// + internal static string BopomofoIme { + get { + return ResourceManager.GetString("BopomofoIme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to bpmf. + /// + internal static string bpmf { + get { + return ResourceManager.GetString("bpmf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Broadcasting. + /// + internal static string Broadcasting { + get { + return ResourceManager.GetString("Broadcasting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calendar. + /// + internal static string Calendar { + get { + return ResourceManager.GetString("Calendar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Call history. + /// + internal static string CallHistory { + get { + return ResourceManager.GetString("CallHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to calling. + /// + internal static string calling { + get { + return ResourceManager.GetString("calling", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera. + /// + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cangjie IME. + /// + internal static string CangjieIme { + get { + return ResourceManager.GetString("CangjieIme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Caps Lock. + /// + internal static string CapsLock { + get { + return ResourceManager.GetString("CapsLock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cellular and SIM. + /// + internal static string CellularAndSim { + get { + return ResourceManager.GetString("CellularAndSim", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose which folders appear on Start. + /// + internal static string ChooseWhichFoldersAppearOnStart { + get { + return ResourceManager.GetString("ChooseWhichFoldersAppearOnStart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Client service for NetWare. + /// + internal static string ClientServiceForNetWare { + get { + return ResourceManager.GetString("ClientServiceForNetWare", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clipboard. + /// + internal static string Clipboard { + get { + return ResourceManager.GetString("Clipboard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Closed captions. + /// + internal static string ClosedCaptions { + get { + return ResourceManager.GetString("ClosedCaptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Color filters. + /// + internal static string ColorFilters { + get { + return ResourceManager.GetString("ColorFilters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Color management. + /// + internal static string ColorManagement { + get { + return ResourceManager.GetString("ColorManagement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Colors. + /// + internal static string Colors { + get { + return ResourceManager.GetString("Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Command. + /// + internal static string Command { + get { + return ResourceManager.GetString("Command", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connected Devices. + /// + internal static string ConnectedDevices { + get { + return ResourceManager.GetString("ConnectedDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contacts. + /// + internal static string Contacts { + get { + return ResourceManager.GetString("Contacts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Control Panel. + /// + internal static string ControlPanel { + get { + return ResourceManager.GetString("ControlPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy command. + /// + internal static string CopyCommand { + get { + return ResourceManager.GetString("CopyCommand", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Core Isolation. + /// + internal static string CoreIsolation { + get { + return ResourceManager.GetString("CoreIsolation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cortana. + /// + internal static string Cortana { + get { + return ResourceManager.GetString("Cortana", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cortana across my devices. + /// + internal static string CortanaAcrossMyDevices { + get { + return ResourceManager.GetString("CortanaAcrossMyDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cortana - Language. + /// + internal static string CortanaLanguage { + get { + return ResourceManager.GetString("CortanaLanguage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credential manager. + /// + internal static string CredentialManager { + get { + return ResourceManager.GetString("CredentialManager", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Crossdevice. + /// + internal static string Crossdevice { + get { + return ResourceManager.GetString("Crossdevice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom devices. + /// + internal static string CustomDevices { + get { + return ResourceManager.GetString("CustomDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dark color. + /// + internal static string DarkColor { + get { + return ResourceManager.GetString("DarkColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dark mode. + /// + internal static string DarkMode { + get { + return ResourceManager.GetString("DarkMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Data usage. + /// + internal static string DataUsage { + get { + return ResourceManager.GetString("DataUsage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Date and time. + /// + internal static string DateAndTime { + get { + return ResourceManager.GetString("DateAndTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default apps. + /// + internal static string DefaultApps { + get { + return ResourceManager.GetString("DefaultApps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default camera. + /// + internal static string DefaultCamera { + get { + return ResourceManager.GetString("DefaultCamera", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default location. + /// + internal static string DefaultLocation { + get { + return ResourceManager.GetString("DefaultLocation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default programs. + /// + internal static string DefaultPrograms { + get { + return ResourceManager.GetString("DefaultPrograms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Save Locations. + /// + internal static string DefaultSaveLocations { + get { + return ResourceManager.GetString("DefaultSaveLocations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delivery Optimization. + /// + internal static string DeliveryOptimization { + get { + return ResourceManager.GetString("DeliveryOptimization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to desk.cpl. + /// + internal static string desk_cpl { + get { + return ResourceManager.GetString("desk.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Desktop themes. + /// + internal static string DesktopThemes { + get { + return ResourceManager.GetString("DesktopThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to deuteranopia. + /// + internal static string deuteranopia { + get { + return ResourceManager.GetString("deuteranopia", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device manager. + /// + internal static string DeviceManager { + get { + return ResourceManager.GetString("DeviceManager", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Devices and printers. + /// + internal static string DevicesAndPrinters { + get { + return ResourceManager.GetString("DevicesAndPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DHCP. + /// + internal static string Dhcp { + get { + return ResourceManager.GetString("Dhcp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dial-up. + /// + internal static string DialUp { + get { + return ResourceManager.GetString("DialUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Direct access. + /// + internal static string DirectAccess { + get { + return ResourceManager.GetString("DirectAccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Direct open your phone. + /// + internal static string DirectOpenYourPhone { + get { + return ResourceManager.GetString("DirectOpenYourPhone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display. + /// + internal static string Display { + get { + return ResourceManager.GetString("Display", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display properties. + /// + internal static string DisplayProperties { + get { + return ResourceManager.GetString("DisplayProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DNS. + /// + internal static string DNS { + get { + return ResourceManager.GetString("DNS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Documents. + /// + internal static string Documents { + get { + return ResourceManager.GetString("Documents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duplicating my display. + /// + internal static string DuplicatingMyDisplay { + get { + return ResourceManager.GetString("DuplicatingMyDisplay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to During these hours. + /// + internal static string DuringTheseHours { + get { + return ResourceManager.GetString("DuringTheseHours", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ease of access center. + /// + internal static string EaseOfAccessCenter { + get { + return ResourceManager.GetString("EaseOfAccessCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edition. + /// + internal static string Edition { + get { + return ResourceManager.GetString("Edition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email. + /// + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email and app accounts. + /// + internal static string EmailAndAppAccounts { + get { + return ResourceManager.GetString("EmailAndAppAccounts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encryption. + /// + internal static string Encryption { + get { + return ResourceManager.GetString("Encryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Environment. + /// + internal static string Environment { + get { + return ResourceManager.GetString("Environment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ethernet. + /// + internal static string Ethernet { + get { + return ResourceManager.GetString("Ethernet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exploit Protection. + /// + internal static string ExploitProtection { + get { + return ResourceManager.GetString("ExploitProtection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extras. + /// + internal static string Extras { + get { + return ResourceManager.GetString("Extras", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Eye control. + /// + internal static string EyeControl { + get { + return ResourceManager.GetString("EyeControl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Eye tracker. + /// + internal static string EyeTracker { + get { + return ResourceManager.GetString("EyeTracker", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Family and other people. + /// + internal static string FamilyAndOtherPeople { + get { + return ResourceManager.GetString("FamilyAndOtherPeople", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feedback and diagnostics. + /// + internal static string FeedbackAndDiagnostics { + get { + return ResourceManager.GetString("FeedbackAndDiagnostics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File system. + /// + internal static string FileSystem { + get { + return ResourceManager.GetString("FileSystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FindFast. + /// + internal static string FindFast { + get { + return ResourceManager.GetString("FindFast", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to findfast.cpl. + /// + internal static string findfast_cpl { + get { + return ResourceManager.GetString("findfast.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find My Device. + /// + internal static string FindMyDevice { + get { + return ResourceManager.GetString("FindMyDevice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Firewall. + /// + internal static string Firewall { + get { + return ResourceManager.GetString("Firewall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Focus assist - Quiet hours. + /// + internal static string FocusAssistQuietHours { + get { + return ResourceManager.GetString("FocusAssistQuietHours", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Focus assist - Quiet moments. + /// + internal static string FocusAssistQuietMoments { + get { + return ResourceManager.GetString("FocusAssistQuietMoments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Folder options. + /// + internal static string FolderOptions { + get { + return ResourceManager.GetString("FolderOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fonts. + /// + internal static string Fonts { + get { + return ResourceManager.GetString("Fonts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For developers. + /// + internal static string ForDevelopers { + get { + return ResourceManager.GetString("ForDevelopers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Game bar. + /// + internal static string GameBar { + get { + return ResourceManager.GetString("GameBar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Game controllers. + /// + internal static string GameControllers { + get { + return ResourceManager.GetString("GameControllers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Game DVR. + /// + internal static string GameDvr { + get { + return ResourceManager.GetString("GameDvr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Game Mode. + /// + internal static string GameMode { + get { + return ResourceManager.GetString("GameMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway. + /// + internal static string Gateway { + get { + return ResourceManager.GetString("Gateway", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + internal static string General { + get { + return ResourceManager.GetString("General", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get programs. + /// + internal static string GetPrograms { + get { + return ResourceManager.GetString("GetPrograms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Getting started. + /// + internal static string GettingStarted { + get { + return ResourceManager.GetString("GettingStarted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Glance. + /// + internal static string Glance { + get { + return ResourceManager.GetString("Glance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Graphics settings. + /// + internal static string GraphicsSettings { + get { + return ResourceManager.GetString("GraphicsSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Grayscale. + /// + internal static string Grayscale { + get { + return ResourceManager.GetString("Grayscale", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Green week. + /// + internal static string GreenWeek { + get { + return ResourceManager.GetString("GreenWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Headset display. + /// + internal static string HeadsetDisplay { + get { + return ResourceManager.GetString("HeadsetDisplay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High contrast. + /// + internal static string HighContrast { + get { + return ResourceManager.GetString("HighContrast", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Holographic audio. + /// + internal static string HolographicAudio { + get { + return ResourceManager.GetString("HolographicAudio", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Holographic Environment. + /// + internal static string HolographicEnvironment { + get { + return ResourceManager.GetString("HolographicEnvironment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Holographic Headset. + /// + internal static string HolographicHeadset { + get { + return ResourceManager.GetString("HolographicHeadset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Holographic Management. + /// + internal static string HolographicManagement { + get { + return ResourceManager.GetString("HolographicManagement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Home group. + /// + internal static string HomeGroup { + get { + return ResourceManager.GetString("HomeGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ID. + /// + internal static string Id { + get { + return ResourceManager.GetString("Id", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image. + /// + internal static string Image { + get { + return ResourceManager.GetString("Image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indexing options. + /// + internal static string IndexingOptions { + get { + return ResourceManager.GetString("IndexingOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to inetcpl.cpl. + /// + internal static string inetcpl_cpl { + get { + return ResourceManager.GetString("inetcpl.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Infrared. + /// + internal static string Infrared { + get { + return ResourceManager.GetString("Infrared", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inking and typing. + /// + internal static string InkingAndTyping { + get { + return ResourceManager.GetString("InkingAndTyping", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internet options. + /// + internal static string InternetOptions { + get { + return ResourceManager.GetString("InternetOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to intl.cpl. + /// + internal static string intl_cpl { + get { + return ResourceManager.GetString("intl.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inverted colors. + /// + internal static string InvertedColors { + get { + return ResourceManager.GetString("InvertedColors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IP. + /// + internal static string Ip { + get { + return ResourceManager.GetString("Ip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Isolated Browsing. + /// + internal static string IsolatedBrowsing { + get { + return ResourceManager.GetString("IsolatedBrowsing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Japan IME settings. + /// + internal static string JapanImeSettings { + get { + return ResourceManager.GetString("JapanImeSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to joy.cpl. + /// + internal static string joy_cpl { + get { + return ResourceManager.GetString("joy.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Joystick properties. + /// + internal static string JoystickProperties { + get { + return ResourceManager.GetString("JoystickProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to jpnime. + /// + internal static string jpnime { + get { + return ResourceManager.GetString("jpnime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keyboard. + /// + internal static string Keyboard { + get { + return ResourceManager.GetString("Keyboard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keypad. + /// + internal static string Keypad { + get { + return ResourceManager.GetString("Keypad", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keys. + /// + internal static string Keys { + get { + return ResourceManager.GetString("Keys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Language. + /// + internal static string Language { + get { + return ResourceManager.GetString("Language", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Light color. + /// + internal static string LightColor { + get { + return ResourceManager.GetString("LightColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Light mode. + /// + internal static string LightMode { + get { + return ResourceManager.GetString("LightMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Location. + /// + internal static string Location { + get { + return ResourceManager.GetString("Location", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lock screen. + /// + internal static string LockScreen { + get { + return ResourceManager.GetString("LockScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Magnifier. + /// + internal static string Magnifier { + get { + return ResourceManager.GetString("Magnifier", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mail - Microsoft Exchange or Windows Messaging. + /// + internal static string MailMicrosoftExchangeOrWindowsMessaging { + get { + return ResourceManager.GetString("MailMicrosoftExchangeOrWindowsMessaging", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to main.cpl. + /// + internal static string main_cpl { + get { + return ResourceManager.GetString("main.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage known networks. + /// + internal static string ManageKnownNetworks { + get { + return ResourceManager.GetString("ManageKnownNetworks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage optional features. + /// + internal static string ManageOptionalFeatures { + get { + return ResourceManager.GetString("ManageOptionalFeatures", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Messaging. + /// + internal static string Messaging { + get { + return ResourceManager.GetString("Messaging", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metered connection. + /// + internal static string MeteredConnection { + get { + return ResourceManager.GetString("MeteredConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microphone. + /// + internal static string Microphone { + get { + return ResourceManager.GetString("Microphone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Microsoft Mail Post Office. + /// + internal static string MicrosoftMailPostOffice { + get { + return ResourceManager.GetString("MicrosoftMailPostOffice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mlcfg32.cpl. + /// + internal static string mlcfg32_cpl { + get { + return ResourceManager.GetString("mlcfg32.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mmsys.cpl. + /// + internal static string mmsys_cpl { + get { + return ResourceManager.GetString("mmsys.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mobile devices. + /// + internal static string MobileDevices { + get { + return ResourceManager.GetString("MobileDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mobile hotspot. + /// + internal static string MobileHotspot { + get { + return ResourceManager.GetString("MobileHotspot", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to modem.cpl. + /// + internal static string modem_cpl { + get { + return ResourceManager.GetString("modem.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mono. + /// + internal static string Mono { + get { + return ResourceManager.GetString("Mono", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More details. + /// + internal static string MoreDetails { + get { + return ResourceManager.GetString("MoreDetails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Motion. + /// + internal static string Motion { + get { + return ResourceManager.GetString("Motion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mouse. + /// + internal static string Mouse { + get { + return ResourceManager.GetString("Mouse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mouse and touchpad. + /// + internal static string MouseAndTouchpad { + get { + return ResourceManager.GetString("MouseAndTouchpad", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mouse, Fonts, Keyboard, and Printers properties. + /// + internal static string MouseFontsKeyboardAndPrintersProperties { + get { + return ResourceManager.GetString("MouseFontsKeyboardAndPrintersProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mouse pointer. + /// + internal static string MousePointer { + get { + return ResourceManager.GetString("MousePointer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multimedia properties. + /// + internal static string MultimediaProperties { + get { + return ResourceManager.GetString("MultimediaProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multitasking. + /// + internal static string Multitasking { + get { + return ResourceManager.GetString("Multitasking", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Narrator. + /// + internal static string Narrator { + get { + return ResourceManager.GetString("Narrator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Navigation bar. + /// + internal static string NavigationBar { + get { + return ResourceManager.GetString("NavigationBar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to netcpl.cpl. + /// + internal static string netcpl_cpl { + get { + return ResourceManager.GetString("netcpl.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to netsetup.cpl. + /// + internal static string netsetup_cpl { + get { + return ResourceManager.GetString("netsetup.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network. + /// + internal static string Network { + get { + return ResourceManager.GetString("Network", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network and sharing center. + /// + internal static string NetworkAndSharingCenter { + get { + return ResourceManager.GetString("NetworkAndSharingCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network connection. + /// + internal static string NetworkConnection { + get { + return ResourceManager.GetString("NetworkConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network properties. + /// + internal static string NetworkProperties { + get { + return ResourceManager.GetString("NetworkProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network Setup Wizard. + /// + internal static string NetworkSetupWizard { + get { + return ResourceManager.GetString("NetworkSetupWizard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Network status. + /// + internal static string NetworkStatus { + get { + return ResourceManager.GetString("NetworkStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NFC. + /// + internal static string NFC { + get { + return ResourceManager.GetString("NFC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NFC Transactions. + /// + internal static string NFCTransactions { + get { + return ResourceManager.GetString("NFCTransactions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Night light. + /// + internal static string NightLight { + get { + return ResourceManager.GetString("NightLight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Night light settings. + /// + internal static string NightLightSettings { + get { + return ResourceManager.GetString("NightLightSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Note. + /// + internal 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.. + /// + internal 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.. + /// + internal 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.. + /// + internal 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.. + /// + internal static string NoteDeprecated17763 { + get { + return ResourceManager.GetString("NoteDeprecated17763", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only available if Dial is paired.. + /// + internal static string NoteDialPaired { + get { + return ResourceManager.GetString("NoteDialPaired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only available if DirectAccess is enabled.. + /// + internal 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.. + /// + internal static string NoteDisplayGraphics { + get { + return ResourceManager.GetString("NoteDisplayGraphics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only present if user is enrolled in WIP.. + /// + internal static string NoteEnrolledWIP { + get { + return ResourceManager.GetString("NoteEnrolledWIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Requires eyetracker hardware.. + /// + internal 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.. + /// + internal 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.. + /// + internal 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.. + /// + internal 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.. + /// + internal 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.. + /// + internal static string NoteMobileProvisioning { + get { + return ResourceManager.GetString("NoteMobileProvisioning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Added in Windows 10, version 1903 (build 18362).. + /// + internal static string NoteSince18362 { + get { + return ResourceManager.GetString("NoteSince18362", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Added in Windows 10, version 2004 (build 19041).. + /// + internal 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.. + /// + internal static string NoteThirdParty { + get { + return ResourceManager.GetString("NoteThirdParty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only available if touchpad hardware is present.. + /// + internal 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.. + /// + internal static string NoteWiFiAdapter { + get { + return ResourceManager.GetString("NoteWiFiAdapter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device must be Windows Anywhere-capable.. + /// + internal 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.. + /// + internal static string NoteWorkplaceProvisioning { + get { + return ResourceManager.GetString("NoteWorkplaceProvisioning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Notifications. + /// + internal static string Notifications { + get { + return ResourceManager.GetString("Notifications", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Notifications and actions. + /// + internal static string NotificationsAndActions { + get { + return ResourceManager.GetString("NotificationsAndActions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Num Lock. + /// + internal static string NumLock { + get { + return ResourceManager.GetString("NumLock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to nwc.cpl. + /// + internal static string nwc_cpl { + get { + return ResourceManager.GetString("nwc.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to odbccp32.cpl. + /// + internal static string odbccp32_cpl { + get { + return ResourceManager.GetString("odbccp32.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ODBC Data Source Administrator (32-bit). + /// + internal static string OdbcDataSourceAdministrator32Bit { + get { + return ResourceManager.GetString("OdbcDataSourceAdministrator32Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ODBC Data Source Administrator (64-bit). + /// + internal static string OdbcDataSourceAdministrator64Bit { + get { + return ResourceManager.GetString("OdbcDataSourceAdministrator64Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Offline files. + /// + internal static string OfflineFiles { + get { + return ResourceManager.GetString("OfflineFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Offline Maps. + /// + internal static string OfflineMaps { + get { + return ResourceManager.GetString("OfflineMaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Offline Maps - Download maps. + /// + internal static string OfflineMapsDownloadMaps { + get { + return ResourceManager.GetString("OfflineMapsDownloadMaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to On-Screen. + /// + internal static string OnScreen { + get { + return ResourceManager.GetString("OnScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OS. + /// + internal static string Os { + get { + return ResourceManager.GetString("Os", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other devices. + /// + internal static string OtherDevices { + get { + return ResourceManager.GetString("OtherDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other options. + /// + internal static string OtherOptions { + get { + return ResourceManager.GetString("OtherOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other users. + /// + internal static string OtherUsers { + get { + return ResourceManager.GetString("OtherUsers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parental controls. + /// + internal static string ParentalControls { + get { + return ResourceManager.GetString("ParentalControls", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to password.cpl. + /// + internal static string password_cpl { + get { + return ResourceManager.GetString("password.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password properties. + /// + internal static string PasswordProperties { + get { + return ResourceManager.GetString("PasswordProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pen and input devices. + /// + internal static string PenAndInputDevices { + get { + return ResourceManager.GetString("PenAndInputDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pen and touch. + /// + internal static string PenAndTouch { + get { + return ResourceManager.GetString("PenAndTouch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pen and Windows Ink. + /// + internal static string PenAndWindowsInk { + get { + return ResourceManager.GetString("PenAndWindowsInk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to People Near Me. + /// + internal static string PeopleNearMe { + get { + return ResourceManager.GetString("PeopleNearMe", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Performance information and tools. + /// + internal static string PerformanceInformationAndTools { + get { + return ResourceManager.GetString("PerformanceInformationAndTools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Permissions and history. + /// + internal static string PermissionsAndHistory { + get { + return ResourceManager.GetString("PermissionsAndHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Personalization (category). + /// + internal static string PersonalizationCategory { + get { + return ResourceManager.GetString("PersonalizationCategory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone. + /// + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone and modem. + /// + internal static string PhoneAndModem { + get { + return ResourceManager.GetString("PhoneAndModem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone and modem - Options. + /// + internal static string PhoneAndModemOptions { + get { + return ResourceManager.GetString("PhoneAndModemOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone calls. + /// + internal static string PhoneCalls { + get { + return ResourceManager.GetString("PhoneCalls", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone - Default apps. + /// + internal static string PhoneDefaultApps { + get { + return ResourceManager.GetString("PhoneDefaultApps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Picture. + /// + internal static string Picture { + get { + return ResourceManager.GetString("Picture", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pictures. + /// + internal static string Pictures { + get { + return ResourceManager.GetString("Pictures", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pinyin IME settings. + /// + internal static string PinyinImeSettings { + get { + return ResourceManager.GetString("PinyinImeSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pinyin IME settings - domain lexicon. + /// + internal static string PinyinImeSettingsDomainLexicon { + get { + return ResourceManager.GetString("PinyinImeSettingsDomainLexicon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pinyin IME settings - Key configuration. + /// + internal static string PinyinImeSettingsKeyConfiguration { + get { + return ResourceManager.GetString("PinyinImeSettingsKeyConfiguration", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pinyin IME settings - UDP. + /// + internal static string PinyinImeSettingsUdp { + get { + return ResourceManager.GetString("PinyinImeSettingsUdp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Playing a game full screen. + /// + internal static string PlayingGameFullScreen { + get { + return ResourceManager.GetString("PlayingGameFullScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plugin to search for Windows settings. + /// + internal static string PluginDescription { + get { + return ResourceManager.GetString("PluginDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows settings. + /// + internal static string PluginTitle { + get { + return ResourceManager.GetString("PluginTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Power and sleep. + /// + internal static string PowerAndSleep { + get { + return ResourceManager.GetString("PowerAndSleep", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to powercfg.cpl. + /// + internal static string powercfg_cpl { + get { + return ResourceManager.GetString("powercfg.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Power options. + /// + internal static string PowerOptions { + get { + return ResourceManager.GetString("PowerOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Presentation. + /// + internal static string Presentation { + get { + return ResourceManager.GetString("Presentation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Printers. + /// + internal static string Printers { + get { + return ResourceManager.GetString("Printers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Printers and scanners. + /// + internal static string PrintersAndScanners { + get { + return ResourceManager.GetString("PrintersAndScanners", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print screen. + /// + internal static string PrintScreen { + get { + return ResourceManager.GetString("PrintScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Problem reports and solutions. + /// + internal static string ProblemReportsAndSolutions { + get { + return ResourceManager.GetString("ProblemReportsAndSolutions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Processor. + /// + internal static string Processor { + get { + return ResourceManager.GetString("Processor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Programs and features. + /// + internal static string ProgramsAndFeatures { + get { + return ResourceManager.GetString("ProgramsAndFeatures", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Projecting to this PC. + /// + internal static string ProjectingToThisPc { + get { + return ResourceManager.GetString("ProjectingToThisPc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to protanopia. + /// + internal static string protanopia { + get { + return ResourceManager.GetString("protanopia", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Provisioning. + /// + internal static string Provisioning { + get { + return ResourceManager.GetString("Provisioning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proximity. + /// + internal static string Proximity { + get { + return ResourceManager.GetString("Proximity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy. + /// + internal static string Proxy { + get { + return ResourceManager.GetString("Proxy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quickime. + /// + internal static string Quickime { + get { + return ResourceManager.GetString("Quickime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quiet moments game. + /// + internal static string QuietMomentsGame { + get { + return ResourceManager.GetString("QuietMomentsGame", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Radios. + /// + internal static string Radios { + get { + return ResourceManager.GetString("Radios", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RAM. + /// + internal static string Ram { + get { + return ResourceManager.GetString("Ram", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recognition. + /// + internal static string Recognition { + get { + return ResourceManager.GetString("Recognition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recovery. + /// + internal static string Recovery { + get { + return ResourceManager.GetString("Recovery", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red eye. + /// + internal static string RedEye { + get { + return ResourceManager.GetString("RedEye", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red-green. + /// + internal static string RedGreen { + get { + return ResourceManager.GetString("RedGreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Red week. + /// + internal static string RedWeek { + get { + return ResourceManager.GetString("RedWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region. + /// + internal static string Region { + get { + return ResourceManager.GetString("Region", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Regional language. + /// + internal static string RegionalLanguage { + get { + return ResourceManager.GetString("RegionalLanguage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Regional settings properties. + /// + internal static string RegionalSettingsProperties { + get { + return ResourceManager.GetString("RegionalSettingsProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region and language. + /// + internal static string RegionAndLanguage { + get { + return ResourceManager.GetString("RegionAndLanguage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Region formatting. + /// + internal static string RegionFormatting { + get { + return ResourceManager.GetString("RegionFormatting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RemoteApp and desktop connections. + /// + internal static string RemoteAppAndDesktopConnections { + get { + return ResourceManager.GetString("RemoteAppAndDesktopConnections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote Desktop. + /// + internal static string RemoteDesktop { + get { + return ResourceManager.GetString("RemoteDesktop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scanners and cameras. + /// + internal static string ScannersAndCameras { + get { + return ResourceManager.GetString("ScannersAndCameras", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to schedtasks. + /// + internal static string schedtasks { + get { + return ResourceManager.GetString("schedtasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scheduled. + /// + internal static string Scheduled { + get { + return ResourceManager.GetString("Scheduled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scheduled tasks. + /// + internal static string ScheduledTasks { + get { + return ResourceManager.GetString("ScheduledTasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screen rotation. + /// + internal static string ScreenRotation { + get { + return ResourceManager.GetString("ScreenRotation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scroll bars. + /// + internal static string ScrollBars { + get { + return ResourceManager.GetString("ScrollBars", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scroll Lock. + /// + internal static string ScrollLock { + get { + return ResourceManager.GetString("ScrollLock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SDNS. + /// + internal static string Sdns { + get { + return ResourceManager.GetString("Sdns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Searching Windows. + /// + internal static string SearchingWindows { + get { + return ResourceManager.GetString("SearchingWindows", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SecureDNS. + /// + internal static string SecureDNS { + get { + return ResourceManager.GetString("SecureDNS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security Center. + /// + internal static string SecurityCenter { + get { + return ResourceManager.GetString("SecurityCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security Processor. + /// + internal static string SecurityProcessor { + get { + return ResourceManager.GetString("SecurityProcessor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Session cleanup. + /// + internal static string SessionCleanup { + get { + return ResourceManager.GetString("SessionCleanup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings home page. + /// + internal static string SettingsHomePage { + get { + return ResourceManager.GetString("SettingsHomePage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up a kiosk. + /// + internal static string SetUpKiosk { + get { + return ResourceManager.GetString("SetUpKiosk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shared experiences. + /// + internal static string SharedExperiences { + get { + return ResourceManager.GetString("SharedExperiences", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shortcuts. + /// + internal static string Shortcuts { + get { + return ResourceManager.GetString("Shortcuts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to wifi. + /// + internal static string ShortNameWiFi { + get { + return ResourceManager.GetString("ShortNameWiFi", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sign-in options. + /// + internal static string SignInOptions { + get { + return ResourceManager.GetString("SignInOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sign-in options - Dynamic lock. + /// + internal static string SignInOptionsDynamicLock { + get { + return ResourceManager.GetString("SignInOptionsDynamicLock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Size. + /// + internal static string Size { + get { + return ResourceManager.GetString("Size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sound. + /// + internal static string Sound { + get { + return ResourceManager.GetString("Sound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Speech. + /// + internal static string Speech { + get { + return ResourceManager.GetString("Speech", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Speech recognition. + /// + internal static string SpeechRecognition { + get { + return ResourceManager.GetString("SpeechRecognition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Speech typing. + /// + internal static string SpeechTyping { + get { + return ResourceManager.GetString("SpeechTyping", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start. + /// + internal static string Start { + get { + return ResourceManager.GetString("Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start places. + /// + internal static string StartPlaces { + get { + return ResourceManager.GetString("StartPlaces", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Startup apps. + /// + internal static string StartupApps { + get { + return ResourceManager.GetString("StartupApps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to sticpl.cpl. + /// + internal static string sticpl_cpl { + get { + return ResourceManager.GetString("sticpl.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Storage. + /// + internal static string Storage { + get { + return ResourceManager.GetString("Storage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Storage policies. + /// + internal static string StoragePolicies { + get { + return ResourceManager.GetString("StoragePolicies", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Storage Sense. + /// + internal static string StorageSense { + get { + return ResourceManager.GetString("StorageSense", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to in. + /// + internal static string SubtitlePreposition { + get { + return ResourceManager.GetString("SubtitlePreposition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sync center. + /// + internal static string SyncCenter { + get { + return ResourceManager.GetString("SyncCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sync your settings. + /// + internal static string SyncYourSettings { + get { + return ResourceManager.GetString("SyncYourSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to sysdm.cpl. + /// + internal static string sysdm_cpl { + get { + return ResourceManager.GetString("sysdm.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System. + /// + internal static string System { + get { + return ResourceManager.GetString("System", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System properties and Add New Hardware wizard. + /// + internal static string SystemPropertiesAndAddNewHardwareWizard { + get { + return ResourceManager.GetString("SystemPropertiesAndAddNewHardwareWizard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tab. + /// + internal static string Tab { + get { + return ResourceManager.GetString("Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tablet mode. + /// + internal static string TabletMode { + get { + return ResourceManager.GetString("TabletMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tablet PC settings. + /// + internal static string TabletPcSettings { + get { + return ResourceManager.GetString("TabletPcSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Talk. + /// + internal static string Talk { + get { + return ResourceManager.GetString("Talk", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Talk to Cortana. + /// + internal static string TalkToCortana { + get { + return ResourceManager.GetString("TalkToCortana", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Taskbar. + /// + internal static string Taskbar { + get { + return ResourceManager.GetString("Taskbar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Taskbar color. + /// + internal static string TaskbarColor { + get { + return ResourceManager.GetString("TaskbarColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tasks. + /// + internal static string Tasks { + get { + return ResourceManager.GetString("Tasks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Team Conferencing. + /// + internal static string TeamConferencing { + get { + return ResourceManager.GetString("TeamConferencing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Team device management. + /// + internal static string TeamDeviceManagement { + get { + return ResourceManager.GetString("TeamDeviceManagement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text to speech. + /// + internal static string TextToSpeech { + get { + return ResourceManager.GetString("TextToSpeech", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Themes. + /// + internal static string Themes { + get { + return ResourceManager.GetString("Themes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to themes.cpl. + /// + internal static string themes_cpl { + get { + return ResourceManager.GetString("themes.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to timedate.cpl. + /// + internal static string timedate_cpl { + get { + return ResourceManager.GetString("timedate.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Timeline. + /// + internal static string Timeline { + get { + return ResourceManager.GetString("Timeline", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Touch. + /// + internal static string Touch { + get { + return ResourceManager.GetString("Touch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Touch feedback. + /// + internal static string TouchFeedback { + get { + return ResourceManager.GetString("TouchFeedback", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Touchpad. + /// + internal static string Touchpad { + get { + return ResourceManager.GetString("Touchpad", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Transparency. + /// + internal static string Transparency { + get { + return ResourceManager.GetString("Transparency", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to tritanopia. + /// + internal static string tritanopia { + get { + return ResourceManager.GetString("tritanopia", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Troubleshoot. + /// + internal static string Troubleshoot { + get { + return ResourceManager.GetString("Troubleshoot", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TruePlay. + /// + internal static string TruePlay { + get { + return ResourceManager.GetString("TruePlay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Typing. + /// + internal static string Typing { + get { + return ResourceManager.GetString("Typing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uninstall. + /// + internal static string Uninstall { + get { + return ResourceManager.GetString("Uninstall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to USB. + /// + internal static string Usb { + get { + return ResourceManager.GetString("Usb", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User accounts. + /// + internal static string UserAccounts { + get { + return ResourceManager.GetString("UserAccounts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version. + /// + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Video playback. + /// + internal static string VideoPlayback { + get { + return ResourceManager.GetString("VideoPlayback", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Videos. + /// + internal static string Videos { + get { + return ResourceManager.GetString("Videos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Virtual Desktops. + /// + internal static string VirtualDesktops { + get { + return ResourceManager.GetString("VirtualDesktops", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Virus. + /// + internal static string Virus { + get { + return ResourceManager.GetString("Virus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Voice activation. + /// + internal static string VoiceActivation { + get { + return ResourceManager.GetString("VoiceActivation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Volume. + /// + internal static string Volume { + get { + return ResourceManager.GetString("Volume", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VPN. + /// + internal static string Vpn { + get { + return ResourceManager.GetString("Vpn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wallpaper. + /// + internal static string Wallpaper { + get { + return ResourceManager.GetString("Wallpaper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warmer color. + /// + internal static string WarmerColor { + get { + return ResourceManager.GetString("WarmerColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Welcome center. + /// + internal static string WelcomeCenter { + get { + return ResourceManager.GetString("WelcomeCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Welcome screen. + /// + internal static string WelcomeScreen { + get { + return ResourceManager.GetString("WelcomeScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to wgpocpl.cpl. + /// + internal static string wgpocpl_cpl { + get { + return ResourceManager.GetString("wgpocpl.cpl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wheel. + /// + internal static string Wheel { + get { + return ResourceManager.GetString("Wheel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wi-Fi. + /// + internal static string WiFi { + get { + return ResourceManager.GetString("WiFi", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wi-Fi Calling. + /// + internal static string WiFiCalling { + get { + return ResourceManager.GetString("WiFiCalling", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wi-Fi settings. + /// + internal static string WiFiSettings { + get { + return ResourceManager.GetString("WiFiSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Window border. + /// + internal static string WindowBorder { + get { + return ResourceManager.GetString("WindowBorder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Anytime Upgrade. + /// + internal static string WindowsAnytimeUpgrade { + get { + return ResourceManager.GetString("WindowsAnytimeUpgrade", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Anywhere. + /// + internal static string WindowsAnywhere { + get { + return ResourceManager.GetString("WindowsAnywhere", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows CardSpace. + /// + internal static string WindowsCardSpace { + get { + return ResourceManager.GetString("WindowsCardSpace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Defender. + /// + internal static string WindowsDefender { + get { + return ResourceManager.GetString("WindowsDefender", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Firewall. + /// + internal static string WindowsFirewall { + get { + return ResourceManager.GetString("WindowsFirewall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Hello setup - Face. + /// + internal static string WindowsHelloSetupFace { + get { + return ResourceManager.GetString("WindowsHelloSetupFace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Hello setup - Fingerprint. + /// + internal static string WindowsHelloSetupFingerprint { + get { + return ResourceManager.GetString("WindowsHelloSetupFingerprint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Insider Program. + /// + internal static string WindowsInsiderProgram { + get { + return ResourceManager.GetString("WindowsInsiderProgram", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Mobility Center. + /// + internal static string WindowsMobilityCenter { + get { + return ResourceManager.GetString("WindowsMobilityCenter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows search. + /// + internal static string WindowsSearch { + get { + return ResourceManager.GetString("WindowsSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Security. + /// + internal static string WindowsSecurity { + get { + return ResourceManager.GetString("WindowsSecurity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Update. + /// + internal static string WindowsUpdate { + get { + return ResourceManager.GetString("WindowsUpdate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Update - Advanced options. + /// + internal static string WindowsUpdateAdvancedOptions { + get { + return ResourceManager.GetString("WindowsUpdateAdvancedOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Update - Check for updates. + /// + internal static string WindowsUpdateCheckForUpdates { + get { + return ResourceManager.GetString("WindowsUpdateCheckForUpdates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Update - Restart options. + /// + internal static string WindowsUpdateRestartOptions { + get { + return ResourceManager.GetString("WindowsUpdateRestartOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Update - View optional updates. + /// + internal static string WindowsUpdateViewOptionalUpdates { + get { + return ResourceManager.GetString("WindowsUpdateViewOptionalUpdates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Update - View update history. + /// + internal static string WindowsUpdateViewUpdateHistory { + get { + return ResourceManager.GetString("WindowsUpdateViewUpdateHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wireless. + /// + internal static string Wireless { + get { + return ResourceManager.GetString("Wireless", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Workplace. + /// + internal static string Workplace { + get { + return ResourceManager.GetString("Workplace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Workplace provisioning. + /// + internal static string WorkplaceProvisioning { + get { + return ResourceManager.GetString("WorkplaceProvisioning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wubi IME settings. + /// + internal static string WubiImeSettings { + get { + return ResourceManager.GetString("WubiImeSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wubi IME settings - UDP. + /// + internal static string WubiImeSettingsUdp { + get { + return ResourceManager.GetString("WubiImeSettingsUdp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Xbox Networking. + /// + internal static string XboxNetworking { + get { + return ResourceManager.GetString("XboxNetworking", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your info. + /// + internal static string YourInfo { + get { + return ResourceManager.GetString("YourInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zoom. + /// + internal static string Zoom { + get { + return ResourceManager.GetString("Zoom", resourceCulture); + } + } + } +} diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx new file mode 100644 index 00000000000..6bb283e7b9a --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx @@ -0,0 +1,1739 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + About + Area System + + + access.cpl + File name, Should not translated + + + Accessibility Options + Area Control Panel (legacy settings) + + + Accessory apps + Area Privacy + + + Access work or school + Area UserAccounts + + + Account info + Area Privacy + + + Accounts + Area SurfaceHub + + + Action Center + Area Control Panel (legacy settings) + + + Activation + Area UpdateAndSecurity + + + Activity history + Area Privacy + + + Add Hardware + Area Control Panel (legacy settings) + + + Add/Remove Programs + Area Control Panel (legacy settings) + + + Add your phone + Area Phone + + + Administrative Tools + Area System + + + Advanced display settings + Area System, only available on devices that support advanced display options + + + Advanced graphics + + + Advertising ID + Area Privacy, Deprecated in Windows 10, version 1809 and later + + + Airplane mode + Area NetworkAndInternet + + + Alt+Tab + Means the key combination "Tabulator+Alt" on the keyboard + + + Alternative names + + + Animations + + + App color + + + App diagnostics + Area Privacy + + + App features + Area Apps + + + App + Short/modern name for application + + + Apps and Features + Area Apps + + + System settings + Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. + + + Apps for websites + Area Apps + + + App volume and device preferences + Area System, Added in Windows 10, version 1903 + + + appwiz.cpl + File name, Should not translated + + + Area + Mean the settings area or settings category + + + Accounts + + + Administrative Tools + Area Control Panel (legacy settings) + + + Appearance and Personalization + + + Apps + + + Clock and Region + + + Control Panel + + + Cortana + + + Devices + + + Ease of access + + + Extras + + + Gaming + + + Hardware and Sound + + + Home page + + + Mixed reality + + + Network and Internet + + + Personalization + + + Phone + + + Privacy + + + Programs + + + SurfaceHub + + + System + + + System and Security + + + Time and language + + + Update and security + + + User accounts + + + Assigned access + + + Audio + Area EaseOfAccess + + + Audio alerts + + + Audio and speech + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + Automatic file downloads + Area Privacy + + + AutoPlay + Area Device + + + Background + Area Personalization + + + Background Apps + Area Privacy + + + Backup + Area UpdateAndSecurity + + + Backup and Restore + Area Control Panel (legacy settings) + + + Battery Saver + Area System, only available on devices that have a battery, such as a tablet + + + Battery Saver settings + Area System, only available on devices that have a battery, such as a tablet + + + Battery saver usage details + + + Battery use + Area System, only available on devices that have a battery, such as a tablet + + + Biometric Devices + Area Control Panel (legacy settings) + + + BitLocker Drive Encryption + Area Control Panel (legacy settings) + + + Blue light + + + Bluetooth + Area Device + + + Bluetooth devices + Area Control Panel (legacy settings) + + + Blue-yellow + + + Bopomofo IME + Area TimeAndLanguage + + + bpmf + Should not translated + + + Broadcasting + Area Gaming + + + Calendar + Area Privacy + + + Call history + Area Privacy + + + calling + + + Camera + Area Privacy + + + Cangjie IME + Area TimeAndLanguage + + + Caps Lock + Mean the "Caps Lock" key + + + Cellular and SIM + Area NetworkAndInternet + + + Choose which folders appear on Start + Area Personalization + + + Client service for NetWare + Area Control Panel (legacy settings) + + + Clipboard + Area System + + + Closed captions + Area EaseOfAccess + + + Color filters + Area EaseOfAccess + + + Color management + Area Control Panel (legacy settings) + + + Colors + Area Personalization + + + Command + The command to direct start a setting + + + Connected Devices + Area Device + + + Contacts + Area Privacy + + + Control Panel + Type of the setting is a "(legacy) Control Panel setting" + + + Copy command + + + Core Isolation + Means the protection of the system core + + + Cortana + Area Cortana + + + Cortana across my devices + Area Cortana + + + Cortana - Language + Area Cortana + + + Credential manager + Area Control Panel (legacy settings) + + + Crossdevice + + + Custom devices + + + Dark color + + + Dark mode + + + Data usage + Area NetworkAndInternet + + + Date and time + Area TimeAndLanguage + + + Default apps + Area Apps + + + Default camera + Area Device + + + Default location + Area Control Panel (legacy settings) + + + Default programs + Area Control Panel (legacy settings) + + + Default Save Locations + Area System + + + Delivery Optimization + Area UpdateAndSecurity + + + desk.cpl + File name, Should not translated + + + Desktop themes + Area Control Panel (legacy settings) + + + deuteranopia + Medical: Mean you don't can see red colors + + + Device manager + Area Control Panel (legacy settings) + + + Devices and printers + Area Control Panel (legacy settings) + + + DHCP + Should not translated + + + Dial-up + Area NetworkAndInternet + + + Direct access + Area NetworkAndInternet, only available if DirectAccess is enabled + + + Direct open your phone + Area EaseOfAccess + + + Display + Area EaseOfAccess + + + Display properties + Area Control Panel (legacy settings) + + + DNS + Should not translated + + + Documents + Area Privacy + + + Duplicating my display + Area System + + + During these hours + Area System + + + Ease of access center + Area Control Panel (legacy settings) + + + Edition + Means the "Windows Edition" + + + Email + Area Privacy + + + Email and app accounts + Area UserAccounts + + + Encryption + Area System + + + Environment + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + Ethernet + Area NetworkAndInternet + + + Exploit Protection + + + Extras + Area Extra, , only used for setting of 3rd-Party tools + + + Eye control + Area EaseOfAccess + + + Eye tracker + Area Privacy, requires eyetracker hardware + + + Family and other people + Area UserAccounts + + + Feedback and diagnostics + Area Privacy + + + File system + Area Privacy + + + FindFast + Area Control Panel (legacy settings) + + + findfast.cpl + File name, Should not translated + + + Find My Device + Area UpdateAndSecurity + + + Firewall + + + Focus assist - Quiet hours + Area System + + + Focus assist - Quiet moments + Area System + + + Folder options + Area Control Panel (legacy settings) + + + Fonts + Area EaseOfAccess + + + For developers + Area UpdateAndSecurity + + + Game bar + Area Gaming + + + Game controllers + Area Control Panel (legacy settings) + + + Game DVR + Area Gaming + + + Game Mode + Area Gaming + + + Gateway + Should not translated + + + General + Area Privacy + + + Get programs + Area Control Panel (legacy settings) + + + Getting started + Area Control Panel (legacy settings) + + + Glance + Area Personalization, Deprecated in Windows 10, version 1809 and later + + + Graphics settings + Area System + + + Grayscale + + + Green week + Mean you don't can see green colors + + + Headset display + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + High contrast + Area EaseOfAccess + + + Holographic audio + + + Holographic Environment + + + Holographic Headset + + + Holographic Management + + + Home group + Area Control Panel (legacy settings) + + + ID + MEans The "Windows Identifier" + + + Image + + + Indexing options + Area Control Panel (legacy settings) + + + inetcpl.cpl + File name, Should not translated + + + Infrared + Area Control Panel (legacy settings) + + + Inking and typing + Area Privacy + + + Internet options + Area Control Panel (legacy settings) + + + intl.cpl + File name, Should not translated + + + Inverted colors + + + IP + Should not translated + + + Isolated Browsing + + + Japan IME settings + Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed + + + joy.cpl + File name, Should not translated + + + Joystick properties + Area Control Panel (legacy settings) + + + jpnime + Should not translated + + + Keyboard + Area EaseOfAccess + + + Keypad + + + Keys + + + Language + Area TimeAndLanguage + + + Light color + + + Light mode + + + Location + Area Privacy + + + Lock screen + Area Personalization + + + Magnifier + Area EaseOfAccess + + + Mail - Microsoft Exchange or Windows Messaging + Area Control Panel (legacy settings) + + + main.cpl + File name, Should not translated + + + Manage known networks + Area NetworkAndInternet + + + Manage optional features + Area Apps + + + Messaging + Area Privacy + + + Metered connection + + + Microphone + Area Privacy + + + Microsoft Mail Post Office + Area Control Panel (legacy settings) + + + mlcfg32.cpl + File name, Should not translated + + + mmsys.cpl + File name, Should not translated + + + Mobile devices + + + Mobile hotspot + Area NetworkAndInternet + + + modem.cpl + File name, Should not translated + + + Mono + + + More details + Area Cortana + + + Motion + Area Privacy + + + Mouse + Area EaseOfAccess + + + Mouse and touchpad + Area Device + + + Mouse, Fonts, Keyboard, and Printers properties + Area Control Panel (legacy settings) + + + Mouse pointer + Area EaseOfAccess + + + Multimedia properties + Area Control Panel (legacy settings) + + + Multitasking + Area System + + + Narrator + Area EaseOfAccess + + + Navigation bar + Area Personalization + + + netcpl.cpl + File name, Should not translated + + + netsetup.cpl + File name, Should not translated + + + Network + Area NetworkAndInternet + + + Network and sharing center + Area Control Panel (legacy settings) + + + Network connection + Area Control Panel (legacy settings) + + + Network properties + Area Control Panel (legacy settings) + + + Network Setup Wizard + Area Control Panel (legacy settings) + + + Network status + Area NetworkAndInternet + + + NFC + Area NetworkAndInternet + + + NFC Transactions + "NFC should not translated" + + + Night light + + + Night light settings + Area System + + + Note + + + Only available when you have connected a mobile device to your device. + + + Only available on devices that support advanced graphics options. + + + Only available on devices that have a battery, such as a tablet. + + + Deprecated in Windows 10, version 1809 (build 17763) and later. + + + Only available if Dial is paired. + + + Only available if DirectAccess is enabled. + + + Only available on devices that support advanced display options. + + + Only present if user is enrolled in WIP. + + + Requires eyetracker hardware. + + + Available if the Microsoft Japan input method editor is installed. + + + Available if the Microsoft Pinyin input method editor is installed. + + + Available if the Microsoft Wubi input method editor is installed. + + + Only available if the Mixed Reality Portal app is installed. + + + Only available on mobile and if the enterprise has deployed a provisioning package. + + + Added in Windows 10, version 1903 (build 18362). + + + Added in Windows 10, version 2004 (build 19041). + + + Only available if "settings apps" are installed, for example, by a 3rd party. + + + Only available if touchpad hardware is present. + + + Only available if the device has a Wi-Fi adapter. + + + Device must be Windows Anywhere-capable. + + + Only available if enterprise has deployed a provisioning package. + + + Notifications + Area Privacy + + + Notifications and actions + Area System + + + Num Lock + Mean the "Num Lock" key + + + nwc.cpl + File name, Should not translated + + + odbccp32.cpl + File name, Should not translated + + + ODBC Data Source Administrator (32-bit) + Area Control Panel (legacy settings) + + + ODBC Data Source Administrator (64-bit) + Area Control Panel (legacy settings) + + + Offline files + Area Control Panel (legacy settings) + + + Offline Maps + Area Apps + + + Offline Maps - Download maps + Area Apps + + + On-Screen + + + OS + Means the "Operating System" + + + Other devices + Area Privacy + + + Other options + Area EaseOfAccess + + + Other users + + + Parental controls + Area Control Panel (legacy settings) + + + Password + + + password.cpl + File name, Should not translated + + + Password properties + Area Control Panel (legacy settings) + + + Pen and input devices + Area Control Panel (legacy settings) + + + Pen and touch + Area Control Panel (legacy settings) + + + Pen and Windows Ink + Area Device + + + People Near Me + Area Control Panel (legacy settings) + + + Performance information and tools + Area Control Panel (legacy settings) + + + Permissions and history + Area Cortana + + + Personalization (category) + Area Personalization + + + Phone + Area Phone + + + Phone and modem + Area Control Panel (legacy settings) + + + Phone and modem - Options + Area Control Panel (legacy settings) + + + Phone calls + Area Privacy + + + Phone - Default apps + Area System + + + Picture + + + Pictures + Area Privacy + + + Pinyin IME settings + Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installed + + + Pinyin IME settings - domain lexicon + Area TimeAndLanguage + + + Pinyin IME settings - Key configuration + Area TimeAndLanguage + + + Pinyin IME settings - UDP + Area TimeAndLanguage + + + Playing a game full screen + Area Gaming + + + Plugin to search for Windows settings + + + Windows settings + + + Power and sleep + Area System + + + powercfg.cpl + File name, Should not translated + + + Power options + Area Control Panel (legacy settings) + + + Presentation + + + Printers + Area Control Panel (legacy settings) + + + Printers and scanners + Area Device + + + Print screen + Mean the "Print screen" key + + + Problem reports and solutions + Area Control Panel (legacy settings) + + + Processor + + + Programs and features + Area Control Panel (legacy settings) + + + Projecting to this PC + Area System + + + protanopia + Medical: Mean you don't can see green colors + + + Provisioning + Area UserAccounts, only available if enterprise has deployed a provisioning package + + + Proximity + Area NetworkAndInternet + + + Proxy + Area NetworkAndInternet + + + Quickime + Area TimeAndLanguage + + + Quiet moments game + + + Radios + Area Privacy + + + RAM + Means the Read-Access-Memory (typical the used to inform about the size) + + + Recognition + + + Recovery + Area UpdateAndSecurity + + + Red eye + Mean red eye effect by over-the-night flights + + + Red-green + Mean the weakness you can't differ between red and green colors + + + Red week + Mean you don't can see red colors + + + Region + Area TimeAndLanguage + + + Regional language + Area TimeAndLanguage + + + Regional settings properties + Area Control Panel (legacy settings) + + + Region and language + Area Control Panel (legacy settings) + + + Region formatting + + + RemoteApp and desktop connections + Area Control Panel (legacy settings) + + + Remote Desktop + Area System + + + Scanners and cameras + Area Control Panel (legacy settings) + + + schedtasks + File name, Should not translated + + + Scheduled + + + Scheduled tasks + Area Control Panel (legacy settings) + + + Screen rotation + Area System + + + Scroll bars + + + Scroll Lock + Mean the "Scroll Lock" key + + + SDNS + Should not translated + + + Searching Windows + Area Cortana + + + SecureDNS + Should not translated + + + Security Center + Area Control Panel (legacy settings) + + + Security Processor + + + Session cleanup + Area SurfaceHub + + + Settings home page + Area Home, Overview-page for all areas of settings + + + Set up a kiosk + Area UserAccounts + + + Shared experiences + Area System + + + Shortcuts + + + wifi + dont translate this, is a short term to find entries + + + Sign-in options + Area UserAccounts + + + Sign-in options - Dynamic lock + Area UserAccounts + + + Size + Size for text and symbols + + + Sound + Area System + + + Speech + Area EaseOfAccess + + + Speech recognition + Area Control Panel (legacy settings) + + + Speech typing + + + Start + Area Personalization + + + Start places + + + Startup apps + Area Apps + + + sticpl.cpl + File name, Should not translated + + + Storage + Area System + + + Storage policies + Area System + + + Storage Sense + Area System + + + in + Example: Area "System" in System settings + + + Sync center + Area Control Panel (legacy settings) + + + Sync your settings + Area UserAccounts + + + sysdm.cpl + File name, Should not translated + + + System + Area Control Panel (legacy settings) + + + System properties and Add New Hardware wizard + Area Control Panel (legacy settings) + + + Tab + Means the key "Tabulator" on the keyboard + + + Tablet mode + Area System + + + Tablet PC settings + Area Control Panel (legacy settings) + + + Talk + + + Talk to Cortana + Area Cortana + + + Taskbar + Area Personalization + + + Taskbar color + + + Tasks + Area Privacy + + + Team Conferencing + Area SurfaceHub + + + Team device management + Area SurfaceHub + + + Text to speech + Area Control Panel (legacy settings) + + + Themes + Area Personalization + + + themes.cpl + File name, Should not translated + + + timedate.cpl + File name, Should not translated + + + Timeline + + + Touch + + + Touch feedback + + + Touchpad + Area Device + + + Transparency + + + tritanopia + Medical: Mean you don't can see yellow and blue colors + + + Troubleshoot + Area UpdateAndSecurity + + + TruePlay + Area Gaming + + + Typing + Area Device + + + Uninstall + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + USB + Area Device + + + User accounts + Area Control Panel (legacy settings) + + + Version + Means The "Windows Version" + + + Video playback + Area Apps + + + Videos + Area Privacy + + + Virtual Desktops + + + Virus + Means the virus in computers and software + + + Voice activation + Area Privacy + + + Volume + + + VPN + Area NetworkAndInternet + + + Wallpaper + + + Warmer color + + + Welcome center + Area Control Panel (legacy settings) + + + Welcome screen + Area SurfaceHub + + + wgpocpl.cpl + File name, Should not translated + + + Wheel + Area Device + + + Wi-Fi + Area NetworkAndInternet, only available if Wi-Fi calling is enabled + + + Wi-Fi Calling + Area NetworkAndInternet, only available if Wi-Fi calling is enabled + + + Wi-Fi settings + "Wi-Fi" should not translated + + + Window border + + + Windows Anytime Upgrade + Area Control Panel (legacy settings) + + + Windows Anywhere + Area UserAccounts, device must be Windows Anywhere-capable + + + Windows CardSpace + Area Control Panel (legacy settings) + + + Windows Defender + Area Control Panel (legacy settings) + + + Windows Firewall + Area Control Panel (legacy settings) + + + Windows Hello setup - Face + Area UserAccounts + + + Windows Hello setup - Fingerprint + Area UserAccounts + + + Windows Insider Program + Area UpdateAndSecurity + + + Windows Mobility Center + Area Control Panel (legacy settings) + + + Windows search + Area Cortana + + + Windows Security + Area UpdateAndSecurity + + + Windows Update + Area UpdateAndSecurity + + + Windows Update - Advanced options + Area UpdateAndSecurity + + + Windows Update - Check for updates + Area UpdateAndSecurity + + + Windows Update - Restart options + Area UpdateAndSecurity + + + Windows Update - View optional updates + Area UpdateAndSecurity + + + Windows Update - View update history + Area UpdateAndSecurity + + + Wireless + + + Workplace + + + Workplace provisioning + Area UserAccounts + + + Wubi IME settings + Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed + + + Wubi IME settings - UDP + Area TimeAndLanguage + + + Xbox Networking + Area Gaming + + + Your info + Area UserAccounts + + + Zoom + Mean zooming of things via a magnifier + + \ No newline at end of file diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json new file mode 100644 index 00000000000..82c8d8f14fa --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json @@ -0,0 +1,1739 @@ +[ + { + "Name": "AccessWorkOrSchool", + "Area": "Accounts", + "Type": "AppSettingsApp", + "AltNames": [ "Workplace" ], + "Command": "ms-settings:workplace" + }, + { + "Name": "EmailAndAppAccounts", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:emailandaccounts" + }, + { + "Name": "FamilyAndOtherPeople", + "Area": "Accounts", + "Type": "AppSettingsApp", + "AltNames": [ "OtherUsers" ], + "Command": "ms-settings:otherusers" + }, + { + "Name": "SetUpKiosk", + "Area": "Accounts", + "Type": "AppSettingsApp", + "AltNames": [ "AssignedAccess" ], + "Command": "ms-settings:assignedaccess" + }, + { + "Name": "SignInOptions", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:signinoptions" + }, + { + "Name": "SignInOptionsDynamicLock", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:signinoptions-dynamiclock" + }, + { + "Name": "SyncYourSettings", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:sync" + }, + { + "Name": "WindowsHelloSetupFace", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:signinoptions-launchfaceenrollment" + }, + { + "Name": "WindowsHelloSetupFingerprint", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:signinoptions-launchfingerprintenrollment" + }, + { + "Name": "YourInfo", + "Area": "Accounts", + "Type": "AppSettingsApp", + "Command": "ms-settings:yourinfo" + }, + { + "Name": "AppsAndFeatures", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:appsfeatures" + }, + { + "Name": "AppFeatures", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:appsfeatures-app" + }, + { + "Name": "AppsForWebsites", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:appsforwebsites" + }, + { + "Name": "DefaultApps", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:defaultapps" + }, + { + "Name": "ManageOptionalFeatures", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:optionalfeatures" + }, + { + "Name": "OfflineMaps", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:maps" + }, + { + "Name": "OfflineMapsDownloadMaps", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:maps-downloadmaps" + }, + { + "Name": "StartupApps", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:startupapps" + }, + { + "Name": "VideoPlayback", + "Area": "Apps", + "Type": "AppSettingsApp", + "Command": "ms-settings:videoplayback" + }, + { + "Name": "Notifications", + "Area": "Cortana", + "Type": "AppSettingsApp", + "Command": "ms-settings:cortana-notifications" + }, + { + "Name": "MoreDetails", + "Area": "Cortana", + "Type": "AppSettingsApp", + "Command": "ms-settings:cortana-moredetails" + }, + { + "Name": "PermissionsAndHistory", + "Area": "Cortana", + "Type": "AppSettingsApp", + "Command": "ms-settings:cortana-permissions" + }, + { + "Name": "WindowsSearch", + "Area": "Cortana", + "Type": "AppSettingsApp", + "Command": "ms-settings:cortana-windowssearch" + }, + { + "Name": "CortanaLanguage", + "Area": "Cortana", + "Type": "AppSettingsApp", + "AltNames": [ "Talk" ], + "Command": "ms-settings:cortana-language" + }, + { + "Name": "Cortana", + "Area": "Cortana", + "Type": "AppSettingsApp", + "Command": "ms-settings:cortana" + }, + { + "Name": "TalkToCortana", + "Area": "Cortana", + "Type": "AppSettingsApp", + "Command": "ms-settings:cortana-talktocortana" + }, + { + "Name": "AutoPlay", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:autoplay" + }, + { + "Name": "Bluetooth", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:bluetooth" + }, + { + "Name": "ConnectedDevices", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:connecteddevices" + }, + { + "Name": "DefaultCamera", + "Area": "Devices", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:camera" + }, + { + "Name": "MouseAndTouchpad", + "Area": "Devices", + "Type": "AppSettingsApp", + "Note": "NoteTouchpad", + "Command": "ms-settings:mousetouchpad" + }, + { + "Name": "PenAndWindowsInk", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:pen" + }, + { + "Name": "PrintersAndScanners", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:printers" + }, + { + "Name": "Touchpad", + "Area": "Devices", + "Type": "AppSettingsApp", + "Note": "NoteTouchpad", + "Command": "ms-settings:devices-touchpad" + }, + { + "Name": "Typing", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:typing" + }, + { + "Name": "Usb", + "Area": "Devices", + "Type": "AppSettingsApp", + "Command": "ms-settings:usb" + }, + { + "Name": "Wheel", + "Area": "Devices", + "Type": "AppSettingsApp", + "Note": "NoteDialPaired", + "Command": "ms-settings:wheel" + }, + { + "Name": "Phone", + "Area": "Phone", + "Type": "AppSettingsApp", + "AltNames": [ "MobileDevices" ], + "Command": "ms-settings:mobile-devices" + }, + { + "Name": "Audio", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "Mono", "Volume", "AudioAlerts" ], + "Command": "ms-settings:easeofaccess-audio" + }, + { + "Name": "ClosedCaptions", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "Command": "ms-settings:easeofaccess-closedcaptioning" + }, + { + "Name": "ColorFilters", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "InvertedColors", "Grayscale", "RedGreen", "BlueYellow", "GreenWeek", "RedWeek", "deuteranopia", "protanopia", "tritanopia" ], + "Command": "ms-settings:easeofaccess-colorfilter" + }, + { + "Name": "MousePointer", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "TouchFeedback" ], + "Command": "ms-settings:easeofaccess-MousePointer" + }, + { + "Name": "Display", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "Transparency", "Animations", "ScrollBars", "Size" ], + "Command": "ms-settings:easeofaccess-display" + }, + { + "Name": "EyeControl", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "Command": "ms-settings:easeofaccess-eyecontrol" + }, + { + "Name": "Fonts", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:fonts" + }, + { + "Name": "HighContrast", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "Command": "ms-settings:easeofaccess-highcontrast" + }, + { + "Name": "Keyboard", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "PrintScreen", "Shortcuts", "OnScreen", "Keys", "ScrollLock", "CapsLock", "NumLock" ], + "Command": "ms-settings:easeofaccess-keyboard" + }, + { + "Name": "Magnifier", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "Zoom" ], + "Command": "ms-settings:easeofaccess-magnifier" + }, + { + "Name": "Mouse", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "Keypad", "Touch" ], + "Command": "ms-settings:easeofaccess-mouse" + }, + { + "Name": "Narrator", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "Command": "ms-settings:easeofaccess-narrator" + }, + { + "Name": "OtherOptions", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:easeofaccess-otheroptions" + }, + { + "Name": "Speech", + "Area": "EaseOfAccess", + "Type": "AppSettingsApp", + "AltNames": [ "Recognition", "Talk" ], + "Command": "ms-settings:easeofaccess-speechrecognition" + }, + { + "Name": "Extras", + "Area": "Extras", + "Type": "AppSettingsApp", + "Note": "NoteThirdParty", + "Command": "ms-settings:extras" + }, + { + "Name": "Broadcasting", + "Area": "Gaming", + "Type": "AppSettingsApp", + "Command": "ms-settings:gaming-broadcasting" + }, + { + "Name": "GameBar", + "Area": "Gaming", + "Type": "AppSettingsApp", + "Command": "ms-settings:gaming-gamebar" + }, + { + "Name": "GameDvr", + "Area": "Gaming", + "Type": "AppSettingsApp", + "Command": "ms-settings:gaming-gamedvr" + }, + { + "Name": "GameMode", + "Area": "Gaming", + "Type": "AppSettingsApp", + "Command": "ms-settings:gaming-gamemode" + }, + { + "Name": "PlayingGameFullScreen", + "Area": "Gaming", + "Type": "AppSettingsApp", + "AltNames": [ "QuietMomentsGame" ], + "Command": "ms-settings:quietmomentsgame" + }, + { + "Name": "TruePlay", + "Area": "Gaming", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:gaming-trueplay" + }, + { + "Name": "XboxNetworking", + "Area": "Gaming", + "Type": "AppSettingsApp", + "Command": "ms-settings:gaming-xboxnetworking" + }, + { + "Name": "SettingsHomePage", + "Area": "HomePage", + "Type": "AppSettingsApp", + "Command": "ms-settings:" + }, + { + "Name": "AudioAndSpeech", + "Area": "MixedReality", + "Type": "AppSettingsApp", + "AltNames": [ "HolographicAudio" ], + "Note": "NoteMixedReality", + "Command": "ms-settings:holographic-audio" + }, + { + "Name": "Environment", + "Area": "MixedReality", + "Type": "AppSettingsApp", + "AltNames": [ "HolographicEnvironment" ], + "Note": "NoteMixedReality", + "Command": "ms-settings:privacy-holographic-environment" + }, + { + "Name": "HeadsetDisplay", + "Area": "MixedReality", + "Type": "AppSettingsApp", + "AltNames": [ "HolographicHeadset" ], + "Note": "NoteMixedReality", + "Command": "ms-settings:holographic-headset" + }, + { + "Name": "Uninstall", + "Area": "MixedReality", + "Type": "AppSettingsApp", + "AltNames": [ "HolographicManagement" ], + "Note": "NoteMixedReality", + "Command": "ms-settings:holographic-management" + }, + { + "Name": "AirplaneMode", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-airplanemode" + }, + { + "Name": "Proximity", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:proximity" + }, + { + "Name": "CellularAndSim", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-cellular" + }, + { + "Name": "DataUsage", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:datausage" + }, + { + "Name": "DialUp", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-dialup" + }, + { + "Name": "DirectAccess", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Note": "NoteDirectAccess", + "Command": "ms-settings:network-directaccess" + }, + { + "Name": "Ethernet", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ], + "Command": "ms-settings:network-ethernet" + }, + { + "Name": "ManageKnownNetworks", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "AltNames": [ "WiFiSettings", "ShortNameWiFi" ], + "Note": "NoteWiFiAdapter", + "Command": "ms-settings:network-wifisettings" + }, + { + "Name": "MobileHotspot", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-mobilehotspot" + }, + { + "Name": "NFC", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "AltNames": [ "NFCTransactions" ], + "Command": "ms-settings:nfctransactions" + }, + { + "Name": "Proxy", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-proxy" + }, + { + "Name": "NetworkStatus", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-status" + }, + { + "Name": "Network", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ], + "Command": "ms-settings:network" + }, + { + "Name": "Vpn", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "Command": "ms-settings:network-vpn" + }, + { + "Name": "WiFi", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "AltNames": [ "Wireless", "MeteredConnection", "ShortNameWiFi" ], + "Note": "NoteWiFiAdapter", + "Command": "ms-settings:network-wifi" + }, + { + "Name": "WiFiCalling", + "Area": "NetworkAndInternet", + "Type": "AppSettingsApp", + "AltNames": [ "ShortNameWiFi" ], + "Note": "NoteWiFiAdapter", + "Command": "ms-settings:network-wificalling" + }, + { + "Name": "Background", + "Area": "Personalization", + "Type": "AppSettingsApp", + "AltNames": [ "Wallpaper", "Picture", "Image" ], + "Command": "ms-settings:personalization-background" + }, + { + "Name": "ChooseWhichFoldersAppearOnStart", + "Area": "Personalization", + "Type": "AppSettingsApp", + "AltNames": [ "StartPlaces" ], + "Command": "ms-settings:personalization-start-places" + }, + { + "Name": "Colors", + "Area": "Personalization", + "Type": "AppSettingsApp", + "AltNames": [ "DarkMode", "LightMode", "DarkColor", "LightColor", "AppColor", "TaskbarColor", "WindowBorder" ], + "Command": "ms-settings:colors" + }, + { + "Name": "Glance", + "Area": "Personalization", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:personalization-glance" + }, + { + "Name": "LockScreen", + "Area": "Personalization", + "Type": "AppSettingsApp", + "AltNames": [ "Image", "Picture" ], + "Command": "ms-settings:lockscreen" + }, + { + "Name": "NavigationBar", + "Area": "Personalization", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:personalization-navbar" + }, + { + "Name": "PersonalizationCategory", + "Area": "Personalization", + "Type": "AppSettingsApp", + "Command": "ms-settings:personalization" + }, + { + "Name": "Start", + "Area": "Personalization", + "Type": "AppSettingsApp", + "Command": "ms-settings:personalization-start" + }, + { + "Name": "Taskbar", + "Area": "Personalization", + "Type": "AppSettingsApp", + "Command": "ms-settings:taskbar" + }, + { + "Name": "Themes", + "Area": "Personalization", + "Type": "AppSettingsApp", + "Command": "ms-settings:themes" + }, + { + "Name": "AddYourPhone", + "Area": "Phone", + "Type": "AppSettingsApp", + "Command": "ms-settings:mobile-devices-addphone", + "Note": "NoteAddYourPhone" + }, + { + "Name": "DirectOpenYourPhone", + "Area": "Phone", + "Type": "AppSettingsApp", + "Command": "ms-settings:mobile-devices-addphone-direct", + "Note": "NoteAddYourPhone" + }, + { + "Name": "AccessoryApps", + "Area": "Privacy", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:privacy-accessoryapps" + }, + { + "Name": "AccountInfo", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-accountinfo" + }, + { + "Name": "ActivityHistory", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-activityhistory" + }, + { + "Name": "AdvertisingId", + "Area": "Privacy", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:privacy-advertisingid" + }, + { + "Name": "AppDiagnostics", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-appdiagnostics" + }, + { + "Name": "AutomaticFileDownloads", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-automaticfiledownloads" + }, + { + "Name": "BackgroundApps", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-backgroundapps" + }, + { + "Name": "Calendar", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-calendar" + }, + { + "Name": "CallHistory", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-callhistory" + }, + { + "Name": "Camera", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-webcam" + }, + { + "Name": "Contacts", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-contacts" + }, + { + "Name": "Documents", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-documents" + }, + { + "Name": "Email", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-email" + }, + { + "Name": "EyeTracker", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Note": "NoteEyetrackerHardware", + "Command": "ms-settings:privacy-eyetracker" + }, + { + "Name": "FeedbackAndDiagnostics", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-feedback" + }, + { + "Name": "FileSystem", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-broadfilesystemaccess" + }, + { + "Name": "General", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy or privacy-general" + }, + { + "Name": "InkingAndTyping", + "Area": "Privacy", + "Type": "AppSettingsApp", + "AltNames": [ "SpeechTyping" ], + "Command": "ms-settings:privacy-speechtyping" + }, + { + "Name": "Location", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-location" + }, + { + "Name": "Messaging", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-messaging" + }, + { + "Name": "Microphone", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-microphone" + }, + { + "Name": "Motion", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-motion" + }, + { + "Name": "Notifications", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-notifications" + }, + { + "Name": "OtherDevices", + "Area": "Privacy", + "Type": "AppSettingsApp", + "AltNames": [ "CustomDevices" ], + "Command": "ms-settings:privacy-customdevices" + }, + { + "Name": "PhoneCalls", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-phonecalls" + }, + { + "Name": "Pictures", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-pictures" + }, + { + "Name": "Radios", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-radios" + }, + { + "Name": "Speech", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-speech" + }, + { + "Name": "Tasks", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-tasks" + }, + { + "Name": "Videos", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-videos" + }, + { + "Name": "VoiceActivation", + "Area": "Privacy", + "Type": "AppSettingsApp", + "Command": "ms-settings:privacy-voiceactivation" + }, + { + "Name": "Accounts", + "Area": "SurfaceHub", + "Type": "AppSettingsApp", + "Command": "ms-settings:surfacehub-accounts" + }, + { + "Name": "SessionCleanup", + "Area": "SurfaceHub", + "Type": "AppSettingsApp", + "Command": "ms-settings:surfacehub-sessioncleanup" + }, + { + "Name": "TeamConferencing", + "Area": "SurfaceHub", + "Type": "AppSettingsApp", + "AltNames": [ "calling" ], + "Command": "ms-settings:surfacehub-calling" + }, + { + "Name": "TeamDeviceManagement", + "Area": "SurfaceHub", + "Type": "AppSettingsApp", + "Command": "ms-settings:surfacehub-devicemanagenent" + }, + { + "Name": "WelcomeScreen", + "Area": "SurfaceHub", + "Type": "AppSettingsApp", + "Command": "ms-settings:surfacehub-welcome" + }, + { + "Name": "About", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "Ram", "Processor", "Os", "Id", "Edition", "Version" ], + "Command": "ms-settings:about" + }, + { + "Name": "AdvancedDisplaySettings", + "Area": "System", + "Type": "AppSettingsApp", + "Note": "NoteDisplayGraphics", + "Command": "ms-settings:display-advanced" + }, + { + "Name": "AppVolumeAndDevicePreferences", + "Area": "System", + "Type": "AppSettingsApp", + "IntroducedInBuild": 18362, + "Note": "NoteSince18362", + "Command": "ms-settings:apps-volume" + }, + { + "Name": "BatterySaver", + "Area": "System", + "Type": "AppSettingsApp", + "Note": "NoteBattery", + "Command": "ms-settings:batterysaver" + }, + { + "Name": "BatterySaverSettings", + "Area": "System", + "Type": "AppSettingsApp", + "Note": "NoteBattery", + "Command": "ms-settings:batterysaver-settings" + }, + { + "Name": "BatteryUse", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "BatterySaverUsageDetails" ], + "Note": "NoteBattery", + "Command": "ms-settings:batterysaver-usagedetails" + }, + { + "Name": "Clipboard", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:clipboard" + }, + { + "Name": "Display", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "NightLight", "BlueLight", "WarmerColor", "RedEye" ], + "Command": "ms-settings:display" + }, + { + "Name": "DefaultSaveLocations", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:savelocations" + }, + { + "Name": "ScreenRotation", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:screenrotation" + }, + { + "Name": "DuplicatingMyDisplay", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "Presentation" ], + "Command": "ms-settings:quietmomentspresentation" + }, + { + "Name": "DuringTheseHours", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "Scheduled" ], + "Command": "ms-settings:quietmomentsscheduled" + }, + { + "Name": "Encryption", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:deviceencryption" + }, + { + "Name": "FocusAssistQuietHours", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:quiethours" + }, + { + "Name": "FocusAssistQuietMoments", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:quietmomentshome" + }, + { + "Name": "GraphicsSettings", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "AdvancedGraphics" ], + "Note": "NoteAdvancedGraphics", + "Command": "ms-settings:display-advancedgraphics" + }, + { + "Name": "Messaging", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:messaging" + }, + { + "Name": "Multitasking", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "Timeline", "Tab", "AltAndTab", "VirtualDesktops" ], + "Command": "ms-settings:multitasking" + }, + { + "Name": "NightLightSettings", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:nightlight" + }, + { + "Name": "PhoneDefaultApps", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:phone-defaultapps" + }, + { + "Name": "ProjectingToThisPc", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:project" + }, + { + "Name": "SharedExperiences", + "Area": "System", + "Type": "AppSettingsApp", + "AltNames": [ "Crossdevice" ], + "Command": "ms-settings:crossdevice" + }, + { + "Name": "TabletMode", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:tabletmode" + }, + { + "Name": "Taskbar", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:taskbar" + }, + { + "Name": "NotificationsAndActions", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:notifications" + }, + { + "Name": "RemoteDesktop", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:remotedesktop" + }, + { + "Name": "Phone", + "Area": "System", + "Type": "AppSettingsApp", + "DeprecatedInBuild": 17763, + "Note": "NoteDeprecated17763", + "Command": "ms-settings:phone" + }, + { + "Name": "PowerAndSleep", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:powersleep" + }, + { + "Name": "Sound", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:sound" + }, + { + "Name": "StorageSense", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:storagesense" + }, + { + "Name": "StoragePolicies", + "Area": "System", + "Type": "AppSettingsApp", + "Command": "ms-settings:storagepolicies" + }, + { + "Name": "DateAndTime", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:dateandtime" + }, + { + "Name": "JapanImeSettings", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "AltNames": [ "jpnime" ], + "Note": "NoteImeJapan", + "Command": "ms-settings:regionlanguage-jpnime" + }, + { + "Name": "Region", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "AltNames": [ "RegionFormatting" ], + "Command": "ms-settings:regionformatting" + }, + { + "Name": "Keyboard", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:keyboard" + }, + { + "Name": "RegionalLanguage", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage" + }, + { + "Name": "BopomofoIme", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "AltNames": [ "bpmf" ], + "Command": "ms-settings:regionlanguage-bpmfime" + }, + { + "Name": "CangjieIme", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage-cangjieime" + }, + { + "Name": "PinyinImeSettingsDomainLexicon", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage-chsime-pinyin-domainlexicon" + }, + { + "Name": "PinyinImeSettingsKeyConfiguration", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage-chsime-pinyin-keyconfig" + }, + { + "Name": "PinyinImeSettingsUdp", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage-chsime-pinyin-udp" + }, + { + "Name": "WubiImeSettingsUdp", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage-chsime-wubi-udp" + }, + { + "Name": "Quickime", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:regionlanguage-quickime" + }, + { + "Name": "PinyinImeSettings", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Note": "NoteImePinyin", + "Command": "ms-settings:regionlanguage-chsime-pinyin" + }, + { + "Name": "Speech", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Command": "ms-settings:speech" + }, + { + "Name": "WubiImeSettings", + "Area": "TimeAndLanguage", + "Type": "AppSettingsApp", + "Note": "NoteImeWubi", + "Command": "ms-settings:regionlanguage-chsime-wubi" + }, + { + "Name": "Activation", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:activation" + }, + { + "Name": "Backup", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:backup" + }, + { + "Name": "DeliveryOptimization", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:delivery-optimization" + }, + { + "Name": "FindMyDevice", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:findmydevice" + }, + { + "Name": "ForDevelopers", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:developers" + }, + { + "Name": "Recovery", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:recovery" + }, + { + "Name": "Troubleshoot", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:troubleshoot" + }, + { + "Name": "WindowsSecurity", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "AltNames": [ "WindowsDefender", "Firewall", "Virus", "CoreIsolation", "SecurityProcessor", "IsolatedBrowsing", "ExploitProtection" ], + "Command": "ms-settings:windowsdefender" + }, + { + "Name": "WindowsInsiderProgram", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Note": "NoteEnrolledWIP", + "Command": "ms-settings:windowsinsider" + }, + { + "Name": "WindowsUpdate", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:windowsupdate" + }, + { + "Name": "WindowsUpdateCheckForUpdates", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:windowsupdate-action" + }, + { + "Name": "WindowsUpdateAdvancedOptions", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:windowsupdate-options" + }, + { + "Name": "WindowsUpdateRestartOptions", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:windowsupdate-restartoptions" + }, + { + "Name": "WindowsUpdateViewUpdateHistory", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "Command": "ms-settings:windowsupdate-history" + }, + { + "Name": "WindowsUpdateViewOptionalUpdates", + "Area": "UpdateAndSecurity", + "Type": "AppSettingsApp", + "IntroducedInBuild": 19041, + "Note": "NoteSince19041", + "Command": "ms-settings:windowsupdate-optionalupdates" + }, + { + "Name": "WorkplaceProvisioning", + "Area": "UserAccounts", + "Type": "AppSettingsApp", + "Note": "NoteWorkplaceProvisioning", + "Command": "ms-settings:workplace-provisioning" + }, + { + "Name": "Provisioning", + "Area": "UserAccounts", + "Type": "AppSettingsApp", + "Note": "NoteMobileProvisioning", + "Command": "ms-settings:provisioning" + }, + { + "Name": "WindowsAnywhere", + "Area": "UserAccounts", + "Type": "AppSettingsApp", + "Note": "NoteWindowsAnywhere", + "Command": "ms-settings:windowsanywhere" + }, + { + "Name": "AccessibilityOptions", + "Area": "EaseOfAccess", + "Type": "ControlPanel", + "AltNames": [ "access.cpl" ], + "Command": "control access.cpl" + }, + { + "Name": "ActionCenter", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.ActionCenter" + }, + { + "Name": "AddHardware", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.AddHardware" + }, + { + "Name": "AddRemovePrograms", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "appwiz.cpl" ], + "Command": "control appwiz.cpl" + }, + { + "Name": "AdministrativeTools", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.AdministrativeTools" + }, + { + "Name": "AutoPlay", + "Area": "Programs", + "Type": "ControlPanel", + "Command": "control /name Microsoft.AutoPlay" + }, + { + "Name": "BackupAndRestore", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.BackupAndRestore" + }, + { + "Name": "BiometricDevices", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.BiometricDevices" + }, + { + "Name": "BitLockerDriveEncryption", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.BitLockerDriveEncryption" + }, + { + "Name": "BluetoothDevices", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.BluetoothDevices" + }, + { + "Name": "ColorManagement", + "Area": "AppearanceAndPersonalization", + "Type": "ControlPanel", + "Command": "control /name Microsoft.ColorManagement" + }, + { + "Name": "CredentialManager", + "Area": "UserAccounts", + "Type": "ControlPanel", + "AltNames": [ "Password" ], + "Command": "control /name Microsoft.CredentialManager" + }, + { + "Name": "ClientServiceForNetWare", + "Area": "Programs", + "Type": "ControlPanel", + "AltNames": [ "nwc.cpl" ], + "Command": "control nwc.cpl" + }, + { + "Name": "DateAndTime", + "Area": "ClockAndRegion", + "Type": "ControlPanel", + "AltNames": [ "timedate.cpl" ], + "Command": "control /name Microsoft.DateAndTime" + }, + { + "Name": "DefaultLocation", + "Area": "ClockAndRegion", + "Type": "ControlPanel", + "Command": "control /name Microsoft.DefaultLocation" + }, + { + "Name": "DefaultPrograms", + "Area": "Programs", + "Type": "ControlPanel", + "Command": "control /name Microsoft.DefaultPrograms" + }, + { + "Name": "DeviceManager", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.DeviceManager" + }, + { + "Name": "DevicesAndPrinters", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.DevicesAndPrinters" + }, + { + "Name": "EaseOfAccessCenter", + "Area": "EaseOfAccess", + "Type": "ControlPanel", + "Command": "control /name Microsoft.EaseOfAccessCenter" + }, + { + "Name": "FolderOptions", + "Area": "AppearanceAndPersonalization", + "Type": "ControlPanel", + "Command": "control /name Microsoft.FolderOptions" + }, + { + "Name": "Fonts", + "Area": "AppearanceAndPersonalization", + "Type": "ControlPanel", + "Command": "control /name Microsoft.Fonts" + }, + { + "Name": "GameControllers", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.GameControllers" + }, + { + "Name": "GetPrograms", + "Area": "Programs", + "Type": "ControlPanel", + "Command": "control /name Microsoft.GetPrograms" + }, + { + "Name": "GettingStarted", + "Area": "ControlPanel", + "Type": "ControlPanel", + "Command": "control /name Microsoft.GettingStarted" + }, + { + "Name": "HomeGroup", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control /name Microsoft.HomeGroup" + }, + { + "Name": "IndexingOptions", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.IndexingOptions" + }, + { + "Name": "Infrared", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.Infrared" + }, + { + "Name": "InternetOptions", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "AltNames": [ "inetcpl.cpl" ], + "Command": "control /name Microsoft.InternetOptions" + }, + { + "Name": "MailMicrosoftExchangeOrWindowsMessaging", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "AltNames": [ "mlcfg32.cpl" ], + "Command": "control mlcfg32.cpl" + }, + { + "Name": "Mouse", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.Mouse" + }, + { + "Name": "NetworkAndSharingCenter", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control /name Microsoft.NetworkAndSharingCenter" + }, + { + "Name": "NetworkConnection", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control netconnections" + }, + { + "Name": "NetworkSetupWizard", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "AltNames": [ "netsetup.cpl" ], + "Command": "control netsetup.cpl" + }, + { + "Name": "OdbcDataSourceAdministrator32Bit", + "Area": "AdministrativeTools", + "Type": "ControlPanel", + "AltNames": [ "odbccp32.cpl" ], + "Command": "%windir%/syswow64/odbcad32.exe" + }, + { + "Name": "OdbcDataSourceAdministrator64Bit", + "Area": "AdministrativeTools", + "Type": "ControlPanel", + "Command": "%windir%/system32/odbcad32.exe" + }, + { + "Name": "OfflineFiles", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control /name Microsoft.OfflineFiles" + }, + { + "Name": "ParentalControls", + "Area": "UserAccounts", + "Type": "ControlPanel", + "Command": "control /name Microsoft.ParentalControls" + }, + { + "Name": "PenAndInputDevices", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.PenAndInputDevices" + }, + { + "Name": "PenAndTouch", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.PenAndTouch" + }, + { + "Name": "PeopleNearMe", + "Area": "UserAccounts", + "Type": "ControlPanel", + "Command": "control /name Microsoft.PeopleNearMe" + }, + { + "Name": "PerformanceInformationAndTools", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.PerformanceInformationAndTools" + }, + { + "Name": "PhoneAndModemOptions", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control /name Microsoft.PhoneAndModemOptions" + }, + { + "Name": "PhoneAndModem", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "AltNames": [ "modem.cpl" ], + "Command": "control /name Microsoft.PhoneAndModem" + }, + { + "Name": "PowerOptions", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "AltNames": [ "powercfg.cpl" ], + "Command": "control /name Microsoft.PowerOptions" + }, + { + "Name": "Printers", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.Printers" + }, + { + "Name": "ProblemReportsAndSolutions", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.ProblemReportsAndSolutions" + }, + { + "Name": "ProgramsAndFeatures", + "Area": "Programs", + "Type": "ControlPanel", + "Command": "control /name Microsoft.ProgramsAndFeatures" + }, + { + "Name": "Recovery", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.Recovery" + }, + { + "Name": "RegionAndLanguage", + "Area": "ClockAndRegion", + "Type": "ControlPanel", + "Command": "control /name Microsoft.RegionAndLanguage" + }, + { + "Name": "RemoteAppAndDesktopConnections", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control /name Microsoft.RemoteAppAndDesktopConnections" + }, + { + "Name": "ScannersAndCameras", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "sticpl.cpl" ], + "Command": "control /name Microsoft.ScannersAndCameras" + }, + { + "Name": "ScheduledTasks", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "AltNames": [ "schedtasks" ], + "Command": "control schedtasks" + }, + { + "Name": "SecurityCenter", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.SecurityCenter" + }, + { + "Name": "Sound", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.Sound" + }, + { + "Name": "SpeechRecognition", + "Area": "EaseOfAccess", + "Type": "ControlPanel", + "Command": "control /name Microsoft.SpeechRecognition" + }, + { + "Name": "SyncCenter", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.SyncCenter" + }, + { + "Name": "System", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "AltNames": [ "sysdm.cpl" ], + "Command": "control sysdm.cpl" + }, + { + "Name": "TabletPcSettings", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.TabletPCSettings" + }, + { + "Name": "TextToSpeech", + "Area": "EaseOfAccess", + "Type": "ControlPanel", + "Command": "control /name Microsoft.TextToSpeech" + }, + { + "Name": "UserAccounts", + "Area": "UserAccounts", + "Type": "ControlPanel", + "Command": "control /name Microsoft.UserAccounts" + }, + { + "Name": "WelcomeCenter", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.WelcomeCenter" + }, + { + "Name": "WindowsAnytimeUpgrade", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.WindowsAnytimeUpgrade" + }, + { + "Name": "WindowsCardSpace", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "Command": "control /name Microsoft.CardSpace" + }, + { + "Name": "WindowsDefender", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.WindowsDefender" + }, + { + "Name": "WindowsFirewall", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "Command": "control /name Microsoft.WindowsFirewall" + }, + { + "Name": "WindowsMobilityCenter", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "Command": "control /name Microsoft.MobilityCenter" + }, + { + "Name": "DisplayProperties", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "desk.cpl" ], + "Command": "control Desk.cpl" + }, + { + "Name": "FindFast", + "Area": "SystemAndSecurity", + "Type": "ControlPanel", + "AltNames": [ "findfast.cpl" ], + "Command": "control FindFast.cpl" + }, + { + "Name": "RegionalSettingsProperties", + "Area": "EaseOfAccess", + "Type": "ControlPanel", + "AltNames": [ "intl.cpl" ], + "Command": "control Intl.cpl" + }, + { + "Name": "JoystickProperties", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "joy.cpl" ], + "Command": "control Joy.cpl" + }, + { + "Name": "MouseFontsKeyboardAndPrintersProperties", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "main.cpl" ], + "Command": "control Main.cpl" + }, + { + "Name": "MultimediaProperties", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "mmsys.cpl" ], + "Command": "control Mmsys.cpl" + }, + { + "Name": "NetworkProperties", + "Area": "NetworkAndInternet", + "Type": "ControlPanel", + "AltNames": [ "netcpl.cpl" ], + "Command": "control Netcpl.cpl" + }, + { + "Name": "PasswordProperties", + "Area": "UserAccounts", + "Type": "ControlPanel", + "AltNames": [ "password.cpl" ], + "Command": "control Password.cpl" + }, + { + "Name": "SystemPropertiesAndAddNewHardwareWizard", + "Area": "HardwareAndSound", + "Type": "ControlPanel", + "AltNames": [ "sysdm.cpl" ], + "Command": "control Sysdm.cpl" + }, + { + "Name": "DesktopThemes", + "Area": "AppearanceAndPersonalization", + "Type": "ControlPanel", + "AltNames": [ "themes.cpl" ], + "Command": "control Themes.cpl" + }, + { + "Name": "MicrosoftMailPostOffice", + "Area": "Programs", + "Type": "ControlPanel", + "AltNames": [ "wgpocpl.cpl" ], + "Command": "control Wgpocpl.cpl" + } +] diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json new file mode 100644 index 00000000000..478a5d38b2b --- /dev/null +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json @@ -0,0 +1,13 @@ +{ + "ID": "5043CECEE6A748679CBE02D27D83747A", + "ActionKeyword": "$", + "IsGlobal": false, + "Name": "Windows Settings", + "Author": "TobiasSekan", + "Version": "1.0.0", + "Language": "csharp", + "Website": "https://aka.ms/powertoys", + "ExecuteFileName": "Microsoft.PowerToys.Run.Plugin.WindowsSettings.dll", + "IcoPathDark": "Images\\WindowsSettings.dark.png", + "IcoPathLight": "Images\\WindowsSettings.light.png" +} From 9836c19dd5c70e6be5e176e41d006fdb17615164 Mon Sep 17 00:00:00 2001 From: Mykhailo Pylyp Date: Fri, 18 Jun 2021 13:40:10 +0300 Subject: [PATCH 02/45] [Run-Plugin][Program] Fix null reference exception on Dispose (#11785) --- .../Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs index dfc9b229648..9c6fabbf1d3 100644 --- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs @@ -169,7 +169,7 @@ protected virtual void Dispose(bool disposing) return; } - if (!(_context is null)) + if (_context != null && _context.API != null) { _context.API.ThemeChanged -= OnThemeChanged; } From e223d13f24cbdf8e073e385ab7ac55b64c0881c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BC=98=E9=9F=AC?= Date: Sun, 18 Jul 2021 22:42:58 +0800 Subject: [PATCH 03/45] Initial Refactor --- .gitignore | 367 ++++++++++++++++++ .../Classes => Classes}/WindowsSetting.cs | 0 .../Helper => Helper}/ContextMenuHelper.cs | 0 .../JsonSettingsListHelper.cs | 0 .../Helper => Helper}/ResultHelper.cs | 0 .../Helper => Helper}/TranslationHelper.cs | 0 .../UnsupportedSettingsHelper.cs | 0 .../WindowsSettings.dark.png | Bin .../WindowsSettings.light.png | Bin .../Main.cs => Main.cs | 0 ...owerToys.Run.Plugin.WindowsSettings.csproj | 0 .../Resources.Designer.cs | 0 .../Properties => Properties}/Resources.resx | 0 ...ndowsSettings.json => WindowsSettings.json | 0 .../plugin.json => plugin.json | 0 15 files changed, 367 insertions(+) create mode 100644 .gitignore rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes => Classes}/WindowsSetting.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper => Helper}/ContextMenuHelper.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper => Helper}/JsonSettingsListHelper.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper => Helper}/ResultHelper.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper => Helper}/TranslationHelper.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper => Helper}/UnsupportedSettingsHelper.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images => Images}/WindowsSettings.dark.png (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images => Images}/WindowsSettings.light.png (100%) rename src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs => Main.cs (100%) rename src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj => Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties => Properties}/Resources.Designer.cs (100%) rename {src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties => Properties}/Resources.resx (100%) rename src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json => WindowsSettings.json (100%) rename src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json => plugin.json (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..5f38a9aa6f7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,367 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/contentModel.xml +/projectSettingsUpdater.xml +/.idea.Microsoft.PowerToys.Run.Plugin.WindowsSettings.iml +/modules.xml +/.idea +# Datasource local storage ignored files +/../../../../../../../:\文档\RiderProject\Flow.Plugin.WindowsSettings\.idea\.idea.Microsoft.PowerToys.Run.Plugin.WindowsSettings.dir\.idea/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ + +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ \ No newline at end of file diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Classes/WindowsSetting.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs rename to Classes/WindowsSetting.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs b/Helper/ContextMenuHelper.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs rename to Helper/ContextMenuHelper.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs b/Helper/JsonSettingsListHelper.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs rename to Helper/JsonSettingsListHelper.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Helper/ResultHelper.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs rename to Helper/ResultHelper.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Helper/TranslationHelper.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/TranslationHelper.cs rename to Helper/TranslationHelper.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs b/Helper/UnsupportedSettingsHelper.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs rename to Helper/UnsupportedSettingsHelper.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.dark.png b/Images/WindowsSettings.dark.png similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.dark.png rename to Images/WindowsSettings.dark.png diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.light.png b/Images/WindowsSettings.light.png similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Images/WindowsSettings.light.png rename to Images/WindowsSettings.light.png diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs b/Main.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Main.cs rename to Main.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj b/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj rename to Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs rename to Properties/Resources.Designer.cs diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx b/Properties/Resources.resx similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx rename to Properties/Resources.resx diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json b/WindowsSettings.json similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json rename to WindowsSettings.json diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json b/plugin.json similarity index 100% rename from src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/plugin.json rename to plugin.json From 89ef3a97bf580f9b26a6aad1722de013a862f83f Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 19 Jul 2021 16:32:57 +0800 Subject: [PATCH 04/45] Porting to Flow --- Helper/ContextMenuHelper.cs | 19 +++----- Helper/JsonSettingsListHelper.cs | 1 - Helper/ResultHelper.cs | 5 +-- Helper/TranslationHelper.cs | 1 - Helper/UnsupportedSettingsHelper.cs | 1 - Log.cs | 24 ++++++++++ Main.cs | 39 +++------------- ...owerToys.Run.Plugin.WindowsSettings.csproj | 44 ++++--------------- 8 files changed, 46 insertions(+), 88 deletions(-) create mode 100644 Log.cs diff --git a/Helper/ContextMenuHelper.cs b/Helper/ContextMenuHelper.cs index b5cbe173c7e..15b9f0d3e09 100644 --- a/Helper/ContextMenuHelper.cs +++ b/Helper/ContextMenuHelper.cs @@ -5,10 +5,8 @@ using System; using System.Collections.Generic; using System.Windows; -using System.Windows.Input; +using Flow.Launcher.Plugin; using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; -using Wox.Plugin; -using Wox.Plugin.Logger; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper { @@ -24,23 +22,18 @@ internal static class ContextMenuHelper /// The result for the context menu entires /// The name of the this assembly /// A list with context menu entries - internal static List GetContextMenu(in Result result, in string assemblyName) + internal static List GetContextMenu(in Result result, in string assemblyName) { - if (!(result?.ContextData is WindowsSetting entry)) + if (result?.ContextData is not WindowsSetting entry) { - return new List(0); + return new List(0); } - var list = new List(1) + var list = new List(1) { - new ContextMenuResult + new() { - AcceleratorKey = Key.C, - AcceleratorModifiers = ModifierKeys.Control, Action = _ => TryToCopyToClipBoard(entry.Command), - FontFamily = "Segoe MDL2 Assets", - Glyph = "\xE8C8", // E8C8 => Symbol: Copy - PluginName = assemblyName, Title = $"{Resources.CopyCommand} (Ctrl+C)", }, }; diff --git a/Helper/JsonSettingsListHelper.cs b/Helper/JsonSettingsListHelper.cs index 0ec818589ed..bff04186457 100644 --- a/Helper/JsonSettingsListHelper.cs +++ b/Helper/JsonSettingsListHelper.cs @@ -9,7 +9,6 @@ using System.Reflection; using System.Text.Json; using System.Text.Json.Serialization; -using Wox.Plugin.Logger; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper { diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index fbea9bab1ba..4fd27f9d3b7 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -7,9 +7,8 @@ using System.Diagnostics; using System.Linq; using System.Text; +using Flow.Launcher.Plugin; using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; -using Wox.Plugin; -using Wox.Plugin.Logger; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper { @@ -80,7 +79,7 @@ private static void AddOptionalToolTip(WindowsSetting entry, Result result) toolTipText.Append($"{Resources.Note}: {entry.Note}"); } - result.ToolTipData = new ToolTipData(entry.Name, toolTipText.ToString()); + result.TitleToolTip = toolTipText.ToString(); } /// diff --git a/Helper/TranslationHelper.cs b/Helper/TranslationHelper.cs index ee3d92c36a7..4e8fa40ed70 100644 --- a/Helper/TranslationHelper.cs +++ b/Helper/TranslationHelper.cs @@ -6,7 +6,6 @@ using System.Collections.ObjectModel; using System.Linq; using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; -using Wox.Plugin.Logger; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper { diff --git a/Helper/UnsupportedSettingsHelper.cs b/Helper/UnsupportedSettingsHelper.cs index d455067f463..30f28a1db47 100644 --- a/Helper/UnsupportedSettingsHelper.cs +++ b/Helper/UnsupportedSettingsHelper.cs @@ -5,7 +5,6 @@ using System; using System.Collections.Generic; using System.Linq; -using Wox.Plugin.Logger; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper { diff --git a/Log.cs b/Log.cs new file mode 100644 index 00000000000..090c9a7372d --- /dev/null +++ b/Log.cs @@ -0,0 +1,24 @@ +using System; +using System.Runtime.CompilerServices; +using Flow.Launcher.Plugin; + +namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings +{ + public static class Log + { + private static IPublicAPI _api; + + public static void Init(IPublicAPI api) + { + _api = api; + } + public static void Exception(string message, Exception exception, Type type, [CallerMemberName] string methodName = "") + { + _api.LogException(type.FullName, message, exception, methodName); + } + public static void Warn(string message, Type type, [CallerMemberName] string methodName = "") + { + _api.LogWarn(type.FullName, message, methodName); + } + } +} diff --git a/Main.cs b/Main.cs index 9c6fabbf1d3..4961266df70 100644 --- a/Main.cs +++ b/Main.cs @@ -6,17 +6,16 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; -using ManagedCommon; +using Flow.Launcher.Plugin; using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper; using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; -using Wox.Plugin; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings { /// /// Main class of this plugin that implement all used interfaces. /// - public class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable + public sealed class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable { /// /// The path to the symbol for a light theme. @@ -79,8 +78,6 @@ public Main() public void Init(PluginInitContext context) { _context = context ?? throw new ArgumentNullException(nameof(context)); - _context.API.ThemeChanged += OnThemeChanged; - UpdateIconPath(_context.API.GetCurrentTheme()); _settingsList = JsonSettingsListHelper.ReadAllPossibleSettings(); _settingsList = UnsupportedSettingsHelper.FilterByBuild(_settingsList); @@ -126,7 +123,7 @@ bool Predicate(WindowsSetting found) return true; } - if (!(found.AltNames is null)) + if (found.AltNames is not null) { foreach (var altName in found.AltNames) { @@ -146,7 +143,7 @@ bool Predicate(WindowsSetting found) /// /// The for the list with context menu entries. /// A list context menu entries. - public List LoadContextMenus(Result selectedResult) + public List LoadContextMenus(Result selectedResult) { return ContextMenuHelper.GetContextMenu(selectedResult, _assemblyName); } @@ -162,18 +159,13 @@ public void Dispose() /// Wrapper method for that dispose additional objects and events form the plugin itself. /// /// Indicate that the plugin is disposed. - protected virtual void Dispose(bool disposing) + private void Dispose(bool disposing) { if (_disposed || !disposing) { return; } - if (_context != null && _context.API != null) - { - _context.API.ThemeChanged -= OnThemeChanged; - } - _disposed = true; } @@ -192,26 +184,5 @@ public string GetTranslatedPluginDescription() { return Description; } - - /// - /// Change all theme-based elements (typical called when the plugin theme has changed). - /// - /// The old . - /// The new . - private void OnThemeChanged(Theme oldtheme, Theme newTheme) - { - UpdateIconPath(newTheme); - } - - /// - /// Update all icons (typical called when the plugin theme has changed). - /// - /// The new for the icons. - private void UpdateIconPath(Theme theme) - { - _defaultIconPath = theme == Theme.Light || theme == Theme.HighContrastWhite - ? _lightSymbol - : _darkSymbol; - } } } diff --git a/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj b/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj index 4b7cf12b224..51656745ed3 100644 --- a/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj +++ b/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj @@ -1,13 +1,10 @@  - - - netcoreapp3.1 + net5.0-windows {5043CECE-E6A7-4867-9CBE-02D27D83747A} Properties Microsoft.PowerToys.Run.Plugin.WindowsSettings Microsoft.PowerToys.Run.Plugin.WindowsSettings - $(Version).0 false false x64 @@ -18,12 +15,11 @@ - ..\..\..\..\..\x64\Debug\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\ + Debug\WindowsSettings\ DEBUG;TRACE false - full + portable true - 8.0 x64 MinimumRecommendedRules.ruleset 4 @@ -31,11 +27,10 @@ - ..\..\..\..\..\x64\Release\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\ + Release\WindowsSettings\ TRACE true - pdbonly - 8.0 + portable x64 MinimumRecommendedRules.ruleset 4 @@ -46,29 +41,12 @@ - - - false - - - false - - - PreserveNewest - - - GlobalSuppressions.cs - - - StyleCop.json - - @@ -76,14 +54,6 @@ - - - 1.1.118 - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - True @@ -108,4 +78,8 @@ + + + + \ No newline at end of file From 9e9820bce9168d6aad2d46141a285911919e38aa Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 19 Jul 2021 17:16:48 +0800 Subject: [PATCH 05/45] fix JsonFormat --- plugin.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugin.json b/plugin.json index 478a5d38b2b..0c3fcdbad2b 100644 --- a/plugin.json +++ b/plugin.json @@ -1,13 +1,12 @@ { "ID": "5043CECEE6A748679CBE02D27D83747A", "ActionKeyword": "$", - "IsGlobal": false, + "Description": "Windows Settings Query Functionality", "Name": "Windows Settings", "Author": "TobiasSekan", "Version": "1.0.0", "Language": "csharp", "Website": "https://aka.ms/powertoys", "ExecuteFileName": "Microsoft.PowerToys.Run.Plugin.WindowsSettings.dll", - "IcoPathDark": "Images\\WindowsSettings.dark.png", "IcoPathLight": "Images\\WindowsSettings.light.png" } From 2c45ec61f57e708e34658a74f011ee517ca5fc0a Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 19 Jul 2021 17:17:09 +0800 Subject: [PATCH 06/45] Use Flow API to search --- Helper/ResultHelper.cs | 59 +++++++++++++++++++++++------ Helper/UnsupportedSettingsHelper.cs | 2 +- Log.cs | 6 +-- Main.cs | 41 +++----------------- 4 files changed, 57 insertions(+), 51 deletions(-) diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index 4fd27f9d3b7..724962b5c6e 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -8,6 +8,7 @@ using System.Linq; using System.Text; using Flow.Launcher.Plugin; +using Flow.Launcher.Plugin.SharedModels; using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper @@ -17,6 +18,10 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper /// internal static class ResultHelper { + private static IPublicAPI? _api; + + public static void Init(IPublicAPI api) => _api = api; + /// /// Return a list with s, based on the given list. /// @@ -25,32 +30,64 @@ internal static class ResultHelper /// A list with . internal static List GetResultList( in IEnumerable list, - string query, - in string iconPath) + Query query, + string iconPath) { - var resultList = new List(list.Count()); - + var resultList = new List(); foreach (var entry in list) { - var result = new Result + var result = Predicate(); + if (result is null) + continue; + + AddOptionalToolTip(entry, result); + + resultList.Add(result); + + Result NewSettingResult(int score) => new Result() { - Action = (_) => DoOpenSettingsAction(entry), + Action = _ => DoOpenSettingsAction(entry), IcoPath = iconPath, SubTitle = $"{Resources.Area} \"{entry.Area}\" {Resources.SubtitlePreposition} {entry.Type}", Title = entry.Name, ContextData = entry, + Score = score }; - AddOptionalToolTip(entry, result); + Result? Predicate() + { + Debug.Assert(_api != null, nameof(_api) + " != null"); + + var nameMatch = _api.FuzzySearch(query.Search, entry.Name); + + if (nameMatch.IsSearchPrecisionScoreMet()) + { + var settingResult = NewSettingResult(nameMatch.Score); + settingResult.TitleHighlightData = nameMatch.MatchData; + return settingResult; + } + + var areaMatch = _api.FuzzySearch(query.Search, entry.Area); + if (areaMatch.IsSearchPrecisionScoreMet()) + { + var settingResult = NewSettingResult(areaMatch.Score); + return settingResult; + } + + return entry.AltNames? + .Select(altName => _api.FuzzySearch(query.Search, altName)) + .Where(match => match.IsSearchPrecisionScoreMet()) + .Select(altNameMatch => NewSettingResult(altNameMatch.Score)) + .FirstOrDefault(); - resultList.Add(result); + } } - SetScores(resultList, query); - return resultList; } + + /// /// Add a tool-tip to the given , based o the given . /// @@ -102,7 +139,7 @@ private static bool DoOpenSettingsAction(WindowsSetting entry) if (command.Contains(' ')) { var commandSplit = command.Split(' '); - var file = commandSplit.FirstOrDefault(); + var file = commandSplit.First(); var arguments = command[file.Length..].TrimStart(); processStartInfo = new ProcessStartInfo(file, arguments) diff --git a/Helper/UnsupportedSettingsHelper.cs b/Helper/UnsupportedSettingsHelper.cs index 30f28a1db47..a323f476d0b 100644 --- a/Helper/UnsupportedSettingsHelper.cs +++ b/Helper/UnsupportedSettingsHelper.cs @@ -64,7 +64,7 @@ internal static IEnumerable FilterByBuild(in IEnumerableA registry value or on error. private static uint GetNumericRegistryValue(in string registryKey, in string valueName) { - object registryValueData; + object? registryValueData; try { diff --git a/Log.cs b/Log.cs index 090c9a7372d..7991f5a55d2 100644 --- a/Log.cs +++ b/Log.cs @@ -6,7 +6,7 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings { public static class Log { - private static IPublicAPI _api; + private static IPublicAPI? _api; public static void Init(IPublicAPI api) { @@ -14,11 +14,11 @@ public static void Init(IPublicAPI api) } public static void Exception(string message, Exception exception, Type type, [CallerMemberName] string methodName = "") { - _api.LogException(type.FullName, message, exception, methodName); + _api?.LogException(type.FullName, message, exception, methodName); } public static void Warn(string message, Type type, [CallerMemberName] string methodName = "") { - _api.LogWarn(type.FullName, message, methodName); + _api?.LogWarn(type.FullName, message, methodName); } } } diff --git a/Main.cs b/Main.cs index 4961266df70..00fe2367eb8 100644 --- a/Main.cs +++ b/Main.cs @@ -82,6 +82,9 @@ public void Init(PluginInitContext context) _settingsList = JsonSettingsListHelper.ReadAllPossibleSettings(); _settingsList = UnsupportedSettingsHelper.FilterByBuild(_settingsList); + Log.Init(_context.API); + ResultHelper.Init(_context.API); + TranslationHelper.TranslateAllSettings(_settingsList); } @@ -97,45 +100,11 @@ public List Query(Query query) return new List(0); } - var filteredList = _settingsList - .Where(Predicate) - .OrderBy(found => found.Name); - var newList = ResultHelper.GetResultList(filteredList, query.Search, _defaultIconPath); + var newList = ResultHelper.GetResultList(_settingsList, query, _defaultIconPath); return newList; - bool Predicate(WindowsSetting found) - { - if (found.Name.Contains(query.Search, StringComparison.CurrentCultureIgnoreCase)) - { - return true; - } - - // Search for Area only by key char - if (found.Area.Contains(query.Search.Replace(":", string.Empty), StringComparison.CurrentCultureIgnoreCase) - && query.Search.EndsWith(":")) - { - return true; - } - - if (found.Area.Contains(query.Search, StringComparison.CurrentCultureIgnoreCase)) - { - return true; - } - - if (found.AltNames is not null) - { - foreach (var altName in found.AltNames) - { - if (altName.Contains(query.Search, StringComparison.CurrentCultureIgnoreCase)) - { - return true; - } - } - } - - return false; - } + } /// From 4f0e679596a60b1c8a7f5d7328444e5a6ce68ea2 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 19 Jul 2021 17:21:43 +0800 Subject: [PATCH 07/45] fix json --- plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.json b/plugin.json index 0c3fcdbad2b..575250dc2df 100644 --- a/plugin.json +++ b/plugin.json @@ -8,5 +8,5 @@ "Language": "csharp", "Website": "https://aka.ms/powertoys", "ExecuteFileName": "Microsoft.PowerToys.Run.Plugin.WindowsSettings.dll", - "IcoPathLight": "Images\\WindowsSettings.light.png" + "IcoPath": "Images\\WindowsSettings.light.png" } From bac446d40da981a3e186b33607176f7585a40c62 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 19 Jul 2021 17:24:13 +0800 Subject: [PATCH 08/45] subtitle highlight --- Helper/ResultHelper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index 724962b5c6e..759cae7eee5 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -71,6 +71,7 @@ internal static List GetResultList( if (areaMatch.IsSearchPrecisionScoreMet()) { var settingResult = NewSettingResult(areaMatch.Score); + settingResult.SubTitleHighlightData = areaMatch.MatchData.Select(x => x + 6).ToList(); return settingResult; } From dd31f1a34a5034dfbf85a53a71b02034f63ce0ae Mon Sep 17 00:00:00 2001 From: Kevin Zhang <45326534+taooceros@users.noreply.github.com> Date: Mon, 19 Jul 2021 17:28:41 +0800 Subject: [PATCH 09/45] Create README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000000..b697214d973 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Flow.Plugin.WindowsSettings +Port from PowerToy WindowsSettings plugin From 228bbe2c37daae54deb8f08c6aeaa3dad17e4dab Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Tue, 20 Jul 2021 10:59:05 +0800 Subject: [PATCH 10/45] Change NameSpace Name --- Classes/WindowsSetting.cs | 2 +- ...Settings.csproj => Flow.Plugin.WindowsSettings.csproj | 4 ++-- Helper/ContextMenuHelper.cs | 5 +++-- Helper/JsonSettingsListHelper.cs | 3 ++- Helper/ResultHelper.cs | 6 +++--- Helper/TranslationHelper.cs | 5 +++-- Helper/UnsupportedSettingsHelper.cs | 5 +++-- Log.cs | 2 +- Main.cs | 8 ++++---- Properties/Resources.Designer.cs | 9 ++++----- 10 files changed, 26 insertions(+), 23 deletions(-) rename Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj => Flow.Plugin.WindowsSettings.csproj (94%) diff --git a/Classes/WindowsSetting.cs b/Classes/WindowsSetting.cs index 5c5d2654ada..0a598d12216 100644 --- a/Classes/WindowsSetting.cs +++ b/Classes/WindowsSetting.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings +namespace Flow.Plugin.WindowsSettings.Classes { /// /// A windows setting diff --git a/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj b/Flow.Plugin.WindowsSettings.csproj similarity index 94% rename from Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj rename to Flow.Plugin.WindowsSettings.csproj index 51656745ed3..90a627db864 100644 --- a/Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj +++ b/Flow.Plugin.WindowsSettings.csproj @@ -3,8 +3,8 @@ net5.0-windows {5043CECE-E6A7-4867-9CBE-02D27D83747A} Properties - Microsoft.PowerToys.Run.Plugin.WindowsSettings - Microsoft.PowerToys.Run.Plugin.WindowsSettings + Flow.Plugin.WindowsSettings + Flow.Plugin.WindowsSettings false false x64 diff --git a/Helper/ContextMenuHelper.cs b/Helper/ContextMenuHelper.cs index 15b9f0d3e09..c8adc57c4a5 100644 --- a/Helper/ContextMenuHelper.cs +++ b/Helper/ContextMenuHelper.cs @@ -6,9 +6,10 @@ using System.Collections.Generic; using System.Windows; using Flow.Launcher.Plugin; -using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Flow.Plugin.WindowsSettings.Classes; +using Flow.Plugin.WindowsSettings.Properties; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +namespace Flow.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with context menu entries diff --git a/Helper/JsonSettingsListHelper.cs b/Helper/JsonSettingsListHelper.cs index bff04186457..1a6d35fa576 100644 --- a/Helper/JsonSettingsListHelper.cs +++ b/Helper/JsonSettingsListHelper.cs @@ -9,8 +9,9 @@ using System.Reflection; using System.Text.Json; using System.Text.Json.Serialization; +using Flow.Plugin.WindowsSettings.Classes; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +namespace Flow.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with the JSON file that contains all Windows settings diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index 759cae7eee5..dcda4c07329 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -8,10 +8,10 @@ using System.Linq; using System.Text; using Flow.Launcher.Plugin; -using Flow.Launcher.Plugin.SharedModels; -using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Flow.Plugin.WindowsSettings.Classes; +using Flow.Plugin.WindowsSettings.Properties; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +namespace Flow.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with results diff --git a/Helper/TranslationHelper.cs b/Helper/TranslationHelper.cs index 4e8fa40ed70..0e7b950e84e 100644 --- a/Helper/TranslationHelper.cs +++ b/Helper/TranslationHelper.cs @@ -5,9 +5,10 @@ using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; -using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Flow.Plugin.WindowsSettings.Classes; +using Flow.Plugin.WindowsSettings.Properties; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +namespace Flow.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with translations. diff --git a/Helper/UnsupportedSettingsHelper.cs b/Helper/UnsupportedSettingsHelper.cs index a323f476d0b..b056ee0460e 100644 --- a/Helper/UnsupportedSettingsHelper.cs +++ b/Helper/UnsupportedSettingsHelper.cs @@ -5,8 +5,9 @@ using System; using System.Collections.Generic; using System.Linq; +using Flow.Plugin.WindowsSettings.Classes; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper +namespace Flow.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with the version of the Windows OS @@ -68,7 +69,7 @@ private static uint GetNumericRegistryValue(in string registryKey, in string val try { - registryValueData = Win32.Registry.GetValue(registryKey, valueName, uint.MinValue); + registryValueData = Microsoft.Win32.Registry.GetValue(registryKey, valueName, uint.MinValue); } catch (Exception exception) { diff --git a/Log.cs b/Log.cs index 7991f5a55d2..f45256173c3 100644 --- a/Log.cs +++ b/Log.cs @@ -2,7 +2,7 @@ using System.Runtime.CompilerServices; using Flow.Launcher.Plugin; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings +namespace Flow.Plugin.WindowsSettings { public static class Log { diff --git a/Main.cs b/Main.cs index 00fe2367eb8..f66d99ad8ce 100644 --- a/Main.cs +++ b/Main.cs @@ -4,13 +4,13 @@ using System; using System.Collections.Generic; -using System.Linq; using System.Reflection; using Flow.Launcher.Plugin; -using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper; -using Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties; +using Flow.Plugin.WindowsSettings.Classes; +using Flow.Plugin.WindowsSettings.Helper; +using Flow.Plugin.WindowsSettings.Properties; -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings +namespace Flow.Plugin.WindowsSettings { /// /// Main class of this plugin that implement all used interfaces. diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs index 37a3d1e4271..1c5ca3c9668 100644 --- a/Properties/Resources.Designer.cs +++ b/Properties/Resources.Designer.cs @@ -8,10 +8,9 @@ // //------------------------------------------------------------------------------ -namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties { - using System; - - +namespace Flow.Plugin.WindowsSettings.Properties { + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -39,7 +38,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Flow.Plugin.WindowsSettings.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; From 1e673d9cf769278104b552ab6c96e76b13e1f155 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Tue, 20 Jul 2021 11:11:36 +0800 Subject: [PATCH 11/45] Adjust Scoring --- Helper/ResultHelper.cs | 120 +++++++++++++---------------------------- 1 file changed, 36 insertions(+), 84 deletions(-) diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index dcda4c07329..76d05089d05 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -26,6 +26,7 @@ internal static class ResultHelper /// Return a list with s, based on the given list. /// /// The original result list to convert. + /// Query for specific result List /// The path to the icon of each entry. /// A list with . internal static List GetResultList( @@ -36,7 +37,39 @@ internal static List GetResultList( var resultList = new List(); foreach (var entry in list) { - var result = Predicate(); + const int highScore = 20; + const int midScore = 10; + + Result? result; + Debug.Assert(_api != null, nameof(_api) + " != null"); + + var nameMatch = _api.FuzzySearch(query.Search, entry.Name); + + if (nameMatch.IsSearchPrecisionScoreMet()) + { + var settingResult = NewSettingResult(nameMatch.Score + highScore); + settingResult.TitleHighlightData = nameMatch.MatchData; + result = settingResult; + } + else + { + var areaMatch = _api.FuzzySearch(query.Search, entry.Area); + if (areaMatch.IsSearchPrecisionScoreMet()) + { + var settingResult = NewSettingResult(areaMatch.Score + midScore); + settingResult.SubTitleHighlightData = areaMatch.MatchData.Select(x => x + 6).ToList(); + result = settingResult; + } + else + { + result = entry.AltNames? + .Select(altName => _api.FuzzySearch(query.Search, altName)) + .Where(match => match.IsSearchPrecisionScoreMet()) + .Select(altNameMatch => NewSettingResult(altNameMatch.Score + midScore)) + .FirstOrDefault(); + } + + } if (result is null) continue; @@ -44,7 +77,7 @@ internal static List GetResultList( resultList.Add(result); - Result NewSettingResult(int score) => new Result() + Result NewSettingResult(int score) => new() { Action = _ => DoOpenSettingsAction(entry), IcoPath = iconPath, @@ -54,36 +87,9 @@ internal static List GetResultList( Score = score }; - Result? Predicate() - { - Debug.Assert(_api != null, nameof(_api) + " != null"); - - var nameMatch = _api.FuzzySearch(query.Search, entry.Name); - - if (nameMatch.IsSearchPrecisionScoreMet()) - { - var settingResult = NewSettingResult(nameMatch.Score); - settingResult.TitleHighlightData = nameMatch.MatchData; - return settingResult; - } - - var areaMatch = _api.FuzzySearch(query.Search, entry.Area); - if (areaMatch.IsSearchPrecisionScoreMet()) - { - var settingResult = NewSettingResult(areaMatch.Score); - settingResult.SubTitleHighlightData = areaMatch.MatchData.Select(x => x + 6).ToList(); - return settingResult; - } - - return entry.AltNames? - .Select(altName => _api.FuzzySearch(query.Search, altName)) - .Where(match => match.IsSearchPrecisionScoreMet()) - .Select(altNameMatch => NewSettingResult(altNameMatch.Score)) - .FirstOrDefault(); - - } } + return resultList; } @@ -167,59 +173,5 @@ private static bool DoOpenSettingsAction(WindowsSetting entry) return false; } } - - /// - /// Set the score (known as order number or ranking number) - /// for all in the given list, based on the given query. - /// - /// A list with s that need scores. - /// The query to calculated the score for the s. - private static void SetScores(IEnumerable resultList, string query) - { - var lowScore = 1_000; - var mediumScore = 5_000; - var highScore = 10_000; - - foreach (var result in resultList) - { - if (!(result.ContextData is WindowsSetting windowsSetting)) - { - continue; - } - - if (windowsSetting.Name.StartsWith(query, StringComparison.CurrentCultureIgnoreCase)) - { - result.Score = highScore--; - continue; - } - - // If query starts with second or next word of name, set score. - if (windowsSetting.Name.Contains($" {query}", StringComparison.CurrentCultureIgnoreCase)) - { - result.Score = mediumScore--; - continue; - } - - if (windowsSetting.Area.StartsWith(query, StringComparison.CurrentCultureIgnoreCase)) - { - result.Score = lowScore--; - continue; - } - - if (windowsSetting.AltNames is null) - { - result.Score = lowScore--; - continue; - } - - if (windowsSetting.AltNames.Any(x => x.StartsWith(query, StringComparison.CurrentCultureIgnoreCase))) - { - result.Score = mediumScore--; - continue; - } - - result.Score = lowScore--; - } - } } } From 9b1ee61f3797fd8b44ef45d16067971bd2b29c9c Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Tue, 20 Jul 2021 11:12:46 +0800 Subject: [PATCH 12/45] Make SubTitleToolTip the same as TitleToolTip --- Helper/ResultHelper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index 76d05089d05..29fcc0038f7 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -124,6 +124,7 @@ private static void AddOptionalToolTip(WindowsSetting entry, Result result) } result.TitleToolTip = toolTipText.ToString(); + result.SubTitleToolTip = result.TitleToolTip; } /// From 75346f1ed8870cb9f5e6bf1313b2c27d9901c4a9 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Wed, 21 Jul 2021 15:51:57 +0800 Subject: [PATCH 13/45] Change ExecuteFileName --- plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.json b/plugin.json index 575250dc2df..b21e6d7809b 100644 --- a/plugin.json +++ b/plugin.json @@ -7,6 +7,6 @@ "Version": "1.0.0", "Language": "csharp", "Website": "https://aka.ms/powertoys", - "ExecuteFileName": "Microsoft.PowerToys.Run.Plugin.WindowsSettings.dll", + "ExecuteFileName": "Flow.Plugin.WindowsSettings.dll", "IcoPath": "Images\\WindowsSettings.light.png" } From 6308a67fc9e7d348465cd706955f27637b123480 Mon Sep 17 00:00:00 2001 From: pc223 <10551242+pc223@users.noreply.github.com> Date: Thu, 22 Jul 2021 02:51:10 +0700 Subject: [PATCH 14/45] Add some icons glyph --- WindowsSettings.json | 551 ++++++++++++++++++++++++++++++++----------- 1 file changed, 410 insertions(+), 141 deletions(-) diff --git a/WindowsSettings.json b/WindowsSettings.json index 82c8d8f14fa..dec149c6b00 100644 --- a/WindowsSettings.json +++ b/WindowsSettings.json @@ -3,34 +3,44 @@ "Name": "AccessWorkOrSchool", "Area": "Accounts", "Type": "AppSettingsApp", - "AltNames": [ "Workplace" ], - "Command": "ms-settings:workplace" + "AltNames": [ + "Workplace" + ], + "Command": "ms-settings:workplace", + "glyph": "\ue821" }, { "Name": "EmailAndAppAccounts", "Area": "Accounts", "Type": "AppSettingsApp", - "Command": "ms-settings:emailandaccounts" + "Command": "ms-settings:emailandaccounts", + "glyph": "\ue715" }, { "Name": "FamilyAndOtherPeople", "Area": "Accounts", "Type": "AppSettingsApp", - "AltNames": [ "OtherUsers" ], - "Command": "ms-settings:otherusers" + "AltNames": [ + "OtherUsers" + ], + "Command": "ms-settings:otherusers", + "glyph": "\ue8fa" }, { "Name": "SetUpKiosk", "Area": "Accounts", "Type": "AppSettingsApp", - "AltNames": [ "AssignedAccess" ], + "AltNames": [ + "AssignedAccess" + ], "Command": "ms-settings:assignedaccess" }, { "Name": "SignInOptions", "Area": "Accounts", "Type": "AppSettingsApp", - "Command": "ms-settings:signinoptions" + "Command": "ms-settings:signinoptions", + "glyph": "\ue8d7" }, { "Name": "SignInOptionsDynamicLock", @@ -42,7 +52,8 @@ "Name": "SyncYourSettings", "Area": "Accounts", "Type": "AppSettingsApp", - "Command": "ms-settings:sync" + "Command": "ms-settings:sync", + "glyph": "\ue895" }, { "Name": "WindowsHelloSetupFace", @@ -60,13 +71,15 @@ "Name": "YourInfo", "Area": "Accounts", "Type": "AppSettingsApp", - "Command": "ms-settings:yourinfo" + "Command": "ms-settings:yourinfo", + "glyph": "\ue779" }, { "Name": "AppsAndFeatures", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:appsfeatures" + "Command": "ms-settings:appsfeatures", + "glyph": null }, { "Name": "AppFeatures", @@ -78,13 +91,15 @@ "Name": "AppsForWebsites", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:appsforwebsites" + "Command": "ms-settings:appsforwebsites", + "glyph": "\ue78b" }, { "Name": "DefaultApps", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:defaultapps" + "Command": "ms-settings:defaultapps", + "glyph": "\ue7ac" }, { "Name": "ManageOptionalFeatures", @@ -96,7 +111,8 @@ "Name": "OfflineMaps", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:maps" + "Command": "ms-settings:maps", + "glyph": "\ue826" }, { "Name": "OfflineMapsDownloadMaps", @@ -108,13 +124,15 @@ "Name": "StartupApps", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:startupapps" + "Command": "ms-settings:startupapps", + "glyph": "\ue7b5" }, { "Name": "VideoPlayback", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:videoplayback" + "Command": "ms-settings:videoplayback", + "glyph": "\ue714" }, { "Name": "Notifications", @@ -144,7 +162,9 @@ "Name": "CortanaLanguage", "Area": "Cortana", "Type": "AppSettingsApp", - "AltNames": [ "Talk" ], + "AltNames": [ + "Talk" + ], "Command": "ms-settings:cortana-language" }, { @@ -163,7 +183,8 @@ "Name": "AutoPlay", "Area": "Devices", "Type": "AppSettingsApp", - "Command": "ms-settings:autoplay" + "Command": "ms-settings:autoplay", + "glyph": "\uec57" }, { "Name": "Bluetooth", @@ -190,58 +211,72 @@ "Area": "Devices", "Type": "AppSettingsApp", "Note": "NoteTouchpad", - "Command": "ms-settings:mousetouchpad" + "Command": "ms-settings:mousetouchpad", + "glyph": "\ue962" }, { "Name": "PenAndWindowsInk", "Area": "Devices", "Type": "AppSettingsApp", - "Command": "ms-settings:pen" + "Command": "ms-settings:pen", + "glyph": "\uedc6" }, { "Name": "PrintersAndScanners", "Area": "Devices", "Type": "AppSettingsApp", - "Command": "ms-settings:printers" + "Command": "ms-settings:printers", + "glyph": "\ue749" }, { "Name": "Touchpad", "Area": "Devices", "Type": "AppSettingsApp", "Note": "NoteTouchpad", - "Command": "ms-settings:devices-touchpad" + "Command": "ms-settings:devices-touchpad", + "glyph": "\uefa5" }, { "Name": "Typing", "Area": "Devices", "Type": "AppSettingsApp", - "Command": "ms-settings:typing" + "Command": "ms-settings:typing", + "glyph": "\ue765" }, { "Name": "Usb", "Area": "Devices", "Type": "AppSettingsApp", - "Command": "ms-settings:usb" + "Command": "ms-settings:usb", + "glyph": "\ue88e" }, { "Name": "Wheel", "Area": "Devices", "Type": "AppSettingsApp", "Note": "NoteDialPaired", - "Command": "ms-settings:wheel" + "Command": "ms-settings:wheel", + "glyph": "\uee94" }, { "Name": "Phone", "Area": "Phone", "Type": "AppSettingsApp", - "AltNames": [ "MobileDevices" ], - "Command": "ms-settings:mobile-devices" + "AltNames": [ + "MobileDevices" + ], + "Command": "ms-settings:mobile-devices", + "glyph": "\ue8ea" }, { "Name": "Audio", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "Mono", "Volume", "AudioAlerts" ], + "AltNames": [ + "Mono", + "Volume", + "AudioAlerts" + ], "Command": "ms-settings:easeofaccess-audio" }, { @@ -254,21 +289,38 @@ "Name": "ColorFilters", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "InvertedColors", "Grayscale", "RedGreen", "BlueYellow", "GreenWeek", "RedWeek", "deuteranopia", "protanopia", "tritanopia" ], + "AltNames": [ + "InvertedColors", + "Grayscale", + "RedGreen", + "BlueYellow", + "GreenWeek", + "RedWeek", + "deuteranopia", + "protanopia", + "tritanopia" + ], "Command": "ms-settings:easeofaccess-colorfilter" }, { "Name": "MousePointer", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "TouchFeedback" ], + "AltNames": [ + "TouchFeedback" + ], "Command": "ms-settings:easeofaccess-MousePointer" }, { "Name": "Display", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "Transparency", "Animations", "ScrollBars", "Size" ], + "AltNames": [ + "Transparency", + "Animations", + "ScrollBars", + "Size" + ], "Command": "ms-settings:easeofaccess-display" }, { @@ -283,7 +335,8 @@ "Type": "AppSettingsApp", "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", - "Command": "ms-settings:fonts" + "Command": "ms-settings:fonts", + "glyph": "\ue8d2" }, { "Name": "HighContrast", @@ -295,21 +348,34 @@ "Name": "Keyboard", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "PrintScreen", "Shortcuts", "OnScreen", "Keys", "ScrollLock", "CapsLock", "NumLock" ], + "AltNames": [ + "PrintScreen", + "Shortcuts", + "OnScreen", + "Keys", + "ScrollLock", + "CapsLock", + "NumLock" + ], "Command": "ms-settings:easeofaccess-keyboard" }, { "Name": "Magnifier", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "Zoom" ], + "AltNames": [ + "Zoom" + ], "Command": "ms-settings:easeofaccess-magnifier" }, { "Name": "Mouse", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "Keypad", "Touch" ], + "AltNames": [ + "Keypad", + "Touch" + ], "Command": "ms-settings:easeofaccess-mouse" }, { @@ -330,7 +396,10 @@ "Name": "Speech", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "AltNames": [ "Recognition", "Talk" ], + "AltNames": [ + "Recognition", + "Talk" + ], "Command": "ms-settings:easeofaccess-speechrecognition" }, { @@ -350,25 +419,30 @@ "Name": "GameBar", "Area": "Gaming", "Type": "AppSettingsApp", - "Command": "ms-settings:gaming-gamebar" + "Command": "ms-settings:gaming-gamebar", + "glyph": "\uf192" }, { "Name": "GameDvr", "Area": "Gaming", "Type": "AppSettingsApp", - "Command": "ms-settings:gaming-gamedvr" + "Command": "ms-settings:gaming-gamedvr", + "glyph": "\ued36" }, { "Name": "GameMode", "Area": "Gaming", "Type": "AppSettingsApp", - "Command": "ms-settings:gaming-gamemode" + "Command": "ms-settings:gaming-gamemode", + "glyph": "\uec4a" }, { "Name": "PlayingGameFullScreen", "Area": "Gaming", "Type": "AppSettingsApp", - "AltNames": [ "QuietMomentsGame" ], + "AltNames": [ + "QuietMomentsGame" + ], "Command": "ms-settings:quietmomentsgame" }, { @@ -383,7 +457,8 @@ "Name": "XboxNetworking", "Area": "Gaming", "Type": "AppSettingsApp", - "Command": "ms-settings:gaming-xboxnetworking" + "Command": "ms-settings:gaming-xboxnetworking", + "glyph": "\uf20b" }, { "Name": "SettingsHomePage", @@ -395,7 +470,9 @@ "Name": "AudioAndSpeech", "Area": "MixedReality", "Type": "AppSettingsApp", - "AltNames": [ "HolographicAudio" ], + "AltNames": [ + "HolographicAudio" + ], "Note": "NoteMixedReality", "Command": "ms-settings:holographic-audio" }, @@ -403,7 +480,9 @@ "Name": "Environment", "Area": "MixedReality", "Type": "AppSettingsApp", - "AltNames": [ "HolographicEnvironment" ], + "AltNames": [ + "HolographicEnvironment" + ], "Note": "NoteMixedReality", "Command": "ms-settings:privacy-holographic-environment" }, @@ -411,7 +490,9 @@ "Name": "HeadsetDisplay", "Area": "MixedReality", "Type": "AppSettingsApp", - "AltNames": [ "HolographicHeadset" ], + "AltNames": [ + "HolographicHeadset" + ], "Note": "NoteMixedReality", "Command": "ms-settings:holographic-headset" }, @@ -419,7 +500,9 @@ "Name": "Uninstall", "Area": "MixedReality", "Type": "AppSettingsApp", - "AltNames": [ "HolographicManagement" ], + "AltNames": [ + "HolographicManagement" + ], "Note": "NoteMixedReality", "Command": "ms-settings:holographic-management" }, @@ -427,7 +510,8 @@ "Name": "AirplaneMode", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-airplanemode" + "Command": "ms-settings:network-airplanemode", + "glyph": "\ue709" }, { "Name": "Proximity", @@ -445,33 +529,47 @@ "Name": "DataUsage", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:datausage" + "Command": "ms-settings:datausage", + "glyph": "\ueb05" }, { "Name": "DialUp", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-dialup" + "Command": "ms-settings:network-dialup", + "glyph": "\ue83c" }, { "Name": "DirectAccess", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Note": "NoteDirectAccess", - "Command": "ms-settings:network-directaccess" + "Command": "ms-settings:network-directaccess", + "glyph": "\ue83b" }, { "Name": "Ethernet", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ], - "Command": "ms-settings:network-ethernet" + "AltNames": [ + "DNS", + "Sdns", + "SecureDNS", + "Gateway", + "Dhcp", + "Ip" + ], + "Command": "ms-settings:network-ethernet", + "glyph": "\ue839" }, { "Name": "ManageKnownNetworks", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "AltNames": [ "WiFiSettings", "ShortNameWiFi" ], + "AltNames": [ + "WiFiSettings", + "ShortNameWiFi" + ], "Note": "NoteWiFiAdapter", "Command": "ms-settings:network-wifisettings" }, @@ -479,53 +577,74 @@ "Name": "MobileHotspot", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-mobilehotspot" + "Command": "ms-settings:network-mobilehotspot", + "glyph": "\ue704" }, { "Name": "NFC", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "AltNames": [ "NFCTransactions" ], + "AltNames": [ + "NFCTransactions" + ], "Command": "ms-settings:nfctransactions" }, { "Name": "Proxy", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-proxy" + "Command": "ms-settings:network-proxy", + "glyph": "\ue774" }, { "Name": "NetworkStatus", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-status" + "Command": "ms-settings:network-status", + "glyph": "\uec27" }, { "Name": "Network", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ], - "Command": "ms-settings:network" + "AltNames": [ + "DNS", + "Sdns", + "SecureDNS", + "Gateway", + "Dhcp", + "Ip" + ], + "Command": "ms-settings:network", + "glyph": "\uec27" }, { "Name": "Vpn", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-vpn" + "Command": "ms-settings:network-vpn", + "glyph": "\ue705" }, { "Name": "WiFi", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "AltNames": [ "Wireless", "MeteredConnection", "ShortNameWiFi" ], + "AltNames": [ + "Wireless", + "MeteredConnection", + "ShortNameWiFi" + ], "Note": "NoteWiFiAdapter", - "Command": "ms-settings:network-wifi" + "Command": "ms-settings:network-wifi", + "glyph": "\ue701" }, { "Name": "WiFiCalling", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "AltNames": [ "ShortNameWiFi" ], + "AltNames": [ + "ShortNameWiFi" + ], "Note": "NoteWiFiAdapter", "Command": "ms-settings:network-wificalling" }, @@ -533,22 +652,38 @@ "Name": "Background", "Area": "Personalization", "Type": "AppSettingsApp", - "AltNames": [ "Wallpaper", "Picture", "Image" ], - "Command": "ms-settings:personalization-background" + "AltNames": [ + "Wallpaper", + "Picture", + "Image" + ], + "Command": "ms-settings:personalization-background", + "glyph": "\ueb9f" }, { "Name": "ChooseWhichFoldersAppearOnStart", "Area": "Personalization", "Type": "AppSettingsApp", - "AltNames": [ "StartPlaces" ], + "AltNames": [ + "StartPlaces" + ], "Command": "ms-settings:personalization-start-places" }, { "Name": "Colors", "Area": "Personalization", "Type": "AppSettingsApp", - "AltNames": [ "DarkMode", "LightMode", "DarkColor", "LightColor", "AppColor", "TaskbarColor", "WindowBorder" ], - "Command": "ms-settings:colors" + "AltNames": [ + "DarkMode", + "LightMode", + "DarkColor", + "LightColor", + "AppColor", + "TaskbarColor", + "WindowBorder" + ], + "Command": "ms-settings:colors", + "glyph": "\ue2b1" }, { "Name": "Glance", @@ -562,8 +697,12 @@ "Name": "LockScreen", "Area": "Personalization", "Type": "AppSettingsApp", - "AltNames": [ "Image", "Picture" ], - "Command": "ms-settings:lockscreen" + "AltNames": [ + "Image", + "Picture" + ], + "Command": "ms-settings:lockscreen", + "glyph": "\uee3f" }, { "Name": "NavigationBar", @@ -583,19 +722,22 @@ "Name": "Start", "Area": "Personalization", "Type": "AppSettingsApp", - "Command": "ms-settings:personalization-start" + "Command": "ms-settings:personalization-start", + "glyph": "\ueca5" }, { "Name": "Taskbar", "Area": "Personalization", "Type": "AppSettingsApp", - "Command": "ms-settings:taskbar" + "Command": "ms-settings:taskbar", + "glyph": "\ue90e" }, { "Name": "Themes", "Area": "Personalization", "Type": "AppSettingsApp", - "Command": "ms-settings:themes" + "Command": "ms-settings:themes", + "glyph": "\ue771" }, { "Name": "AddYourPhone", @@ -722,7 +864,9 @@ "Name": "InkingAndTyping", "Area": "Privacy", "Type": "AppSettingsApp", - "AltNames": [ "SpeechTyping" ], + "AltNames": [ + "SpeechTyping" + ], "Command": "ms-settings:privacy-speechtyping" }, { @@ -759,7 +903,9 @@ "Name": "OtherDevices", "Area": "Privacy", "Type": "AppSettingsApp", - "AltNames": [ "CustomDevices" ], + "AltNames": [ + "CustomDevices" + ], "Command": "ms-settings:privacy-customdevices" }, { @@ -820,7 +966,9 @@ "Name": "TeamConferencing", "Area": "SurfaceHub", "Type": "AppSettingsApp", - "AltNames": [ "calling" ], + "AltNames": [ + "calling" + ], "Command": "ms-settings:surfacehub-calling" }, { @@ -839,8 +987,16 @@ "Name": "About", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "Ram", "Processor", "Os", "Id", "Edition", "Version" ], - "Command": "ms-settings:about" + "AltNames": [ + "Ram", + "Processor", + "Os", + "Id", + "Edition", + "Version" + ], + "Command": "ms-settings:about", + "glyph": "\ue946" }, { "Name": "AdvancedDisplaySettings", @@ -855,7 +1011,8 @@ "Type": "AppSettingsApp", "IntroducedInBuild": 18362, "Note": "NoteSince18362", - "Command": "ms-settings:apps-volume" + "Command": "ms-settings:apps-volume", + "glyph": "\ue767" }, { "Name": "BatterySaver", @@ -875,7 +1032,9 @@ "Name": "BatteryUse", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "BatterySaverUsageDetails" ], + "AltNames": [ + "BatterySaverUsageDetails" + ], "Note": "NoteBattery", "Command": "ms-settings:batterysaver-usagedetails" }, @@ -883,20 +1042,28 @@ "Name": "Clipboard", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:clipboard" + "Command": "ms-settings:clipboard", + "glyph": "\ue77f" }, { "Name": "Display", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "NightLight", "BlueLight", "WarmerColor", "RedEye" ], - "Command": "ms-settings:display" + "AltNames": [ + "NightLight", + "BlueLight", + "WarmerColor", + "RedEye" + ], + "Command": "ms-settings:display", + "glyph": "\ue7f4" }, { "Name": "DefaultSaveLocations", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:savelocations" + "Command": "ms-settings:savelocations", + "glyph": "\ueda2" }, { "Name": "ScreenRotation", @@ -908,14 +1075,18 @@ "Name": "DuplicatingMyDisplay", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "Presentation" ], + "AltNames": [ + "Presentation" + ], "Command": "ms-settings:quietmomentspresentation" }, { "Name": "DuringTheseHours", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "Scheduled" ], + "AltNames": [ + "Scheduled" + ], "Command": "ms-settings:quietmomentsscheduled" }, { @@ -928,7 +1099,8 @@ "Name": "FocusAssistQuietHours", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:quiethours" + "Command": "ms-settings:quiethours", + "glyph": "\ue708" }, { "Name": "FocusAssistQuietMoments", @@ -940,9 +1112,12 @@ "Name": "GraphicsSettings", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "AdvancedGraphics" ], + "AltNames": [ + "AdvancedGraphics" + ], "Note": "NoteAdvancedGraphics", - "Command": "ms-settings:display-advancedgraphics" + "Command": "ms-settings:display-advancedgraphics", + "glyph": "\ue7f4" }, { "Name": "Messaging", @@ -954,8 +1129,14 @@ "Name": "Multitasking", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "Timeline", "Tab", "AltAndTab", "VirtualDesktops" ], - "Command": "ms-settings:multitasking" + "AltNames": [ + "Timeline", + "Tab", + "AltAndTab", + "VirtualDesktops" + ], + "Command": "ms-settings:multitasking", + "glyph": "\uee40" }, { "Name": "NightLightSettings", @@ -973,38 +1154,45 @@ "Name": "ProjectingToThisPc", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:project" + "Command": "ms-settings:project", + "glyph": "\uebc6" }, { "Name": "SharedExperiences", "Area": "System", "Type": "AppSettingsApp", - "AltNames": [ "Crossdevice" ], + "AltNames": [ + "Crossdevice" + ], "Command": "ms-settings:crossdevice" }, { "Name": "TabletMode", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:tabletmode" + "Command": "ms-settings:tabletmode", + "glyph": "\uebfc" }, { "Name": "Taskbar", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:taskbar" + "Command": "ms-settings:taskbar", + "glyph": "\ue90e" }, { "Name": "NotificationsAndActions", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:notifications" + "Command": "ms-settings:notifications", + "glyph": "\ue91c" }, { "Name": "RemoteDesktop", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:remotedesktop" + "Command": "ms-settings:remotedesktop", + "glyph": "\ue8af" }, { "Name": "Phone", @@ -1018,37 +1206,44 @@ "Name": "PowerAndSleep", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:powersleep" + "Command": "ms-settings:powersleep", + "glyph": "\ue7e8" }, { "Name": "Sound", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:sound" + "Command": "ms-settings:sound", + "glyph": "\ue767" }, { "Name": "StorageSense", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:storagesense" + "Command": "ms-settings:storagesense", + "glyph": "\ueda2" }, { "Name": "StoragePolicies", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:storagepolicies" + "Command": "ms-settings:storagepolicies", + "glyph": "\ueda2" }, { "Name": "DateAndTime", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "Command": "ms-settings:dateandtime" + "Command": "ms-settings:dateandtime", + "glyph": "\uec92" }, { "Name": "JapanImeSettings", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "AltNames": [ "jpnime" ], + "AltNames": [ + "jpnime" + ], "Note": "NoteImeJapan", "Command": "ms-settings:regionlanguage-jpnime" }, @@ -1056,7 +1251,9 @@ "Name": "Region", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "AltNames": [ "RegionFormatting" ], + "AltNames": [ + "RegionFormatting" + ], "Command": "ms-settings:regionformatting" }, { @@ -1069,13 +1266,16 @@ "Name": "RegionalLanguage", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "Command": "ms-settings:regionlanguage" + "Command": "ms-settings:regionlanguage", + "glyph": "\ue8c1" }, { "Name": "BopomofoIme", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "AltNames": [ "bpmf" ], + "AltNames": [ + "bpmf" + ], "Command": "ms-settings:regionlanguage-bpmfime" }, { @@ -1125,7 +1325,8 @@ "Name": "Speech", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "Command": "ms-settings:speech" + "Command": "ms-settings:speech", + "glyph": "\ue720" }, { "Name": "WubiImeSettings", @@ -1138,57 +1339,74 @@ "Name": "Activation", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:activation" + "Command": "ms-settings:activation", + "glyph": "\ue930" }, { "Name": "Backup", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:backup" + "Command": "ms-settings:backup", + "glyph": "\ue11c" }, { "Name": "DeliveryOptimization", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:delivery-optimization" + "Command": "ms-settings:delivery-optimization", + "glyph": "\uf785" }, { "Name": "FindMyDevice", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:findmydevice" + "Command": "ms-settings:findmydevice", + "glyph": "\ue707" }, { "Name": "ForDevelopers", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:developers" + "Command": "ms-settings:developers", + "glyph": "\uec7a" }, { "Name": "Recovery", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:recovery" + "Command": "ms-settings:recovery", + "glyph": "\uebc4" }, { "Name": "Troubleshoot", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:troubleshoot" + "Command": "ms-settings:troubleshoot", + "glyph": "\ue15e" }, { "Name": "WindowsSecurity", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "AltNames": [ "WindowsDefender", "Firewall", "Virus", "CoreIsolation", "SecurityProcessor", "IsolatedBrowsing", "ExploitProtection" ], - "Command": "ms-settings:windowsdefender" + "AltNames": [ + "WindowsDefender", + "Firewall", + "Virus", + "CoreIsolation", + "SecurityProcessor", + "IsolatedBrowsing", + "ExploitProtection" + ], + "Command": "ms-settings:windowsdefender", + "glyph": "\ue83d" }, { "Name": "WindowsInsiderProgram", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Note": "NoteEnrolledWIP", - "Command": "ms-settings:windowsinsider" + "Command": "ms-settings:windowsinsider", + "glyph": "\uf1ad" }, { "Name": "WindowsUpdate", @@ -1200,7 +1418,8 @@ "Name": "WindowsUpdateCheckForUpdates", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:windowsupdate-action" + "Command": "ms-settings:windowsupdate-action", + "glyph": "\ue895" }, { "Name": "WindowsUpdateAdvancedOptions", @@ -1253,7 +1472,9 @@ "Name": "AccessibilityOptions", "Area": "EaseOfAccess", "Type": "ControlPanel", - "AltNames": [ "access.cpl" ], + "AltNames": [ + "access.cpl" + ], "Command": "control access.cpl" }, { @@ -1272,7 +1493,9 @@ "Name": "AddRemovePrograms", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "appwiz.cpl" ], + "AltNames": [ + "appwiz.cpl" + ], "Command": "control appwiz.cpl" }, { @@ -1321,21 +1544,27 @@ "Name": "CredentialManager", "Area": "UserAccounts", "Type": "ControlPanel", - "AltNames": [ "Password" ], + "AltNames": [ + "Password" + ], "Command": "control /name Microsoft.CredentialManager" }, { "Name": "ClientServiceForNetWare", "Area": "Programs", "Type": "ControlPanel", - "AltNames": [ "nwc.cpl" ], + "AltNames": [ + "nwc.cpl" + ], "Command": "control nwc.cpl" }, { "Name": "DateAndTime", "Area": "ClockAndRegion", "Type": "ControlPanel", - "AltNames": [ "timedate.cpl" ], + "AltNames": [ + "timedate.cpl" + ], "Command": "control /name Microsoft.DateAndTime" }, { @@ -1420,14 +1649,18 @@ "Name": "InternetOptions", "Area": "NetworkAndInternet", "Type": "ControlPanel", - "AltNames": [ "inetcpl.cpl" ], + "AltNames": [ + "inetcpl.cpl" + ], "Command": "control /name Microsoft.InternetOptions" }, { "Name": "MailMicrosoftExchangeOrWindowsMessaging", "Area": "NetworkAndInternet", "Type": "ControlPanel", - "AltNames": [ "mlcfg32.cpl" ], + "AltNames": [ + "mlcfg32.cpl" + ], "Command": "control mlcfg32.cpl" }, { @@ -1452,14 +1685,18 @@ "Name": "NetworkSetupWizard", "Area": "NetworkAndInternet", "Type": "ControlPanel", - "AltNames": [ "netsetup.cpl" ], + "AltNames": [ + "netsetup.cpl" + ], "Command": "control netsetup.cpl" }, { "Name": "OdbcDataSourceAdministrator32Bit", "Area": "AdministrativeTools", "Type": "ControlPanel", - "AltNames": [ "odbccp32.cpl" ], + "AltNames": [ + "odbccp32.cpl" + ], "Command": "%windir%/syswow64/odbcad32.exe" }, { @@ -1514,14 +1751,18 @@ "Name": "PhoneAndModem", "Area": "NetworkAndInternet", "Type": "ControlPanel", - "AltNames": [ "modem.cpl" ], + "AltNames": [ + "modem.cpl" + ], "Command": "control /name Microsoft.PhoneAndModem" }, { "Name": "PowerOptions", "Area": "SystemAndSecurity", "Type": "ControlPanel", - "AltNames": [ "powercfg.cpl" ], + "AltNames": [ + "powercfg.cpl" + ], "Command": "control /name Microsoft.PowerOptions" }, { @@ -1564,14 +1805,18 @@ "Name": "ScannersAndCameras", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "sticpl.cpl" ], + "AltNames": [ + "sticpl.cpl" + ], "Command": "control /name Microsoft.ScannersAndCameras" }, { "Name": "ScheduledTasks", "Area": "SystemAndSecurity", "Type": "ControlPanel", - "AltNames": [ "schedtasks" ], + "AltNames": [ + "schedtasks" + ], "Command": "control schedtasks" }, { @@ -1602,7 +1847,9 @@ "Name": "System", "Area": "SystemAndSecurity", "Type": "ControlPanel", - "AltNames": [ "sysdm.cpl" ], + "AltNames": [ + "sysdm.cpl" + ], "Command": "control sysdm.cpl" }, { @@ -1663,77 +1910,99 @@ "Name": "DisplayProperties", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "desk.cpl" ], + "AltNames": [ + "desk.cpl" + ], "Command": "control Desk.cpl" }, { "Name": "FindFast", "Area": "SystemAndSecurity", "Type": "ControlPanel", - "AltNames": [ "findfast.cpl" ], + "AltNames": [ + "findfast.cpl" + ], "Command": "control FindFast.cpl" }, { "Name": "RegionalSettingsProperties", "Area": "EaseOfAccess", "Type": "ControlPanel", - "AltNames": [ "intl.cpl" ], + "AltNames": [ + "intl.cpl" + ], "Command": "control Intl.cpl" }, { "Name": "JoystickProperties", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "joy.cpl" ], + "AltNames": [ + "joy.cpl" + ], "Command": "control Joy.cpl" }, { "Name": "MouseFontsKeyboardAndPrintersProperties", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "main.cpl" ], + "AltNames": [ + "main.cpl" + ], "Command": "control Main.cpl" }, { "Name": "MultimediaProperties", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "mmsys.cpl" ], + "AltNames": [ + "mmsys.cpl" + ], "Command": "control Mmsys.cpl" }, { "Name": "NetworkProperties", "Area": "NetworkAndInternet", "Type": "ControlPanel", - "AltNames": [ "netcpl.cpl" ], + "AltNames": [ + "netcpl.cpl" + ], "Command": "control Netcpl.cpl" }, { "Name": "PasswordProperties", "Area": "UserAccounts", "Type": "ControlPanel", - "AltNames": [ "password.cpl" ], + "AltNames": [ + "password.cpl" + ], "Command": "control Password.cpl" }, { "Name": "SystemPropertiesAndAddNewHardwareWizard", "Area": "HardwareAndSound", "Type": "ControlPanel", - "AltNames": [ "sysdm.cpl" ], + "AltNames": [ + "sysdm.cpl" + ], "Command": "control Sysdm.cpl" }, { "Name": "DesktopThemes", "Area": "AppearanceAndPersonalization", "Type": "ControlPanel", - "AltNames": [ "themes.cpl" ], + "AltNames": [ + "themes.cpl" + ], "Command": "control Themes.cpl" }, { "Name": "MicrosoftMailPostOffice", "Area": "Programs", "Type": "ControlPanel", - "AltNames": [ "wgpocpl.cpl" ], + "AltNames": [ + "wgpocpl.cpl" + ], "Command": "control Wgpocpl.cpl" } ] From 7f5b9b7ccdac5bfef321da7d069d7d007e9fd4f5 Mon Sep 17 00:00:00 2001 From: pc223 <10551242+pc223@users.noreply.github.com> Date: Sat, 24 Jul 2021 18:46:27 +0700 Subject: [PATCH 15/45] Add task links --- WindowsSettings.json | 12262 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 12262 insertions(+) diff --git a/WindowsSettings.json b/WindowsSettings.json index 82c8d8f14fa..ce4f57a957c 100644 --- a/WindowsSettings.json +++ b/WindowsSettings.json @@ -1735,5 +1735,12267 @@ "Type": "ControlPanel", "AltNames": [ "wgpocpl.cpl" ], "Command": "control Wgpocpl.cpl" + }, + { + "Name": "Accommodate learning abilities", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageQuestionsCognitive", + "Keywords": [ + [ + "accomidate", + "accomodates", + "accomodating", + "adjust", + "for" + ], + [ + "can", + "not", + "cannot", + "can't", + "difficult", + "to", + "difficulty", + "does", + "doesn't", + "hard", + "not", + "will", + "willnot", + "won't" + ], + [ + "disabled", + "handicap", + "handicapped", + "disabilities", + "disability", + "empaired", + "impaired", + "imparied", + "trouble" + ], + [ + "cognitive", + "learning" + ] + ] + }, + { + "Name": "Accommodate low vision", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToSee", + "Keywords": [ + [ + "accomidate", + "accomodates", + "accomodating", + "adjust", + "for" + ], + [ + "site", + "blindness", + "blurred", + "blurry", + "half", + "legally", + "low", + "vision", + "poor", + "seeing", + "seems", + "sight", + "weak", + "bad", + "eyesight", + "eye-sight" + ], + [ + "disabled", + "handicap", + "handicapped", + "disabilities", + "disability", + "empaired", + "impaired", + "imparied", + "trouble" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ] + ] + }, + { + "Name": "Change how your keyboard works", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageKeyboardEasierToUse", + "Keywords": [ + [ + "switch", + "filterkeys", + "keys", + "stickykeys", + "togglekeys", + "sticky-keys", + "toggle-keys", + "repeat", + "delay", + "hold", + "down", + "rate" + ], + [ + "accessibility", + "acessibility", + "ease", + "of" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ], + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ] + ] + }, + { + "Name": "Change how your mouse works", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToClick", + "Keywords": [ + [ + "accessibility", + "acessibility", + "ease", + "of" + ], + [ + "butons", + "buttons" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "lock", + "clicking", + "doubleclick", + "double-click", + "single-click" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ], + [ + "move", + "moving", + "shadow", + "speed", + "tails" + ], + [ + "mice", + "mouses", + "pointer" + ] + ] + }, + { + "Name": "Use screen reader", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageNoVisual", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "screan", + "readers", + "screenreader", + "windows", + "narrator" + ] + ] + }, + { + "Name": "Change the Narrator\u2019s voice", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\narrator.exe", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "sound", + "voices" + ], + [ + "screan", + "readers", + "screenreader", + "windows", + "narrator" + ] + ] + }, + { + "Name": "Control the computer without the mouse or keyboard", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageNoMouseOrKeyboard", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "recognise", + "activated", + "commanding", + "dictate", + "dictation", + "recogination", + "recognition", + "recognize", + "recongition", + "reconition", + "speaking", + "speechrecognition", + "speech-recognition", + "talk", + "to", + "understand", + "voice" + ] + ] + }, + { + "Name": "Hear a tone when keys are pressed", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageFilterKeysSettings", + "Keywords": [ + [ + "def", + "hearing", + "deaf", + "deafness", + "hard", + "of", + "problem", + "impaired", + "imparied" + ], + [ + "audio", + "beeps", + "music", + "noises", + "schemes", + "sounds", + "tones", + "wav", + "sound", + "beep", + "noise" + ], + [ + "customise", + "soundsentry", + "sentry", + "settings", + "customize", + "captions", + "showsounds" + ] + ] + }, + { + "Name": "Hear text read aloud with Narrator", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter", + "Keywords": [ + [ + "read", + "reads", + "reading" + ], + [ + "screan", + "readers", + "screenreader", + "windows", + "narrator" + ] + ] + }, + { + "Name": "Ignore repeated keystrokes using FilterKeys", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageFilterKeysSettings", + "Keywords": [ + [ + "keys", + "filterkeys" + ] + ] + }, + { + "Name": "Let Windows suggest Ease of Access settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageQuestionsEyesight", + "Keywords": [ + [ + "accessibility", + "acessibility", + "ease", + "of" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ], + [ + "questionaire", + "questionnaire", + "survey" + ], + [ + "wizard", + "wizzard" + ] + ] + }, + { + "Name": "Magnify portions of the screen using Magnifier", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToSee", + "Keywords": [ + [ + "site", + "blindness", + "blurred", + "blurry", + "half", + "legally", + "low", + "vision", + "poor", + "seeing", + "seems", + "sight", + "weak", + "bad", + "eyesight", + "eye-sight" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "magnification", + "magnified", + "magnifying", + "make", + "bigger", + "larger", + "zoom", + "in" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Move the pointer with the keypad using MouseKeys", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageKeyboardEasierToUse", + "Keywords": [ + [ + "arrows", + "cursors", + "mouse", + "pointers" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "keys", + "mousekeys" + ] + ] + }, + { + "Name": "Optimise for blindness", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageNoVisual", + "Keywords": [ + [ + "site", + "blindness", + "blurred", + "blurry", + "half", + "legally", + "low", + "vision", + "poor", + "seeing", + "seems", + "sight", + "weak", + "bad", + "eyesight", + "eye-sight" + ], + [ + "can", + "not", + "cannot", + "can't", + "difficult", + "to", + "difficulty", + "does", + "doesn't", + "hard", + "not", + "will", + "willnot", + "won't" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "dimmed", + "dimed", + "low", + "dimming", + "diming", + "dimmer", + "dimer", + "display", + "fade", + "brightness" + ], + [ + "disabled", + "handicap", + "handicapped", + "disabilities", + "disability", + "empaired", + "impaired", + "imparied", + "trouble" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Optimise visual display", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToSee", + "Keywords": [ + [ + "switch", + "filterkeys", + "keys", + "stickykeys", + "togglekeys", + "sticky-keys", + "toggle-keys", + "repeat", + "delay", + "hold", + "down", + "rate" + ], + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "site", + "blindness", + "blurred", + "blurry", + "half", + "legally", + "low", + "vision", + "poor", + "seeing", + "seems", + "sight", + "weak", + "bad", + "eyesight", + "eye-sight" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Press key combinations one at a time", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageKeyboardEasierToUse", + "Keywords": [ + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ], + [ + "keys", + "stickykeys" + ] + ] + }, + { + "Name": "Replace sounds with visual cues", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierWithSounds", + "Keywords": [ + [ + "can", + "not", + "cannot", + "can't", + "difficult", + "to", + "difficulty", + "does", + "doesn't", + "hard", + "not", + "will", + "willnot", + "won't" + ], + [ + "def", + "hearing", + "deaf", + "deafness", + "hard", + "of", + "problem", + "impaired", + "imparied" + ], + [ + "disabled", + "handicap", + "handicapped", + "disabilities", + "disability", + "empaired", + "impaired", + "imparied", + "trouble" + ], + [ + "cards", + "soundcards" + ], + [ + "audio", + "beeps", + "music", + "noises", + "schemes", + "sounds", + "tones", + "wav", + "sound", + "beep", + "noise" + ], + [ + "customise", + "soundsentry", + "sentry", + "settings", + "customize", + "captions", + "showsounds" + ] + ] + }, + { + "Name": "Turn High Contrast on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,2", + "Keywords": [ + [ + "brightness", + "contrast", + "hi-contrast", + "high-contrast" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "monitors", + "screens" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Turn Magnifier on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "magnification", + "magnified", + "magnifying", + "make", + "bigger", + "larger", + "zoom", + "in" + ] + ] + }, + { + "Name": "Turn off background images", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToSee", + "Keywords": [ + [ + "ground", + "background" + ], + [ + "image", + "photograph", + "picture" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ] + ] + }, + { + "Name": "Turn off unnecessary animations", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToSee", + "Keywords": [ + [ + "animations", + "cartoons" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ] + ] + }, + { + "Name": "Turn On-Screen keyboard on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ], + [ + "screen", + "keyboard", + "onscreen", + "on-screen", + "osk" + ] + ] + }, + { + "Name": "Turn on easy access keys", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageKeyboardEasierToUse", + "Keywords": [ + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ] + ] + }, + { + "Name": "Use audio description for video", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToSee", + "Keywords": [ + [ + "text", + "to", + "speech", + "tts", + "voice", + "narrator" + ], + [ + "videoes", + "videos" + ] + ] + }, + { + "Name": "View current accessibility settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter", + "Keywords": [ + [ + "accessibility", + "acessibility", + "ease", + "of" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Turn off automatic window arrangement", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.EaseOfAccessCenter /page pageEasierToClick", + "Keywords": [ + [ + "mice", + "mouses", + "pointer" + ], + [ + "management", + "managment" + ], + [ + "movement", + "movment", + "movemnet", + "motion" + ], + [ + "maximise", + "minimise", + "snapping", + "shake", + "shaking", + "dock", + "drag", + "edge", + "sides", + "top", + "screen", + "size", + "resize", + "maximize", + "restore", + "minimize" + ] + ] + }, + { + "Name": "Create and format hard disk partitions", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\diskmgmt.msc", + "Keywords": [ + [ + "clean-up", + "check", + "disk", + "dsk", + "chkdsk", + "cleandisk", + "cleaner", + "cleanup", + "up" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "fdisc", + "fdisk" + ], + [ + "formated", + "formating", + "formatted", + "formatting" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "boot", + "disc", + "extended", + "format", + "disk", + "drive", + "harddisk", + "harddrive", + "ntfs", + "fat", + "partitian", + "partitioning", + "primary", + "reformat", + "sector", + "unpartition", + "volume" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ], + [ + "management", + "managment" + ] + ] + }, + { + "Name": "Defragment and optimise your drives", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\dfrgui.exe", + "Keywords": [ + [ + "clean-up", + "check", + "disk", + "dsk", + "chkdsk", + "cleandisk", + "cleaner", + "cleanup", + "up" + ], + [ + "defragment", + "free", + "up", + "space" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "disc", + "disk", + "scandisc", + "scandisk", + "scandsk" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Diagnose your computer's memory problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mdsched.exe", + "Keywords": [ + [ + "diagnose", + "diagnostics", + "diagnosis", + "find", + "problems", + "analyse", + "analyze", + "analysis", + "troubleshooter", + "errors" + ], + [ + "gigabytes", + "gigs", + "megabytes", + "megs", + "memory", + "ram" + ] + ] + }, + { + "Name": "Edit group policy", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\gpedit.msc", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "grouping" + ], + [ + "policies", + "policys" + ] + ] + }, + { + "Name": "Clear disk space by deleting unnecessary files", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\cleanmgr.exe", + "Keywords": [ + [ + "clean-up", + "check", + "disk", + "dsk", + "chkdsk", + "cleandisk", + "cleaner", + "cleanup", + "up" + ], + [ + "clean-up", + "check", + "up", + "cleanup", + "free", + "space", + "room", + "release", + "available" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "temp", + "cached", + "files", + "history", + "local", + "temorary", + "temporary", + "temperary", + "tmp", + "unnecessary", + "unneeded", + "useless", + "web" + ] + ] + }, + { + "Name": "Generate a system health report", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\perfmon.exe /report", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "healthy" + ], + [ + "optimise", + "crawl", + "degrade", + "faster", + "frozen", + "hanging", + "hung", + "improve", + "inactive", + "optimize", + "performance", + "quicker", + "sluggish", + "speed", + "thrashing", + "too", + "slow", + "unresponsive" + ], + [ + "diagnose", + "diagnostics", + "diagnosis", + "find", + "problems", + "analyse", + "analyze", + "analysis", + "troubleshooter", + "errors" + ] + ] + }, + { + "Name": "Schedule tasks", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\taskschd.msc", + "Keywords": [ + [ + "automated", + "automatically" + ], + [ + "scheduled", + "scheduling" + ] + ] + }, + { + "Name": "Set up ODBC data sources", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\odbcad32.exe", + "Keywords": [ + [ + "datum", + "odbc", + "data-base", + "database" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ] + ] + }, + { + "Name": "Set up ODBC data sources (32-bit)", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\syswow64\\odbcad32.exe", + "Keywords": [ + [ + "datum", + "odbc", + "data-base", + "database" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ] + ] + }, + { + "Name": "Set up ODBC data sources (64-bit)", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\odbcad32.exe", + "Keywords": [ + [ + "datum", + "odbc", + "data-base", + "database" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ] + ] + }, + { + "Name": "Set up ODBC data sources", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\odbcad32.exe", + "Keywords": [ + [ + "datum", + "odbc", + "data-base", + "database" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ] + ] + }, + { + "Name": "Set up iSCSI initiator", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\iscsicpl.exe", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "iscsi", + "scsi" + ], + [ + "storage" + ] + ] + }, + { + "Name": "View event logs", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\eventvwr.msc", + "Keywords": [ + [ + "viewer", + "events", + "tracker", + "eventviewer" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "View event logs", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\eventvwr.msc", + "Keywords": [ + [ + "viewer", + "events", + "tracker", + "eventviewer" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "View local services", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\services.msc", + "Keywords": [ + [ + "disable", + "stop" + ], + [ + "services" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ] + ] + }, + { + "Name": "Manage computer certificates", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\certlm.msc", + "Keywords": [ + [ + "certificate", + "key" + ] + ] + }, + { + "Name": "Uninstall a program", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ProgramsAndFeatures", + "Keywords": [ + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "browsers", + "ie", + "microsoft", + "windows" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "deinstall", + "uninstalled", + "uninstalling", + "uninstalls", + "unistall" + ] + ] + }, + { + "Name": "Add or remove programs", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ProgramsAndFeatures", + "Keywords": [ + [ + "add", + "or", + "remove", + "programs", + "and", + "arp" + ] + ] + }, + { + "Name": "View installed updates", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ProgramsAndFeatures /page ::{D450A8A1-9568-45C7-9C0E-B4F9FB4537BD}", + "Keywords": [ + [ + "previous", + "old", + "installed", + "already", + "previously" + ], + [ + "atuo", + "automatically", + "automaticupdates", + "autoupdate", + "fixes", + "bugfixes", + "bugs", + "download", + "live", + "microsoft", + "patches", + "scan", + "security", + "service", + "packs", + "dater", + "dates", + "dating", + "updater", + "up-dater", + "updater.exe", + "updates", + "up-dates", + "up-dating", + "windows", + "windowsupdate.com", + "wizard", + "wupdater" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Turn Windows features on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\OptionalFeatures.exe", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "accessories", + "accessory", + "components", + "feature", + "features", + "programs", + "tools", + "utilities", + "utility" + ] + ] + }, + { + "Name": "Turn Windows features on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ServerManager.exe -arw", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "accessories", + "accessory", + "components", + "feature", + "features", + "programs", + "tools", + "utilities", + "utility" + ] + ] + }, + { + "Name": "Show which programs are installed on your computer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ProgramsAndFeatures", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ] + ] + }, + { + "Name": "How to install a program", + "Area": null, + "Type": "TaskLink", + "Command": "mshelp://windows/?id=fe7ea80e-52a2-48d6-947a-05e02e78bc37", + "Keywords": [ + [ + "added", + "adding", + "addon", + "add-on", + "adds" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "browsers", + "ie", + "microsoft", + "windows" + ] + ] + }, + { + "Name": "Install a program from the network", + "Area": null, + "Type": "TaskLink", + "Command": "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\\8\\::{15EAE92E-F17A-4431-9F28-805E482dAFD4}", + "Keywords": [ + [ + "add", + "or", + "remove", + "programs", + "and", + "arp" + ], + [ + "add", + "new", + "installed", + "installing" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ] + ] + }, + { + "Name": "Change or remove a program", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ProgramsAndFeatures", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "browsers", + "ie", + "microsoft", + "windows" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "deinstall", + "uninstalled", + "uninstalling", + "uninstalls", + "unistall" + ] + ] + }, + { + "Name": "16-Bit Application Support", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL ntvdmcpl.dll", + "Keywords": [ + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "applications", + "apps", + "application", + "app" + ], + [ + "apcompat", + "appcompat", + "compatable", + "compatibility", + "compatible", + "still", + "use" + ], + [ + "16", + "bit", + "16-bit", + "legacy", + "old", + "dos", + "win31", + "emulation", + "ntvdm" + ] + ] + }, + { + "Name": "Run programs made for previous versions of Windows", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id PCWDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "applications", + "apps", + "application", + "app" + ], + [ + "apcompat", + "appcompat", + "compatable", + "compatibility", + "compatible", + "still", + "use" + ], + [ + "earlier", + "older" + ], + [ + "previous", + "old", + "installed", + "already", + "previously" + ], + [ + "browsers", + "ie", + "microsoft", + "windows" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ] + ] + }, + { + "Name": "Make a file type always open in a specific program", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.DefaultPrograms /page pageFileAssoc", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "associate", + "association", + "associations", + "extensions", + "extentions", + "type", + "filetype", + "open", + "with" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ] + ] + }, + { + "Name": "Set your default programs", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.DefaultPrograms /page pageDefaultProgram", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "by", + "defaults", + "defualt", + "standard" + ], + [ + "associate", + "association", + "associations", + "extensions", + "extentions", + "type", + "filetype", + "open", + "with" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "protocols" + ] + ] + }, + { + "Name": "View devices and printers", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.DevicesAndPrinters", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "802.1x", + "wireless", + "wire-less" + ], + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ], + [ + "computer", + "top", + "laptop", + "mobile", + "pc", + "notebook", + "portable" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "1394", + "controller", + "adapter", + "adaptor", + "audio", + "biometric", + "cable", + "modem", + "card", + "cd-dvd", + "drive", + "CRT", + "devise", + "digial", + "camera", + "dsl", + "dvd", + "ethernet", + "flat", + "panel", + "game", + "handheld", + "scanner", + "ware", + "hardware", + "hardwear", + "infrared", + "ink-jet", + "input", + "IrDA", + "stick", + "joystick", + "keyboard", + "laser", + "printer", + "lcd", + "Mass", + "Storage", + "midi", + "mixer", + "mobile", + "monitor", + "motherboard", + "mouse", + "mp3", + "player", + "mpeg", + "music", + "player", + "network", + "optical", + "wheel", + "mouse", + "output", + "pen", + "plasma", + "monitor", + "portable", + "media", + "player", + "printer", + "raid", + "recording", + "scanner", + "card", + "reader", + "smartcard", + "sound", + "tape", + "drive", + "pad", + "touchpad", + "ball", + "trackball", + "tuner", + "tv", + "USB", + "video", + "capture", + "cards", + "view", + "USB", + "hub", + "camera", + "webcam", + "wheel", + "mouse", + "wireless", + "wlan" + ], + [ + "added", + "adding", + "addon", + "add-on", + "adds" + ], + [ + "scaners", + "scanners", + "scanning" + ], + [ + "camaras", + "cameras", + "camras" + ], + [ + "maneger", + "manager", + "devicemanager", + "dma", + "managar", + "management", + "managing", + "managment" + ], + [ + "drivers" + ], + [ + "audio", + "blank", + "ray", + "blue-ray", + "blu-ray", + "cd-rom", + "cds", + "dvd", + "enhanced", + "HD", + "media", + "super", + "video" + ], + [ + "tooth", + "bluetooth", + "blutooth" + ], + [ + "cards", + "videocards", + "videos" + ], + [ + "storage" + ], + [ + "ware", + "hardware-general" + ] + ] + }, + { + "Name": "Add a device", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\DevicePairingWizard.exe", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ], + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ], + [ + "added", + "adding", + "addon", + "add-on", + "adds" + ], + [ + "add", + "new", + "installed", + "installing" + ], + [ + "mobile", + "handset", + "handsets", + "phone", + "cellphone", + "cell", + "speakers", + "headset", + "headsets" + ], + [ + "TV", + "television" + ], + [ + "DLNA", + "media", + "player", + "storage", + "NAS" + ], + [ + "network", + "networking", + "networks" + ], + [ + "link", + "pair", + "pairs", + "associate", + "associates", + "add", + "adds", + "connects", + "connect", + "setup", + "playto", + "play" + ] + ] + }, + { + "Name": "Advanced printer setup", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe printui.dll,PrintUIEntryDPIAware /il", + "Keywords": [ + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ], + [ + "added", + "adding", + "addon", + "add-on", + "adds" + ], + [ + "add", + "new", + "installed", + "installing" + ], + [ + "finding", + "locate", + "locating", + "search", + "for", + "is", + "where's", + "the" + ], + [ + "gets", + "getting", + "get-verb" + ], + [ + "network", + "networking", + "networks" + ], + [ + "link", + "pair", + "pairs", + "associate", + "associates", + "add", + "adds", + "connects", + "connect", + "setup", + "playto", + "play" + ] + ] + }, + { + "Name": "Add a Bluetooth device", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\DevicePairingWizard.exe /bluetooth", + "Keywords": [ + [ + "tooth", + "bluetooth", + "blutooth" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "802.1x", + "wireless", + "wire-less" + ], + [ + "link", + "pair", + "pairs", + "associate", + "associates", + "add", + "adds", + "connects", + "connect", + "setup", + "playto", + "play" + ], + [ + "add", + "new", + "installed", + "installing" + ] + ] + }, + { + "Name": "Device Manager", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.DeviceManager", + "Keywords": [ + [ + "maneger", + "manager", + "devicemanager", + "dma", + "managar", + "management", + "managing", + "managment" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "drivers" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "1394", + "controller", + "adapter", + "adaptor", + "audio", + "biometric", + "cable", + "modem", + "card", + "cd-dvd", + "drive", + "CRT", + "devise", + "digial", + "camera", + "dsl", + "dvd", + "ethernet", + "flat", + "panel", + "game", + "handheld", + "scanner", + "ware", + "hardware", + "hardwear", + "infrared", + "ink-jet", + "input", + "IrDA", + "stick", + "joystick", + "keyboard", + "laser", + "printer", + "lcd", + "Mass", + "Storage", + "midi", + "mixer", + "mobile", + "monitor", + "motherboard", + "mouse", + "mp3", + "player", + "mpeg", + "music", + "player", + "network", + "optical", + "wheel", + "mouse", + "output", + "pen", + "plasma", + "monitor", + "portable", + "media", + "player", + "printer", + "raid", + "recording", + "scanner", + "card", + "reader", + "smartcard", + "sound", + "tape", + "drive", + "pad", + "touchpad", + "ball", + "trackball", + "tuner", + "tv", + "USB", + "video", + "capture", + "cards", + "view", + "USB", + "hub", + "camera", + "webcam", + "wheel", + "mouse", + "wireless", + "wlan" + ], + [ + "mine", + "my" + ] + ] + }, + { + "Name": "Change Windows To Go start-up options", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe pwlauncher.dll,ShowPortableWorkspaceLauncherConfigurationUX", + "Keywords": [] + }, + { + "Name": "Change default printer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.DevicesAndPrinters", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "by", + "defaults", + "defualt", + "standard" + ], + [ + "finding", + "locate", + "locating", + "search", + "for", + "is", + "where's", + "the" + ], + [ + "gets", + "getting", + "get-verb" + ], + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ] + ] + }, + { + "Name": "View scanners and cameras", + "Area": null, + "Type": "TaskLink", + "Command": "%ProgramFiles%\\Windows Photo Viewer\\ImagingDevices.exe", + "Keywords": [ + [ + "camaras", + "cameras", + "camras" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Change Bluetooth settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL bthprops.cpl,,1", + "Keywords": [ + [ + "tooth", + "bluetooth", + "blutooth" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "802.1x", + "wireless", + "wire-less" + ] + ] + }, + { + "Name": "Scan a document or picture", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\wfs.exe", + "Keywords": [ + [ + "scaners", + "scanners", + "scanning" + ], + [ + "add", + "create", + "make", + "new" + ] + ] + }, + { + "Name": "Set up USB game controllers", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL %windir%\\system32\\joy.cpl", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "controlers", + "controllers", + "stick", + "joystick" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "games" + ] + ] + }, + { + "Name": "Change device installation settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe newdev.dll,DeviceInternetSettingUi 5", + "Keywords": [ + [ + "change", + "changing", + "devices", + "installation", + "installing", + "settings", + "hardware", + "drivers", + "windows", + "in", + "out", + "optin", + "opt-in", + "optout", + "opt-out", + "metadata", + "data", + "icons", + "stage", + "downloads", + "downloading", + "online", + "fixing", + "working", + "my", + "searching", + "finding", + "getting", + "doesn't", + "not", + "for", + "newer" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Change settings for content received using Tap and send", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.AutoPlay", + "Keywords": [ + [ + "nfp", + "near", + "field", + "feild", + "proximity", + "prosimity", + "proxymity", + "tap and send" + ] + ] + }, + { + "Name": "Change advanced colour management settings for displays, scanners and printers", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\colorcpl.exe", + "Keywords": [ + [ + "calibrate", + "calibration" + ], + [ + "24", + "bit", + "24-bit", + "256", + "bit", + "32-bit", + "colors", + "colours", + "depth", + "num", + "number", + "of" + ], + [ + "absolute", + "colorimetric", + "gamut", + "mapping", + "graphics", + "images", + "perceptual", + "proofing", + "relative", + "rendering", + "rgb", + "sRGB" + ], + [ + "management", + "managment" + ], + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ], + [ + "scaners", + "scanners", + "scanning" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Add clocks for different time zones", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL timedate.cpl,,1", + "Keywords": [ + [ + "additional", + "another", + "create", + "many", + "more", + "mutliple" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "days", + "calendar", + "clock", + "times", + "time", + "day" + ], + [ + "time zones", + "timezone", + "time-zone", + "zones" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Automatically adjust for daylight saving time", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL timedate.cpl", + "Keywords": [ + [ + "automated", + "automatically" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "days", + "calendar", + "clock", + "times", + "time", + "day" + ], + [ + "light", + "daylight", + "daylite", + "lite", + "savings", + "savins", + "standard" + ], + [ + "ddmmyyyy", + "hour", + "12-hour", + "24-hour", + "clock", + "date", + "day", + "dd", + "display", + "formating", + "formatting", + "four", + "digit", + "long", + "mmddyyyy", + "month", + "properties", + "short", + "time", + "two", + "year", + "yyyy" + ] + ] + }, + { + "Name": "Change the time zone", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL timedate.cpl", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "time zones", + "timezone", + "time-zone", + "zones" + ] + ] + }, + { + "Name": "Set the time and date", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL timedate.cpl", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "days", + "calendar", + "clock", + "times", + "time", + "day" + ], + [ + "ddmmyyyy", + "hour", + "12-hour", + "24-hour", + "clock", + "date", + "day", + "dd", + "display", + "formating", + "formatting", + "four", + "digit", + "long", + "mmddyyyy", + "month", + "properties", + "short", + "time", + "two", + "year", + "yyyy" + ] + ] + }, + { + "Name": "Set the time and date", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL timedate.cpl", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "days", + "calendar", + "clock", + "times", + "time", + "day" + ], + [ + "ddmmyyyy", + "hour", + "12-hour", + "24-hour", + "clock", + "date", + "day", + "dd", + "display", + "formating", + "formatting", + "four", + "digit", + "long", + "mmddyyyy", + "month", + "properties", + "short", + "time", + "two", + "year", + "yyyy" + ] + ] + }, + { + "Name": "Change default settings for media or devices", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.AutoPlay", + "Keywords": [ + [ + "play", + "run", + "start", + "autoplay", + "auto-play", + "autorun", + "auto-run", + "autostart", + "auto-start" + ], + [ + "audio", + "blank", + "ray", + "blue-ray", + "blu-ray", + "cd-rom", + "cds", + "dvd", + "enhanced", + "HD", + "media", + "super", + "video" + ], + [ + "import", + "photo", + "connection", + "camera", + "flash", + "removable", + "storage", + "stage" + ] + ] + }, + { + "Name": "Play CDs or other media automatically", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.AutoPlay", + "Keywords": [ + [ + "automated", + "automatically" + ], + [ + "play", + "run", + "start", + "autoplay", + "auto-play", + "autorun", + "auto-run", + "autostart", + "auto-start" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "audio", + "blank", + "ray", + "blue-ray", + "blu-ray", + "cd-rom", + "cds", + "dvd", + "enhanced", + "HD", + "media", + "super", + "video" + ] + ] + }, + { + "Name": "Start or stop using AutoPlay for all media and devices", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.AutoPlay", + "Keywords": [ + [ + "play", + "run", + "start", + "autoplay", + "auto-play", + "autorun", + "auto-run", + "autostart", + "auto-start" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ] + ] + }, + { + "Name": "Change search options for files and folders", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Options_RunDLL 2", + "Keywords": [ + [ + "folders", + "subfolders" + ], + [ + "behaviour", + "search", + "behavior" + ], + [ + "search", + "options" + ], + [ + "finder", + "indexing", + "reindex", + "re-index", + "searches", + "searching" + ] + ] + }, + { + "Name": "Change the file type associated with a file extension", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.DefaultPrograms /page pageFileAssoc", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "associate", + "association", + "associations", + "extensions", + "extentions", + "type", + "filetype", + "open", + "with" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ] + ] + }, + { + "Name": "Show hidden files and folders", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Options_RunDLL 7", + "Keywords": [ + [ + "folders", + "subfolders" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ] + ] + }, + { + "Name": "Show or hide file extensions", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Options_RunDLL 7", + "Keywords": [ + [ + "associate", + "association", + "associations", + "extensions", + "extentions", + "type", + "filetype", + "open", + "with" + ], + [ + "autohide", + "auto-hide", + "automatically", + "hide", + "make", + "invisible" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ] + ] + }, + { + "Name": "Specify single- or double-click to open", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.FolderOptions", + "Keywords": [ + [ + "choice", + "chooses", + "choosing", + "chose", + "picked", + "picks", + "selected", + "selects" + ], + [ + "lock", + "clicking", + "doubleclick", + "double-click", + "single-click" + ] + ] + }, + { + "Name": "Preview, delete, show or hide fonts", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Fonts", + "Keywords": [ + [ + "faunt", + "fonts", + "type", + "truetype", + "type", + "opentype", + "fount" + ], + [ + "added", + "adding", + "addon", + "add-on", + "adds" + ], + [ + "add", + "new", + "installed", + "installing" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "deinstall", + "uninstalled", + "uninstalling", + "uninstalls", + "unistall" + ] + ] + }, + { + "Name": "Change Font Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Fonts /page ::{93412589-74D4-4E4E-AD0E-E0CB621440FD}", + "Keywords": [ + [ + "faunt", + "fonts", + "type", + "truetype", + "type", + "opentype", + "fount" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "autohide", + "auto-hide", + "automatically", + "hide", + "make", + "invisible" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ] + ] + }, + { + "Name": "View installed fonts", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Fonts", + "Keywords": [ + [ + "faunt", + "fonts", + "type", + "truetype", + "type", + "opentype", + "fount" + ], + [ + "add", + "new", + "installed", + "installing" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Private Character Editor", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\eudcedit.exe", + "Keywords": [ + [ + "eudcedit.exe", + "private", + "character", + "editor" + ] + ] + }, + { + "Name": "Adjust commonly used mobility settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mblctr.exe /open", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "computer", + "top", + "laptop", + "mobile", + "pc", + "notebook", + "portable" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Adjust settings before giving a presentation", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\presentationsettings.exe", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "pixels", + "reslution", + "resoltion", + "resolution", + "resolutoin", + "rezolution", + "size" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Block or allow pop-ups", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,2", + "Keywords": [ + [ + "banned", + "blocker", + "filter", + "nanny", + "prevent", + "restrict", + "stopper" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "ads", + "advertising", + "advertizing", + "adverts", + "adware", + "adwear", + "malware", + "ups", + "popupblocker", + "pop-upblocker", + "popups", + "pop-ups", + "popupstopper", + "spyware", + "spywear", + "unwanted", + "windows" + ], + [ + "private", + "privacy", + "secrecy" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Block or allow third-party cookies", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,2", + "Keywords": [ + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "banned", + "blocker", + "filter", + "nanny", + "prevent", + "restrict", + "stopper" + ], + [ + "3rd", + "party", + "cookies", + "cooky", + "from", + "others", + "third-party", + "unwanted" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ] + ] + }, + { + "Name": "Change how web pages are displayed in tabs", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0", + "Keywords": [ + [ + "browsers", + "browsing", + "web" + ], + [ + "ie", + "internet", + "explorer" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "tabs", + "tabbed", + "browsing", + "quick" + ] + ] + }, + { + "Name": "Change security settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,1", + "Keywords": [ + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "banned", + "blocker", + "filter", + "nanny", + "prevent", + "restrict", + "stopper" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ] + ] + }, + { + "Name": "Change temporary Internet file settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "3rd", + "party", + "cookies", + "cooky", + "from", + "others", + "third-party", + "unwanted" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "temp", + "cached", + "files", + "history", + "local", + "temorary", + "temporary", + "temperary", + "tmp", + "unnecessary", + "unneeded", + "useless", + "web" + ] + ] + }, + { + "Name": "Change the search provider in Internet Explorer", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "by", + "defaults", + "defualt", + "standard" + ], + [ + "provider", + "engine", + "searching" + ] + ] + }, + { + "Name": "Change your homepage", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "page", + "homepage" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ] + ] + }, + { + "Name": "Configure proxy server", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,4", + "Keywords": [ + [ + "server", + "web", + "winsock", + "socks", + "socket", + "dns", + "sas", + "winproxy", + "rpoxy", + "client", + "hosts", + "tmproxy", + "proxycfg" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Connect to the Internet", + "Area": null, + "Type": "TaskLink", + "Command": "ms-availablenetworks:", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "wizard", + "wizzard" + ] + ] + }, + { + "Name": "Delete browsing history", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0", + "Keywords": [ + [ + "browsers", + "browsing", + "web" + ], + [ + "autohide", + "auto-hide", + "automatically", + "hide", + "make", + "invisible" + ], + [ + "ie", + "internet", + "explorer" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "temp", + "cached", + "files", + "history", + "local", + "temorary", + "temporary", + "temperary", + "tmp", + "unnecessary", + "unneeded", + "useless", + "web" + ] + ] + }, + { + "Name": "Delete cookies or temporary files", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0", + "Keywords": [ + [ + "3rd", + "party", + "cookies", + "cooky", + "from", + "others", + "third-party", + "unwanted" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "temp", + "cached", + "files", + "history", + "local", + "temorary", + "temporary", + "temperary", + "tmp", + "unnecessary", + "unneeded", + "useless", + "web" + ] + ] + }, + { + "Name": "Enable or disable session cookies", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,2", + "Keywords": [ + [ + "3rd", + "party", + "cookies", + "cooky", + "from", + "others", + "third-party", + "unwanted" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ] + ] + }, + { + "Name": "Manage browser add-ons", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,5", + "Keywords": [ + [ + "activex", + "ons", + "add-ons", + "extension" + ], + [ + "browsers", + "browsing", + "web" + ], + [ + "add", + "new", + "installed", + "installing" + ], + [ + "administer", + "configure", + "managed", + "manages", + "managing", + "up", + "setup" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "deinstall", + "uninstalled", + "uninstalling", + "uninstalls", + "unistall" + ] + ] + }, + { + "Name": "Tell if an RSS feed is available on a website", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,3", + "Keywords": [ + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "rss", + "feed", + "aggregator", + "csrss" + ] + ] + }, + { + "Name": "Turn autocomplete in Internet Explorer on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,3", + "Keywords": [ + [ + "autocomplete", + "complete", + "completion", + "finish", + "autofinish", + "fill", + "autofill" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ] + ] + }, + { + "Name": "Choose how you open links", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,5", + "Keywords": [ + [ + "desktops", + "dekstops" + ], + [ + "lanch", + "launches" + ], + [ + "ie", + "internet", + "explorer" + ], + [ + "browsers", + "browsing", + "web" + ], + [ + "opens", + "opening", + "opened" + ], + [ + "links" + ], + [ + "tiles" + ], + [ + "always", + "in" + ], + [ + "let", + "decide" + ] + ] + }, + { + "Name": "Change cursor blink rate", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Keyboard", + "Keywords": [ + [ + "blinking", + "blinkrate", + "flashing", + "rate" + ], + [ + "arrows", + "cursors", + "mouse", + "pointers" + ], + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ] + ] + }, + { + "Name": "Check keyboard status", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Keyboard /page 1", + "Keywords": [ + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ] + ] + }, + { + "Name": "Change mouse settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse", + "Keywords": [ + [ + "butons", + "buttons" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "lock", + "clicking", + "doubleclick", + "double-click", + "single-click" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "flip", + "handed", + "hander", + "left-handed", + "left-hander", + "lefty", + "reverse", + "handed", + "right-handed", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change how the mouse pointer looks", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse /page 1", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "arrows", + "cursors", + "mouse", + "pointers" + ], + [ + "mice", + "mouses", + "pointer" + ] + ] + }, + { + "Name": "Change how the mouse pointer looks when it\u2019s moving", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse /page 2", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "arrows", + "cursors", + "mouse", + "pointers" + ], + [ + "move", + "moving", + "shadow", + "speed", + "tails" + ], + [ + "mice", + "mouses", + "pointer" + ] + ] + }, + { + "Name": "Change mouse click settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "lock", + "clicking", + "doubleclick", + "double-click", + "single-click" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change mouse click settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "lock", + "clicking", + "doubleclick", + "double-click", + "single-click" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change mouse wheel settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse /page 3", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "wheel", + "scrolling", + "scrollwheel", + "mousewheel" + ] + ] + }, + { + "Name": "Change the mouse pointer display or speed", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse /page 2", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "arrows", + "cursors", + "mouse", + "pointers" + ], + [ + "move", + "moving", + "shadow", + "speed", + "tails" + ], + [ + "mice", + "mouses", + "pointer" + ] + ] + }, + { + "Name": "Customise the mouse buttons", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse", + "Keywords": [ + [ + "butons", + "buttons" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "mice", + "mouses", + "pointer" + ], + [ + "flip", + "handed", + "hander", + "left-handed", + "left-hander", + "lefty", + "reverse", + "handed", + "right-handed", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Make it easier to see the mouse pointer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Mouse /page 2", + "Keywords": [ + [ + "arrows", + "cursors", + "mouse", + "pointers" + ], + [ + "finding", + "locate", + "locating", + "search", + "for", + "is", + "where's", + "the" + ], + [ + "cannot", + "cant", + "find", + "can't", + "see", + "gone", + "hidden", + "invisible", + "missing", + "vanished", + "where", + "is" + ], + [ + "mice", + "mouses", + "pointer" + ] + ] + }, + { + "Name": "Get more features with a new edition of Windows", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\system32\\WindowsAnytimeUpgradeUI.exe", + "Keywords": [ + [ + "compare", + "comparison", + "side-by-side" + ], + [ + "features", + "get", + "more", + "next", + "version", + "vista", + "home", + "business", + "premium", + "ultimate", + "starter" + ], + [ + "vista", + "windows", + "windw", + "7" + ], + [ + "release", + "version", + "edition" + ], + [ + "centre", + "features", + "windows", + "anytime", + "upgrade", + "media", + "center", + "play", + "dvd", + "watch", + "tv", + "television", + "record" + ] + ] + }, + { + "Name": "Set up dialling rules", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PhoneAndModemOptions", + "Keywords": [ + [ + "calling", + "calls" + ], + [ + "area", + "code", + "carrier", + "city", + "up", + "dialing", + "dialling", + "dialup", + "dial-up", + "pulse", + "tone", + "touchtone", + "touch-tone" + ], + [ + "modem" + ], + [ + "phone", + "line", + "telephone" + ], + [ + "rules" + ] + ] + }, + { + "Name": "Change battery settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "batteries", + "battery", + "life", + "conserve", + "energy", + "last", + "longer", + "management", + "plugged", + "in", + "supply", + "powersaver", + "preserve", + "save", + "mode", + "saving", + "unplugged", + "ups" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change power-saving settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "batteries", + "battery", + "life", + "conserve", + "energy", + "last", + "longer", + "management", + "plugged", + "in", + "supply", + "powersaver", + "preserve", + "save", + "mode", + "saving", + "unplugged", + "ups" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change what closing the lid does", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions /page pageGlobalSettings", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "close", + "closing" + ], + [ + "def", + "hearing", + "deaf", + "deafness", + "hard", + "of", + "problem", + "impaired", + "imparied" + ], + [ + "cover", + "lid", + "top" + ], + [ + "batteries", + "battery", + "life", + "conserve", + "energy", + "last", + "longer", + "management", + "plugged", + "in", + "supply", + "powersaver", + "preserve", + "save", + "mode", + "saving", + "unplugged", + "ups" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change what the power buttons do", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions /page pageGlobalSettings", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "on-off", + "switch" + ], + [ + "turn", + "hibernate", + "button", + "down", + "power-button", + "shutdown", + "shut-down", + "shuts", + "by", + "standby", + "stand-by", + "switches", + "turns", + "off" + ], + [ + "batteries", + "battery", + "life", + "conserve", + "energy", + "last", + "longer", + "management", + "plugged", + "in", + "supply", + "powersaver", + "preserve", + "save", + "mode", + "saving", + "unplugged", + "ups" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change when the computer sleeps", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions /page pagePlanSettings", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "batteries", + "battery", + "life", + "conserve", + "energy", + "last", + "longer", + "management", + "plugged", + "in", + "supply", + "powersaver", + "preserve", + "save", + "mode", + "saving", + "unplugged", + "ups" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "asleep", + "autowake", + "awaken", + "come", + "back", + "from", + "hibernates", + "hibernating", + "hibernation", + "restarts", + "resumes", + "sleeping", + "standby", + "up", + "wakeup", + "wake-up", + "waking" + ] + ] + }, + { + "Name": "Choose when to turn off display", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions /page pagePlanSettings", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "turn", + "hibernate", + "button", + "down", + "power-button", + "shutdown", + "shut-down", + "shuts", + "by", + "standby", + "stand-by", + "switches", + "turns", + "off" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Choose a power plan", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "plans", + "choose", + "select", + "power", + "scheme", + "balanced", + "saver", + "change" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Edit power plan", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.PowerOptions /page pagePlanSettings", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "plans", + "choose", + "select", + "power", + "scheme", + "balanced", + "saver", + "change" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Change screen saver", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL desk.cpl,screensaver,@screensaver", + "Keywords": [ + [ + "savers", + "screan", + "screansavers", + "screeen", + "screeensavers", + "screen", + "screen-saver", + "screensavers", + "scren", + "screne", + "screnesavers", + "scrensavers", + "scrren", + "scrrensavers" + ] + ] + }, + { + "Name": "Turn screen saver on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL desk.cpl,screensaver,@screensaver", + "Keywords": [ + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "savers", + "screan", + "screansavers", + "screeen", + "screeensavers", + "screen", + "screen-saver", + "screensavers", + "scren", + "screne", + "screnesavers", + "scrensavers", + "scrren", + "scrrensavers" + ] + ] + }, + { + "Name": "Change date, time or number formats", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL intl.cpl", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "sterling", + "pence", + "cents", + "currency", + "dollars", + "euros", + "money", + "pounds", + "sign", + "symbol", + "won", + "yen", + "yuan" + ], + [ + "show", + "displayed" + ], + [ + "formated", + "formating", + "formatted", + "formatting" + ], + [ + "m", + "centimeters", + "centimetres", + "cm", + "feet", + "foot", + "inches", + "kilometers", + "kilometres", + "kilos", + "km", + "lbs", + "measurements", + "meters", + "metres", + "miles", + "numbers", + "ounces", + "oz", + "pounds", + "weight", + "width" + ], + [ + "countries", + "country", + "dev", + "region", + "language", + "localisation", + "localised", + "locality", + "localization", + "localized", + "1", + "2", + "3", + "code", + "regional", + "regions", + "locale" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "ddmmyyyy", + "hour", + "12-hour", + "24-hour", + "clock", + "date", + "day", + "dd", + "display", + "formating", + "formatting", + "four", + "digit", + "long", + "mmddyyyy", + "month", + "properties", + "short", + "time", + "two", + "year", + "yyyy" + ], + [ + "alphabetise", + "alphabetize", + "order", + "sorting" + ] + ] + }, + { + "Name": "Change the way currency is displayed", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL intl.cpl", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "sterling", + "pence", + "cents", + "currency", + "dollars", + "euros", + "money", + "pounds", + "sign", + "symbol", + "won", + "yen", + "yuan" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change the way dates and lists are displayed", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL intl.cpl", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "ddmmyyyy", + "hour", + "12-hour", + "24-hour", + "clock", + "date", + "day", + "dd", + "display", + "formating", + "formatting", + "four", + "digit", + "long", + "mmddyyyy", + "month", + "properties", + "short", + "time", + "two", + "year", + "yyyy" + ] + ] + }, + { + "Name": "Change the way measurements are displayed", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL intl.cpl", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "m", + "centimeters", + "centimetres", + "cm", + "feet", + "foot", + "inches", + "kilometers", + "kilometres", + "kilos", + "km", + "lbs", + "measurements", + "meters", + "metres", + "miles", + "numbers", + "ounces", + "oz", + "pounds", + "weight", + "width" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change the way time is displayed", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL intl.cpl", + "Keywords": [ + [ + "appearance", + "out", + "layout", + "of", + "looks", + "way", + "displayed" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "ddmmyyyy", + "hour", + "12-hour", + "24-hour", + "clock", + "date", + "day", + "dd", + "display", + "formating", + "formatting", + "four", + "digit", + "long", + "mmddyyyy", + "month", + "properties", + "short", + "time", + "two", + "year", + "yyyy" + ] + ] + }, + { + "Name": "Add a language", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Language", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "choice", + "chooses", + "choosing", + "chose", + "picked", + "picks", + "selected", + "selects" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "british", + "english", + "foreign", + "languages", + "french", + "german", + "hindi", + "international", + "japanese", + "korean", + "langpack", + "langs", + "languages", + "multilanguage", + "multi-language", + "pack", + "spanish", + "uk", + "usa" + ], + [ + "dialogues", + "text", + "words", + "menus", + "dialogs", + "buttons", + "labels", + "writing", + "ui", + "language" + ], + [ + "messages", + "mesages" + ] + ] + }, + { + "Name": "Change input methods", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Language", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "letter", + "characters", + "chinese", + "hangul", + "japanese", + "kanji", + "korean", + "writing" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "input", + "methods", + "imes" + ], + [ + "board", + "bord", + "keyboards", + "keyborads", + "keybord" + ], + [ + "british", + "english", + "foreign", + "languages", + "french", + "german", + "hindi", + "international", + "japanese", + "korean", + "langpack", + "langs", + "languages", + "multilanguage", + "multi-language", + "pack", + "spanish", + "uk", + "usa" + ], + [ + "layout", + "out" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Settings for Microsoft IME (Japanese)", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imejp\\imjpset.exe", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "japanese" + ] + ] + }, + { + "Name": "Microsoft Pinyin SimpleFast Options", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imesc\\imscprop.exe /EXPRESS", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "pinyin", + "mspy" + ] + ] + }, + { + "Name": "Microsoft Pinyin SimpleFast Options", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imesc\\imscprop.exe /EXPRESS", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "pinyin", + "mspy" + ] + ] + }, + { + "Name": "Microsoft New Phonetic Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /NPH", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "phonetic" + ] + ] + }, + { + "Name": "Microsoft New Phonetic Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /NPH", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "phonetic" + ] + ] + }, + { + "Name": "Microsoft New Phonetic Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /NPH", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "phonetic" + ] + ] + }, + { + "Name": "Microsoft ChangJie Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /CJ", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "changjie" + ] + ] + }, + { + "Name": "Microsoft ChangJie Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /CJ", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "changjie" + ] + ] + }, + { + "Name": "Microsoft ChangJie Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /CJ", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "changjie" + ] + ] + }, + { + "Name": "Microsoft Quick Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /QK", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "quick" + ] + ] + }, + { + "Name": "Microsoft Quick Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /QK", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "quick" + ] + ] + }, + { + "Name": "Microsoft Quick Settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imetc\\imtcprop.exe /QK", + "Keywords": [ + [ + "msime", + "ime", + "settings", + "quick" + ] + ] + }, + { + "Name": "Microsoft IME Register Word (Japanese)", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\ime\\imejp\\imjpdct.exe", + "Keywords": [ + [ + "msime", + "ime", + "register", + "word", + "japanese" + ] + ] + }, + { + "Name": "Change how Windows searches", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.IndexingOptions /page 2", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "finder", + "indexing", + "reindex", + "re-index", + "searches", + "searching" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "vista", + "windows", + "windw", + "7" + ] + ] + }, + { + "Name": "View recent messages about your computer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter", + "Keywords": [ + [ + "warning", + "report", + "alert", + "windows", + "crash", + "hang", + "balloon", + "reminder" + ], + [ + "messages", + "mesages" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Review your computer's status and resolve issues", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter", + "Keywords": [ + [ + "healthy" + ], + [ + "checking", + "look", + "for", + "scanning", + "verify" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ], + [ + "condition", + "running", + "state", + "status" + ], + [ + "fix", + "repair", + "error", + "warning", + "alert", + "windows", + "crash", + "hang", + "troubleshoot", + "diagnose", + "reports", + "diagnostic", + "diagnosis", + "balloon", + "reminder", + "performance", + "maintenance", + "maintain", + "reinstall", + "recovery", + "restore", + "cpc", + "completepc", + "pc", + "system", + "antivirus", + "anti-virus", + "spyware", + "networking", + "connection", + "connectivity" + ], + [ + "messages", + "mesages" + ], + [ + "notifications", + "notifying", + "notified" + ], + [ + "download", + "view", + "drivers", + "get", + "instructions", + "recommendations", + "messages" + ] + ] + }, + { + "Name": "Change User Account Control settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\UserAccountControlSettings.exe", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ], + [ + "dialogues", + "credentials", + "elevations", + "LUA", + "prompts", + "prompting", + "security", + "warnings", + "UAC", + "administrator", + "rights", + "privileges", + "permissions", + "users", + "accounts", + "controls", + "administrater", + "dialogs", + "popups" + ] + ] + }, + { + "Name": "View reliability history", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter /page pageReliabilityView", + "Keywords": [ + [ + "repair", + "problem", + "error", + "crash", + "hang" + ], + [ + "reliability", + "monitor", + "problem", + "history", + "system", + "stability", + "index" + ] + ] + }, + { + "Name": "Fix problems with your computer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter", + "Keywords": [ + [ + "fix", + "repair", + "crash", + "hang", + "performance", + "maintenance", + "maintain", + "problems", + "reports", + "and" + ], + [ + "re-instate", + "re-set", + "recovery", + "recover", + "reinstall", + "factory", + "re-image", + "reimage", + "re-install", + "repair", + "restore", + "reinstate", + "reset", + "wipe", + "rollback", + "fix", + "troubleshoot", + "pc", + "refresh", + "erase", + "format" + ], + [ + "messages", + "mesages" + ] + ] + }, + { + "Name": "View recommended actions to keep Windows running smoothly", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter", + "Keywords": [ + [ + "fix", + "repair", + "crash", + "hang", + "performance", + "maintenance", + "maintain", + "problems", + "reports", + "and" + ], + [ + "messages", + "mesages" + ] + ] + }, + { + "Name": "Check security status", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter", + "Keywords": [ + [ + "centre", + "security", + "center", + "firewall", + "malware", + "virus", + "warning", + "windows", + "crash", + "antivirus", + "anti-virus", + "spyware", + "worm", + "trojan" + ] + ] + }, + { + "Name": "View all problem reports", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter /page pageProblems", + "Keywords": [ + [ + "reports", + "tell", + "microsoft", + "send", + "sent", + "clear", + "problems", + "delete", + "history", + "and", + "erase", + "view", + "all" + ] + ] + }, + { + "Name": "Change Automatic Maintenance settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.ActionCenter /page MaintenanceSettings", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Adjust system volume", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\sndvol.exe", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "not", + "hear", + "can't", + "sound", + "volume", + "is", + "off", + "too", + "low" + ], + [ + "audio", + "beeps", + "music", + "noises", + "schemes", + "sounds", + "tones", + "wav", + "sound", + "beep", + "noise" + ], + [ + "audio", + "card", + "computer", + "external", + "internal", + "pc", + "speakers" + ], + [ + "sound", + "louder", + "mute", + "noise", + "quiet", + "quite", + "soft", + "volume" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ] + ] + }, + { + "Name": "Change sound card settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Sound", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "cards", + "soundcards" + ], + [ + "audio", + "beeps", + "music", + "noises", + "schemes", + "sounds", + "tones", + "wav", + "sound", + "beep", + "noise" + ] + ] + }, + { + "Name": "Change system sounds", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Sound /page 2", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "not", + "hear", + "can't", + "sound", + "volume", + "is", + "off", + "too", + "low" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "audio", + "beeps", + "music", + "noises", + "schemes", + "sounds", + "tones", + "wav", + "sound", + "beep", + "noise" + ] + ] + }, + { + "Name": "Manage audio devices", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Sound", + "Keywords": [ + [ + "audio", + "balance", + "card", + "effect", + "encoding", + "jack", + "level", + "line", + "microphone", + "mono", + "multichannel", + "multi-channel", + "port", + "sound", + "speaker", + "stereo", + "subwoofer", + "surround" + ], + [ + "in", + "line-in" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "midi", + "musical", + "instrument", + "digital", + "interface" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "audio", + "beeps", + "music", + "noises", + "schemes", + "sounds", + "tones", + "wav", + "sound", + "beep", + "noise" + ], + [ + "used", + "using" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ] + ] + }, + { + "Name": "Change text-to-speech settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL %windir%\\system32\\speech\\speechux\\sapi.cpl", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "text", + "to", + "speech", + "tts", + "voice", + "narrator" + ] + ] + }, + { + "Name": "Print the speech reference card", + "Area": null, + "Type": "TaskLink", + "Command": "http://go.microsoft.com/fwlink/?LinkId=619882", + "Keywords": [ + [ + "adapters", + "adaptor", + "cards" + ], + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ], + [ + "card", + "help", + "instructions", + "paper", + "reference", + "sheet" + ], + [ + "recognise", + "activated", + "commanding", + "dictate", + "dictation", + "recogination", + "recognition", + "recognize", + "recongition", + "reconition", + "speaking", + "speechrecognition", + "speech-recognition", + "talk", + "to", + "understand", + "voice" + ] + ] + }, + { + "Name": "Set up a microphone", + "Area": null, + "Type": "TaskLink", + "Command": "%WINDIR%\\system32\\msdt.exe /id SpeechDiagnosticCalibrate /ep ControlPanel /skip true", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "external", + "headset", + "internal", + "jack", + "phone", + "microphones", + "mics", + "mikes" + ], + [ + "recognise", + "activated", + "commanding", + "dictate", + "dictation", + "recogination", + "recognition", + "recognize", + "recongition", + "reconition", + "speaking", + "speechrecognition", + "speech-recognition", + "talk", + "to", + "understand", + "voice" + ], + [ + "used", + "using" + ] + ] + }, + { + "Name": "Start speech recognition", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\speech\\common\\sapisvr.exe -SpeechUX", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "recognise", + "activated", + "commanding", + "dictate", + "dictation", + "recogination", + "recognition", + "recognize", + "recongition", + "reconition", + "speaking", + "speechrecognition", + "speech-recognition", + "talk", + "to", + "understand", + "voice" + ] + ] + }, + { + "Name": "Take speech tutorials", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe %windir%\\system32\\speech\\speechux\\SpeechUX.dll,RunWizard Tutorial", + "Keywords": [ + [ + "recognise", + "activated", + "commanding", + "dictate", + "dictation", + "recogination", + "recognition", + "recognize", + "recongition", + "reconition", + "speaking", + "speechrecognition", + "speech-recognition", + "talk", + "to", + "understand", + "voice" + ], + [ + "teach", + "training", + "tutorial" + ], + [ + "learn", + "lessons", + "teach", + "tutorial", + "example", + "training", + "wizard", + "to", + "use", + "how" + ] + ] + }, + { + "Name": "Train the computer to recognise your voice", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe %windir%\\system32\\speech\\speechux\\SpeechUX.dll,RunWizard UserTraining", + "Keywords": [ + [ + "accuracy", + "accurately", + "precise", + "precision", + "correct", + "mistakes" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "best", + "better", + "easier", + "easy", + "enhance", + "improvement", + "make", + "more", + "most", + "optimal", + "optimise", + "optimize" + ], + [ + "recognise", + "activated", + "commanding", + "dictate", + "dictation", + "recogination", + "recognition", + "recognize", + "recongition", + "reconition", + "speaking", + "speechrecognition", + "speech-recognition", + "talk", + "to", + "understand", + "voice" + ], + [ + "teach", + "training", + "tutorial" + ] + ] + }, + { + "Name": "Manage offline files", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL %windir%\\system32\\cscui.dll", + "Keywords": [ + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "line", + "offline", + "off-line", + "ofline" + ] + ] + }, + { + "Name": "Encrypt your offline files", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL %windir%\\system32\\cscui.dll ,2", + "Keywords": [ + [ + "line", + "offline", + "off-line", + "ofline" + ], + [ + "guard", + "protect", + "secure", + "preserve" + ] + ] + }, + { + "Name": "Manage disk space used by your offline files", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL %windir%\\system32\\cscui.dll ,1", + "Keywords": [ + [ + "disc", + "disks", + "drive" + ], + [ + "line", + "offline", + "off-line", + "ofline" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "store", + "space", + "cache", + "room" + ] + ] + }, + { + "Name": "Adjust the appearance and performance of Windows", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesPerformance.exe", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "optimise", + "crawl", + "degrade", + "faster", + "frozen", + "hanging", + "hung", + "improve", + "inactive", + "optimize", + "performance", + "quicker", + "sluggish", + "speed", + "thrashing", + "too", + "slow", + "unresponsive" + ], + [ + "visuals", + "effects", + "drop", + "shadows", + "smooth", + "scrolling", + "slide", + "fade", + "sliding", + "fading" + ] + ] + }, + { + "Name": "Allow remote access to your computer", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesRemote.exe", + "Keywords": [ + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "access", + "control", + "RAS", + "acess", + "assistance", + "desktop", + "remotely", + "terminal", + "services", + "ts" + ], + [ + "top", + "remote", + "desktop" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Allow Remote Assistance invitations to be sent from this computer", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesRemote.exe", + "Keywords": [ + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "invitations", + "invite", + "inviting", + "send" + ], + [ + "access", + "control", + "RAS", + "acess", + "assistance", + "desktop", + "remotely", + "terminal", + "services", + "ts" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ] + ] + }, + { + "Name": "Invite someone to connect to your PC and help you, or offer to help someone else", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\system32\\msra.exe", + "Keywords": [ + [ + "access", + "control", + "RAS", + "acess", + "assistance", + "desktop", + "remotely", + "terminal", + "services", + "ts" + ], + [ + "invitations", + "invite", + "inviting", + "send" + ] + ] + }, + { + "Name": "Change workgroup name", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesComputerName.exe", + "Keywords": [ + [ + "connect", + "to", + "enter", + "join", + "plug", + "into" + ], + [ + "names", + "rename", + "renaming" + ], + [ + "group", + "workgroup" + ] + ] + }, + { + "Name": "Check processor speed", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "checking", + "look", + "for", + "scanning", + "verify" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "486", + "agp", + "amd", + "bus", + "chip", + "clock", + "cpu", + "fast", + "intel", + "overclock", + "pentium", + "performance", + "processing", + "processor", + "ram", + "up", + "speedup" + ] + ] + }, + { + "Name": "Configure advanced user profile properties", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe sysdm.cpl,EditUserProfiles", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "administer", + "configure", + "managed", + "manages", + "managing", + "up", + "setup" + ] + ] + }, + { + "Name": "Create a restore point", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesProtection.exe", + "Keywords": [ + [ + "add", + "create", + "make", + "new" + ], + [ + "data", + "recovering", + "recovers", + "recovery" + ], + [ + "points", + "wizard", + "system", + "protection", + "restores", + "systemrestores" + ] + ] + }, + { + "Name": "Edit environment variables for your account", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe sysdm.cpl,EditEnvironmentVariables", + "Keywords": [ + [ + "environment", + "variables", + "path", + "envvar" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ] + ] + }, + { + "Name": "Edit the system environment variables", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesAdvanced.exe", + "Keywords": [ + [ + "environment", + "variables", + "path", + "envvar" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ] + ] + }, + { + "Name": "How to change the size of virtual memory", + "Area": null, + "Type": "TaskLink", + "Command": "mshelp://windows/?id=89ca317f-649d-40a6-8934-e5707ee5c4b8", + "Keywords": [ + [ + "bigger", + "decrease", + "enlarge", + "increase", + "larger", + "resize", + "shape", + "short", + "shrink", + "size", + "skinny", + "smaller", + "taller", + "thin", + "too", + "wider", + "width" + ], + [ + "memory", + "virtualmemory", + "pagefile", + "file" + ] + ] + }, + { + "Name": "Join a domain", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesComputerName.exe", + "Keywords": [ + [ + "connect", + "to", + "enter", + "join", + "plug", + "into" + ], + [ + "domain", + "domian" + ], + [ + "server" + ] + ] + }, + { + "Name": "Rename this computer", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesComputerName.exe", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "names", + "rename", + "renaming" + ] + ] + }, + { + "Name": "Create a recovery drive", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\RecoveryDrive.exe", + "Keywords": [ + [ + "add", + "create", + "make", + "new" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "re-instate", + "re-set", + "recovery", + "recover", + "reinstall", + "factory", + "re-image", + "reimage", + "re-install", + "repair", + "restore", + "reinstate", + "reset", + "wipe", + "rollback", + "fix", + "troubleshoot", + "pc", + "refresh", + "erase", + "format" + ] + ] + }, + { + "Name": "See the name of this computer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "names", + "rename", + "renaming" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Select users who can use remote desktop", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesRemote.exe", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "access", + "permissions", + "priveleges", + "priviledges", + "privileges", + "rights" + ], + [ + "access", + "control", + "RAS", + "acess", + "assistance", + "desktop", + "remotely", + "terminal", + "services", + "ts" + ], + [ + "top", + "remote", + "desktop" + ] + ] + }, + { + "Name": "Show how much RAM is on this computer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "amount", + "of", + "many", + "much", + "howmuch" + ], + [ + "gigabytes", + "gigs", + "megabytes", + "megs", + "memory", + "ram" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Show which domain your computer is on", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "domain", + "domian" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Show which operating system your computer is running", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "operating", + "system", + "os" + ], + [ + "release", + "version", + "edition" + ], + [ + "what", + "which" + ] + ] + }, + { + "Name": "Show which workgroup this computer is on", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "group", + "workgroup" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "View advanced system settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\SystemPropertiesAdvanced.exe", + "Keywords": [ + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ] + ] + }, + { + "Name": "View basic information about your computer", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.System", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "gigabytes", + "gigs", + "megabytes", + "megs", + "memory", + "ram" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "Task Manager", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\taskmgr.exe /6", + "Keywords": [ + [ + "proceses", + "processes" + ], + [ + "task manager", + "mgr", + "manager", + "taskmgr", + "view", + "task", + "application", + "taskman", + "end task", + "close" + ] + ] + }, + { + "Name": "View system resource usage in Task Manager", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\taskmgr.exe /6", + "Keywords": [ + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "network", + "connections", + "netwerk", + "conection" + ], + [ + "486", + "agp", + "amd", + "bus", + "chip", + "clock", + "cpu", + "fast", + "intel", + "overclock", + "pentium", + "performance", + "processing", + "processor", + "ram", + "up", + "speedup" + ], + [ + "memory", + "virtualmemory", + "pagefile", + "file" + ] + ] + }, + { + "Name": "See which processes start up automatically when you start Windows", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\taskmgr.exe /6 /Startup", + "Keywords": [ + [ + "start-up", + "items", + "up", + "startup", + "programs" + ] + ] + }, + { + "Name": "Auto-hide the taskbar", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Taskbar", + "Keywords": [ + [ + "flicks", + "gestures", + "flik", + "filcks", + "penflick" + ], + [ + "autohide", + "auto-hide", + "automatically", + "hide", + "make", + "invisible" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "icons", + "area", + "sgtray.exe", + "start", + "tray", + "systemtray", + "systray", + "task", + "toolbar", + "tray", + "taskbar", + "task-bar", + "bars", + "toolbars" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Navigation properties", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Options_RunDLL 8", + "Keywords": [ + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "sign-in", + "applications view", + "navigation", + "desktop", + "mouse", + "start", + "corner", + "corners", + "background", + "windows logo key", + "windows key", + "win", + "winkey", + "sign in", + "signin", + "apps view", + "boot", + "to", + "charm", + "charms", + "powershell", + "command prompt" + ] + ] + }, + { + "Name": "Customise the taskbar", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Taskbar", + "Keywords": [ + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "icons", + "area", + "sgtray.exe", + "start", + "tray", + "systemtray", + "systray", + "task", + "toolbar", + "tray", + "taskbar", + "task-bar", + "bars", + "toolbars" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Group similar windows on the taskbar", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Taskbar", + "Keywords": [ + [ + "grouping" + ], + [ + "icons", + "area", + "sgtray.exe", + "start", + "tray", + "systemtray", + "systray", + "task", + "toolbar", + "tray", + "taskbar", + "task-bar", + "bars", + "toolbars" + ], + [ + "vista", + "windows", + "windw", + "7" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Lock or unlock the taskbar", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Taskbar", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "icons", + "area", + "sgtray.exe", + "start", + "tray", + "systemtray", + "systray", + "task", + "toolbar", + "tray", + "taskbar", + "task-bar", + "bars", + "toolbars" + ], + [ + "release", + "version", + "edition" + ], + [ + "what", + "which" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "What's happened to the Quick Launch toolbar?", + "Area": null, + "Type": "TaskLink", + "Command": "mshelp://windows/?id=329cf1bc-0f32-41ba-b717-362880a7f6df", + "Keywords": [ + [ + "icons", + "area", + "sgtray.exe", + "start", + "tray", + "systemtray", + "systray", + "task", + "toolbar", + "tray", + "taskbar", + "task-bar", + "bars", + "toolbars" + ], + [ + "launch", + "quicklaunch", + "quiklaunch", + "tray", + "taskbar", + "task-bar", + "bars", + "toolbars", + "pin" + ], + [ + "notifications", + "notifying", + "notified" + ] + ] + }, + { + "Name": "Add or remove user accounts", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.UserAccounts /page pageAdminTasks", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "added", + "adding", + "addon", + "add-on", + "adds" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "users" + ] + ] + }, + { + "Name": "Change account type", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\netplwiz.exe", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "names", + "rename", + "renaming" + ], + [ + "users" + ] + ] + }, + { + "Name": "Change account type", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.UserAccounts /page pageAdminTasks", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "names", + "rename", + "renaming" + ], + [ + "users" + ] + ] + }, + { + "Name": "Create a password reset disk", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe keymgr.dll,PRShowSaveWizardExW", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "can't", + "remember", + "don't", + "forget", + "forgotten", + "lost" + ], + [ + "word", + "pass-word", + "passwords", + "passwork", + "passwrod", + "pasword", + "paswrod" + ] + ] + }, + { + "Name": "Create an account", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.UserAccounts /page pageAdminTasks", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "add", + "create", + "make", + "new" + ] + ] + }, + { + "Name": "Create standard user account", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.UserAccounts /page pageAdminTasks", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ] + ] + }, + { + "Name": "Edit local users and groups", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\lusrmgr.msc", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ] + ] + }, + { + "Name": "Give administrative rights to a domain user", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\netplwiz.exe", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "administrator", + "admins" + ], + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "domain", + "domian" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "access", + "permissions", + "priveleges", + "priviledges", + "privileges", + "rights" + ] + ] + }, + { + "Name": "Give other users access to this computer", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\netplwiz.exe", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "access", + "permissions", + "priveleges", + "priviledges", + "privileges", + "rights" + ] + ] + }, + { + "Name": "How to change your Windows password", + "Area": null, + "Type": "TaskLink", + "Command": "mshelp://windows/?id=5c07e067-286d-4b8d-b342-431306e696aa", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "names", + "rename", + "renaming" + ], + [ + "word", + "pass-word", + "passwords", + "passwork", + "passwrod", + "pasword", + "paswrod" + ] + ] + }, + { + "Name": "Make changes to accounts", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.UserAccounts /page pageAdminTasks", + "Keywords": [ + [ + "accounts", + "alias", + "login", + "useraccount", + "useracount", + "users" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "access", + "permissions", + "priveleges", + "priviledges", + "privileges", + "rights" + ] + ] + }, + { + "Name": "Manage file encryption certificates", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rekeywiz.exe", + "Keywords": [ + [ + "certificates", + "keys", + "signatures", + "signed" + ], + [ + "guard", + "protect", + "secure", + "preserve" + ], + [ + "files" + ], + [ + "administer", + "configure", + "managed", + "manages", + "managing", + "up", + "setup" + ] + ] + }, + { + "Name": "Manage user certificates", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\mmc.exe %windir%\\system32\\certmgr.msc", + "Keywords": [ + [ + "certificate", + "key" + ] + ] + }, + { + "Name": "Manage network passwords", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.CredentialManager /page ?SelectedVault=CredmanVault", + "Keywords": [ + [ + "administer", + "configure", + "managed", + "manages", + "managing", + "up", + "setup" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "word", + "pass-word", + "passwords", + "passwork", + "passwrod", + "pasword", + "paswrod" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ] + ] + }, + { + "Name": "Reset Security Policies", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.UserAccounts", + "Keywords": [ + [ + "policies", + "policys" + ], + [ + "Reset", + "Security", + "Exchange", + "ActiveSync" + ] + ] + }, + { + "Name": "Allow an app through Windows Firewall", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WindowsFirewall /page PageConfigureApps", + "Keywords": [ + [ + "allowed", + "let", + "through", + "permitted" + ], + [ + "ecxeption", + "exception", + "exeption" + ], + [ + "virus", + "builtin", + "built-in", + "fire-wall", + "firewalled", + "firwall", + "frewall", + "ifc", + "protection", + "walled" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "file", + "applets", + "applications", + "apps", + "aps", + "files", + "programmes", + "programs", + "softare", + "softwares", + "sofware", + "sotfware", + "windos", + "windows" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Check firewall status", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WindowsFirewall", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "virus", + "builtin", + "built-in", + "fire-wall", + "firewalled", + "firwall", + "frewall", + "ifc", + "protection", + "walled" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ] + ] + }, + { + "Name": "Manage BitLocker", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.BitLockerDriveEncryption", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "locker", + "bitlocker", + "cryptology", + "decrypt", + "encode", + "encryption", + "device encryption" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "guard", + "protect", + "secure", + "preserve" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ] + ] + }, + { + "Name": "Back up your recovery key", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.BitLockerDriveEncryption", + "Keywords": [ + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "locker", + "bitlocker", + "cryptology", + "decrypt", + "encode", + "encryption", + "device encryption" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "guard", + "protect", + "secure", + "preserve" + ], + [ + "restricted", + "safety", + "secure", + "securing", + "security", + "sites", + "trusted", + "trusting" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ] + ] + }, + { + "Name": "Manage Storage Spaces", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.StorageSpaces", + "Keywords": [ + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "data", + "recovering", + "recovers", + "recovery" + ], + [ + "disc", + "disks", + "drive" + ], + [ + "storage" + ], + [ + "spaces", + "storage-spaces", + "mirror", + "mirror-space", + "resilient", + "resilient-space" + ] + ] + }, + { + "Name": "Manage Work Folders", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WorkFolders", + "Keywords": [ + [ + "files" + ], + [ + "line", + "offline", + "off-line", + "ofline" + ], + [ + "folders", + "subfolders" + ], + [ + "sync-centre", + "synchronise", + "work", + "work-folders", + "work-files", + "company-folders", + "company-files", + "sync-center", + "synchronize" + ] + ] + }, + { + "Name": "Set flicks to perform certain tasks", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @0,flicks", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "flicks", + "gestures", + "flik", + "filcks", + "penflick" + ], + [ + "hand-writing", + "handwriting", + "write", + "pen", + "stylus", + "handrighting", + "hand-righting", + "penmanship", + "calligraphy" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change tablet pen settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @0,pen", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "hand-writing", + "handwriting", + "write", + "pen", + "stylus", + "handrighting", + "hand-righting", + "penmanship", + "calligraphy" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Turn flicks on or off", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @0,flicks", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "flicks", + "gestures", + "flik", + "filcks", + "penflick" + ], + [ + "hand-writing", + "handwriting", + "write", + "pen", + "stylus", + "handrighting", + "hand-righting", + "penmanship", + "calligraphy" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Change touch input settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @0,touch", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "touch", + "pointer", + "finger", + "pointing", + "cursor", + "mouse" + ], + [ + "touch" + ] + ] + }, + { + "Name": "Change multi-touch gesture settings", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @0,touch", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "touch", + "pointer", + "finger", + "pointing", + "cursor", + "mouse" + ], + [ + "touch" + ] + ] + }, + { + "Name": "Calibrate the screen for pen or touch input", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @1,general", + "Keywords": [ + [ + "accuracy", + "accurately", + "precise", + "precision", + "correct", + "mistakes" + ], + [ + "calibrate", + "calibration" + ], + [ + "monitors", + "screens" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ], + [ + "pen" + ], + [ + "touch" + ] + ] + }, + { + "Name": "Choose the order of how your screen rotates", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @1,display", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "monitors", + "screens" + ], + [ + "angle", + "landscape", + "orientation", + "portrait", + "rotate", + "rotation" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ] + ] + }, + { + "Name": "Set tablet buttons to perform certain tasks", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @1,buttons", + "Keywords": [ + [ + "butons", + "buttons" + ], + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "customising", + "customisation", + "customises", + "customization", + "customizes", + "customizing", + "personalisation", + "personalise", + "personalization", + "personalize" + ], + [ + "tablets", + "pc" + ] + ] + }, + { + "Name": "Specify which hand you write with", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL TabletPC.cpl @1,other", + "Keywords": [ + [ + "hand-writing", + "handwriting", + "write", + "pen", + "stylus", + "handrighting", + "hand-righting", + "penmanship", + "calligraphy" + ], + [ + "flip", + "handed", + "hander", + "left-handed", + "left-hander", + "lefty", + "reverse", + "handed", + "right-handed", + "switch" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Send or receive a file", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\rundll32.exe shell32.dll,Control_RunDLL irprops.cpl", + "Keywords": [ + [ + "infrared", + "infra-red", + "wireless" + ], + [ + "beam", + "send", + "transmit" + ] + ] + }, + { + "Name": "Change Windows SideShow-compatible device settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WindowsSideShow /page pageChangeSettingsDeviceSelector", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "ware", + "hardware-general" + ], + [ + "side-show", + "auxiliary", + "display", + "show", + "sideshow" + ], + [ + "change", + "settings" + ], + [ + "gadgets", + "widgets" + ] + ] + }, + { + "Name": "Change the order of Windows SideShow gadgets", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WindowsSideShow /page pageReorderGadgetsDeviceSelector", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "gadgets", + "widgets" + ], + [ + "organise", + "organising", + "arrange", + "arranging", + "ordering", + "organize", + "organizing", + "reorder" + ], + [ + "side-show", + "auxiliary", + "display", + "show", + "sideshow" + ], + [ + "alphabetise", + "alphabetize", + "order", + "sorting" + ] + ] + }, + { + "Name": "Change Windows SideShow settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WindowsSideShow", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "gadgets", + "widgets" + ], + [ + "deactivate", + "cancel", + "deactivates", + "delete", + "deleting", + "disable", + "disallow", + "exit", + "get", + "rid", + "of", + "prevent", + "remove", + "removing", + "shut", + "down", + "off", + "stop", + "turn", + "turnoff" + ], + [ + "side-show", + "auxiliary", + "display", + "show", + "sideshow" + ] + ] + }, + { + "Name": "Change PC wake-up settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.WindowsSideShow /page pageAutoWake", + "Keywords": [ + [ + "automated", + "automatically" + ], + [ + "laptop", + "compuer", + "machine", + "my", + "computer", + "pc", + "personal", + "system" + ], + [ + "side-show", + "auxiliary", + "display", + "show", + "sideshow" + ], + [ + "auto", + "out", + "period", + "timeout", + "timer", + "timing" + ], + [ + "asleep", + "autowake", + "awaken", + "come", + "back", + "from", + "hibernates", + "hibernating", + "hibernation", + "restarts", + "resumes", + "sleeping", + "standby", + "up", + "wakeup", + "wake-up", + "waking" + ] + ] + }, + { + "Name": "Calibrate display colour", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\dccw.exe", + "Keywords": [ + [ + "adjust", + "ajust", + "alter", + "change", + "edit", + "modify", + "replace", + "reset", + "set", + "switch" + ], + [ + "crt", + "displays", + "monitors", + "screeens", + "screens" + ], + [ + "adapters", + "adaptor", + "cards" + ], + [ + "calibrate", + "calibration" + ], + [ + "brightness", + "contrast", + "hi-contrast", + "high-contrast" + ], + [ + "troubleshooting", + "history", + "problem" + ] + ] + }, + { + "Name": "Adjust ClearType text", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\cttune.exe", + "Keywords": [ + [ + "faunt", + "fonts", + "type", + "truetype", + "type", + "opentype", + "fount" + ], + [ + "dots", + "per", + "inch", + "dpi", + "pixels", + "high" + ], + [ + "pixels", + "reslution", + "resoltion", + "resolution", + "resolutoin", + "rezolution", + "size" + ], + [ + "wizard", + "wizzard" + ], + [ + "personalise", + "personalisation", + "personalize", + "personalization" + ], + [ + "type", + "cleartype", + "tuning", + "tuner", + "settings", + "contrast", + "gamma", + "text", + "aliasing", + "anti-aliasing", + "filtering", + "blurry", + "fuzzy" + ], + [ + "typography", + "reading", + "readability", + "easier", + "to", + "easy", + "font", + "clarity", + "color", + "colour", + "enable", + "cleartype", + "tweak", + "typeface", + "text", + "size", + "ppi", + "legible", + "legibility" + ] + ] + }, + { + "Name": "Connect to a network", + "Area": null, + "Type": "TaskLink", + "Command": "ms-availablenetworks:", + "Keywords": [ + [ + "connect", + "to", + "enter", + "join", + "plug", + "into" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "802.1x", + "wireless", + "wire-less" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "wireless", + "LAN", + "wifi", + "Wi-Fi", + "WLAN" + ], + [ + "aeroplane", + "all", + "wireless", + "on", + "off", + "plane", + "flight", + "radio", + "airplane", + "connection" + ], + [ + "DA", + "direct", + "access", + "directaccess" + ], + [ + "mobile phone", + "provider", + "mobile", + "broadband", + "2G", + "2.5G", + "3G", + "3.5G", + "4G", + "LTE", + "CDMA", + "GSM", + "wireless", + "cellphone", + "mbb", + "telco", + "carrier" + ] + ] + }, + { + "Name": "Set up a connection or network", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\xwizard.exe RunWizard {7071ECE0-663B-4bc1-A1FA-B97F3B917C55}", + "Keywords": [ + [ + "tooth", + "bluetooth", + "blutooth" + ], + [ + "connect", + "to", + "enter", + "join", + "plug", + "into" + ], + [ + "infrared", + "infra-red", + "wireless" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "802.1x", + "wireless", + "wire-less" + ] + ] + }, + { + "Name": "Identify and repair network problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\Rundll32.exe ndfapi,NdfRunDllDiagnoseIncident", + "Keywords": [ + [ + "broken", + "doesn't", + "not", + "working", + "problems", + "won't" + ], + [ + "diagnose", + "diagnostics", + "diagnosis", + "find", + "problems", + "analyse", + "analyze", + "analysis", + "troubleshooter", + "errors" + ], + [ + "from", + "the", + "web", + "inet", + "internet", + "intrnet", + "net", + "online", + "on-line", + "sites", + "pages", + "webpages", + "websites", + "world", + "wide", + "www" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "corrects", + "fixes", + "repairs" + ], + [ + "internet", + "wireless", + "ethernet", + "packet", + "dhcp", + "tcp/ip", + "protocol", + "nic", + "cable", + "certificate" + ], + [ + "wireless", + "LAN", + "wifi", + "Wi-Fi", + "WLAN" + ] + ] + }, + { + "Name": "Manage advanced sharing settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.NetworkAndSharingCenter /page Advanced", + "Keywords": [ + [ + "sharing", + "shared", + "files", + "network", + "folder", + "target" + ] + ] + }, + { + "Name": "Set up a dial-up connection", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\xwizard.exe RunWizard {7071EC71-663B-4bc1-A1FA-B97F3B917C55}", + "Keywords": [ + [ + "area", + "code", + "carrier", + "city", + "up", + "dialing", + "dialling", + "dialup", + "dial-up", + "pulse", + "tone", + "touchtone", + "touch-tone" + ], + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "modem" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "Set up a virtual private network (VPN) connection", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\xwizard.exe RunWizard {7071EC75-663B-4bc1-A1FA-B97F3B917C55}", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "virtual", + "private", + "network", + "vpn", + "workplace" + ] + ] + }, + { + "Name": "Set up a broadband connection", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\xwizard.exe RunWizard {C03E8585-781E-49a1-8190-CE902D0B2CE7}", + "Keywords": [ + [ + "pppoe", + "broadband" + ], + [ + "add", + "create", + "make", + "new" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ] + ] + }, + { + "Name": "View network computers and devices", + "Area": null, + "Type": "TaskLink", + "Command": "shell:::{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}", + "Keywords": [ + [ + "adapters", + "adaptor", + "cards" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ] + ] + }, + { + "Name": "View network connections", + "Area": null, + "Type": "TaskLink", + "Command": "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\\3\\::{7007ACC7-3202-11D1-AAD2-00805FC1270E}", + "Keywords": [ + [ + "adapters", + "adaptor", + "cards" + ], + [ + "internet", + "protocol", + "ip", + "addresses", + "v6", + "version", + "6", + "IP6", + "IPv6", + "tcp/ip", + "tcp\\ip", + "tcpip" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ], + [ + "internet", + "wireless", + "ethernet", + "packet", + "dhcp", + "tcp/ip", + "protocol", + "nic", + "cable", + "certificate" + ], + [ + "virtual", + "private", + "network", + "vpn", + "workplace" + ] + ] + }, + { + "Name": "View network status and tasks", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.NetworkAndSharingCenter", + "Keywords": [ + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "automatically", + "autoshow", + "auto-show", + "make", + "visible", + "see", + "show", + "unlock", + "view" + ], + [ + "condition", + "running", + "state", + "status" + ], + [ + "check", + "list", + "see", + "show", + "viewing" + ], + [ + "locations", + "networks" + ] + ] + }, + { + "Name": "Media streaming options", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.NetworkAndSharingCenter /page ShareMedia", + "Keywords": [ + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "sharing", + "shared", + "files", + "network", + "folder", + "target" + ], + [ + "stream", + "media", + "library", + "options", + "with", + "to", + "mediasharing", + "mediastreaming", + "sharemedia", + "internetsharing" + ] + ] + }, + { + "Name": "Access RemoteApp and desktops", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\xwizard.exe RunWizard {7940ACF8-60BA-4213-A7C3-F3B400EE266D}", + "Keywords": [ + [ + "activate", + "add", + "begin", + "enable", + "intsall", + "invoke", + "make", + "up", + "setting", + "setup", + "start", + "on", + "turnon", + "unlock" + ], + [ + "set-up", + "confg", + "configuration", + "configure", + "define", + "management", + "options", + "personalise", + "personalize", + "up", + "settings", + "setup" + ], + [ + "RemoteApp", + "Desktop", + "RemoteDesktop", + "Connection", + "work" + ] + ] + }, + { + "Name": "Find and fix problems", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Troubleshooting", + "Keywords": [ + [ + "troubleshoot", + "shoot", + "troubleshooter", + "trubleshoot", + "help", + "solution" + ], + [ + "diagnose", + "diagnostics", + "diagnosis", + "find", + "problems", + "analyse", + "analyze", + "analysis", + "troubleshooter", + "errors" + ] + ] + }, + { + "Name": "Find and fix problems", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Troubleshooting", + "Keywords": [ + [ + "troubleshoot", + "shoot", + "troubleshooter", + "trubleshoot", + "help", + "solution" + ], + [ + "diagnose", + "diagnostics", + "diagnosis", + "find", + "problems", + "analyse", + "analyze", + "analysis", + "troubleshooter", + "errors" + ] + ] + }, + { + "Name": "Find and fix audio playback problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id AudioPlaybackDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "Playing", + "sound", + "volume", + "audible", + "speaker", + "headphone", + "stereo", + "listen", + "hear", + "output", + "MP3", + "player" + ] + ] + }, + { + "Name": "Find and fix audio recording problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id AudioRecordingDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "Capture", + "sample", + "mix", + "level", + "input", + "sound", + "audible", + "volume", + "stereo", + "tape", + "microphone", + "mike" + ] + ] + }, + { + "Name": "Perform recommended maintenance tasks automatically", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id MaintenanceDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "optimise", + "maintain", + "defrag", + "optimize", + "performance" + ], + [ + "operating", + "system", + "os" + ] + ] + }, + { + "Name": "Find and fix networking and connection problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id NetworkDiagnosticsWeb -ep ControlPanelSearch", + "Keywords": [ + [ + "sharing", + "shared", + "files", + "network", + "folder", + "target" + ], + [ + "internet", + "wireless", + "ethernet", + "packet", + "dhcp", + "tcp/ip", + "protocol", + "nic", + "cable", + "certificate" + ], + [ + "wireless", + "LAN", + "wifi", + "Wi-Fi", + "WLAN" + ] + ] + }, + { + "Name": "Find and fix printing problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id PrinterDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "print", + "paper", + "ink", + "toner", + "laser", + "bubble", + "jet", + "cartridge" + ], + [ + "out", + "printers", + "printing", + "printner", + "printout", + "print-out", + "pritner" + ] + ] + }, + { + "Name": "Troubleshooting History", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Troubleshooting /page HistoryPage", + "Keywords": [ + [ + "troubleshooting", + "history", + "problem" + ] + ] + }, + { + "Name": "Find and fix problems with Windows Search", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id SearchDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "finder", + "indexing", + "reindex", + "re-index", + "searches", + "searching" + ] + ] + }, + { + "Name": "Record steps to reproduce a problem", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\psr.exe", + "Keywords": [ + [ + "recorder", + "screen", + "problem", + "capture", + "snipping", + "psr" + ], + [ + "reproduce" + ] + ] + }, + { + "Name": "Find and fix keyboard problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id KeyboardDiagnostic -ep ControlPanelSearch", + "Keywords": [ + [ + "input method editor", + "asian input", + "japanese input", + "ime", + "keyboard", + "input" + ] + ] + }, + { + "Name": "Find and fix bluescreen problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id BlueScreenDiagnostic -ep CortanaBluescreenSearch", + "Keywords": [ + [ + "blueScreen", + "bluescreen issues", + "bluescreen", + "bad driver", + "drivers", + "blue screen", + "bug check" + ] + ] + }, + { + "Name": "Find and fix windows update problems", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\msdt.exe -id windowsupdatediagnostic -ep CortanaWUSearch", + "Keywords": [ + [ + "Can't install update", + "Windows Update", + "Cannot update", + "issues with Windows Update", + "Windows Update Issues", + "WU", + "Update fails", + "Cant install update", + "Windows update error", + "WU error" + ] + ] + }, + { + "Name": "Change location settings", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.LocationSettings", + "Keywords": [ + [ + "private", + "privacy", + "secrecy" + ], + [ + "by", + "defaults", + "defualt", + "standard" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "finding", + "locate", + "locating", + "search", + "for", + "is", + "where's", + "the" + ], + [ + "sensors", + "senser" + ], + [ + "gps", + "global", + "positioning", + "systems" + ], + [ + "ambient", + "lighting", + "changes" + ], + [ + "personal", + "information", + "persenal", + "private", + "informatien" + ], + [ + "place", + "position", + "positian", + "new" + ], + [ + "network", + "connections", + "netwerk", + "conection" + ], + [ + "sensor", + "definition", + "what", + "is", + "a" + ], + [ + "movement", + "movment", + "movemnet", + "motion" + ], + [ + "detection", + "detecting", + "changes" + ], + [ + "drop" + ], + [ + "locations", + "change", + "another" + ], + [ + "default", + "defualt", + "location" + ], + [ + "geographic", + "locations", + "geografic", + "geografic", + "geografik" + ], + [ + "latitude", + "laditude", + "longitude", + "longetude" + ], + [ + "address", + "adress" + ], + [ + "region", + "country", + "contry" + ], + [ + "city" + ], + [ + "orientation", + "orientatien", + "orientation", + "orientatian" + ], + [ + "state" + ] + ] + }, + { + "Name": "Manage Web Credentials", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.CredentialManager", + "Keywords": [ + [ + "administer", + "configure", + "managed", + "manages", + "managing", + "up", + "setup" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "word", + "pass-word", + "passwords", + "passwork", + "passwrod", + "pasword", + "paswrod" + ], + [ + "passwords", + "web", + "stored", + "automatic", + "logon", + "credentials", + "network" + ], + [ + "vault", + "locker" + ] + ] + }, + { + "Name": "Manage Windows Credentials", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.CredentialManager /page ?SelectedVault=CredmanVault", + "Keywords": [ + [ + "administer", + "configure", + "managed", + "manages", + "managing", + "up", + "setup" + ], + [ + "connections", + "go", + "online", + "intranet", + "lan", + "netowrk", + "networking", + "line", + "on-line", + "www" + ], + [ + "word", + "pass-word", + "passwords", + "passwork", + "passwrod", + "pasword", + "paswrod" + ], + [ + "passwords", + "web", + "stored", + "automatic", + "logon", + "credentials", + "network" + ], + [ + "vault", + "locker" + ] + ] + }, + { + "Name": "Back up and Restore (Windows 7)", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.BackupAndRestore", + "Keywords": [ + [ + "up", + "backing", + "backuo", + "back-up", + "backups", + "back-ups", + "data", + "storage", + "incramental", + "incremental", + "saver", + "shadow", + "copies", + "copy" + ], + [ + "data", + "recovering", + "recovers", + "recovery" + ], + [ + "bring", + "back", + "change", + "recover", + "restore", + "back", + "rollback" + ], + [ + "points", + "wizard", + "system", + "protection", + "restores", + "systemrestores" + ] + ] + }, + { + "Name": "Restore data, files or computer from backup (Windows 7)", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.BackupAndRestore", + "Keywords": [ + [ + "up", + "backing", + "backuo", + "back-up", + "backups", + "back-ups", + "data", + "storage", + "incramental", + "incremental", + "saver", + "shadow", + "copies", + "copy" + ], + [ + "data", + "recovering", + "recovers", + "recovery" + ], + [ + "bring", + "back", + "change", + "recover", + "restore", + "back", + "rollback" + ], + [ + "points", + "wizard", + "system", + "protection", + "restores", + "systemrestores" + ], + [ + "recover", + "deleted", + "files", + "restore", + "get", + "lost", + "missing", + "rescue", + "retrieve", + "return", + "past", + "previous", + "protected", + "time", + "back", + "version" + ] + ] + }, + { + "Name": "Save backup copies of your files with File History", + "Area": null, + "Type": "TaskLink", + "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.FileHistory", + "Keywords": [ + [ + "up", + "backing", + "backuo", + "back-up", + "backups", + "back-ups", + "data", + "storage", + "incramental", + "incremental", + "saver", + "shadow", + "copies", + "copy" + ], + [ + "bring", + "back", + "change", + "recover", + "restore", + "back", + "rollback" + ], + [ + "devices", + "divises", + "divicse", + "divices" + ], + [ + "disk", + "drive", + "harddisk", + "hard-disk", + "harddrive", + "hard-drive" + ], + [ + "guard", + "protect", + "secure", + "preserve" + ], + [ + "sharing", + "shared", + "files", + "network", + "folder", + "target" + ], + [ + "external", + "separate", + "seperate" + ], + [ + "re-instate", + "re-set", + "recovery", + "recover", + "reinstall", + "factory", + "re-image", + "reimage", + "re-install", + "repair", + "restore", + "reinstate", + "reset", + "wipe", + "rollback", + "fix", + "troubleshoot", + "pc", + "refresh", + "erase", + "format" + ], + [ + "archive", + "collection", + "files", + "keep", + "safe", + "personal", + "retain", + "save", + "library", + "history" + ], + [ + "associate", + "exclude", + "migrate", + "move", + "reconnect", + "recommend", + "retention", + "settings", + "store" + ] + ] + }, + { + "Name": "Restore your files with File History", + "Area": null, + "Type": "TaskLink", + "Command": "%windir%\\system32\\FileHistory.exe", + "Keywords": [ + [ + "up", + "backing", + "backuo", + "back-up", + "backups", + "back-ups", + "data", + "storage", + "incramental", + "incremental", + "saver", + "shadow", + "copies", + "copy" + ], + [ + "bring", + "back", + "change", + "recover", + "restore", + "back", + "rollback" + ], + [ + "recover", + "deleted", + "files", + "restore", + "get", + "lost", + "missing", + "rescue", + "retrieve", + "return", + "past", + "previous", + "protected", + "time", + "back", + "version" + ], + [ + "archive", + "collection", + "files", + "keep", + "safe", + "personal", + "retain", + "save", + "library", + "history" + ] + ] } ] From ccb01d85d62fd1ede065210b04ccc73661c8c9a5 Mon Sep 17 00:00:00 2001 From: pc223 <10551242+pc223@users.noreply.github.com> Date: Mon, 26 Jul 2021 13:50:46 +0700 Subject: [PATCH 16/45] Add some more glyphs --- WindowsSettings.json | 331 +++++++++++++++++++++++-------------------- 1 file changed, 179 insertions(+), 152 deletions(-) diff --git a/WindowsSettings.json b/WindowsSettings.json index dec149c6b00..72c32980e5f 100644 --- a/WindowsSettings.json +++ b/WindowsSettings.json @@ -7,14 +7,13 @@ "Workplace" ], "Command": "ms-settings:workplace", - "glyph": "\ue821" + "Glyph": "\ue821" }, { "Name": "EmailAndAppAccounts", "Area": "Accounts", "Type": "AppSettingsApp", - "Command": "ms-settings:emailandaccounts", - "glyph": "\ue715" + "Command": "ms-settings:emailandaccounts" }, { "Name": "FamilyAndOtherPeople", @@ -23,8 +22,7 @@ "AltNames": [ "OtherUsers" ], - "Command": "ms-settings:otherusers", - "glyph": "\ue8fa" + "Command": "ms-settings:otherusers" }, { "Name": "SetUpKiosk", @@ -33,14 +31,15 @@ "AltNames": [ "AssignedAccess" ], - "Command": "ms-settings:assignedaccess" + "Command": "ms-settings:assignedaccess", + "Glyph": null }, { "Name": "SignInOptions", "Area": "Accounts", "Type": "AppSettingsApp", "Command": "ms-settings:signinoptions", - "glyph": "\ue8d7" + "Glyph": "\ue8d7" }, { "Name": "SignInOptionsDynamicLock", @@ -53,7 +52,7 @@ "Area": "Accounts", "Type": "AppSettingsApp", "Command": "ms-settings:sync", - "glyph": "\ue895" + "Glyph": "\ue895" }, { "Name": "WindowsHelloSetupFace", @@ -72,14 +71,14 @@ "Area": "Accounts", "Type": "AppSettingsApp", "Command": "ms-settings:yourinfo", - "glyph": "\ue779" + "Glyph": "\ue779" }, { "Name": "AppsAndFeatures", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:appsfeatures", - "glyph": null + "Glyph": "\ue71d" }, { "Name": "AppFeatures", @@ -92,27 +91,28 @@ "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:appsforwebsites", - "glyph": "\ue78b" + "Glyph": "\ue78b" }, { "Name": "DefaultApps", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:defaultapps", - "glyph": "\ue7ac" + "Glyph": "\ue7ac" }, { "Name": "ManageOptionalFeatures", "Area": "Apps", "Type": "AppSettingsApp", - "Command": "ms-settings:optionalfeatures" + "Command": "ms-settings:optionalfeatures", + "Glyph": "\ue71d" }, { "Name": "OfflineMaps", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:maps", - "glyph": "\ue826" + "Glyph": "\ue826" }, { "Name": "OfflineMapsDownloadMaps", @@ -125,20 +125,21 @@ "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:startupapps", - "glyph": "\ue7b5" + "Glyph": "\ue7b5" }, { "Name": "VideoPlayback", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:videoplayback", - "glyph": "\ue714" + "Glyph": "\ue714" }, { "Name": "Notifications", "Area": "Cortana", "Type": "AppSettingsApp", - "Command": "ms-settings:cortana-notifications" + "Command": "ms-settings:cortana-notifications", + "Glyph": null }, { "Name": "MoreDetails", @@ -150,13 +151,15 @@ "Name": "PermissionsAndHistory", "Area": "Cortana", "Type": "AppSettingsApp", - "Command": "ms-settings:cortana-permissions" + "Command": "ms-settings:cortana-permissions", + "Glyph": "\ue7ef" }, { "Name": "WindowsSearch", "Area": "Cortana", "Type": "AppSettingsApp", - "Command": "ms-settings:cortana-windowssearch" + "Command": "ms-settings:cortana-windowssearch", + "Glyph": "\ue713" }, { "Name": "CortanaLanguage", @@ -171,7 +174,8 @@ "Name": "Cortana", "Area": "Cortana", "Type": "AppSettingsApp", - "Command": "ms-settings:cortana" + "Command": "ms-settings:cortana", + "Glyph": null }, { "Name": "TalkToCortana", @@ -184,13 +188,14 @@ "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:autoplay", - "glyph": "\uec57" + "Glyph": "\uec57" }, { "Name": "Bluetooth", "Area": "Devices", "Type": "AppSettingsApp", - "Command": "ms-settings:bluetooth" + "Command": "ms-settings:bluetooth", + "Glyph": "\ue772" }, { "Name": "ConnectedDevices", @@ -211,52 +216,49 @@ "Area": "Devices", "Type": "AppSettingsApp", "Note": "NoteTouchpad", - "Command": "ms-settings:mousetouchpad", - "glyph": "\ue962" + "Command": "ms-settings:mousetouchpad" }, { "Name": "PenAndWindowsInk", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:pen", - "glyph": "\uedc6" + "Glyph": "\uedc6" }, { "Name": "PrintersAndScanners", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:printers", - "glyph": "\ue749" + "Glyph": "\ue749" }, { "Name": "Touchpad", "Area": "Devices", "Type": "AppSettingsApp", "Note": "NoteTouchpad", - "Command": "ms-settings:devices-touchpad", - "glyph": "\uefa5" + "Command": "ms-settings:devices-touchpad" }, { "Name": "Typing", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:typing", - "glyph": "\ue765" + "Glyph": "\ue765" }, { "Name": "Usb", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:usb", - "glyph": "\ue88e" + "Glyph": "\ue88e" }, { "Name": "Wheel", "Area": "Devices", "Type": "AppSettingsApp", "Note": "NoteDialPaired", - "Command": "ms-settings:wheel", - "glyph": "\uee94" + "Command": "ms-settings:wheel" }, { "Name": "Phone", @@ -265,8 +267,7 @@ "AltNames": [ "MobileDevices" ], - "Command": "ms-settings:mobile-devices", - "glyph": "\ue8ea" + "Command": "ms-settings:mobile-devices" }, { "Name": "Audio", @@ -283,7 +284,8 @@ "Name": "ClosedCaptions", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "Command": "ms-settings:easeofaccess-closedcaptioning" + "Command": "ms-settings:easeofaccess-closedcaptioning", + "Glyph": "\ue7f0" }, { "Name": "ColorFilters", @@ -327,7 +329,8 @@ "Name": "EyeControl", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "Command": "ms-settings:easeofaccess-eyecontrol" + "Command": "ms-settings:easeofaccess-eyecontrol", + "Glyph": "\uf19d" }, { "Name": "Fonts", @@ -336,13 +339,14 @@ "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", "Command": "ms-settings:fonts", - "glyph": "\ue8d2" + "Glyph": "\ue8d2" }, { "Name": "HighContrast", "Area": "EaseOfAccess", "Type": "AppSettingsApp", - "Command": "ms-settings:easeofaccess-highcontrast" + "Command": "ms-settings:easeofaccess-highcontrast", + "Glyph": "\ue706" }, { "Name": "Keyboard", @@ -357,7 +361,8 @@ "CapsLock", "NumLock" ], - "Command": "ms-settings:easeofaccess-keyboard" + "Command": "ms-settings:easeofaccess-keyboard", + "Glyph": "\ued4d" }, { "Name": "Magnifier", @@ -366,7 +371,8 @@ "AltNames": [ "Zoom" ], - "Command": "ms-settings:easeofaccess-magnifier" + "Command": "ms-settings:easeofaccess-magnifier", + "Glyph": "\uf19d" }, { "Name": "Mouse", @@ -390,7 +396,8 @@ "Type": "AppSettingsApp", "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", - "Command": "ms-settings:easeofaccess-otheroptions" + "Command": "ms-settings:easeofaccess-otheroptions", + "Glyph": null }, { "Name": "Speech", @@ -413,28 +420,29 @@ "Name": "Broadcasting", "Area": "Gaming", "Type": "AppSettingsApp", - "Command": "ms-settings:gaming-broadcasting" + "Command": "ms-settings:gaming-broadcasting", + "Glyph": null }, { "Name": "GameBar", "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-gamebar", - "glyph": "\uf192" + "Glyph": "\ue713" }, { "Name": "GameDvr", "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-gamedvr", - "glyph": "\ued36" + "Glyph": "\ue713" }, { "Name": "GameMode", "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-gamemode", - "glyph": "\uec4a" + "Glyph": "\uec4a" }, { "Name": "PlayingGameFullScreen", @@ -458,7 +466,7 @@ "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-xboxnetworking", - "glyph": "\uf20b" + "Glyph": "\ue713" }, { "Name": "SettingsHomePage", @@ -510,8 +518,7 @@ "Name": "AirplaneMode", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-airplanemode", - "glyph": "\ue709" + "Command": "ms-settings:network-airplanemode" }, { "Name": "Proximity", @@ -530,22 +537,21 @@ "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:datausage", - "glyph": "\ueb05" + "Glyph": "\uec27" }, { "Name": "DialUp", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-dialup", - "glyph": "\ue83c" + "Glyph": "\ue83c" }, { "Name": "DirectAccess", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Note": "NoteDirectAccess", - "Command": "ms-settings:network-directaccess", - "glyph": "\ue83b" + "Command": "ms-settings:network-directaccess" }, { "Name": "Ethernet", @@ -560,7 +566,7 @@ "Ip" ], "Command": "ms-settings:network-ethernet", - "glyph": "\ue839" + "Glyph": "\ue839" }, { "Name": "ManageKnownNetworks", @@ -577,8 +583,7 @@ "Name": "MobileHotspot", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", - "Command": "ms-settings:network-mobilehotspot", - "glyph": "\ue704" + "Command": "ms-settings:network-mobilehotspot" }, { "Name": "NFC", @@ -594,14 +599,14 @@ "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-proxy", - "glyph": "\ue774" + "Glyph": "\ue774" }, { "Name": "NetworkStatus", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-status", - "glyph": "\uec27" + "Glyph": "\uec27" }, { "Name": "Network", @@ -615,15 +620,14 @@ "Dhcp", "Ip" ], - "Command": "ms-settings:network", - "glyph": "\uec27" + "Command": "ms-settings:network" }, { "Name": "Vpn", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-vpn", - "glyph": "\ue705" + "Glyph": "\ue705" }, { "Name": "WiFi", @@ -635,8 +639,7 @@ "ShortNameWiFi" ], "Note": "NoteWiFiAdapter", - "Command": "ms-settings:network-wifi", - "glyph": "\ue701" + "Command": "ms-settings:network-wifi" }, { "Name": "WiFiCalling", @@ -658,7 +661,7 @@ "Image" ], "Command": "ms-settings:personalization-background", - "glyph": "\ueb9f" + "Glyph": "\ueb9f" }, { "Name": "ChooseWhichFoldersAppearOnStart", @@ -667,7 +670,8 @@ "AltNames": [ "StartPlaces" ], - "Command": "ms-settings:personalization-start-places" + "Command": "ms-settings:personalization-start-places", + "Glyph": "\ueca5" }, { "Name": "Colors", @@ -683,7 +687,7 @@ "WindowBorder" ], "Command": "ms-settings:colors", - "glyph": "\ue2b1" + "Glyph": "\ue790" }, { "Name": "Glance", @@ -691,7 +695,8 @@ "Type": "AppSettingsApp", "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", - "Command": "ms-settings:personalization-glance" + "Command": "ms-settings:personalization-glance", + "Glyph": null }, { "Name": "LockScreen", @@ -701,8 +706,7 @@ "Image", "Picture" ], - "Command": "ms-settings:lockscreen", - "glyph": "\uee3f" + "Command": "ms-settings:lockscreen" }, { "Name": "NavigationBar", @@ -722,22 +726,21 @@ "Name": "Start", "Area": "Personalization", "Type": "AppSettingsApp", - "Command": "ms-settings:personalization-start", - "glyph": "\ueca5" + "Command": "ms-settings:personalization-start" }, { "Name": "Taskbar", "Area": "Personalization", "Type": "AppSettingsApp", "Command": "ms-settings:taskbar", - "glyph": "\ue90e" + "Glyph": "\ue90e" }, { "Name": "Themes", "Area": "Personalization", "Type": "AppSettingsApp", "Command": "ms-settings:themes", - "glyph": "\ue771" + "Glyph": "\ue771" }, { "Name": "AddYourPhone", @@ -765,13 +768,15 @@ "Name": "AccountInfo", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-accountinfo" + "Command": "ms-settings:privacy-accountinfo", + "Glyph": "\ue779" }, { "Name": "ActivityHistory", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-activityhistory" + "Command": "ms-settings:privacy-activityhistory", + "Glyph": "\ue7c4" }, { "Name": "AdvertisingId", @@ -779,25 +784,29 @@ "Type": "AppSettingsApp", "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", - "Command": "ms-settings:privacy-advertisingid" + "Command": "ms-settings:privacy-advertisingid", + "Glyph": "\ue72e" }, { "Name": "AppDiagnostics", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-appdiagnostics" + "Command": "ms-settings:privacy-appdiagnostics", + "Glyph": "\ue9d2" }, { "Name": "AutomaticFileDownloads", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-automaticfiledownloads" + "Command": "ms-settings:privacy-automaticfiledownloads", + "Glyph": "\ue753" }, { "Name": "BackgroundApps", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-backgroundapps" + "Command": "ms-settings:privacy-backgroundapps", + "Glyph": "\ue9d9" }, { "Name": "Calendar", @@ -809,25 +818,29 @@ "Name": "CallHistory", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-callhistory" + "Command": "ms-settings:privacy-callhistory", + "Glyph": "\uf738" }, { "Name": "Camera", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-webcam" + "Command": "ms-settings:privacy-webcam", + "Glyph": "\uf439" }, { "Name": "Contacts", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-contacts" + "Command": "ms-settings:privacy-contacts", + "Glyph": "\ue716" }, { "Name": "Documents", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-documents" + "Command": "ms-settings:privacy-documents", + "Glyph": "\ue7c3" }, { "Name": "Email", @@ -852,13 +865,15 @@ "Name": "FileSystem", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-broadfilesystemaccess" + "Command": "ms-settings:privacy-broadfilesystemaccess", + "Glyph": "\ue7c3" }, { "Name": "General", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy or privacy-general" + "Command": "ms-settings:privacy or privacy-general", + "Glyph": "\uec20" }, { "Name": "InkingAndTyping", @@ -867,37 +882,43 @@ "AltNames": [ "SpeechTyping" ], - "Command": "ms-settings:privacy-speechtyping" + "Command": "ms-settings:privacy-speechtyping", + "Glyph": "\ueadf" }, { "Name": "Location", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-location" + "Command": "ms-settings:privacy-location", + "Glyph": "\ue707" }, { "Name": "Messaging", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-messaging" + "Command": "ms-settings:privacy-messaging", + "Glyph": "\uebdb" }, { "Name": "Microphone", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-microphone" + "Command": "ms-settings:privacy-microphone", + "Glyph": "\ue720" }, { "Name": "Motion", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-motion" + "Command": "ms-settings:privacy-motion", + "Glyph": null }, { "Name": "Notifications", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-notifications" + "Command": "ms-settings:privacy-notifications", + "Glyph": null }, { "Name": "OtherDevices", @@ -906,13 +927,15 @@ "AltNames": [ "CustomDevices" ], - "Command": "ms-settings:privacy-customdevices" + "Command": "ms-settings:privacy-customdevices", + "Glyph": "\ue772" }, { "Name": "PhoneCalls", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-phonecalls" + "Command": "ms-settings:privacy-phonecalls", + "Glyph": "\ue77e" }, { "Name": "Pictures", @@ -924,7 +947,8 @@ "Name": "Radios", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-radios" + "Command": "ms-settings:privacy-radios", + "Glyph": "\uec05" }, { "Name": "Speech", @@ -942,13 +966,15 @@ "Name": "Videos", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-videos" + "Command": "ms-settings:privacy-videos", + "Glyph": "\ue8b2" }, { "Name": "VoiceActivation", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-voiceactivation" + "Command": "ms-settings:privacy-voiceactivation", + "Glyph": "\uf12e" }, { "Name": "Accounts", @@ -981,7 +1007,8 @@ "Name": "WelcomeScreen", "Area": "SurfaceHub", "Type": "AppSettingsApp", - "Command": "ms-settings:surfacehub-welcome" + "Command": "ms-settings:surfacehub-welcome", + "Glyph": "\uee3f" }, { "Name": "About", @@ -996,14 +1023,15 @@ "Version" ], "Command": "ms-settings:about", - "glyph": "\ue946" + "Glyph": "\ue946" }, { "Name": "AdvancedDisplaySettings", "Area": "System", "Type": "AppSettingsApp", "Note": "NoteDisplayGraphics", - "Command": "ms-settings:display-advanced" + "Command": "ms-settings:display-advanced", + "Glyph": "\ue7f4" }, { "Name": "AppVolumeAndDevicePreferences", @@ -1011,8 +1039,7 @@ "Type": "AppSettingsApp", "IntroducedInBuild": 18362, "Note": "NoteSince18362", - "Command": "ms-settings:apps-volume", - "glyph": "\ue767" + "Command": "ms-settings:apps-volume" }, { "Name": "BatterySaver", @@ -1043,7 +1070,7 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:clipboard", - "glyph": "\ue77f" + "Glyph": "\ue77f" }, { "Name": "Display", @@ -1055,21 +1082,21 @@ "WarmerColor", "RedEye" ], - "Command": "ms-settings:display", - "glyph": "\ue7f4" + "Command": "ms-settings:display" }, { "Name": "DefaultSaveLocations", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:savelocations", - "glyph": "\ueda2" + "Glyph": "\ueda2" }, { "Name": "ScreenRotation", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:screenrotation" + "Command": "ms-settings:screenrotation", + "Glyph": "\ue7f4" }, { "Name": "DuplicatingMyDisplay", @@ -1099,8 +1126,7 @@ "Name": "FocusAssistQuietHours", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:quiethours", - "glyph": "\ue708" + "Command": "ms-settings:quiethours" }, { "Name": "FocusAssistQuietMoments", @@ -1117,13 +1143,14 @@ ], "Note": "NoteAdvancedGraphics", "Command": "ms-settings:display-advancedgraphics", - "glyph": "\ue7f4" + "Glyph": null }, { "Name": "Messaging", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:messaging" + "Command": "ms-settings:messaging", + "Glyph": "\uebdb" }, { "Name": "Multitasking", @@ -1136,13 +1163,14 @@ "VirtualDesktops" ], "Command": "ms-settings:multitasking", - "glyph": "\uee40" + "Glyph": "\ue7c4" }, { "Name": "NightLightSettings", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:nightlight" + "Command": "ms-settings:nightlight", + "Glyph": null }, { "Name": "PhoneDefaultApps", @@ -1155,7 +1183,7 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:project", - "glyph": "\uebc6" + "Glyph": "\uebc6" }, { "Name": "SharedExperiences", @@ -1164,35 +1192,35 @@ "AltNames": [ "Crossdevice" ], - "Command": "ms-settings:crossdevice" + "Command": "ms-settings:crossdevice", + "Glyph": "\uf22c" }, { "Name": "TabletMode", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:tabletmode", - "glyph": "\uebfc" + "Glyph": "\uebfc" }, { "Name": "Taskbar", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:taskbar", - "glyph": "\ue90e" + "Glyph": "\ue90e" }, { "Name": "NotificationsAndActions", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:notifications", - "glyph": "\ue91c" + "Glyph": null }, { "Name": "RemoteDesktop", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:remotedesktop", - "glyph": "\ue8af" + "Command": "ms-settings:remotedesktop" }, { "Name": "Phone", @@ -1207,35 +1235,34 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:powersleep", - "glyph": "\ue7e8" + "Glyph": "\uf83d" }, { "Name": "Sound", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:sound", - "glyph": "\ue767" + "Glyph": "\ue995" }, { "Name": "StorageSense", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:storagesense", - "glyph": "\ueda2" + "Glyph": "\ueda2" }, { "Name": "StoragePolicies", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:storagepolicies", - "glyph": "\ueda2" + "Command": "ms-settings:storagepolicies" }, { "Name": "DateAndTime", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", "Command": "ms-settings:dateandtime", - "glyph": "\uec92" + "Glyph": "\uec92" }, { "Name": "JapanImeSettings", @@ -1254,20 +1281,21 @@ "AltNames": [ "RegionFormatting" ], - "Command": "ms-settings:regionformatting" + "Command": "ms-settings:regionformatting", + "Glyph": "\uf49a" }, { "Name": "Keyboard", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "Command": "ms-settings:keyboard" + "Command": "ms-settings:keyboard", + "Glyph": "\ued4d" }, { "Name": "RegionalLanguage", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "Command": "ms-settings:regionlanguage", - "glyph": "\ue8c1" + "Command": "ms-settings:regionlanguage" }, { "Name": "BopomofoIme", @@ -1325,8 +1353,7 @@ "Name": "Speech", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", - "Command": "ms-settings:speech", - "glyph": "\ue720" + "Command": "ms-settings:speech" }, { "Name": "WubiImeSettings", @@ -1340,49 +1367,46 @@ "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:activation", - "glyph": "\ue930" + "Glyph": "\ue930" }, { "Name": "Backup", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:backup", - "glyph": "\ue11c" + "Command": "ms-settings:backup" }, { "Name": "DeliveryOptimization", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:delivery-optimization", - "glyph": "\uf785" + "Glyph": "\uf785" }, { "Name": "FindMyDevice", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:findmydevice", - "glyph": "\ue707" + "Glyph": "\ue707" }, { "Name": "ForDevelopers", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:developers", - "glyph": "\uec7a" + "Command": "ms-settings:developers" }, { "Name": "Recovery", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:recovery", - "glyph": "\uebc4" + "Command": "ms-settings:recovery" }, { "Name": "Troubleshoot", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:troubleshoot", - "glyph": "\ue15e" + "Glyph": "\ue90f" }, { "Name": "WindowsSecurity", @@ -1397,29 +1421,27 @@ "IsolatedBrowsing", "ExploitProtection" ], - "Command": "ms-settings:windowsdefender", - "glyph": "\ue83d" + "Command": "ms-settings:windowsdefender" }, { "Name": "WindowsInsiderProgram", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Note": "NoteEnrolledWIP", - "Command": "ms-settings:windowsinsider", - "glyph": "\uf1ad" + "Command": "ms-settings:windowsinsider" }, { "Name": "WindowsUpdate", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:windowsupdate" + "Command": "ms-settings:windowsupdate", + "Glyph": "\ue895" }, { "Name": "WindowsUpdateCheckForUpdates", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", - "Command": "ms-settings:windowsupdate-action", - "glyph": "\ue895" + "Command": "ms-settings:windowsupdate-action" }, { "Name": "WindowsUpdateAdvancedOptions", @@ -1459,7 +1481,8 @@ "Area": "UserAccounts", "Type": "AppSettingsApp", "Note": "NoteMobileProvisioning", - "Command": "ms-settings:provisioning" + "Command": "ms-settings:provisioning", + "Glyph": "\ue821" }, { "Name": "WindowsAnywhere", @@ -1508,7 +1531,8 @@ "Name": "AutoPlay", "Area": "Programs", "Type": "ControlPanel", - "Command": "control /name Microsoft.AutoPlay" + "Command": "control /name Microsoft.AutoPlay", + "Glyph": "\uec57" }, { "Name": "BackupAndRestore", @@ -1565,7 +1589,8 @@ "AltNames": [ "timedate.cpl" ], - "Command": "control /name Microsoft.DateAndTime" + "Command": "control /name Microsoft.DateAndTime", + "Glyph": "\uec92" }, { "Name": "DefaultLocation", @@ -1607,7 +1632,8 @@ "Name": "Fonts", "Area": "AppearanceAndPersonalization", "Type": "ControlPanel", - "Command": "control /name Microsoft.Fonts" + "Command": "control /name Microsoft.Fonts", + "Glyph": "\ue8d2" }, { "Name": "GameControllers", @@ -1829,7 +1855,8 @@ "Name": "Sound", "Area": "HardwareAndSound", "Type": "ControlPanel", - "Command": "control /name Microsoft.Sound" + "Command": "control /name Microsoft.Sound", + "Glyph": "\ue995" }, { "Name": "SpeechRecognition", From b7df39307f1bdd9fb6b5e791e573682f20a7d391 Mon Sep 17 00:00:00 2001 From: pc223 <10551242+pc223@users.noreply.github.com> Date: Sat, 31 Jul 2021 22:50:11 +0700 Subject: [PATCH 17/45] Add FontFamily --- WindowsSettings.json | 478 +++++++++++++++++++++++++++++++++---------- 1 file changed, 367 insertions(+), 111 deletions(-) diff --git a/WindowsSettings.json b/WindowsSettings.json index 72c32980e5f..f71d52f5d01 100644 --- a/WindowsSettings.json +++ b/WindowsSettings.json @@ -7,7 +7,10 @@ "Workplace" ], "Command": "ms-settings:workplace", - "Glyph": "\ue821" + "IconGlyph": { + "Glyph": "\ue821", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "EmailAndAppAccounts", @@ -31,15 +34,17 @@ "AltNames": [ "AssignedAccess" ], - "Command": "ms-settings:assignedaccess", - "Glyph": null + "Command": "ms-settings:assignedaccess" }, { "Name": "SignInOptions", "Area": "Accounts", "Type": "AppSettingsApp", "Command": "ms-settings:signinoptions", - "Glyph": "\ue8d7" + "IconGlyph": { + "Glyph": "\ue8d7", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "SignInOptionsDynamicLock", @@ -52,7 +57,10 @@ "Area": "Accounts", "Type": "AppSettingsApp", "Command": "ms-settings:sync", - "Glyph": "\ue895" + "IconGlyph": { + "Glyph": "\ue895", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "WindowsHelloSetupFace", @@ -71,14 +79,20 @@ "Area": "Accounts", "Type": "AppSettingsApp", "Command": "ms-settings:yourinfo", - "Glyph": "\ue779" + "IconGlyph": { + "Glyph": "\ue779", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AppsAndFeatures", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:appsfeatures", - "Glyph": "\ue71d" + "IconGlyph": { + "Glyph": "\ue71d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AppFeatures", @@ -91,28 +105,40 @@ "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:appsforwebsites", - "Glyph": "\ue78b" + "IconGlyph": { + "Glyph": "\ue78b", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "DefaultApps", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:defaultapps", - "Glyph": "\ue7ac" + "IconGlyph": { + "Glyph": "\ue7ac", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ManageOptionalFeatures", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:optionalfeatures", - "Glyph": "\ue71d" + "IconGlyph": { + "Glyph": "\ue71d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "OfflineMaps", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:maps", - "Glyph": "\ue826" + "IconGlyph": { + "Glyph": "\ue826", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "OfflineMapsDownloadMaps", @@ -125,21 +151,26 @@ "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:startupapps", - "Glyph": "\ue7b5" + "IconGlyph": { + "Glyph": "\ue7b5", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "VideoPlayback", "Area": "Apps", "Type": "AppSettingsApp", "Command": "ms-settings:videoplayback", - "Glyph": "\ue714" + "IconGlyph": { + "Glyph": "\ue714", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Notifications", "Area": "Cortana", "Type": "AppSettingsApp", - "Command": "ms-settings:cortana-notifications", - "Glyph": null + "Command": "ms-settings:cortana-notifications" }, { "Name": "MoreDetails", @@ -152,14 +183,20 @@ "Area": "Cortana", "Type": "AppSettingsApp", "Command": "ms-settings:cortana-permissions", - "Glyph": "\ue7ef" + "IconGlyph": { + "Glyph": "\ue7ef", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "WindowsSearch", "Area": "Cortana", "Type": "AppSettingsApp", "Command": "ms-settings:cortana-windowssearch", - "Glyph": "\ue713" + "IconGlyph": { + "Glyph": "\ue713", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "CortanaLanguage", @@ -174,8 +211,7 @@ "Name": "Cortana", "Area": "Cortana", "Type": "AppSettingsApp", - "Command": "ms-settings:cortana", - "Glyph": null + "Command": "ms-settings:cortana" }, { "Name": "TalkToCortana", @@ -188,14 +224,20 @@ "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:autoplay", - "Glyph": "\uec57" + "IconGlyph": { + "Glyph": "\uec57", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Bluetooth", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:bluetooth", - "Glyph": "\ue772" + "IconGlyph": { + "Glyph": "\ue772", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ConnectedDevices", @@ -223,14 +265,20 @@ "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:pen", - "Glyph": "\uedc6" + "IconGlyph": { + "Glyph": "\uedc6", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "PrintersAndScanners", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:printers", - "Glyph": "\ue749" + "IconGlyph": { + "Glyph": "\ue749", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Touchpad", @@ -244,14 +292,20 @@ "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:typing", - "Glyph": "\ue765" + "IconGlyph": { + "Glyph": "\ue765", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Usb", "Area": "Devices", "Type": "AppSettingsApp", "Command": "ms-settings:usb", - "Glyph": "\ue88e" + "IconGlyph": { + "Glyph": "\ue88e", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Wheel", @@ -285,7 +339,10 @@ "Area": "EaseOfAccess", "Type": "AppSettingsApp", "Command": "ms-settings:easeofaccess-closedcaptioning", - "Glyph": "\ue7f0" + "IconGlyph": { + "Glyph": "\ue7f0", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ColorFilters", @@ -330,7 +387,10 @@ "Area": "EaseOfAccess", "Type": "AppSettingsApp", "Command": "ms-settings:easeofaccess-eyecontrol", - "Glyph": "\uf19d" + "IconGlyph": { + "Glyph": "\uf19d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Fonts", @@ -339,14 +399,20 @@ "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", "Command": "ms-settings:fonts", - "Glyph": "\ue8d2" + "IconGlyph": { + "Glyph": "\ue8d2", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "HighContrast", "Area": "EaseOfAccess", "Type": "AppSettingsApp", "Command": "ms-settings:easeofaccess-highcontrast", - "Glyph": "\ue706" + "IconGlyph": { + "Glyph": "\ue706", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Keyboard", @@ -362,7 +428,10 @@ "NumLock" ], "Command": "ms-settings:easeofaccess-keyboard", - "Glyph": "\ued4d" + "IconGlyph": { + "Glyph": "\ued4d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Magnifier", @@ -372,7 +441,10 @@ "Zoom" ], "Command": "ms-settings:easeofaccess-magnifier", - "Glyph": "\uf19d" + "IconGlyph": { + "Glyph": "\uf19d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Mouse", @@ -396,8 +468,7 @@ "Type": "AppSettingsApp", "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", - "Command": "ms-settings:easeofaccess-otheroptions", - "Glyph": null + "Command": "ms-settings:easeofaccess-otheroptions" }, { "Name": "Speech", @@ -420,29 +491,37 @@ "Name": "Broadcasting", "Area": "Gaming", "Type": "AppSettingsApp", - "Command": "ms-settings:gaming-broadcasting", - "Glyph": null + "Command": "ms-settings:gaming-broadcasting" }, { "Name": "GameBar", "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-gamebar", - "Glyph": "\ue713" + "IconGlyph": { + "Glyph": "\ue713", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "GameDvr", "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-gamedvr", - "Glyph": "\ue713" + "IconGlyph": { + "Glyph": "\ue713", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "GameMode", "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-gamemode", - "Glyph": "\uec4a" + "IconGlyph": { + "Glyph": "\uec4a", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "PlayingGameFullScreen", @@ -466,7 +545,10 @@ "Area": "Gaming", "Type": "AppSettingsApp", "Command": "ms-settings:gaming-xboxnetworking", - "Glyph": "\ue713" + "IconGlyph": { + "Glyph": "\ue713", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "SettingsHomePage", @@ -537,14 +619,20 @@ "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:datausage", - "Glyph": "\uec27" + "IconGlyph": { + "Glyph": "\uec27", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "DialUp", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-dialup", - "Glyph": "\ue83c" + "IconGlyph": { + "Glyph": "\ue83c", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "DirectAccess", @@ -566,7 +654,10 @@ "Ip" ], "Command": "ms-settings:network-ethernet", - "Glyph": "\ue839" + "IconGlyph": { + "Glyph": "\ue839", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ManageKnownNetworks", @@ -599,14 +690,20 @@ "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-proxy", - "Glyph": "\ue774" + "IconGlyph": { + "Glyph": "\ue774", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "NetworkStatus", "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-status", - "Glyph": "\uec27" + "IconGlyph": { + "Glyph": "\uec27", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Network", @@ -627,7 +724,10 @@ "Area": "NetworkAndInternet", "Type": "AppSettingsApp", "Command": "ms-settings:network-vpn", - "Glyph": "\ue705" + "IconGlyph": { + "Glyph": "\ue705", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "WiFi", @@ -661,7 +761,10 @@ "Image" ], "Command": "ms-settings:personalization-background", - "Glyph": "\ueb9f" + "IconGlyph": { + "Glyph": "\ueb9f", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ChooseWhichFoldersAppearOnStart", @@ -671,7 +774,10 @@ "StartPlaces" ], "Command": "ms-settings:personalization-start-places", - "Glyph": "\ueca5" + "IconGlyph": { + "Glyph": "\ueca5", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Colors", @@ -687,7 +793,10 @@ "WindowBorder" ], "Command": "ms-settings:colors", - "Glyph": "\ue790" + "IconGlyph": { + "Glyph": "\ue790", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Glance", @@ -695,8 +804,7 @@ "Type": "AppSettingsApp", "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", - "Command": "ms-settings:personalization-glance", - "Glyph": null + "Command": "ms-settings:personalization-glance" }, { "Name": "LockScreen", @@ -733,14 +841,20 @@ "Area": "Personalization", "Type": "AppSettingsApp", "Command": "ms-settings:taskbar", - "Glyph": "\ue90e" + "IconGlyph": { + "Glyph": "\ue90e", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Themes", "Area": "Personalization", "Type": "AppSettingsApp", "Command": "ms-settings:themes", - "Glyph": "\ue771" + "IconGlyph": { + "Glyph": "\ue771", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AddYourPhone", @@ -769,14 +883,20 @@ "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-accountinfo", - "Glyph": "\ue779" + "IconGlyph": { + "Glyph": "\ue779", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ActivityHistory", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-activityhistory", - "Glyph": "\ue7c4" + "IconGlyph": { + "Glyph": "\ue7c4", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AdvertisingId", @@ -785,28 +905,40 @@ "DeprecatedInBuild": 17763, "Note": "NoteDeprecated17763", "Command": "ms-settings:privacy-advertisingid", - "Glyph": "\ue72e" + "IconGlyph": { + "Glyph": "\ue72e", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AppDiagnostics", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-appdiagnostics", - "Glyph": "\ue9d2" + "IconGlyph": { + "Glyph": "\ue9d2", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AutomaticFileDownloads", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-automaticfiledownloads", - "Glyph": "\ue753" + "IconGlyph": { + "Glyph": "\ue753", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "BackgroundApps", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-backgroundapps", - "Glyph": "\ue9d9" + "IconGlyph": { + "Glyph": "\ue9d9", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Calendar", @@ -819,28 +951,40 @@ "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-callhistory", - "Glyph": "\uf738" + "IconGlyph": { + "Glyph": "\uf738", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Camera", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-webcam", - "Glyph": "\uf439" + "IconGlyph": { + "Glyph": "\uf439", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Contacts", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-contacts", - "Glyph": "\ue716" + "IconGlyph": { + "Glyph": "\ue716", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Documents", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-documents", - "Glyph": "\ue7c3" + "IconGlyph": { + "Glyph": "\ue7c3", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Email", @@ -866,14 +1010,20 @@ "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-broadfilesystemaccess", - "Glyph": "\ue7c3" + "IconGlyph": { + "Glyph": "\ue7c3", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "General", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy or privacy-general", - "Glyph": "\uec20" + "IconGlyph": { + "Glyph": "\uec20", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "InkingAndTyping", @@ -883,42 +1033,52 @@ "SpeechTyping" ], "Command": "ms-settings:privacy-speechtyping", - "Glyph": "\ueadf" + "IconGlyph": { + "Glyph": "\ueadf", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Location", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-location", - "Glyph": "\ue707" + "IconGlyph": { + "Glyph": "\ue707", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Messaging", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-messaging", - "Glyph": "\uebdb" + "IconGlyph": { + "Glyph": "\uebdb", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Microphone", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-microphone", - "Glyph": "\ue720" + "IconGlyph": { + "Glyph": "\ue720", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Motion", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-motion", - "Glyph": null + "Command": "ms-settings:privacy-motion" }, { "Name": "Notifications", "Area": "Privacy", "Type": "AppSettingsApp", - "Command": "ms-settings:privacy-notifications", - "Glyph": null + "Command": "ms-settings:privacy-notifications" }, { "Name": "OtherDevices", @@ -928,14 +1088,20 @@ "CustomDevices" ], "Command": "ms-settings:privacy-customdevices", - "Glyph": "\ue772" + "IconGlyph": { + "Glyph": "\ue772", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "PhoneCalls", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-phonecalls", - "Glyph": "\ue77e" + "IconGlyph": { + "Glyph": "\ue77e", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Pictures", @@ -948,7 +1114,10 @@ "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-radios", - "Glyph": "\uec05" + "IconGlyph": { + "Glyph": "\uec05", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Speech", @@ -967,14 +1136,20 @@ "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-videos", - "Glyph": "\ue8b2" + "IconGlyph": { + "Glyph": "\ue8b2", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "VoiceActivation", "Area": "Privacy", "Type": "AppSettingsApp", "Command": "ms-settings:privacy-voiceactivation", - "Glyph": "\uf12e" + "IconGlyph": { + "Glyph": "\uf12e", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Accounts", @@ -1008,7 +1183,10 @@ "Area": "SurfaceHub", "Type": "AppSettingsApp", "Command": "ms-settings:surfacehub-welcome", - "Glyph": "\uee3f" + "IconGlyph": { + "Glyph": "\uee3f", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "About", @@ -1023,7 +1201,10 @@ "Version" ], "Command": "ms-settings:about", - "Glyph": "\ue946" + "IconGlyph": { + "Glyph": "\ue946", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AdvancedDisplaySettings", @@ -1031,7 +1212,10 @@ "Type": "AppSettingsApp", "Note": "NoteDisplayGraphics", "Command": "ms-settings:display-advanced", - "Glyph": "\ue7f4" + "IconGlyph": { + "Glyph": "\ue7f4", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "AppVolumeAndDevicePreferences", @@ -1070,7 +1254,10 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:clipboard", - "Glyph": "\ue77f" + "IconGlyph": { + "Glyph": "\ue77f", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Display", @@ -1089,14 +1276,20 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:savelocations", - "Glyph": "\ueda2" + "IconGlyph": { + "Glyph": "\ueda2", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ScreenRotation", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:screenrotation", - "Glyph": "\ue7f4" + "IconGlyph": { + "Glyph": "\ue7f4", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "DuplicatingMyDisplay", @@ -1142,15 +1335,17 @@ "AdvancedGraphics" ], "Note": "NoteAdvancedGraphics", - "Command": "ms-settings:display-advancedgraphics", - "Glyph": null + "Command": "ms-settings:display-advancedgraphics" }, { "Name": "Messaging", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:messaging", - "Glyph": "\uebdb" + "IconGlyph": { + "Glyph": "\uebdb", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Multitasking", @@ -1163,14 +1358,16 @@ "VirtualDesktops" ], "Command": "ms-settings:multitasking", - "Glyph": "\ue7c4" + "IconGlyph": { + "Glyph": "\ue7c4", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "NightLightSettings", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:nightlight", - "Glyph": null + "Command": "ms-settings:nightlight" }, { "Name": "PhoneDefaultApps", @@ -1183,7 +1380,10 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:project", - "Glyph": "\uebc6" + "IconGlyph": { + "Glyph": "\uebc6", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "SharedExperiences", @@ -1193,28 +1393,36 @@ "Crossdevice" ], "Command": "ms-settings:crossdevice", - "Glyph": "\uf22c" + "IconGlyph": { + "Glyph": "\uf22c", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "TabletMode", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:tabletmode", - "Glyph": "\uebfc" + "IconGlyph": { + "Glyph": "\uebfc", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Taskbar", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:taskbar", - "Glyph": "\ue90e" + "IconGlyph": { + "Glyph": "\ue90e", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "NotificationsAndActions", "Area": "System", "Type": "AppSettingsApp", - "Command": "ms-settings:notifications", - "Glyph": null + "Command": "ms-settings:notifications" }, { "Name": "RemoteDesktop", @@ -1235,21 +1443,30 @@ "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:powersleep", - "Glyph": "\uf83d" + "IconGlyph": { + "Glyph": "\uf83d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Sound", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:sound", - "Glyph": "\ue995" + "IconGlyph": { + "Glyph": "\ue995", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "StorageSense", "Area": "System", "Type": "AppSettingsApp", "Command": "ms-settings:storagesense", - "Glyph": "\ueda2" + "IconGlyph": { + "Glyph": "\ueda2", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "StoragePolicies", @@ -1262,7 +1479,10 @@ "Area": "TimeAndLanguage", "Type": "AppSettingsApp", "Command": "ms-settings:dateandtime", - "Glyph": "\uec92" + "IconGlyph": { + "Glyph": "\uec92", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "JapanImeSettings", @@ -1282,14 +1502,20 @@ "RegionFormatting" ], "Command": "ms-settings:regionformatting", - "Glyph": "\uf49a" + "IconGlyph": { + "Glyph": "\uf49a", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Keyboard", "Area": "TimeAndLanguage", "Type": "AppSettingsApp", "Command": "ms-settings:keyboard", - "Glyph": "\ued4d" + "IconGlyph": { + "Glyph": "\ued4d", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "RegionalLanguage", @@ -1367,7 +1593,10 @@ "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:activation", - "Glyph": "\ue930" + "IconGlyph": { + "Glyph": "\ue930", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "Backup", @@ -1380,14 +1609,20 @@ "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:delivery-optimization", - "Glyph": "\uf785" + "IconGlyph": { + "Glyph": "\uf785", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "FindMyDevice", "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:findmydevice", - "Glyph": "\ue707" + "IconGlyph": { + "Glyph": "\ue707", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "ForDevelopers", @@ -1406,7 +1641,10 @@ "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:troubleshoot", - "Glyph": "\ue90f" + "IconGlyph": { + "Glyph": "\ue90f", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "WindowsSecurity", @@ -1435,7 +1673,10 @@ "Area": "UpdateAndSecurity", "Type": "AppSettingsApp", "Command": "ms-settings:windowsupdate", - "Glyph": "\ue895" + "IconGlyph": { + "Glyph": "\ue895", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "WindowsUpdateCheckForUpdates", @@ -1482,7 +1723,10 @@ "Type": "AppSettingsApp", "Note": "NoteMobileProvisioning", "Command": "ms-settings:provisioning", - "Glyph": "\ue821" + "IconGlyph": { + "Glyph": "\ue821", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "WindowsAnywhere", @@ -1532,7 +1776,10 @@ "Area": "Programs", "Type": "ControlPanel", "Command": "control /name Microsoft.AutoPlay", - "Glyph": "\uec57" + "IconGlyph": { + "Glyph": "\uec57", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "BackupAndRestore", @@ -1590,7 +1837,10 @@ "timedate.cpl" ], "Command": "control /name Microsoft.DateAndTime", - "Glyph": "\uec92" + "IconGlyph": { + "Glyph": "\uec92", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "DefaultLocation", @@ -1633,7 +1883,10 @@ "Area": "AppearanceAndPersonalization", "Type": "ControlPanel", "Command": "control /name Microsoft.Fonts", - "Glyph": "\ue8d2" + "IconGlyph": { + "Glyph": "\ue8d2", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "GameControllers", @@ -1856,7 +2109,10 @@ "Area": "HardwareAndSound", "Type": "ControlPanel", "Command": "control /name Microsoft.Sound", - "Glyph": "\ue995" + "IconGlyph": { + "Glyph": "\ue995", + "FontFamily": "Segoe MDL2 Assets" + } }, { "Name": "SpeechRecognition", From 3ae9e161b2d9633f780a44ed390181b408ee93e6 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Sun, 26 Sep 2021 18:28:22 -0500 Subject: [PATCH 18/45] Allow keyword search --- Classes/WindowsSetting.cs | 10 ++++++++++ Flow.Plugin.WindowsSettings.sln | 25 +++++++++++++++++++++++++ Helper/ResultHelper.cs | 15 ++++++++++++++- 3 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 Flow.Plugin.WindowsSettings.sln diff --git a/Classes/WindowsSetting.cs b/Classes/WindowsSetting.cs index 0a598d12216..4a130daf746 100644 --- a/Classes/WindowsSetting.cs +++ b/Classes/WindowsSetting.cs @@ -47,6 +47,16 @@ public WindowsSetting() /// public IEnumerable? AltNames { get; set; } + /// + /// Gets or sets the Keywords names of this task link. + /// + public IEnumerable>? Keywords { get; set; } + + /// + /// Gets or sets the Ghyph of this setting + /// + public string? glyph { get; set; } + /// /// Gets or sets a additional note of this settings. /// (e.g. why is not supported on your system) diff --git a/Flow.Plugin.WindowsSettings.sln b/Flow.Plugin.WindowsSettings.sln new file mode 100644 index 00000000000..79ce0859866 --- /dev/null +++ b/Flow.Plugin.WindowsSettings.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31512.422 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Plugin.WindowsSettings", "Flow.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EA85E245-28F0-4192-B9E7-6FA8CFF3D3CD} + EndGlobalSection +EndGlobal diff --git a/Helper/ResultHelper.cs b/Helper/ResultHelper.cs index 29fcc0038f7..fb781e1f8c8 100644 --- a/Helper/ResultHelper.cs +++ b/Helper/ResultHelper.cs @@ -69,7 +69,20 @@ internal static List GetResultList( .FirstOrDefault(); } + if (result is null && entry.Keywords is not null) + { + string[] searchKeywords = query.Terms[(string.IsNullOrEmpty(query.ActionKeyword) ? 0 : 1)..]; + + if (searchKeywords + .All(x => entry + .Keywords + .SelectMany(x => x) + .Contains(x, StringComparer.CurrentCultureIgnoreCase)) + ) + result = NewSettingResult(midScore); + } } + if (result is null) continue; @@ -82,7 +95,7 @@ internal static List GetResultList( Action = _ => DoOpenSettingsAction(entry), IcoPath = iconPath, SubTitle = $"{Resources.Area} \"{entry.Area}\" {Resources.SubtitlePreposition} {entry.Type}", - Title = entry.Name, + Title = entry.Name + entry.glyph, ContextData = entry, Score = score }; From 57317195928347536951b08b739976f0e58b56c7 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Wed, 29 Sep 2021 14:37:44 -0500 Subject: [PATCH 19/45] add other localization resources --- Properties/Resources.cs-CZ.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.de-DE.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.es-ES.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.fr-FR.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.hu-HU.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.it-IT.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.ja-JP.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.ko-KR.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.pl-PL.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.pt-BR.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.pt-PT.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.ru-RU.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.sv-SE.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.tr-TR.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.zh-TW.resx | 1410 +++++++++++++++++++++++++++++++ Properties/Resources.zh-cn.resx | 1410 +++++++++++++++++++++++++++++++ 16 files changed, 22560 insertions(+) create mode 100644 Properties/Resources.cs-CZ.resx create mode 100644 Properties/Resources.de-DE.resx create mode 100644 Properties/Resources.es-ES.resx create mode 100644 Properties/Resources.fr-FR.resx create mode 100644 Properties/Resources.hu-HU.resx create mode 100644 Properties/Resources.it-IT.resx create mode 100644 Properties/Resources.ja-JP.resx create mode 100644 Properties/Resources.ko-KR.resx create mode 100644 Properties/Resources.pl-PL.resx create mode 100644 Properties/Resources.pt-BR.resx create mode 100644 Properties/Resources.pt-PT.resx create mode 100644 Properties/Resources.ru-RU.resx create mode 100644 Properties/Resources.sv-SE.resx create mode 100644 Properties/Resources.tr-TR.resx create mode 100644 Properties/Resources.zh-TW.resx create mode 100644 Properties/Resources.zh-cn.resx diff --git a/Properties/Resources.cs-CZ.resx b/Properties/Resources.cs-CZ.resx new file mode 100644 index 00000000000..ef2209fadd4 --- /dev/null +++ b/Properties/Resources.cs-CZ.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Informace + + + Přístup k práci nebo škole + + + Možnosti přístupnosti + + + Doplňkové aplikace + + + Informace o účtu + + + Účty + + + Centrum akcí + + + Aktivace + + + Historie aktivit + + + Přidat hardware + + + Přidat nebo odebrat programy + + + Přidejte svůj telefon + + + Nástroje pro správu + + + Upřesňující nastavení zobrazení + + + Pokročilá grafika + + + Reklamní ID + + + Režim v letadle + + + Alt+Tab + + + Alternativní názvy + + + Animace + + + Barva aplikace + + + Ovládací panel + + + Diagnostika aplikace + + + Funkce aplikace + + + Nastavení systému + + + Předvolby hlasitosti aplikací a zařízení + + + Aplikace + + + Aplikace a funkce + + + Aplikace pro weby + + + Oblast + + + Účty + + + Nástroje pro správu + + + Vzhled a přizpůsobení + + + Aplikace + + + Hodiny a oblast + + + Cortana + + + Zařízení + + + Usnadnění přístupu + + + Doplňky + + + Hry + + + Hardware a zvuk + + + Domovská stránka + + + Hybridní realita + + + Síť a internet + + + Přizpůsobení + + + Telefon + + + Soukromí + + + Programy + + + SurfaceHub + + + Systém + + + Systém a zabezpečení + + + Čas a jazyk + + + Aktualizace a zabezpečení + + + Uživatelské účty + + + Přiřazený přístup + + + Zvuk + + + Zvuková upozornění + + + Zvuk a řeč + + + Automatické přehrávání + + + Automatická stahování souborů + + + Pozadí + + + Aplikace na pozadí + + + Záloha + + + Zálohování a obnovení + + + Spořič baterie + + + Nastavení spořiče baterie + + + Podrobnosti o využití spořiče baterie + + + Využití baterie + + + Biometrická zařízení + + + Šifrování jednotky nástrojem BitLocker + + + Modré světlo + + + Modrožlutá + + + Bluetooth + + + Zařízení Bluetooth + + + Bopomofo IME + + + Vysílání + + + Kalendář + + + Historie volání + + + Kamera + + + Cangjie IME + + + Caps Lock + + + Mobilní síť a SIM karta + + + Zvolte složky, které se zobrazí v nabídce Start. + + + Klientská služba pro NetWare + + + Schránka + + + Skryté titulky + + + Filtry barev + + + Správa barev + + + Barvy + + + Příkaz + + + Připojená zařízení + + + Kontakty + + + Příkaz Kopírovat + + + Izolace jádra + + + Cortana + + + Cortana na všech mých zařízeních + + + Cortana – jazyk + + + Správce přihlašovacích údajů + + + Mezi zařízeními + + + Vlastní zařízení + + + DNS + + + Tmavá barva + + + Tmavý režim + + + Využití dat + + + Datum a čas + + + Výchozí aplikace + + + Výchozí kamera + + + Výchozí umístění + + + Výchozí programy + + + Výchozí umístění pro ukládání + + + Optimalizace doručení + + + Motivy plochy + + + Správce zařízení + + + Zařízení a tiskárny + + + DHCP + + + Vytáčené připojení + + + Přímý přístup + + + Přímé otevření telefonu + + + Zobrazení + + + Vlastnosti zobrazení + + + Dokumenty + + + Duplikování displeje + + + Během těchto hodin + + + Centrum usnadnění přístupu + + + Edice + + + E-mail + + + E-mailové účty a účty aplikací + + + Šifrování + + + Prostředí + + + Ethernet + + + Ochrana Exploit Protection + + + Doplňky + + + Ovládání zrakem + + + Sledování očí + + + Rodina a další lidé + + + Zpětná vazba a diagnostika + + + Systém souborů + + + FindFast + + + Najít moje zařízení + + + Brána firewall + + + Pomocník pro lepší soustředění – doba klidu + + + Pomocník pro lepší soustředění – tiché okamžiky + + + Možnosti složky + + + Písma + + + Pro vývojáře + + + Herní panel + + + Herní ovladače + + + Záznam ze hry + + + Herní režim + + + Brána + + + Obecné + + + Získat programy + + + Začínáme + + + Rychlý náhled + + + Nastavení grafiky + + + Stupně šedé + + + Zelený týden + + + Displej náhlavní soupravy + + + Vysoký kontrast + + + Holografický zvuk + + + Holografické prostředí + + + Holografická náhlavní souprava + + + Správa holografie + + + Domácí skupina + + + ID + + + Obrázek + + + Možnosti indexování + + + Infračervené rozhraní + + + Rukopis a psaní + + + Možnosti internetu + + + Invertované barvy + + + IP + + + Izolované procházení + + + Nastavení editoru IME pro Japonsko + + + Vlastnosti pákového ovladače + + + Klávesnice + + + Klávesnice + + + Klíče + + + Jazyk + + + Světlá barva + + + Světlý režim + + + Umístění + + + Zamykací obrazovka + + + Lupa + + + Pošta – Microsoft Exchange nebo Windows Zprávy + + + Správa známých sítí + + + Správa volitelných funkcí + + + Zprávy + + + Připojení účtované podle objemu dat + + + Mikrofon + + + Microsoft Mail Post Office + + + Mobilní zařízení + + + Mobilní hotspot + + + Mono + + + Další podrobnosti + + + Pohyb + + + Myš + + + Myš a touchpad + + + Vlastnosti myši, písem, klávesnice a tiskáren + + + Ukazatel myši + + + Vlastnosti multimédií + + + Multitasking + + + NFC + + + Transakce NFC + + + Vypravěč + + + Navigační panel + + + Síť + + + Centrum síťových připojení a sdílení + + + Síťové připojení + + + Vlastnosti sítě + + + Průvodce instalací sítě + + + Stav sítě + + + Noční osvětlení + + + Nastavení nočního osvětlení + + + Poznámka + + + K dispozici jenom v případě, že jste ke svému zařízení připojili mobilní zařízení. + + + K dispozici jenom na zařízeních, která podporují pokročilé možnosti grafiky. + + + K dispozici jenom na zařízeních, která mají baterii, například na tabletu. + + + Zastaralé ve Windows 10 verze 1809 (build 17763) a novějších. + + + K dispozici jenom v případě, že je vytáčení spárováno. + + + K dispozici jenom v případě, že je povolena technologie DirectAccess. + + + K dispozici jenom na zařízeních, která podporují rozšířené možnosti zobrazení. + + + K dispozici jenom v případě, že je uživatel zaregistrovaný v programu WIP. + + + Vyžaduje hardware pro sledování očí. + + + K dispozici, pokud je nainstalovaný editor IME pro Microsoft Japan. + + + K dispozici, pokud je nainstalovaný editor IME pro Microsoft Pchin-jin. + + + K dispozici, pokud je nainstalovaný editor IME Microsoft Wubi. + + + K dispozici jenom v případě, že je nainstalovaná aplikace Portál hybridní reality. + + + K dispozici jenom na mobilních zařízeních a v případě, že podnik nasadil zřizovací balíček. + + + Přidáno ve Windows 10 verze 1903 (build 18362). + + + Přidáno ve Windows 10 verze 2004 (build 19041). + + + K dispozici jenom v případě, že jsou „aplikace nastavení“ nainstalovány například třetí stranou. + + + K dispozici jenom v případě, že je k dispozici hardware touchpadu. + + + K dispozici jenom v případě, že má zařízení adaptér Wi-Fi. + + + Zařízení musí podporovat funkci Windows Anywhere. + + + K dispozici jenom v případě, že podnik nasadil zřizovací balíček. + + + Oznámení + + + Oznámení a akce + + + Num Lock + + + Správce zdrojů dat ODBC (32bitová verze) + + + Správce zdrojů dat ODBC (64bitová verze) + + + Offline soubory + + + Offline mapy + + + Offline mapy – stahování map + + + Na obrazovce + + + Operační systém + + + Jiná zařízení + + + Další možnosti + + + Ostatní uživatelé + + + Rodičovská kontrola + + + Heslo + + + Vlastnosti hesla + + + Pero a vstupní zařízení + + + Pero a dotykové ovládání + + + Pero a Windows Ink + + + Lidé v mém okolí + + + Informace o výkonu a nástroje + + + Oprávnění a historie + + + Přizpůsobení (kategorie) + + + Telefon + + + Telefon a modem + + + Telefon a modem – možnosti + + + Telefonní hovory + + + Telefon – výchozí aplikace + + + Obrázek + + + Obrázky + + + Nastavení editoru IME pro pchin-jin + + + Nastavení editoru IME pro pchin-jin – lexikon domén + + + Nastavení editoru IME pro pchin-jin – konfigurace klíče + + + Nastavení editoru IME pro pchin-jin – UDP + + + Hraní hry na celé obrazovce + + + Modul plug-in pro vyhledávání nastavení Windows + + + Nastavení Windows + + + Napájení a režim spánku + + + Možnosti napájení + + + Prezentace + + + Print Screen + + + Tiskárny + + + Tiskárny a skenery + + + Hlášení a řešení problémů + + + Procesor + + + Programy a funkce + + + Promítání na tento počítač + + + Zřizování + + + Blízkost + + + Proxy server + + + QuickTime + + + Hra pro tiché okamžiky + + + Rádia + + + RAM + + + Rozpoznávání + + + Obnovení + + + Červené oči + + + Červená-zelená + + + Červený týden + + + Oblast + + + Oblast a jazyk + + + Formátování oblasti + + + Regionální jazyk + + + Vlastnosti místního nastavení + + + Připojení ke vzdálené aplikaci RemoteApp a ploše + + + Vzdálená plocha + + + Skenery a kamery + + + Plánované + + + Plánované úlohy + + + Otočení obrazovky + + + Posuvníky + + + Scroll Lock + + + SDNS + + + Vyhledávání ve Windows + + + SecureDNS + + + Centrum zabezpečení + + + Procesor zabezpečení + + + Vyčištění relace + + + Nastavení veřejného terminálu + + + Domovská stránka nastavení + + + Sdílená prostředí + + + Wi-Fi + + + Klávesové zkratky + + + Možnosti přihlášení + + + Možnosti přihlášení – dynamický zámek + + + Velikost + + + Zvuk + + + Řeč + + + Rozpoznávání řeči + + + Psaní řeči + + + Start + + + Počáteční místa + + + Aplikace při spuštění + + + Úložiště + + + Zásady úložiště + + + Inteligentní úložiště + + + Centrum synchronizace + + + Synchronizace nastavení + + + Systém + + + Vlastnosti systému a průvodce přidáním nového hardwaru + + + Karta + + + Režim tabletu + + + Nastavení počítače Tablet PC + + + Mluvení + + + Promluvte si s Cortanou + + + Hlavní panel + + + Barva hlavního panelu + + + Úlohy + + + Týmové konference + + + Správa týmových zařízení + + + Převod textu na řeč + + + Motivy + + + Časová osa + + + Dotyk + + + Dotyková zpětná vazba + + + Touchpad + + + Průhlednost + + + Odstranit potíže + + + TruePlay + + + Psaní + + + Odinstalovat + + + USB + + + Uživatelské účty + + + Verze + + + Přehrávání videa + + + Videa + + + Virtuální plochy + + + Virus + + + Aktivace hlasem + + + Hlasitost + + + VPN + + + Tapeta + + + Teplejší barva + + + Uvítací centrum + + + Úvodní obrazovka + + + Volant + + + Wi-Fi + + + Volání přes Wi-Fi + + + Nastavení Wi-Fi + + + Ohraničení okna + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Služba Windows CardSpace + + + Windows Defender + + + Windows Firewall + + + Nastavení Windows Hello – obličej + + + Nastavení Windows Hello – otisk prstu + + + Program Windows Insider + + + Centrum nastavení mobilních zařízení Windows + + + Windows Search + + + Zabezpečení Windows + + + Služba Windows Update + + + Služba Windows Update – upřesnit možnosti + + + Služba Windows Update – zkontrolovat aktualizace + + + Služba Windows Update – možnosti restartování + + + Služba Windows Update – zobrazit volitelné aktualizace + + + Služba Windows Update – zobrazit historii aktualizací + + + Bezdrátové připojení + + + Pracoviště + + + Zřizování na pracovišti + + + Nastavení editoru Wubi IME + + + Nastavení editoru Wubi IME – UDP + + + Síťové nastavení pro Xbox + + + Vaše údaje + + + Změna velikosti + + + + + + + + + bpmf + + + volání + + + + + + deuteranopie + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopie + + + schedtasks + + + + + + + + + + + + + + + tritanopie + + + + + \ No newline at end of file diff --git a/Properties/Resources.de-DE.resx b/Properties/Resources.de-DE.resx new file mode 100644 index 00000000000..e32f439cdb8 --- /dev/null +++ b/Properties/Resources.de-DE.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Info + + + Zugriff auf Geschäft, Schule oder Uni + + + Barrierefreiheitsoptionen + + + Zubehör-Apps + + + Kontoinfo + + + Konten + + + Wartungscenter + + + Aktivierung + + + Aktivitätsverlauf + + + Hardware hinzufügen + + + Programme hinzufügen/entfernen + + + Ihr Smartphone hinzufügen + + + Verwaltungstools + + + Erweiterte Anzeigeeinstellungen + + + Erweiterte Grafik + + + Anzeigen-ID + + + Flugzeugmodus + + + ALT+TAB + + + Alternative Namen + + + Animationen + + + App-Farbe + + + Systemsteuerung + + + App-Diagnose + + + App-Features + + + Systemeinstellungen + + + App-Volume und Geräteeinstellungen + + + App + + + Apps und Features + + + Apps für Websites + + + Bereich + + + Konten + + + Verwaltungstools + + + Darstellung und Personalisierung + + + Apps + + + Uhr und Region + + + Cortana + + + Geräte + + + Erleichterte Bedienung + + + Extras + + + Gaming + + + Hardware und Sound + + + Startseite + + + Mixed Reality + + + Netzwerk und Internet + + + Personalisierung + + + Smartphone + + + Datenschutz + + + Programme + + + SurfaceHub + + + System + + + System und Sicherheit + + + Zeit und Sprache + + + Update und Sicherheit + + + Benutzerkonten + + + Zugewiesener Zugriff + + + Audio + + + Audiowarnungen + + + Audio und Sprache + + + Automatische Wiedergabe + + + Automatische Dateidownloads + + + Hintergrund + + + Hintergrund-Apps + + + Sicherung + + + Sichern und wiederherstellen + + + Akkusparmodus + + + Einstellungen für den Akkusparmodus + + + Nutzungsdetails für den Akkusparmodus + + + Akkunutzung + + + Biometrische Geräte + + + BitLocker-Laufwerkverschlüsselung + + + Blau (hell) + + + Blau-gelb + + + Bluetooth + + + Bluetooth-Geräte + + + Bopomofo-IME + + + Übertragungen + + + Kalender + + + Anrufliste + + + Kamera + + + Cangjie-IME + + + FESTSTELLTASTE + + + Mobilfunknetz und SIM-Karte + + + Wählen Sie aus, welche Ordner im Startmenü angezeigt werden + + + Clientdienst für NetWare + + + Zwischenablage + + + Untertitel + + + Farbfilter + + + Farbverwaltung + + + Farben + + + Befehl + + + Verbundene Geräte + + + Kontaktpersonen + + + Kopierbefehl + + + Kernisolation + + + Cortana + + + Cortana auf meinen Geräten + + + Cortana – Sprache + + + Anmeldeinformations-Manager + + + Geräteübergreifend + + + Benutzerdefinierte Geräte + + + DNS + + + Dunkle Farbe + + + Dunkler Modus + + + Datennutzung + + + Datum und Uhrzeit + + + Standard-Apps + + + Standardkamera + + + Standardspeicherort + + + Standardprogramme + + + Standardspeicherorte + + + Übermittlungsoptimierung + + + Desktopdesigns + + + Geräte-Manager + + + Geräte und Drucker + + + DHCP + + + DFÜ + + + Direkter Zugriff + + + Smartphone direkt öffnen + + + Anzeige + + + Anzeigeeigenschaften + + + Dokumente + + + Meine Anzeige wird dupliziert + + + Während dieser Stunden + + + Erleichterte Bedienung Center + + + Edition + + + E-Mail-Adresse + + + E-Mail- und App-Konten + + + Verschlüsselung + + + Umgebung + + + Ethernet + + + Exploit-Schutz + + + Extras + + + Eye-Steuerelement + + + Eyetracker + + + Familie und andere Personen + + + Feedback und Diagnose + + + Dateisystem + + + FindFast + + + Mein Gerät suchen. + + + Firewall + + + Benachrichtigungsassistent – ruhige Stunden + + + Benachrichtigungsassistent – ruhige Momente + + + Ordneroptionen + + + Schriftarten + + + Für Entwickler + + + Spieleleiste + + + Gamecontroller + + + Game DVR + + + Spielmodus + + + Gateway + + + Allgemein + + + Programme abrufen + + + Erste Schritte + + + Ansicht "Schneller Blick" + + + Grafikeinstellungen + + + Graustufe + + + Grüne Woche + + + Headset-Anzeige + + + Hoher Kontrast + + + Holographische Audiodaten + + + Holographische Umgebung + + + Holographisches Headset + + + Holographische Verwaltung + + + Heimnetzgruppe + + + ID + + + Bild + + + Indizierungsoptionen + + + Infrarot + + + Freihand und Eingabe + + + Internetoptionen + + + Invertierte Farben + + + IP-Adresse + + + Isoliertes Browsen + + + Japanische IME-Einstellungen + + + Joystickeigenschaften + + + Tastatur + + + Keypad + + + Schlüssel + + + Sprache + + + Helle Farbe + + + Lichtmodus + + + Standort + + + Sperrbildschirm + + + Bildschirmlupe + + + E-Mail – Microsoft Exchange oder Windows-Nachrichten + + + Bekannte Netzwerke verwalten + + + Optionale Features verwalten + + + Messaging + + + Getaktete Verbindung + + + Mikrofon + + + Microsoft Mail Post Office + + + Mobile Geräte + + + Mobiler Hotspot + + + Mono + + + Weitere Details + + + Bewegung + + + Maus + + + Maus und Touchpad + + + Eigenschaften für Maus, Schriftarten, Tastatur und Drucker + + + Mauszeiger + + + Multimediaeigenschaften + + + Multitasking + + + NFC + + + NFC-Transaktionen + + + Sprachausgabe + + + Navigationsleiste + + + Netzwerk + + + Netzwerk- und Freigabecenter + + + Netzwerkverbindung + + + Netzwerkeigenschaften + + + Netzwerk-Setup-Assistent + + + Netzwerkstatus + + + Nachtlicht + + + Einstellungen für Nachtlicht + + + Hinweis + + + Nur verfügbar, wenn Sie ein mobiles Gerät mit Ihrem Gerät verbunden haben. + + + Nur auf Geräten verfügbar, die erweiterte Grafikoptionen unterstützen. + + + Nur auf Geräten mit Akku (z. B. Tablet) verfügbar. + + + Veraltet in Windows 10, Version 1809 (Build 17763) und höher. + + + Nur verfügbar, wenn "Wählen" gekoppelt ist. + + + Nur verfügbar, wenn DirectAccess aktiviert ist. + + + Nur auf Geräten verfügbar, die erweiterte Anzeigeoptionen unterstützen. + + + Nur vorhanden, wenn der Benutzer für WIP registriert ist. + + + Erfordert Eyetracker-Hardware. + + + Verfügbar, wenn der Eingabemethoden-Editor von Microsoft Japan installiert ist. + + + Verfügbar, wenn der Eingabemethoden-Editor von Microsoft Pinyin installiert ist. + + + Verfügbar, wenn der Eingabemethoden-Editor von Microsoft Wubi installiert ist. + + + Nur verfügbar, wenn die Mixed Reality Portal-App installiert ist. + + + Nur auf mobilen Geräten verfügbar, und wenn das Unternehmen ein Bereitstellungspaket bereitgestellt hat. + + + Hinzugefügt in Windows 10, Version 1903 (Build 18362). + + + Hinzugefügt in Windows 10, Version 2004 (Build 19041). + + + Nur verfügbar, wenn "Einstellungs-Apps" installiert sind, z. B. durch einen Drittanbieter. + + + Nur verfügbar, wenn Touchpad-Hardware vorhanden ist. + + + Nur verfügbar, wenn das Gerät über einen WLAN-Adapter verfügt. + + + Das Gerät muss Windows Anywhere-fähig sein. + + + Nur verfügbar, wenn das Unternehmen ein Bereitstellungspaket bereitgestellt hat. + + + Benachrichtigungen + + + Benachrichtigungen und Aktionen + + + NUM-Sperre + + + ODBC-Datenquellenadministrator (32-Bit) + + + ODBC-Datenquellenadministrator (64-Bit) + + + Offlinedateien + + + Offline-Karten + + + Offline Karten – Karten herunterladen + + + Auf dem Bildschirm + + + Betriebssystem + + + Andere Geräte + + + Weitere Optionen + + + Andere Benutzer + + + Jugendschutz + + + Kennwort + + + Kennworteigenschaften + + + Stift und Eingabegeräte + + + Stift und Toucheingabe + + + Stift und Windows Ink + + + Personen in meiner Umgebung + + + Leistungsdaten und Tools + + + Berechtigungen und Verlauf + + + Personalisierung (Kategorie) + + + Telefon + + + Telefon und Modem + + + Telefon und Modem – Optionen + + + Telefonanrufe + + + Telefon – Standard-Apps + + + Bild + + + Bilder + + + Pinyin IME-Einstellungen + + + Pinyin IME-Einstellungen – Domänen-Lexikon + + + Pinyin IME-Einstellungen – Schlüsselkonfiguration + + + Pinyin IME-Einstellungen – UDP + + + Spielen eines Spiels im Vollbildmodus + + + Plug-In zum Suchen nach Windows-Einstellungen + + + Windows-Einstellungen + + + Energieeinstellungen und Ruhemodus + + + Energieoptionen + + + Präsentation + + + Druckbildschirm + + + Drucker + + + Drucker und Scanner + + + Problemberichte und -lösungen + + + Auftragsverarbeiter + + + Programme und Features + + + Projektion auf diesen PC + + + Bereitstellung + + + Näherung + + + Proxy + + + Quickime + + + Spiel mit ruhigen Momenten + + + Radios + + + RAM + + + Erkennung + + + Wiederherstellung + + + Rote Augen + + + Rot-grün + + + Rote Woche + + + Region + + + Region und Sprache + + + Regionsformatierung + + + Regionale Sprache + + + Eigenschaften für regionale Einstellungen + + + RemoteApp- und Desktop-Verbindungen + + + Remotedesktop + + + Scanner und Kameras + + + Geplant + + + Geplante Tasks + + + Automatische Ausrichtung + + + Scrollleisten + + + Scroll-Sperre + + + SDNS + + + Windows wird durchsucht + + + SecureDNS + + + Security Center + + + Sicherheitsauftragsverarbeiter + + + Sitzungsbereinigung + + + Kiosk einrichten + + + Startseite "Einstellungen" + + + Freigegebene Erfahrungen + + + WLAN + + + Tastenkombinationen + + + Anmeldeoptionen + + + Anmeldeoptionen – dynamische Sperre + + + Größe + + + Sound + + + Speech + + + Spracherkennung + + + Spracheingabe + + + Starten + + + Startorte + + + Start-Apps + + + Speicher + + + Speicherrichtlinien + + + Speicheroptimierung + + + Synchronisierungscenter + + + Einstellungen synchronisieren + + + System + + + Systemeigenschaften und Assistent zum Hinzufügen neuer Hardware + + + Registerkarte + + + Tablet-Modus + + + Tablet PC-Einstellungen + + + Sprechen + + + Mit Cortana sprechen + + + Taskleiste + + + Taskleistenfarbe + + + Aufgaben + + + Teamkonferenzen + + + Teamgeräteverwaltung + + + Text-zu-Sprache + + + Designs + + + Zeitachse + + + Fingereingabe + + + Touchfeedback + + + Touchpad + + + Transparenz + + + Problembehandlung + + + TruePlay + + + Eingabe + + + Deinstallieren + + + USB + + + Benutzerkonten + + + Version + + + Videowiedergabe + + + Videos + + + Virtuelle Desktops + + + Virus + + + Sprachaktivierung + + + Lautstärke + + + VPN + + + Hintergrundbild + + + Wärmere Farbe + + + Willkommenscenter + + + Willkommensseite + + + Mausrad + + + WLAN + + + WLAN-Anrufe + + + WLAN-Einstellungen + + + Fensterrahmen + + + Windows Anytime-Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows-Firewall + + + Windows Hello-Setup – Gesichtserkennung + + + Windows Hello-Setup – Fingerabdruck + + + Windows-Insider-Programm + + + Windows-Mobilitätscenter + + + Windows Search + + + Windows-Sicherheit + + + Windows Update + + + Windows Update – Erweiterte Optionen + + + Windows Update – nach Updates suchen + + + Windows Update – Neustartoptionen + + + Windows Update – optionale Updates anzeigen + + + Windows Update – Updateverlauf anzeigen + + + Drahtlos + + + Arbeitsbereich + + + Arbeitsplatzbereitstellung + + + Wubi IME-Einstellungen + + + Wubi IME-Einstellungen – UDP + + + Xbox Netzwerk + + + Ihre Informationen + + + Zoom + + + + + + + + + bpmf + + + Anrufe + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.es-ES.resx b/Properties/Resources.es-ES.resx new file mode 100644 index 00000000000..0a1ac22fa48 --- /dev/null +++ b/Properties/Resources.es-ES.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Acerca de + + + Obtener acceso a trabajo o escuela + + + Opciones de accesibilidad + + + Aplicaciones accesorias + + + Información de cuenta + + + Cuentas + + + Centro de actividades + + + Activación + + + Historial de actividad + + + Agregar hardware + + + Agregar o quitar programas + + + Agregar el teléfono + + + Herramientas administrativas + + + Configuración avanzada de pantalla + + + Gráficos avanzados + + + Id. de publicidad + + + Modo avión + + + Alt+Tab + + + Nombres alternativos + + + Animaciones + + + Color de la aplicación + + + Panel de control + + + Diagnóstico de la aplicación + + + Características de la aplicación + + + Configuración del sistema + + + Preferencias del dispositivo y el volumen de la aplicación + + + Aplicación + + + Aplicaciones y características + + + Aplicaciones para sitios web + + + Área + + + Cuentas + + + Herramientas administrativas + + + Apariencia y personalización + + + Aplicaciones + + + Reloj y región + + + Cortana + + + Dispositivos + + + Accesibilidad + + + Extras + + + Juegos + + + Hardware y sonido + + + Página principal + + + Realidad mixta + + + Red e Internet + + + Personalización + + + Teléfono + + + Privacidad + + + Programas + + + SurfaceHub + + + Sistema + + + Sistema y seguridad + + + Hora e idioma + + + Actualización y seguridad + + + Cuentas de usuario + + + Acceso asignado + + + Audio + + + Alertas de audio + + + Audio y voz + + + Reproducción automática + + + Descargas automáticas de archivos + + + Fondo + + + Aplicaciones en segundo plano + + + Backup + + + Copia de seguridad y restauración + + + Ahorro de batería + + + Configuración del ahorro de batería + + + Detalles de uso del ahorro de batería + + + Uso de la batería + + + Dispositivos biométricos + + + Cifrado de unidad BitLocker + + + Azul claro + + + Azul y amarillo + + + Bluetooth + + + Dispositivos Bluetooth + + + Bopomofo IME + + + Difusión + + + Calendario + + + Historial de llamadas + + + Cámara + + + Cangjie IME + + + Bloq Mayús + + + Red de telefonía móvil y SIM + + + Elegir qué carpetas aparecen en Inicio + + + Servicio de cliente para NetWare + + + Portapapeles + + + Subtítulos + + + Filtros de color + + + Administración de colores + + + Colores + + + Comando + + + Dispositivos conectados + + + Contactos + + + Copiar comando + + + Aislamiento del núcleo + + + Cortana + + + Cortana en mis dispositivos + + + Cortana: idioma + + + Administrador de credenciales + + + Multidispositivo + + + Dispositivos personalizados + + + DNS + + + Color oscuro + + + Modo oscuro + + + Uso de datos + + + Fecha y hora + + + Aplicaciones predeterminadas + + + Cámara predeterminada + + + Ubicación predeterminada + + + Programas predeterminados + + + Ubicaciones de guardado predeterminadas + + + Optimización de distribución + + + Temas de escritorio + + + Administrador de dispositivos + + + Dispositivos e impresoras + + + DHCP + + + Marcado + + + Acceso directo + + + Abrir directamente en el teléfono + + + Mostrar + + + Mostrar propiedades + + + Documentos + + + Duplicando mi pantalla + + + Durante estas horas + + + Centro de accesibilidad + + + Edición + + + Correo + + + Cuentas de correo electrónico y de la aplicación + + + Cifrado + + + Entorno + + + Ethernet + + + Protección contra vulnerabilidades + + + Extras + + + Control ocular + + + Seguimiento ocular + + + Familia y otros usuarios + + + Comentarios y diagnósticos + + + Sistema de archivos + + + FindFast + + + Buscar mi dispositivo + + + Firewall + + + Asistente de concentración: horas tranquilas + + + Asistente de concentración: momentos tranquilos + + + Opciones de la carpeta + + + Fuentes + + + Para desarrolladores + + + Barra de juegos + + + Mandos del juego + + + Juego DVR + + + Modo juego + + + Puerta de enlace + + + General + + + Obtener programas + + + Comenzar + + + Ojeada + + + Configuración de gráficos + + + Escala de grises + + + Semana verde + + + Visualización del casco de realidad mixta + + + Contraste alto + + + Audio holográfico + + + Ambiente holográfico + + + Casco holográfico + + + Administración holográfica + + + Grupo de inicio + + + Id. + + + Imagen + + + Opciones de indexación + + + Infrarrojos + + + Entrada manuscrita y escritura + + + Opciones de Internet + + + Colores invertidos + + + IP + + + Exploración aislada + + + Configuración de IME de Japón + + + Propiedades del joystick + + + Teclado + + + Teclado + + + Claves + + + Idioma + + + Color claro + + + Modo claro + + + Ubicación + + + Pantalla de bloqueo + + + Lupa + + + Correo: Microsoft Exchange o Mensajes de Windows + + + Administrar redes conocidas + + + Administrar características opcionales + + + Mensajería + + + Conexión de uso medido + + + Micrófono + + + Oficina de correos de Microsoft Mail + + + Dispositivos móviles + + + Zona con cobertura inalámbrica móvil + + + Mono + + + Más detalles + + + Movimiento + + + Mouse + + + Mouse y panel táctil + + + Propiedades del mouse, fuentes, teclado e impresoras + + + Puntero del mouse + + + Propiedades multimedia + + + Multitarea + + + NFC + + + Transacciones NFC + + + Narrador + + + Barra de navegación + + + Red + + + Centro de redes y recursos compartidos + + + Conexión de red + + + Propiedades de red + + + Asistente para instalación de red + + + Estado de red + + + Luz nocturna + + + Configuración de la luz nocturna + + + Nota + + + Solo está disponible cuando haya conectado un dispositivo móvil al dispositivo. + + + Solo está disponible en dispositivos que admiten opciones gráficas avanzadas. + + + Solo disponible en dispositivos que tienen una batería, como una tableta. + + + En desuso en Windows 10, versión 1809 (compilación 17763) y posteriores. + + + Solo está disponible si Marcar está emparejado. + + + Solo disponible si DirectAccess está habilitado. + + + Solo disponible en dispositivos que admiten opciones de visualización avanzadas. + + + Solo está presente si el usuario está inscrito en el trabajo en curso. + + + Requiere hardware de seguimiento visual. + + + Disponible si está instalado el editor de métodos de entrada en Japón de Microsoft. + + + Disponible si está instalado el editor de métodos de entrada en pinyin de Microsoft. + + + Disponible si está instalado el editor de métodos de entrada en wubi de Microsoft. + + + Solo está disponible si la aplicación de portal de Mixed Reality está instalada. + + + Solo disponible en dispositivos móviles y si la empresa ha implementado un paquete de aprovisionamiento. + + + Se agregó en Windows 10, versión 1903 (compilación 18362). + + + Se agregó en Windows 10, versión 2004 (compilación 19041). + + + Solo está disponible si las "aplicaciones de configuración" están instaladas, por ejemplo, por un tercero. + + + Solo está disponible si el hardware del panel de teclado táctil está presente. + + + Solo está disponible si el dispositivo tiene un adaptador Wi-Fi. + + + El dispositivo debe ser compatible con Windows Anywhere. + + + Solo disponible si la empresa ha implementado un paquete de aprovisionamiento. + + + Notificaciones + + + Notificaciones y acciones + + + Bloqueo numérico + + + Administrador del origen de datos ODBC (32 bits) + + + Administrador del origen de datos ODBC (64 bits) + + + Archivos sin conexión + + + Mapas sin conexión + + + Mapas sin conexión: descargar mapas + + + En pantalla + + + SO + + + Otros dispositivos + + + Otras opciones + + + Otros usuarios + + + Control parental + + + Contraseña + + + Propiedades de contraseña + + + Lápiz y dispositivos de entrada + + + Lápiz y entrada táctil + + + Lápiz y Windows Ink + + + Usuarios a mi alrededor + + + Información y herramientas de rendimiento + + + Permisos e historial + + + Personalización (categoría) + + + Teléfono + + + Teléfono y módem + + + Teléfono y módem: opciones + + + Llamadas de teléfono + + + Teléfono: aplicaciones predeterminadas + + + Imagen + + + Imágenes + + + Configuración de IME en pinyin + + + Configuración de IME de pinyin: léxico de dominio + + + Configuración de IME en pinyin: configuración de clave + + + Configuración de IME en pinyin: UDP + + + Reproduciendo una partida en pantalla completa + + + Complemento en el que buscar la configuración de Windows + + + Configuración de Windows + + + Inicio/apagado y suspensión + + + Opciones de energía + + + Presentación + + + Imprimir pantalla + + + Impresoras + + + Impresoras y escáneres + + + Informes de problemas y soluciones + + + Procesador + + + Programas y características + + + Proyectando en este equipo + + + Aprovisionando + + + Proximidad + + + Proxy + + + Quickime + + + Juego de minutos de silencio + + + Radios + + + RAM + + + Reconocimiento + + + Recuperación + + + Ojos rojos + + + Rojo-verde + + + Semana roja + + + Región + + + Región e idioma + + + Formato de región + + + Idioma regional + + + Propiedades de configuración regional + + + Conexiones de RemoteApp y Escritorio + + + Escritorio remoto + + + Escáneres y cámaras + + + Programado + + + Tareas programadas + + + Rotación de pantalla + + + Barras de desplazamiento + + + Bloqueo de desplazamiento + + + SDNS + + + Buscando en Windows + + + SecureDNS + + + Security Center + + + Procesador de seguridad + + + Limpieza de sesión + + + Configurar un quiosco multimedia + + + Página principal de configuración + + + Experiencias compartidas + + + Wi-Fi + + + Accesos directos + + + Opciones de inicio de sesión + + + Opciones de inicio de sesión: bloqueo dinámico + + + Tamaño + + + Sonido + + + Voz + + + Reconocimiento de voz + + + Escritura con voz + + + Inicio + + + Lugares de inicio + + + Aplicaciones de inicio + + + Almacenamiento + + + Directivas de almacenamiento + + + Sensor de almacenamiento + + + Centro de sincronización + + + Sincronizar la configuración + + + Sistema + + + Propiedades del sistema y asistente para agregar nuevo hardware + + + Pestaña + + + Modo tableta + + + Configuración de PC de tableta + + + Hablar + + + Hablar con Cortana + + + Barra de tareas + + + Color de la barra de tareas + + + Tareas + + + Conferencia de equipo + + + Administración de dispositivos del equipo + + + Texto a voz + + + Temas + + + Escala de tiempo + + + Táctil + + + Comentarios táctiles + + + Panel táctil + + + Transparencia + + + Solucionar problemas + + + TruePlay + + + Escritura + + + Desinstalar + + + USB + + + Cuentas de usuario + + + Versión + + + Reproducción de vídeo + + + Vídeos + + + Escritorios virtuales + + + Virus + + + Activación por voz + + + Volumen + + + VPN + + + Fondo de pantalla + + + Color más cálido + + + Centro de bienvenida + + + Pantalla de bienvenida + + + Rueda + + + Wi-Fi + + + Llamadas de Wi-Fi + + + Configuración de Wi-Fi + + + Borde de la ventana + + + Windows Anytime Upgrade + + + Windows en cualquier lugar + + + Windows CardSpace + + + Windows Defender + + + Firewall de Windows + + + Configuración de Windows Hello: cara + + + Configuración de Windows Hello: huella digital + + + Programa Windows Insider + + + Centro de movilidad de Windows + + + Windows Search + + + Seguridad de Windows + + + Windows Update + + + Windows Update: opciones avanzadas + + + Windows Update: buscar actualizaciones + + + Windows Update: opciones de reinicio + + + Windows Update: ver actualizaciones opcionales + + + Windows Update: ver historial de actualizaciones + + + Inalámbrico + + + Área de trabajo + + + Aprovisionamiento del área de trabajo + + + Configuración de IME Wubi + + + Configuración de IME Wubi: UDP + + + Redes Xbox + + + Su información + + + Zoom + + + + + + + + + bpmf + + + llamadas + + + + + + deuteranopía + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.fr-FR.resx b/Properties/Resources.fr-FR.resx new file mode 100644 index 00000000000..8285e688995 --- /dev/null +++ b/Properties/Resources.fr-FR.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + À propos de + + + Accès professionnel ou scolaire + + + Options d’accessibilité + + + Applications d’accessoires + + + Informations sur le compte + + + Comptes + + + Gestion des services + + + Activation + + + Historique de l’activité + + + Ajouter du matériel + + + Ajout/Suppression de programmes + + + Ajouter votre téléphone + + + Outils d’administration + + + Paramètres d’affichage avancés + + + Graphismes avancés + + + ID de publicité + + + Mode Avion + + + Alt+Tab + + + Autres noms + + + Animations + + + Couleur de l'application + + + Panneau de configuration + + + Diagnostics de l’application + + + Fonctionnalités de l’application + + + Paramètres système + + + Volume des applications et préférences de l'appareil + + + Application + + + Applications et fonctionnalités + + + Applications pour les sites web + + + Aires + + + Comptes + + + Outils d’administration + + + Apparence et personnalisation + + + Applications + + + Horloge et région + + + Cortana + + + Appareils + + + Facile d'accès + + + Bonus + + + Jeux + + + Matériels et sons + + + Page d’accueil + + + Réalité mixte + + + Réseau et Internet + + + Personnalisation + + + Téléphone + + + Confidentialité + + + Programmes + + + SurfaceHub + + + Système + + + Système et sécurité + + + Heure et langue + + + Mise à jour et sécurité + + + Comptes d'utilisateur + + + Accès affecté + + + Audio + + + Alertes audio + + + Audio et message + + + Lecture automatique + + + Téléchargements automatiques de fichiers + + + Arrière-plan + + + Applications en arrière-plan + + + Sauvegarde + + + Sauvegarder et restaurer + + + Économiseur de batterie + + + Paramètres de l’économiseur de batterie + + + Détails de l’utilisation de l’économiseur de batterie + + + Utilisation de la batterie + + + Appareils biométriques + + + Chiffrement de lecteur BitLocker + + + Lumière bleue + + + Blue-yellow + + + Bluetooth + + + Périphériques Bluetooth + + + Bopomofo IME + + + Diffusion + + + Calendrier + + + Historique des appels + + + Appareil photo + + + Cangjie IME + + + Verr. maj + + + Cellulaire et SIM + + + Choisir les dossiers qui apparaissent sur l’écran d’accueil + + + Service client pour NetWare + + + Presse-papiers + + + Sous-titres + + + Filtres de couleur + + + Gestion des couleurs + + + Couleurs + + + Commande + + + Appareils connectés + + + Contacts + + + Commande de copie + + + Isolation de mémoire à tores magnétiques + + + Cortana + + + Cortana sur mes appareils + + + Cortana - Langue + + + Gestionnaire d’informations d’identification + + + Crossdevice + + + Appareils personnalisés + + + DNS + + + Couleur sombre + + + Mode sombre + + + Utilisation des données + + + Date et heure + + + Applications par défaut + + + Appareil photo par défaut + + + Emplacement par défaut + + + Programmes par défaut + + + Emplacement d'enregistrement par défaut + + + Optimisation de la distribution + + + Thèmes de bureau + + + Gestionnaire de périphériques + + + Appareils et imprimantes + + + DHCP + + + Accès à distance + + + Accès direct + + + Ouvrir directement votre téléphone + + + Afficher + + + Afficher les propriétés + + + Documents + + + Duplication de mon affichage + + + Pendant ces heures + + + Centre d’options d'ergonomie + + + Édition + + + E-mail + + + Comptes d’applications et de messagerie + + + Chiffrement + + + Environnement + + + Ethernet + + + Protection Exploit + + + Bonus + + + Contrôle visuel + + + Suivi oculaire + + + Famille et autres personnes + + + Commentaires et diagnostics + + + Système de fichiers + + + FindFast + + + Localiser mon appareil + + + Pare-feu + + + Assistant de concentration - heures de tranquillité + + + Assistant de concentration - moments de tranquillité + + + Options de dossier + + + Polices + + + Pour les développeurs + + + Barre de jeu + + + Contrôleurs de jeu + + + Jeux DVR + + + Mode jeu + + + Passerelle + + + Général + + + Obtenir des programmes + + + Prise en main + + + Coup d’œil + + + Paramètres graphiques + + + Nuances de gris + + + Semaine verte + + + Affichage du casque + + + Contraste élevé + + + Audio holographique + + + Environnement holographique + + + Casque holographique + + + Gestion holographique + + + Groupe résidentiel + + + ID + + + Image + + + Options d’indexation + + + Infrarouge + + + Entrée manuscrite et saisie + + + Options Internet + + + Couleurs inversées + + + IP + + + Navigation isolée + + + Paramètres d’éditeur de méthode d'entrée du Japon + + + Propriétés du joystick + + + Clavier + + + Pavé + + + Clés + + + Langue + + + Couleur claire + + + Mode clair + + + Emplacement + + + Écran de verrouillage + + + Loupe + + + Courrier - Microsoft Exchange ou Messagerie Windows + + + Gérer les réseaux connus + + + Gérer les fonctionnalités facultatives + + + Messagerie + + + Connexion limitée + + + Microphone + + + Microsoft Mail Post Office + + + Appareils mobiles + + + Point d’accès sans fil mobile + + + Mono + + + Plus de détails + + + Mouvement + + + Souris + + + Souris et pavé tactile + + + Propriétés de la souris, des polices, du clavier et des imprimantes + + + Pointeur de la souris + + + Propriétés multimédias + + + Multitâche + + + NFC + + + Transactions NFC + + + Narrateur + + + Barre de navigation + + + Réseau + + + Centre réseau et partage + + + Connexion réseau + + + Propriétés du réseau + + + Assistant Installation réseau + + + État du réseau + + + Lumière nocturne + + + Paramètres d’éclairage nocturne + + + Remarque + + + Disponible uniquement quand vous avez connecté un appareil mobile à votre appareil. + + + Disponible uniquement sur les appareils qui prennent en charge les options graphiques avancées. + + + Disponible uniquement sur les appareils dotés d'une batterie, tels que les tablettes. + + + Déconseillé dans Windows 10, version 1809 (Build 17763) et versions ultérieures. + + + Disponible uniquement si Composer est apparié. + + + Disponible uniquement si DirectAccess est activé. + + + Disponible uniquement sur les appareils qui prennent en charge les options d’affichage avancées. + + + Présent uniquement si l’utilisateur est inscrit à TEC. + + + Nécessite le matériel eyetracker. + + + Disponible si l’éditeur de méthode d’entrée Microsoft Japan est installé. + + + Disponible si l’éditeur de méthode d’entrée pinyin Microsoft est installé. + + + Disponible si l’éditeur de méthode d’entrée pinyin Microsoft est installé. + + + Disponible uniquement si l’application de portail Mixed Reality est installée. + + + Disponible uniquement sur le mobile et si l'entreprise a déployé un package d'approvisionnement. + + + Ajouté dans Windows 10, version 1903 (Build 18362). + + + Ajouté dans Windows 10, version 2004 (Build 19041). + + + Disponible uniquement si les « applications de paramètres » sont installées, par exemple, par un tiers. + + + Disponible uniquement si le matériel du pavé tactile est présent. + + + Disponible uniquement si l’appareil dispose d’un adaptateur Wi-Fi. + + + L’appareil doit être compatible avec Windows Anywhere. + + + Disponible uniquement si l’entreprise a déployé un package d’approvisionnement. + + + Notifications + + + Notifications et actions + + + Verrouillage numérique + + + Administrateur de la source de données ODBC (32 bits) + + + Administrateur de la source de données ODBC (64 bits) + + + Fichiers hors connexion + + + Cartes hors connexion + + + Cartes hors connexion - télécharger les cartes + + + À l’écran + + + Système d’exploitation + + + Autres appareils + + + Autres options + + + Autres utilisateurs + + + Contrôle parental + + + Mot de passe + + + Propriétés du mot de passe + + + Stylet et périphériques d’entrée + + + Stylet et fonction tactile + + + Stylet et Windows Ink + + + Voisinage immédiat + + + Informations et outils sur les performances + + + Autorisations et historique + + + Personnalisation (catégorie) + + + Téléphone + + + Téléphone et modem + + + Téléphone et Modem - Options + + + Appels téléphoniques + + + Téléphone - Applications par défaut + + + Picture + + + Images + + + Paramètres IME pinyin + + + Paramètres IME Pinyin - lexique de domaine + + + Paramètres IME pinyin - configuration de la clé + + + Paramètres IME pinyin - UDP + + + Lecture d’un jeu en mode plein écran + + + Plug-in de recherche de paramètres Windows + + + Paramètres Windows + + + Alimentation et mise en veille + + + Options d’alimentation + + + Présentation + + + Écran d’impression + + + Imprimantes + + + Imprimantes et scanneurs + + + Rapports et solutions aux problèmes + + + Processeur + + + Programmes et fonctionnalités + + + Projection sur ce PC + + + Approvisionnement + + + Proximité + + + Proxy + + + Quickime + + + Jeu de moments calme + + + Signaux radio + + + RAM + + + Reconnaissance + + + Récupération + + + Yeux rouges + + + Rouge-vert + + + Semaine rouge + + + Région + + + Région et langue + + + Mise en forme des régions + + + Langue régionale + + + Propriétés des paramètres régionaux + + + Connexions RemoteApp et ordinateur de bureau + + + Bureau à distance + + + Scanneurs et appareils photo + + + Planifié + + + Tâches planifiées + + + Rotation de l'écran + + + Barres de défilement + + + Verrouillage du défilement + + + SDNS + + + Recherche dans Windows + + + SecureDNS + + + Security Center + + + Processeur de sécurité + + + Nettoyage de session + + + Configurer un kiosque + + + Page d’accueil des paramètres + + + Expériences partagées + + + Wi-Fi + + + Raccourcis + + + Options de connexion + + + Options de connexion - Verrouillage dynamique + + + Taille + + + Son + + + Speech + + + Reconnaissance vocale + + + Saisie vocale + + + Démarrer + + + Emplacements de départ + + + Applications de démarrage + + + Stockage + + + Stratégies de stockage + + + Assistant Stockage + + + Centre de synchronisation + + + Synchroniser vos paramètres + + + Système + + + Assistant Ajout de nouveau matériel et propriétés système + + + Onglet + + + Mode tablette + + + Paramètres du Tablet PC + + + Parler + + + Parler à Cortana + + + Barre des tâches + + + Couleur de la barre des tâches + + + Tâches + + + Conférence d’équipe + + + Gestion des appareils d’équipe + + + Synthèse vocale + + + Thèmes + + + Chronologie + + + Toucher + + + Commentaires tactiles + + + Pavé tactile + + + Transparence + + + Résoudre les problèmes + + + TruePlay + + + Typing + + + Désinstaller + + + USB + + + Comptes d'utilisateur + + + Version + + + Lecture de vidéo + + + Vidéos + + + Bureaux virtuels + + + Virus + + + Activation vocale + + + Volume + + + VPN + + + Fond d'écran + + + Couleur plus chaude + + + Centre d’accueil + + + Écran d’accueil + + + Roulette + + + Wi-Fi + + + Appel Wi-Fi + + + Paramètres Wi-Fi + + + Bordure de la fenêtre + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Pare-feu Windows + + + Installation de Windows Hello - Visage + + + configuration de Windows Hello - Empreinte digitale + + + Programme Windows Insider + + + Centre de mobilité Windows + + + Windows Search + + + Sécurité Windows + + + Windows Update + + + Windows Update - Options avancées + + + Windows Update - Rechercher les mises à jour + + + Windows Update - Options de redémarrage + + + Windows Update - Afficher les mises à jour facultatives + + + Windows Update - Afficher l’historique des mises à jour + + + Sans fil + + + Espace de travail + + + Approvisionnement de l’espace de travail + + + Paramètres IME Wubi + + + Paramètres IME Wubi - UDP + + + Xbox Networking + + + Vos infos + + + Zoom + + + + + + + + + bpmf + + + appel en cours + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.hu-HU.resx b/Properties/Resources.hu-HU.resx new file mode 100644 index 00000000000..2c8b1f23400 --- /dev/null +++ b/Properties/Resources.hu-HU.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Névjegy + + + Munkahelyi vagy iskolai hozzáférés + + + Akadálymentességi lehetőségek + + + Kiegészítő alkalmazások + + + Fiókadatok + + + Fiókok + + + Műveletközpont + + + Aktiválás + + + Tevékenységelőzmények + + + Hardver hozzáadása + + + Programok telepítése és törlése + + + Telefon hozzáadása + + + Adminisztratív eszközök + + + Speciális megjelenítési beállítások + + + Speciális grafikus beállítások + + + Hirdetésazonosító + + + Repülési üzemmód + + + Alt+Tab + + + Alternatív nevek + + + Animációk + + + Alkalmazás színe + + + Vezérlőpult + + + Alkalmazásdiagnosztika + + + Alkalmazásfunkciók + + + Rendszerbeállítások + + + Alkalmazás-hangerő és eszköz beállításai + + + Alkalmazás + + + Alkalmazások és szolgáltatások + + + Webhelyek alkalmazásai + + + Terület + + + Fiókok + + + Adminisztratív eszközök + + + Megjelenés és személyre szabás + + + Alkalmazások + + + Óra és régió + + + Cortana + + + Eszközök + + + Könnyű kezelés + + + Extrák + + + Játék + + + Hardver és hang + + + Kezdőlap + + + Vegyes valóság + + + Hálózat és internet + + + Személyre szabás + + + Telefon + + + Adatvédelem + + + Programok + + + SurfaceHub + + + Rendszer + + + Rendszer és biztonság + + + Idő és nyelv + + + Frissítés és biztonság + + + Felhasználói fiókok + + + Dedikált hozzáférés + + + Hang + + + Hangriasztások + + + Hang és beszéd + + + Automatikus lejátszás + + + Automatikus fájlletöltések + + + Háttér + + + Háttéralkalmazások + + + Biztonsági mentés + + + Biztonsági mentés és visszaállítás + + + Takarékos üzemmód + + + Takarékos üzemmód beállításai + + + Takarékos üzemmód használati adatai + + + Akkumulátorhasználat + + + Biometrikus eszközök + + + BitLocker meghajtótitkosítás + + + Kék fény + + + Kék-sárga + + + Bluetooth + + + Bluetooth-eszközök + + + Bopomofo írásjegybevivő + + + Közvetítés + + + Naptár + + + Híváselőzmények + + + Kamera + + + Cangjie írásjegybevivő + + + Caps Lock + + + Mobil és SIM + + + A Start menüben megjelenő mappák kiválasztása + + + NetWare-ügyfélszolgáltatás + + + Vágólap + + + Feliratok + + + Színszűrők + + + Színkezelés + + + Színek + + + Parancs + + + Csatlakoztatott eszközök + + + Névjegyek + + + Másolás parancs + + + Magelkülönítés + + + Cortana + + + Cortana több eszközön + + + Cortana – nyelv + + + Hitelesítőadat-kezelő + + + Többeszközös + + + Egyéni eszközök + + + DNS + + + Sötét szín + + + Sötét mód + + + Adathasználat + + + Dátum és idő + + + Alapértelmezett alkalmazások + + + Alapértelmezett kamera + + + Alapértelmezett hely + + + Alapértelmezett programok + + + Alapértelmezett mentési helyek + + + Kézbesítésoptimalizálás + + + Asztali témák + + + Eszközkezelő + + + Eszközök és nyomtatók + + + DHCP + + + Telefonos + + + Közvetlen hozzáférés + + + Telefon közvetlen megnyitása + + + Megjelenítés + + + Megjelenítési tulajdonságok + + + Dokumentumok + + + Saját kijelző másolása + + + Ezekben az órákban + + + Kezeléstechnikai központ + + + Kiadás + + + E-mail-cím + + + E-mail- és alkalmazásfiókok + + + Titkosítás + + + Környezet + + + Ethernet + + + Biztonsági rés kiaknázása elleni védelem + + + Extrák + + + Szemvezérlés + + + Szemkövető + + + Család és más személyek + + + Visszajelzés és diagnosztika + + + Fájlrendszer + + + FindFast + + + Saját eszköz keresése + + + Tűzfal + + + Fókuszsegéd – csendes órák + + + Fókuszsegéd – csendes pillanatok + + + Mappa beállításai + + + Betűtípusok + + + Fejlesztőknek + + + Játéksáv + + + Játékvezérlők + + + Játékvideó-rögzítő + + + Játék mód + + + Átjáró + + + Általános + + + Programok beszerzése + + + Első lépések + + + Gyorsnézet + + + Grafikus beállítások + + + Szürkeárnyalatos + + + Zöld hét + + + Headset kijelzője + + + Kontrasztos + + + Holografikus hang + + + Holografikus környezet + + + Holografikus headset + + + Holografikus kezelés + + + Otthoni csoport + + + Azonosító + + + Kép + + + Indexelési beállítások + + + Infravörös + + + Szabadkézi műveletek és gépelés + + + Internetbeállítások + + + Inverz színek + + + IP-cím + + + Elszigetelt böngészés + + + Japán írásjegybevivő beállításai + + + Botkormány tulajdonságai + + + Billentyűzet + + + Számbillentyűzet + + + Kulcsok + + + Nyelv + + + Világos szín + + + Világos mód + + + Hely + + + Zárolási képernyő + + + Nagyító + + + Levelezés – Microsoft Exchange vagy Windows Üzenetek + + + Ismert hálózatok kezelése + + + Választható funkciók kezelése + + + Üzenetküldés + + + Forgalmi díjas kapcsolat + + + Mikrofon + + + Microsoft Mail Post Office + + + Mobileszközök + + + Mobil hotspot + + + Mono + + + További részletek + + + Mozgás + + + Egér + + + Egér és érintőpad + + + Egér, betűtípusok, billentyűzet és nyomtatók tulajdonságai + + + Egérmutató + + + Multimédia tulajdonságai + + + Párhuzamos feladatvégzés + + + NFC + + + NFC-tranzakció + + + Narrátor + + + Navigációs sáv + + + Hálózat + + + Hálózati és megosztási központ + + + Hálózati kapcsolat + + + Hálózat tulajdonságai + + + Hálózatbeállítási varázsló + + + Hálózat állapota + + + Éjszakai fény + + + Éjszakai fény beállításai + + + Megjegyzés + + + Csak akkor érhető el, ha csatlakoztatott egy mobileszközt az eszközéhez. + + + Csak a speciális grafikai beállításokat támogató eszközökön érhető el. + + + Csak akkumulátorral rendelkező eszközökön, például táblaszámítógépen érhető el. + + + Elavult a Windows 10 1809-es verziója (build: 17763) óta. + + + Csak akkor érhető el, ha a tárcsázás párosítva van. + + + Csak akkor érhető el, ha a DirectAccess engedélyezve van. + + + Csak a speciális megjelenítési beállításokat támogató eszközökön érhető el. + + + Csak akkor jelen van, ha a felhasználó regisztrálva van a WIP rendszerben. + + + Szemkövető hardvert igényel. + + + Akkor érhető el, ha telepítve van a Microsoft japán írásjegybevivő. + + + Akkor érhető el, ha telepítve van a Microsoft pinjin írásjegybevivő. + + + Akkor érhető el, ha telepítve van a Microsoft wubi írásjegybevivő. + + + Csak akkor érhető el, ha a Mixed Reality Portal alkalmazás telepítve van. + + + Kizárólag mobilon érhető el, és csak akkor, ha a vállalat üzembe helyezett egy kiépítési csomagot. + + + Hozzáadva a Windows 10 1903-as verziójában (build: 18362). + + + Hozzáadva a Windows 10 2004-es verziójában (build: 19041). + + + Csak akkor érhető el, ha a „beállítási alkalmazások” telepítve van, például egy külső fél által. + + + Csak akkor érhető el, ha rendelkezésre áll érintőpad hardverelem. + + + Csak akkor érhető el, ha az eszköz rendelkezik Wi-Fi-adapterrel. + + + Az eszköznek a Windows Anywhere-kompatibilisnek kell lennie. + + + Csak akkor érhető el, ha a vállalat üzembe helyezett egy kiépítési csomagot. + + + Értesítések + + + Értesítések és műveletek + + + Num Lock + + + ODBC-adatforrási rendszergazda (32 bit) + + + ODBC-adatforrási rendszergazda (64 bit) + + + Offline fájlok + + + Offline térképek + + + Offline térképek – térképek letöltése + + + Képernyőn megjelenő + + + Operációs rendszer + + + Egyéb eszközök + + + Egyéb beállítások + + + Más felhasználók + + + Szülői felügyelet + + + Jelszó + + + Jelszó tulajdonságai + + + Toll és beviteli eszközök + + + Toll és érintés + + + Toll és Windows Ink + + + Közeli emberek + + + Teljesítményadatok és eszközök + + + Engedélyek és előzmények + + + Megszemélyesítés (kategória) + + + Telefon + + + Telefon és modem + + + Telefon és modem – beállítások + + + Telefonhívások + + + Telefon – alapértelmezett alkalmazások + + + Kép + + + Képek + + + Pinjin írásjegybevivői beállítások + + + Pinjin írásjegybevivői beállítások – tartománylexikon + + + Pinjin írásjegybevivői beállítások – billentyűkonfiguráció + + + Pinjin írásjegybevivői beállítások – UDP + + + Játék teljes képernyős futtatása + + + A Windows-beállítások keresésére szolgáló beépülő modul + + + Windows-beállítások + + + Energiagazdálkodás és alvó állapot + + + Energiabeállítások + + + Bemutató + + + Képernyőkép + + + Nyomtatók + + + Nyomtatók és szkennerek + + + Problémajelentések és megoldások + + + Processzor + + + Programok és szolgáltatások + + + Kivetítés erre a számítógépre + + + Kiépítés + + + Közelség + + + Proxy + + + Quickime + + + Csendes pillanatok játék + + + Rádiók + + + RAM + + + Felismerés + + + Helyreállítás + + + Vörös szem + + + Vörös-zöld + + + Vörös hét + + + Régió + + + Régió és nyelv + + + Regionális formázás + + + Regionális nyelv + + + Területi beállítások tulajdonságai + + + RemoteApp- és asztali kapcsolatok + + + Távoli asztal + + + Szkennerek és kamerák + + + Ütemezett + + + Ütemezett feladatok + + + Képernyő elforgatása + + + Görgetősávok + + + Scroll Lock + + + SDNS + + + Keresés a Windowsban + + + SecureDNS + + + Security Center + + + Biztonsági processzor + + + Munkamenet-karbantartás + + + Kioszk beállítása + + + Beállítások kezdőlapja + + + Megosztott funkciók + + + wifi + + + Billentyűparancsok + + + Bejelentkezési beállítások + + + Bejelentkezési beállítások – dinamikus zárolás + + + Méret + + + Hang + + + Beszéd + + + Beszédfelismerés + + + Diktálás + + + Indítás + + + Kiindulási helyek + + + Automatikusan induló alkalmazások + + + Tárterület + + + Tárolási szabályzatok + + + Tárterületsegéd + + + Szinkronizáló központ + + + Saját beállítások szinkronizálása + + + Rendszer + + + Rendszer-tulajdonságok és Új hardver hozzáadása varázsló + + + Lap + + + Táblagép mód + + + Táblagép beállításai + + + Beszéd + + + Csevegés Cortanával + + + Tálca + + + Tálca színe + + + Tevékenységek + + + Csoportkonferencia + + + Csapat eszközkezelése + + + Szövegfelolvasás + + + Témák + + + Idővonal + + + Érintés + + + Érintéses visszajelzés + + + Érintőpad + + + Átlátszóság + + + Hibaelhárítás + + + TruePlay + + + Gépelés + + + Eltávolítás + + + USB + + + Felhasználói fiókok + + + Verzió + + + Videólejátszás + + + Videók + + + Virtuális asztalok + + + Vírus + + + Hangaktiválás + + + Hangerő + + + VPN + + + Háttérkép + + + Melegebb szín + + + Kezdőpont + + + Üdvözlőképernyő + + + Kerék + + + Wi-Fi + + + Wi-Fi-hívás + + + Wi-Fi-beállítások + + + Ablak szegélye + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows tűzfal + + + Windows Hello-beállítás – arcfelismerés + + + Windows Hello-beállítás – ujjlenyomat + + + Windows Insider Program + + + Windows mobilközpont + + + Windows Search + + + Windows biztonság + + + Windows Update + + + Windows Update – speciális beállítások + + + Windows Update – frissítések keresése + + + Windows Update – újraindítás beállításai + + + Windows Update – választható frissítések megtekintése + + + Windows Update – frissítési előzmények megtekintése + + + Vezeték nélküli + + + Munkahely + + + Munkahelyi kiépítés + + + Wubi írásjegybevivő beállításai + + + Wubi írásjegybevivő beállításai – UDP + + + Xbox hálózat + + + Saját adatok + + + Nagyítás + + + + + + + + + bpmf + + + hívás + + + + + + deuteranópia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanópia + + + schedtasks + + + + + + + + + + + + + + + tritanópia + + + + + \ No newline at end of file diff --git a/Properties/Resources.it-IT.resx b/Properties/Resources.it-IT.resx new file mode 100644 index 00000000000..ba3d4a2747b --- /dev/null +++ b/Properties/Resources.it-IT.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Informazioni + + + Accesso aziendale o dell'istituto di istruzione + + + Opzioni di accessibilità + + + App per accessori + + + Info sull'account + + + Account + + + Centro notifiche + + + Attivazione + + + Cronologia attività + + + Add Hardware + + + Aggiungi/rimuovi programmi + + + Aggiungi telefono + + + Strumenti amministrativi + + + Impostazioni di visualizzazione avanzate + + + Grafica avanzata + + + ID annunci + + + Modalità aereo + + + Alt+Tab + + + Nomi alternativi + + + Animazioni + + + Colore app + + + Pannello di controllo + + + Diagnostica app + + + Funzionalità app + + + Impostazioni di sistema + + + Preferenze del volume dell'app e del dispositivo + + + App + + + App e funzionalità + + + App per siti Web + + + Area + + + Account + + + Strumenti amministrativi + + + Aspetto e personalizzazione + + + App + + + Orologio e area geografica + + + Cortana + + + Dispositivi + + + Accessibilità + + + Funzionalità aggiuntive + + + Gioco + + + Hardware e audio + + + Home page + + + Realtà mista + + + Rete e Internet + + + Personalizzazione + + + Telefono + + + Privacy + + + Programmi + + + SurfaceHub + + + Sistema + + + Sistema e sicurezza + + + Ora e lingua + + + Aggiornamento e sicurezza + + + Account utente + + + Accesso assegnato + + + Audio + + + Avvisi audio + + + Audio e voce + + + AutoPlay + + + Download di file automatici + + + Background + + + App in background + + + Backup + + + Backup e ripristino + + + Risparmia batteria + + + Impostazioni risparmia batteria + + + Dettagli utilizzo Risparmia batteria + + + Utilizzo batteria + + + Dispositivi biometrici + + + Crittografia unità BitLocker + + + Blu (chiaro) + + + Blu-giallo + + + Bluetooth + + + Dispositivi Bluetooth + + + Bopomofo IME + + + Trasmissione + + + Calendario + + + Registro chiamate + + + Fotocamera + + + IME Cangjie + + + BLOC MAIUSC + + + Cellulare e SIM + + + Scegli le cartelle visualizzate in Start + + + Servizio client per NetWare + + + Appunti + + + Sottotitoli in lingua originale + + + Filtri colore + + + Gestione dei colori + + + Colori + + + Comando + + + Dispositivi connessi + + + Contatti + + + Comando COPY + + + Isolamento memoria centrale + + + Cortana + + + Cortana nei dispositivi + + + Cortana - Lingua + + + Gestione credenziali + + + Crossdevice + + + Dispositivi personalizzati + + + DNS + + + Colore scuro + + + Modalità scura + + + Consumo dati + + + Data e ora + + + App predefinite + + + Videocamera predefinita + + + Posizione predefinita + + + Programmi predefiniti + + + Percorso di salvataggio predefinito + + + Ottimizzazione recapito + + + Temi desktop + + + Gestione dispositivi + + + Dispositivi e stampanti + + + DHCP + + + Connessione remota + + + Accesso diretto + + + Apri direttamente il telefono + + + Visualizza + + + Proprietà di visualizzazione + + + Documenti + + + Duplicazione del display + + + In queste ore + + + Centro accessibilità + + + Edizione + + + Indirizzo di posta elettronica + + + Account di posta elettronica e app + + + Crittografia + + + Ambiente + + + Ethernet + + + Protezione dagli exploit + + + Funzionalità aggiuntive + + + Controllo ottico + + + Tracciatore oculare + + + Famiglia e altre persone + + + Feedback e diagnostica + + + File system + + + FindFast + + + Trova il mio dispositivo + + + Firewall + + + Assistente notifiche - Orari senza notifiche + + + Assistente notifiche - Momenti senza notifiche + + + Opzioni cartella + + + Tipi di carattere + + + Per sviluppatori + + + Barra dei giochi + + + Controller di gioco + + + Game DVR + + + Modalità di gioco + + + Gateway + + + Generale + + + Ottieni programmi + + + Attività iniziali + + + Sguardo + + + Impostazioni grafica + + + Gradazioni di grigio + + + Settimana verde + + + Display visore VR + + + Contrasto elevato + + + Audio olografico + + + Ambiente olografico + + + Visore VR olografico + + + Gestione olografica + + + Gruppo Home + + + ID + + + Immagine + + + Opzioni di indicizzazione + + + Infrarossi + + + Input penna e digitazione + + + Opzioni Internet + + + Colori invertiti + + + IP + + + Esplorazione isolata + + + Impostazioni IME del Giappone + + + Proprietà joystick + + + Tastiera + + + Tastierino + + + Chiavi + + + Lingua + + + Colore chiaro + + + Modalità chiara + + + Posizione + + + Schermata di blocco + + + Lente di ingrandimento + + + Posta elettronica - Microsoft Exchange o Microsoft Messaggi + + + Gestisci reti note + + + Gestisci funzionalità facoltative + + + Messaggistica + + + Connessione a consumo + + + Microfono + + + Microsoft Mail Post Office + + + Dispositivi mobili + + + Hotspot mobile + + + Mono + + + Ulteriori dettagli + + + Movimento + + + Mouse + + + Mouse e touchpad + + + Proprietà mouse, tipi di carattere, tastiera e stampanti + + + Puntatore del mouse + + + Proprietà multimediali + + + Multitasking + + + NFC + + + Transazioni NFC + + + Assistente vocale + + + Barra di spostamento + + + Rete + + + Centro connessioni di rete e condivisione + + + Connessione di rete + + + Proprietà di rete + + + Installazione guidata rete + + + Stato della rete + + + Luce notturna + + + Impostazioni luce notturna + + + Nota + + + Disponibile solo quando è stato connesso un dispositivo mobile al dispositivo. + + + Disponibile solo nei dispositivi che supportano le opzioni grafiche avanzate. + + + Disponibile solo nei dispositivi con batteria, ad esempio un tablet. + + + Deprecato in Windows 10, versione 1809 (Build 17763) e versioni successive. + + + Disponibile solo se la composizione è abbinata. + + + Disponibile solo se DirectAccess è abilitato. + + + Disponibile solo nei dispositivi che supportano le opzioni di visualizzazione avanzate. + + + Presente solo se l'utente è registrato in WIP. + + + Richiede hardware di tracciamento ottico. + + + Disponibile se l'editor del metodo di input di Microsoft Japan è installato. + + + Disponibile se l'editor del metodo di input di Microsoft Pinyin è installato. + + + Disponibile se l'editor del metodo di input di Microsoft Wubi è installato. + + + Disponibile solo se è installata l'app Portale Realtà mista. + + + Disponibile solo per dispositivi mobili e se l'azienda ha distribuito un pacchetto di provisioning. + + + Aggiunto in Windows 10 versione 1903 (Build 18362). + + + Aggiunto in Windows 10, versione 2004 (Build 19041). + + + Disponibile solo se sono installate "app per le impostazioni", ad esempio di terze parti. + + + Disponibile solo se è presente l'hardware touchpad. + + + Disponibile solo se il dispositivo dispone di una scheda Wi-Fi. + + + Il dispositivo deve essere compatibile con Windows Anywhere. + + + Disponibile solo se l'azienda ha distribuito un pacchetto di provisioning. + + + Notifiche + + + Notifiche e azioni + + + BLOC NUM + + + Amministratore delle origini dati di ODBC (32 bit) + + + Amministratore delle origini dati di ODBC (64 bit) + + + File offline + + + Mappe offline + + + Mappe offline- Download mappe + + + Su schermo + + + Sistema operativo + + + Altri dispositivi + + + Altre opzioni + + + Altri utenti + + + Parental control + + + Password + + + Proprietà password + + + Penna e dispositivi di input + + + Penna e tocco + + + Penna e Windows Ink + + + Persone nelle vicinanze + + + Informazioni e strumenti per le prestazioni + + + Autorizzazioni e cronologia + + + Personalizzazione (categoria) + + + Telefono + + + Telefono e modem + + + Telefono e modem - Opzioni + + + Chiamate telefoniche + + + Telefono - App predefinite + + + Immagine + + + Immagini + + + Impostazioni IME Pinyin + + + Impostazioni IME Pinyin - Lessico del dominio + + + Impostazioni IME Pinyin - Configurazione chiave + + + Impostazioni IME Pinyin - UDP + + + Riproduzione di un gioco a schermo intero + + + Plug-in per cercare le impostazioni di Windows + + + Impostazioni di Windows + + + Alimentazione e sospensione + + + Opzioni alimentazione + + + Presentazione + + + Stampa schermata + + + Stampanti + + + Stampanti e scanner + + + Report e soluzioni dei problemi + + + Processore + + + Programmi e funzionalità + + + Proiezione su questo computer + + + Provisioning + + + Prossimità + + + Proxy + + + Quickime + + + Gioco momenti senza notifiche + + + Radio + + + RAM + + + Riconoscimento + + + Ripristino + + + Occhio rosso + + + Rosso-Verde + + + Settimana rossa + + + Area + + + Area e lingua + + + Formattazione area + + + Lingua locale + + + Proprietà impostazioni internazionali + + + Connessioni RemoteApp e desktop + + + Desktop remoto + + + Scanner e fotocamere + + + Pianificato + + + Attività pianificate + + + Rotazione schermo + + + Barre di scorrimento + + + BLOC SCORR + + + SDNS + + + Ricerca di Windows + + + SecureDNS + + + Centro sicurezza + + + Processore di sicurezza + + + Pulizia della sessione + + + Configura un chiosco + + + Home page impostazioni + + + Esperienze condivise + + + wifi + + + Tasti di scelta rapida + + + Opzioni di accesso + + + Opzioni di accesso - Blocco dinamico + + + Dimensioni + + + Audio + + + Voce + + + Riconoscimento vocale + + + Digitazione vocale + + + Start + + + Posizioni Start + + + App di avvio + + + Archiviazione + + + Criteri di archiviazione + + + Sensore memoria + + + Centro sincronizzazione + + + Sincronizza le impostazioni + + + Sistema + + + Proprietà di sistema e aggiunta guidata nuovo hardware + + + Scheda + + + Modalità tablet + + + Impostazioni del Tablet PC + + + Parlare + + + Parla con Cortana + + + Barra delle applicazioni + + + Colore barra delle applicazioni + + + Attività + + + Conferenza del team + + + Gestione dei dispositivi del team + + + Sintesi vocale + + + Temi + + + Sequenza temporale + + + Tocco + + + Feedback tocco + + + Touchpad + + + Trasparenza + + + Risoluzione dei problemi + + + TruePlay + + + Digitazione + + + Disinstalla + + + USB + + + Account utente + + + Versione + + + Riproduzione video + + + Video + + + Desktop virtuali + + + Virus + + + Attivazione vocale + + + Volume + + + VPN + + + Sfondo + + + Colore più caldo + + + Centro di benvenuto + + + Schermata di benvenuto + + + Rotellina + + + Wi-Fi + + + Chiamata Wi-Fi + + + Impostazioni Wi-Fi + + + Bordo finestra + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows Firewall + + + Installazione di Windows Hello - Viso + + + Configurazione Windows Hello - Impronta digitale + + + Programma Windows Insider + + + Centro PC portatile Windows + + + Windows Search + + + Sicurezza di Windows + + + Windows Update + + + Windows Update - Opzioni avanzate + + + Windows Update - Verifica della disponibilità di aggiornamenti + + + Windows Update - Opzioni di riavvio + + + Windows Update - Visualizza gli aggiornamenti facoltativi + + + Windows Update - Visualizzazione cronologia aggiornamenti + + + Wireless + + + Area di lavoro + + + Provisioning del posto di lavoro + + + Impostazioni IME Wubi + + + Impostazioni IME Wubi - UDP + + + Rete Xbox + + + Informazioni personali + + + Zoom + + + + + + + + + bpmf + + + chiamata + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.ja-JP.resx b/Properties/Resources.ja-JP.resx new file mode 100644 index 00000000000..21bd9a06b60 --- /dev/null +++ b/Properties/Resources.ja-JP.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + バージョン情報 + + + 職場または学校へのアクセス + + + アクセシビリティ オプション + + + アクセサリ アプリ + + + アカウント情報 + + + アカウント + + + アクション センター + + + アクティブ化 + + + アクティビティ履歴 + + + ハードウェアの追加 + + + プログラムの追加と削除 + + + 電話を追加 + + + 管理ツール + + + ディスプレイの詳細設定 + + + 高度なグラフィックス + + + 広告 ID + + + 機内モード + + + Alt + Tab キー + + + 別名 + + + アニメーション + + + アプリの色 + + + コントロール パネル + + + アプリの診断 + + + アプリの機能 + + + システム設定 + + + アプリのボリュームとデバイスの設定 + + + アプリ + + + アプリと機能 + + + Web サイト用のアプリ + + + 領域 + + + アカウント + + + 管理ツール + + + 外観と個人用設定 + + + アプリ + + + クロックとリージョン + + + Cortana + + + デバイス + + + 簡単操作 + + + 追加 + + + ゲーム + + + ハードウェアとサウンド + + + ホーム ページ + + + Mixed Reality + + + ネットワークとインターネット + + + 個人用設定 + + + 電話 + + + プライバシー + + + プログラム + + + SurfaceHub + + + システム + + + システムとセキュリティ + + + 時刻と言語 + + + 更新とセキュリティ + + + ユーザー アカウント + + + 割り当てられたアクセス + + + オーディオ + + + オーディオ アラート + + + オーディオと音声 + + + 自動再生 + + + ファイルの自動ダウンロード + + + バックグラウンド + + + バックグラウンド アプリ + + + バックアップ + + + バックアップと復元 + + + バッテリー節約機能 + + + バッテリー節約機能の設定 + + + バッテリー節約機能の使用状況の詳細 + + + バッテリーの使用 + + + 生体認証デバイス + + + BitLocker ドライブ暗号化 + + + 薄い青 + + + 青と黄 + + + Bluetooth + + + Bluetooth デバイス + + + Bopomofo IME + + + 配信中 + + + カレンダー + + + 通話履歴 + + + カメラ + + + Cangjie IME + + + Caps Lock + + + 携帯ネットワークと SIM + + + 開始時に表示するフォルダーを選択 + + + NetWare 用クライアント サービス + + + クリップボード + + + クローズド キャプション + + + カラー フィルター + + + 色の管理 + + + + + + コマンド + + + 接続されているデバイス + + + 連絡先 + + + Copy コマンド + + + コア分離 + + + Cortana + + + デバイス間の Cortana + + + Cortana - 言語 + + + 資格情報マネージャー + + + クロスデバイス + + + カスタム デバイス + + + DNS + + + 濃い色 + + + ダーク モード + + + データ利用状況 + + + 日付と時刻 + + + 既定のアプリ + + + 既定のカメラ + + + 既定の場所 + + + 既定のプログラム + + + 既定の保存場所 + + + 配信の最適化 + + + デスクトップのテーマ + + + デバイス マネージャー + + + デバイスとプリンター + + + DHCP + + + ダイヤルアップ + + + 直接アクセス + + + 電話を直接開く + + + 表示 + + + 表示プロパティ + + + ドキュメント + + + ディスプレイの複製 + + + これらの時間帯 + + + Ease of Access Center + + + エディション + + + メール + + + メールとアプリのアカウント + + + 暗号化 + + + 環境 + + + イーサネット + + + Exploit Protection + + + 追加 + + + 視線制御 + + + アイ トラッカー + + + 家族とその他のユーザー + + + フィードバックと診断 + + + ファイル システム + + + FindFast + + + デバイスの検索 + + + ファイアウォール + + + 集中モード - 通知オフ時間 + + + 集中モード - サイレント + + + フォルダー オプション + + + フォント + + + 開発者向け + + + ゲーム バー + + + ゲーム コントローラー + + + ゲーム録画 + + + ゲーム モード + + + ゲートウェイ + + + 全般 + + + プログラムの取得 + + + 概要 + + + グランス + + + グラフィックスの設定 + + + グレースケール + + + 緑の週 + + + ヘッドセットのディスプレイ + + + ハイ コントラスト + + + ホログラフィック オーディオ + + + ホログラフィック環境 + + + ホログラフィック ヘッドセット + + + ホログラフィック管理 + + + ホーム グループ + + + ID + + + イメージ + + + インデックス作成オプション + + + 赤外線 + + + 手描き入力とタイピング + + + インターネット オプション + + + 反転色 + + + IP + + + 分離閲覧 + + + 日本語入力システムの設定 + + + ジョイスティックのプロパティ + + + キーボード + + + キーパッド + + + キー + + + 言語 + + + 明るい色 + + + ライト モード + + + 場所 + + + ロック画面 + + + 拡大鏡 + + + メール - Microsoft Exchange または Windows メッセージング + + + 既知のネットワークを管理 + + + オプション機能の管理 + + + メッセージング + + + 従量制課金接続 + + + マイク + + + Microsoft Mail Post Office + + + モバイル デバイス + + + モバイル ホットスポット + + + Mono + + + 詳細 + + + モーション + + + マウス + + + マウスとタッチパッド + + + マウス、フォント、キーボード、プリンターのプロパティ + + + マウス ポインター + + + マルチメディアのプロパティ + + + マルチタスキング + + + NFC + + + NFC トランザクション + + + ナレーター + + + ナビゲーション バー + + + ネットワーク + + + ネットワークと共有センター + + + ネットワーク接続 + + + ネットワークのプロパティ + + + ネットワーク セットアップ ウィザード + + + ネットワークの状態 + + + 夜間モード + + + 夜間モード設定 + + + メモ + + + モバイル デバイスをデバイスに接続している場合にのみ使用できます。 + + + グラフィックの詳細オプションをサポートしているデバイスでのみ使用できます。 + + + タブレットなどのバッテリが搭載されているデバイスでのみ使用できます。 + + + Windows 10、バージョン 1809 (ビルド 17763) およびそれ以降では非推奨になりました。 + + + ダイヤルがペアリングされている場合にのみ使用できます。 + + + DirectAccess が有効になっている場合にのみ使用できます。 + + + ディスプレイの詳細オプションをサポートしているデバイスでのみ使用できます。 + + + ユーザーが WIP に登録されている場合にのみプレゼンテーションを実行します。 + + + アイトラッカー ハードウェアが必要です。 + + + Microsoft 日本語入力メソッド エディターがインストールされている場合にのみ使用できます。 + + + Microsoft Pinyin 入力メソッド エディターがインストールされている場合にのみ使用できます。 + + + Microsoft Wubi 入力メソッド エディターがインストールされている場合にのみ使用できます。 + + + Mixed Reality ポータル アプリがインストールされている場合にのみ使用できます。 + + + モバイルで、企業がプロビジョニング パッケージをデプロイ済みの場合にのみ使用できます。 + + + Windows 10、バージョン 1903 (ビルド 18362) で追加されました。 + + + Windows 10、バージョン 2004 (ビルド 19041) で追加されました。 + + + たとえば、サード パーティによって "設定アプリ" がインストールされている場合にのみ使用できます。 + + + タッチパッド ハードウェアがある場合にのみ使用できます。 + + + デバイスに Wi-Fi アダプターがある場合にのみ使用できます。 + + + デバイスは Windows Anywhere 対応でなければなりません。 + + + 企業がプロビジョニング パッケージをデプロイしている場合にのみ使用できます。 + + + 通知 + + + 通知とアクション + + + NumLock + + + ODBC データ ソース管理者 (32 ビット) + + + ODBC データ ソース管理者 (64 ビット) + + + オフライン ファイル + + + オフラインのマップ + + + オフラインのマップ - マップのダウンロード + + + オンスクリーン + + + OS + + + その他のデバイス + + + その他のオプション + + + 他のユーザー + + + 保護者による制限 + + + パスワード + + + パスワードのプロパティ + + + ペンと入力デバイス + + + ペンとタッチ + + + ペンと Windows Ink + + + 近くの人との接続 + + + パフォーマンスの情報とツール + + + アクセス許可と履歴 + + + 個人用設定 (カテゴリ) + + + 電話 + + + 電話とモデム + + + 電話とモデム - オプション + + + 通話 + + + 電話 - 既定のアプリ + + + 画像 + + + 画像 + + + Pinyin IME 設定 + + + Pinyin IME 設定 - ドメイン辞書 + + + Pinyin IME 設定 - キーの構成 + + + Pinyin IME 設定 - UDP + + + ゲームをフルスクリーンでプレイしています + + + Windows の設定を検索するためのプラグイン + + + Windows の設定 + + + 電源とスリープ + + + 電源オプション + + + プレゼンテーション + + + 画面の印刷 + + + プリンター + + + プリンターとスキャナー + + + 問題のレポートと解決策 + + + プロセッサ + + + プログラムと機能 + + + この PC へのプロジェクション + + + プロビジョニング + + + 近接通信 + + + プロキシ + + + Quickime + + + サイレント ゲーム + + + 無線 + + + RAM + + + 認識 + + + 復元 + + + 赤目 + + + 赤-緑 + + + 赤の週 + + + リージョン + + + 地域と言語 + + + 地域の書式設定 + + + 地域の言語 + + + 地域設定のプロパティ + + + RemoteApp とデスクトップ接続 + + + リモート デスクトップ + + + スキャナーとカメラ + + + スケジュール済み + + + スケジュールされたタスク + + + 画面の回転 + + + スクロール バー + + + スクロール ロック + + + SDNS + + + Windows の検索 + + + SecureDNS + + + Security Center + + + セキュリティ プロセッサ + + + セッションのクリーンアップ + + + キオスクの設定 + + + ホーム ページの設定 + + + 共有エクスペリエンス + + + WiFi + + + ショートカット + + + サインイン オプション + + + サインイン オプション - 動的ロック + + + サイズ + + + サウンド + + + 音声 + + + 音声認識 + + + 音声入力 + + + 開始 + + + 開始位置 + + + スタートアップ アプリ + + + ストレージ + + + ストレージ ポリシー + + + ストレージ センサー + + + 同期センター + + + 設定の同期 + + + システム + + + システム プロパティと新しいハードウェアの追加ウィザード + + + タブ + + + タブレット モード + + + タブレット PC の設定 + + + 会話 + + + Cortana に話しかける + + + タスク バー + + + タスク バーの色 + + + タスク + + + チーム会議 + + + チーム デバイスの管理 + + + テキスト読み上げ + + + テーマ + + + タイムライン + + + タッチ + + + タッチ フィードバック + + + タッチパッド + + + 透明度 + + + トラブルシューティング + + + TruePlay + + + 入力 + + + アンインストール + + + USB + + + ユーザー アカウント + + + バージョン + + + ビデオの再生 + + + ビデオ + + + 仮想デスクトップ + + + ウイルス + + + 音声のアクティブ化 + + + 音量 + + + VPN + + + 壁紙 + + + 暖色 + + + ウェルカム センター + + + ようこそ画面 + + + ホイール + + + Wi-Fi + + + Wi-Fi 通話 + + + Wi-Fi の設定 + + + ウィンドウの境界線 + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows ファイアウォール + + + Windows Hello の設定 - Face + + + Windows Hello の設定 - 指紋 + + + Windows Insider Program + + + Windows モビリティ センター + + + Windows Search + + + Windows セキュリティ + + + Windows Update + + + Windows Update - 詳細オプション + + + Windows Update - 更新プログラムの確認 + + + Windows Update - 再起動オプション + + + Windows Update - オプションの更新プログラムを表示 + + + Windows Update - 更新履歴の表示 + + + ワイヤレス + + + ワークプレース + + + ワークプレースのプロビジョニング + + + Wubi IME 設定 + + + Wubi IME 設定 - UDP + + + Xbox ネットワーク + + + ユーザー情報 + + + Zoom + + + + + + + + + bpmf + + + 通話 + + + + + + 第二色覚異常 + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 第一色覚異常 + + + schedtasks + + + + + + + + + + + + + + + 第三色覚異常 + + + + + \ No newline at end of file diff --git a/Properties/Resources.ko-KR.resx b/Properties/Resources.ko-KR.resx new file mode 100644 index 00000000000..e5859a469ce --- /dev/null +++ b/Properties/Resources.ko-KR.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 정보 + + + 회사 또는 학교 액세스 + + + 접근성 옵션 + + + 액세서리 앱 + + + 계정 정보 + + + 계정 + + + 알림 센터 + + + 활성화 + + + 활동 기록 + + + 하드웨어 추가 + + + 프로그램 추가/제거 + + + 휴대폰 추가 + + + 관리 도구 + + + 고급 디스플레이 설정 + + + 고급 그래픽 + + + 광고 ID + + + 비행기 모드 + + + Alt+Tab + + + 대체 이름 + + + 애니메이션 + + + 앱 색 + + + 제어판 + + + 앱 진단 + + + 앱 기능 + + + 시스템 설정 + + + 앱 볼륨 및 디바이스 기본 설정 + + + + + + 앱 및 기능 + + + 웹 사이트용 앱 + + + 영역 + + + 계정 + + + 관리 도구 + + + 모양 및 개인 설정 + + + + + + 시계 및 지역 + + + Cortana + + + 디바이스 + + + 접근성 + + + 추가 + + + 게임 + + + 하드웨어 및 소리 + + + 홈페이지 + + + Mixed Reality + + + 네트워크 및 인터넷 + + + 개인 설정 + + + 전화 + + + 개인 정보 + + + 프로그램 + + + SurfaceHub + + + 시스템 + + + 시스템 및 보안 + + + 시간 및 언어 + + + 업데이트 및 보안 + + + 사용자 계정 + + + 할당된 액세스 권한 + + + 오디오 + + + 오디오 경고 + + + 오디오 및 음성 + + + 자동 재생 + + + 자동 파일 다운로드 + + + 배경 + + + 배경 앱 + + + 백업 + + + 백업 및 복원 + + + 배터리 절약 모드 + + + 배터리 절약 모드 설정 + + + 배터리 절약 모드 사용량 세부 정보 + + + 배터리 사용 + + + 생체 인식 디바이스 + + + BitLocker 드라이브 암호화 + + + 블루 라이트 + + + 파란색-노란색 + + + Bluetooth + + + Bluetooth 장치 + + + Bopomofo IME + + + 브로드캐스팅 + + + 일정 + + + 통화 기록 + + + 카메라 + + + 창힐 IME + + + Caps lock + + + 셀룰러 및 SIM + + + 시작 화면에 표시되는 폴더 선택 + + + NetWare용 클라이언트 서비스 + + + 클립보드 + + + 닫은 캡션 + + + 색 필터 + + + 색 관리 + + + + + + 명령 + + + 연결된 디바이스 + + + 연락처 + + + 복사 명령 + + + 코어 격리 + + + Cortana + + + 내 장치에서 Cortana + + + Cortana - 언어 + + + 자격 증명 관리자 + + + 장치 간 + + + 사용자 지정 디바이스 + + + DNS + + + 어두운 색 + + + 다크 모드 + + + 데이터 사용량 + + + 날짜 및 시간 + + + 기본 앱 + + + 기본 카메라 + + + 기본 위치 + + + 기본 프로그램 + + + 기본 저장 위치 + + + 제공 최적화 + + + 데스크톱 테마 + + + 디바이스 관리자 + + + 장치 및 프린터 + + + DHCP + + + 전화걸기 + + + 직접 액세스 + + + 휴대폰 직접 열기 + + + 표시 + + + 속성 표시 + + + 문서 + + + 내 디스플레이 복제 중 + + + 이 시간 동안 + + + 접근성 센터 + + + 버전 + + + 메일 + + + 전자 메일 및 앱 계정 + + + 암호화 + + + 환경 + + + 이더넷 + + + Exploit Protection + + + 추가 + + + 시선 제어 + + + 시선 추적기 + + + 가족 및 기타 사용자 + + + 피드백 및 진단 + + + 파일 시스템 + + + FindFast + + + 내 장치 찾기 + + + 방화벽 + + + 집중 지원 - 조용한 시간 + + + 집중 지원 - 조용한 순간 + + + 폴더 옵션 + + + 글꼴 + + + 개발자용 + + + 게임 바 + + + 게임 컨트롤러 + + + 게임 DVR + + + 게임 모드 + + + 게이트웨이 + + + 일반 + + + 프로그램 가져오기 + + + 시작 + + + Glance + + + 그래픽 설정 + + + 회색조 + + + 녹색 주 + + + 헤드셋 디스플레이 + + + 고대비 + + + 홀로그램 오디오 + + + 홀로그램 환경 + + + 홀로그램 헤드셋 + + + 홀로그램 관리 + + + 홈 그룹 + + + ID + + + 이미지 + + + 인덱싱 옵션 + + + 적외선 + + + 수동 입력 및 입력 + + + 인터넷 옵션 + + + 반전된 색 + + + IP + + + 격리된 검색 + + + 일본 IME 설정 + + + 조이스틱 속성 + + + 키보드 + + + 키패드 + + + + + + 언어 + + + 밝은 색 + + + 광원 모드 + + + 위치 + + + 화면 잠금 + + + 돋보기 + + + 메일 - Microsoft Exchange 또는 Windows 메시지 + + + 알려진 네트워크 관리 + + + 선택적 기능 관리 + + + Messaging + + + 데이터 통신 연결 + + + 마이크 + + + Microsoft Mail Post Office + + + 모바일 장치 + + + 모바일 핫스팟 + + + Mono + + + 자세한 내용 + + + 동작 + + + 마우스 + + + 마우스 및 터치 패드 + + + 마우스, 글꼴, 키보드 및 프린터 속성 + + + 마우스 포인터 + + + 멀티미디어 속성 + + + 멀티태스킹 + + + NFC + + + NFC 트랜잭션 + + + 내레이터 + + + 탐색 모음 + + + 네트워크 + + + 네트워크 및 공유 센터 + + + 네트워크 연결 + + + 네트워크 속성 + + + 네트워크 설치 마법사 + + + 네트워크 상태 + + + 야간 모드 + + + 야간 모드 설정 + + + 참고 + + + 모바일 장치를 장치에 연결한 경우에만 사용할 수 있습니다. + + + 고급 그래픽 옵션을 지원하는 장치에서만 사용할 수 있습니다. + + + 배터리가 있는 장치(예: 태블릿)에서만 사용할 수 있습니다. + + + Windows 10, 버전 1809(빌드 17763) 이상에서는 사용되지 않습니다. + + + Dial이 페어링된 경우에만 사용할 수 있습니다. + + + DirectAccess를 사용하도록 설정한 경우에만 사용할 수 있습니다. + + + 고급 디스플레이 옵션을 지원하는 장치에서만 사용할 수 있습니다. + + + 사용자가 WIP에 등록된 경우에만 존재합니다. + + + 아이 트래커 하드웨어가 필요합니다. + + + Microsoft Japan 입력기가 설치된 경우 사용할 수 있습니다. + + + Microsoft Pinyin 입력기가 설치된 경우 사용할 수 있습니다. + + + Microsoft Wubi 입력기가 설치된 경우 사용할 수 있습니다. + + + Mixed Reality 포털 앱이 설치된 경우에만 사용할 수 있습니다. + + + 모바일에서만 사용할 수 있으며 엔터프라이즈에서 프로비전 패키지를 배포한 경우에만 사용할 수 있습니다. + + + Windows 10 버전 1903(빌드 18362)에서 추가되었습니다. + + + Windows 10 버전 2004(빌드 19041)에서 추가되었습니다. + + + 예를 들어, 타사에서 "설정 앱"이 설치된 경우에만 사용할 수 있습니다. + + + 터치 패드 하드웨어가 있는 경우에만 사용할 수 있습니다. + + + 디바이스에 Wi-Fi 어댑터가 있는 경우에만 사용할 수 있습니다. + + + 디바이스는 외부에서 Windows 사용이 지원되어야 합니다. + + + 엔터프라이즈에서 프로비전 패키지를 배포한 경우에만 사용할 수 있습니다. + + + 알림 + + + 알림 및 작업 + + + 숫자 잠금 + + + ODBC 데이터 원본 관리자(32비트) + + + ODBC 데이터 원본 관리자(64비트) + + + 오프라인 파일 + + + 오프라인 맵 + + + 오프라인 지도 - 맵 다운로드 + + + 화면에 + + + OS + + + 기타 장치 + + + 기타 옵션 + + + 다른 사용자 + + + 자녀 보호 + + + 암호 + + + 암호 속성 + + + 펜 및 입력 장치 + + + 펜 및 터치 + + + 펜 및 Windows Ink + + + 주변 사용자 찾기 + + + 성능 정보 및 도구 + + + 사용 권한 및 기록 + + + 개인 설정(범주) + + + 전화 + + + 전화 및 모뎀 + + + 전화 및 모뎀 - 옵션 + + + 전화 통화 + + + 전화 - 기본 앱 + + + 그림 + + + 그림 + + + Pinyin IME 설정 + + + Pinyin IME 설정 - 도메인 어휘집 + + + Pinyin IME 설정 - 키 구성 + + + Pinyin IME 설정 - UDP + + + 게임 전체 화면 재생 + + + Windows 설정을 검색하는 플러그 인 + + + Windows 설정 + + + 전원 및 절전 모드 + + + 전원 옵션 + + + 프레젠테이션 + + + 인쇄 화면 + + + 프린터 + + + 프린터 및 스캐너 + + + 문제 보고서 및 해결 방법 + + + 프로세서 + + + 프로그램 및 기능 + + + 이 PC에 프로젝팅 + + + 프로비전 + + + 근접 연결 + + + 프록시 + + + 빠른 입력 + + + 조용한 순간 게임 + + + 라디오 + + + RAM + + + 인식 + + + 복구 + + + 적목 현상 + + + 빨간색-녹색 + + + 빨강 주 + + + 영역 + + + 지역 및 언어 + + + 지역 서식 지정 + + + 지역 언어 + + + 지역별 설정 속성 + + + RemoteApp 및 데스크톱 연결 + + + 원격 데스크톱 + + + 스캐너 및 카메라 + + + 일정 + + + 예약된 작업 + + + 화면 회전 + + + 스크롤 막대 + + + 스크롤 잠금 + + + SDNS + + + Windows 검색 중 + + + SecureDNS + + + Security Center + + + 보안 프로세서 + + + 세션 정리 + + + 키오스크 설정 + + + 설정 홈페이지 + + + 공유 환경 + + + Wi-Fi + + + 바로 가기 + + + 로그인 옵션 + + + 로그인 옵션 - 동적 잠금 + + + 크기 + + + 사운드 + + + 음성 + + + 음성 인식 + + + 음성 입력 + + + 시작 + + + 시작 위치 + + + 시작 앱 + + + 저장소 + + + 저장소 정책 + + + 저장 공간 센스 + + + 동기화 센터 + + + 설정 동기화 + + + 시스템 + + + 시스템 속성 및 새 하드웨어 추가 마법사 + + + + + + 태블릿 모드 + + + 태블릿 PC 설정 + + + 이야기 + + + Cortana에 말하기 + + + 작업 표시줄 + + + 작업 표시줄 색 + + + 작업 + + + 팀 회의 + + + 팀 장치 관리 + + + 텍스트 음성 변환 + + + 테마 + + + 타임라인 + + + 터치 + + + 터치 피드백 + + + 터치 패드 + + + 투명도 + + + 문제 해결 + + + TruePlay + + + 입력 + + + 제거 + + + USB + + + 사용자 계정 + + + 버전 + + + 비디오 재생 + + + 비디오 + + + 가상 데스크톱 + + + 바이러스 + + + 음성 활성화 + + + 볼륨 + + + VPN + + + 배경 화면 + + + 워머 색 + + + 시작 센터 + + + 시작 화면 + + + + + + Wi-Fi + + + Wi-Fi 통화 + + + Wi-Fi 설정 + + + 창 테두리 + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows 방화벽 + + + Windows Hello 설정 - Face + + + Windows Hello 설정 - 지문 + + + Windows 참가자 프로그램 + + + Windows 모바일 센터 + + + Windows Search + + + Windows 보안 + + + Windows 업데이트 + + + Windows 업데이트 - 고급 옵션 + + + Windows 업데이트 - 업데이트 확인 + + + Windows 업데이트 - 다시 시작 옵션 + + + Windows 업데이트 - 선택적 업데이트 보기 + + + Windows 업데이트 - 업데이트 기록 보기 + + + 무선 + + + 작업 공간 + + + 작업 공간 프로비전 + + + Wubi IME 설정 + + + Wubi IME 설정 - UDP + + + Xbox 네트워킹 + + + 사용자 정보 + + + 확대/축소 + + + + + + + + + bpmf + + + 호출 + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.pl-PL.resx b/Properties/Resources.pl-PL.resx new file mode 100644 index 00000000000..9bd9caf91ee --- /dev/null +++ b/Properties/Resources.pl-PL.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Informacje + + + Dostęp do zasobów służbowych + + + Opcje ułatwień dostępu + + + Aplikacje dla akcesoriów + + + Informacje o koncie + + + Konta + + + Centrum akcji + + + Aktywacja + + + Historia działań + + + Dodaj sprzęt + + + Dodaj/Usuń programy + + + Dodaj swój telefon + + + Narzędzia administracyjne + + + Zaawansowane ustawienia wyświetlania + + + Grafika zaawansowana + + + Identyfikator reklamy + + + Tryb samolotowy + + + Alt+Tab + + + Nazwy alternatywne + + + Animacje + + + Kolor aplikacji + + + Panel sterowania + + + Diagnostyka aplikacji + + + Funkcje aplikacji + + + Ustawienia systemowe + + + Preferencje urządzeń i głośności aplikacji + + + Aplikacja + + + Aplikacje i funkcje + + + Aplikacje dla witryn internetowych + + + Obszar + + + Konta + + + Narzędzia administracyjne + + + Wygląd i personalizacja + + + Aplikacje + + + Zegar i region + + + Cortana + + + Urządzenia + + + Ułatwienia dostępu + + + Dodatki + + + Gry + + + Sprzęt i dźwięk + + + Strona główna + + + Rzeczywistość mieszana + + + Sieć i Internet + + + Personalizacja + + + Telefon + + + Prywatność + + + Programy + + + SurfaceHub + + + System + + + System i zabezpieczenia + + + Czas i język + + + Aktualizacja i zabezpieczenia + + + Konta użytkowników + + + Przypisany dostęp + + + Dźwięk + + + Alerty dźwiękowe + + + Dźwięk i mowa + + + Autoodtwarzanie + + + Automatyczne pobieranie plików + + + Tło + + + Aplikacje w tle + + + Kopia zapasowa + + + Kopia zapasowa i przywracanie + + + Oszczędzanie baterii + + + Ustawienia oszczędzania baterii + + + Szczegóły używania oszczędzania baterii + + + Użycie baterii + + + Urządzenia biometryczne + + + Szyfrowanie dysków funkcją BitLocker + + + Jasny niebieski + + + Niebiesko-żółty + + + Bluetooth + + + Urządzenia Bluetooth + + + IME Bopomofo + + + Emisja + + + Kalendarz + + + Historia połączeń + + + Aparat + + + IME Cangjie + + + Caps Lock + + + Sieć komórkowa i karta SIM + + + Wybierz foldery, które będą wyświetlane w menu Start + + + Usługa klienta dla systemu NetWare + + + Schowek + + + Napisy + + + Filtry kolorów + + + Zarządzanie kolorami + + + Kolory + + + Polecenie + + + Połączone urządzenia + + + Kontakty + + + Polecenie kopiowania + + + Izolacja rdzenia + + + Cortana + + + Cortana na moich urządzeniach + + + Cortana — język + + + Menedżer poświadczeń + + + Różne urządzenia + + + Urządzenia niestandardowe + + + DNS + + + Kolor ciemny + + + Tryb ciemny + + + Użycie danych + + + Data i godzina + + + Aplikacje domyślne + + + Domyślna kamera + + + Domyślna lokalizacja + + + Programy domyślne + + + Domyślne lokalizacje zapisywania + + + Optymalizacja dostarczania + + + Kompozycje pulpitu + + + Menedżer urządzeń + + + Urządzenia i drukarki + + + DHCP + + + Połączenie telefoniczne + + + Dostęp bezpośredni + + + Otwórz bezpośrednio telefon + + + Wyświetl + + + Właściwości wyświetlania + + + Dokumenty + + + Duplikowanie ekranu + + + W tych godzinach + + + Centrum ułatwień dostępu + + + Edycja + + + Poczta e-mail + + + Konta e-mail i aplikacji + + + Szyfrowanie + + + Środowisko + + + Sieć Ethernet + + + Exploit Protection + + + Dodatki + + + Sterowanie wzrokiem + + + Moduł śledzący ruch gałek ocznych + + + Rodzina i inne osoby + + + Opinie i diagnostyka + + + System plików + + + Szybkie znajdowanie + + + Znajdowanie mojego urządzenia + + + Zapora + + + Funkcja koncentracji uwagi — godziny ciszy + + + Funkcja koncentracji uwagi — momenty ciszy + + + Opcje folderów + + + Czcionki + + + Dla deweloperów + + + Pasek gry + + + Kontrolery gier + + + DVR z gry + + + Tryb gry + + + Brama + + + Ogólne + + + Pobieranie programów + + + Wprowadzenie + + + Przegląd + + + Ustawienia grafiki + + + Odcienie szarości + + + Zielony tydzień + + + Wyświetlanie zestawu słuchawkowego + + + Wysoki kontrast + + + Dźwięk holograficzny + + + Środowisko holograficzne + + + Holograficzny zestaw słuchawkowy + + + Zarządzanie holograficzne + + + Grupa domowa + + + Identyfikator + + + Obraz + + + Opcje indeksowania + + + Podczerwień + + + Pisanie odręczne i pisanie na klawiaturze + + + Opcje internetowe + + + Odwrócone kolory + + + Adres IP + + + Przeglądanie izolowane + + + Ustawienia edytora IME dla Japonii + + + Właściwości joysticka + + + Klawiatura + + + Klawiatura numeryczna + + + Klucze + + + Język + + + Jasny kolor + + + Tryb jasny + + + Lokalizacja + + + Ekran blokady + + + Lupa + + + Poczta — Microsoft Exchange lub Windows Messaging + + + Zarządzanie znanymi sieciami + + + Zarządzanie funkcjami opcjonalnymi + + + Obsługa wiadomości + + + Połączenie taryfowe + + + Mikrofon + + + Microsoft Mail Post Office + + + Urządzenia przenośne + + + Hotspot mobilny + + + Mono + + + Więcej szczegółów + + + Ruch + + + Mysz + + + Mysz i płytka dotykowa + + + Właściwości myszy, czcionek, klawiatury i drukarek + + + Wskaźnik myszy + + + Właściwości multimediów + + + Wielozadaniowość + + + NFC + + + Transakcje NFC + + + Narrator + + + Pasek nawigacyjny + + + Sieć + + + Centrum sieci i udostępniania + + + Połączenie sieciowe + + + Właściwości sieci + + + Kreator konfiguracji sieci + + + Stan sieci + + + Wyświetlanie nocne + + + Ustawienia wyświetlania nocnego + + + Uwaga + + + Dostępne tylko wtedy, gdy z urządzeniem połączono urządzenie przenośne. + + + Dostępne tylko na urządzeniach obsługujących zaawansowane opcje grafiki. + + + Dostępne tylko na urządzeniach z baterią, takich jak tablet. + + + Wycofano z systemu Windows 10 w wersji 1809 (kompilacja 17763) i nowszych. + + + Dostępne tylko wtedy, gdy sparowano wybieranie numeru. + + + Dostępne tylko wtedy, gdy jest włączona funkcja DirectAccess. + + + Dostępne tylko na urządzeniach obsługujących zaawansowane opcje wyświetlania. + + + Dostępne tylko wtedy, gdy użytkownik jest zarejestrowany w funkcji WIP. + + + Wymaga sprzętu modułu śledzenia oczu. + + + Dostępne, jeśli jest zainstalowany edytor IME Microsoft Japan. + + + Dostępne, jeśli jest zainstalowany edytor IME Microsoft Pinyin. + + + Dostępne, jeśli jest zainstalowany edytor IME Microsoft Wubi. + + + Dostępne tylko wtedy, gdy zainstalowano aplikację portalu Rzeczywistość mieszana. + + + Dostępne tylko na urządzeniu przenośnym, jeśli firma wdrożyła pakiet inicjowania obsługi. + + + Dodano w systemie Windows 10 w wersji 1903 (kompilacja 18362). + + + Dodano w systemie Windows 10 w wersji 2004 (kompilacja 19041). + + + Dostępne tylko wtedy, gdy są zainstalowane „aplikacje ustawień”, na przykład przez inną firmę. + + + Dostępne tylko wtedy, gdy jest obecny sprzęt płytki dotykowej. + + + Dostępne tylko wtedy, gdy urządzenie ma kartę sieci Wi-Fi. + + + Urządzenie musi obsługiwać technologię Windows Anywhere. + + + Dostępne tylko wtedy, gdy przedsiębiorstwo wdrożyło pakiet inicjowania obsługi. + + + Powiadomienia + + + Powiadomienia i akcje + + + Num Lock + + + Administrator źródła danych ODBC (32-bitowe) + + + Administrator źródła danych ODBC (64-bitowe) + + + Pliki trybu offline + + + Mapy offline + + + Mapy offline — pobieranie map + + + Ekranowa + + + System operacyjny + + + Inne urządzenia + + + Inne opcje + + + Inni użytkownicy + + + Kontrola rodzicielska + + + Hasło + + + Właściwości hasła + + + Pióro i urządzenia wejściowe + + + Pióro i dotyk + + + Pióro i funkcja Windows Ink + + + Osoby w pobliżu + + + Narzędzia i informacje o wydajności + + + Uprawnienia i historia + + + Personalizacja (kategoria) + + + Telefon + + + Telefon i modem + + + Telefon i modem — opcje + + + Rozmowy telefoniczne + + + Telefon — aplikacje domyślne + + + Obraz + + + Obrazy + + + Ustawienia edytora IME Pinyin + + + Ustawienia edytora IME Pinyin — Leksykon domeny + + + Ustawienia edytora IME Pinyin — Konfiguracja klucza + + + Ustawienia edytora IME Pinyin — UDP + + + Granie w grę na pełnym ekranie + + + Wtyczka do wyszukiwania ustawień systemu Windows + + + Ustawienia systemu Windows + + + Zasilanie i uśpienie + + + Opcje zasilania + + + Prezentacja + + + Print Screen + + + Drukarki + + + Drukarki i skanery + + + Raporty i rozwiązania problemów + + + Procesor + + + Programy i funkcje + + + Projekcja na tym komputerze + + + Inicjowanie obsługi + + + Bliskość + + + Serwer proxy + + + Quickime + + + Gra w ciche chwile + + + Urządzenia radiowe + + + Pamięć RAM + + + Rozpoznawanie + + + Odzyskiwanie + + + Czerwone oczy + + + Czerwony-zielony + + + Czerwony tydzień + + + Region + + + Region i język + + + Formatowanie regionu + + + Język regionalny + + + Właściwości ustawień regionalnych + + + Połączenia funkcji RemoteApp usług terminalowych i pulpitu + + + Pulpit zdalny + + + Skanery i aparaty fotograficzne + + + Zaplanowano + + + Zaplanowane zadania + + + Obrót ekranu + + + Paski przewijania + + + Blokada przewijania + + + SDNS + + + Wyszukiwanie w systemie Windows + + + SecureDNS + + + Security Center + + + Procesor zabezpieczeń + + + Czyszczenie sesji + + + Konfigurowanie kiosku + + + Strona główna ustawień + + + Udostępnione środowiska + + + wifi + + + Skróty + + + Opcje logowania + + + Opcje logowania — blokada dynamiczna + + + Rozmiar + + + Dźwięk + + + Mowa + + + Rozpoznawanie mowy + + + Dyktowanie + + + Uruchamianie + + + Uruchamianie miejsc + + + Aplikacje startowe + + + Magazyn + + + Zasady magazynu + + + Czujnik pamięci + + + Centrum synchronizacji + + + Synchronizuj ustawienia + + + System + + + Kreator właściwości systemowych i dodawania nowego sprzętu + + + Karta + + + Tryb tabletu + + + Ustawienia komputera typu tablet + + + Talk + + + Porozmawiaj z Cortaną + + + Pasek zadań + + + Kolor paska zadań + + + Zadania + + + Konferencje zespołu + + + Zarządzanie urządzeniami zespołu + + + Zamiana tekstu na mowę + + + Motywy + + + Oś czasu + + + Dotyk + + + Opinie dotyczące dotyku + + + Płytka dotykowa + + + Przezroczystość + + + Rozwiązywanie problemów + + + TruePlay + + + Wpisywanie + + + Odinstalowywanie + + + USB + + + Konta użytkowników + + + Wersja + + + Odtwarzanie wideo + + + Filmy + + + Pulpity wirtualne + + + Wirus + + + Aktywacja głosowa + + + Głośność + + + VPN + + + Tapeta + + + Cieplejszy kolor + + + Centrum powitalne + + + Ekran powitalny + + + Kółko + + + Wi-Fi + + + Połączenie w sieci Wi-Fi + + + Ustawienia sieci Wi-Fi + + + Obramowanie okna + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Zapora systemu Windows + + + Instalator funkcji Windows Hello — rozpoznawanie twarzy + + + Instalator funkcji Windows Hello — odcisk palca + + + Niejawny program testów systemu Windows + + + Centrum mobilności w systemie Windows + + + Wyszukiwanie w systemie Windows + + + Zabezpieczenia systemu Windows + + + Windows Update + + + Windows Update — opcje zaawansowane + + + Windows Update — sprawdzanie aktualizacji + + + Windows Update - opcje ponownego uruchamiania + + + Windows Update — wyświetlanie aktualizacji opcjonalnych + + + Windows Update-wyświetlanie historii aktualizacji + + + Sieć bezprzewodowa + + + Miejsce pracy + + + Inicjowanie obsługi miejsca pracy + + + Ustawienia Wubi edytora IME + + + Ustawienia Wubi edytora IME — UDP + + + Sieć Xbox + + + Twoje informacje + + + Powiększenie + + + + + + + + + bpmf + + + rozmowy + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.pt-BR.resx b/Properties/Resources.pt-BR.resx new file mode 100644 index 00000000000..7f2e49f44c3 --- /dev/null +++ b/Properties/Resources.pt-BR.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Sobre + + + Acesse o trabalho ou a escola + + + Opções de acessibilidade + + + Aplicativos para acessório + + + Informações da conta + + + Contas + + + Central de Ações + + + Ativação + + + Histórico de atividades + + + Adicionar Hardware + + + Adicionar/Remover Programas + + + Adicionar seu telefone + + + Ferramentas Administrativas + + + Configurações de vídeo avançadas + + + Gráficos avançados + + + Identificação do Anúncio + + + Modo avião + + + Alt+Tab + + + Nomes alternativos + + + Animações + + + Cor do aplicativo + + + Painel de Controle + + + Diagnóstico do aplicativo + + + Recursos do aplicativo + + + Configurações do sistema + + + Preferências do dispositivo e volume do aplicativo + + + Aplicativo + + + Aplicativos e Recursos + + + Aplicativos para sites + + + Área + + + Contas + + + Ferramentas Administrativas + + + Aparência e Personalização + + + Aplicativos + + + Relógio e Região + + + Cortana + + + Dispositivos + + + Facilidade de acesso + + + Extras + + + Jogos + + + Hardware e Som + + + Home page + + + Realidade misturada + + + Rede e Internet + + + Personalização + + + Telefone + + + Privacidade + + + Programas + + + SurfaceHub + + + Sistema + + + Sistema e Segurança + + + Hora e idioma + + + Atualização e segurança + + + Contas de usuário + + + Acesso atribuído + + + Áudio + + + Alertas de áudio + + + Áudio e fala + + + Reprodução Automática + + + Downloads automáticos de arquivos + + + Plano de fundo + + + Aplicativos em Segundo Plano + + + Backup + + + Backup e restauração + + + Economia de Bateria + + + Configurações de Economia de Bateria + + + Detalhes de uso da economia de bateria + + + Uso da bateria + + + Dispositivos biométricos + + + Criptografia de Unidade BitLocker + + + Luz azul + + + Azul-amarelo + + + Bluetooth + + + Dispositivos Bluetooth + + + IME Bopomofo + + + Transmissão + + + Calendário + + + Histórico de chamadas + + + Câmera + + + IME Cangjie + + + Caps Lock + + + Celular e SIM + + + Escolher quais pastas aparecem no Início + + + Serviço de cliente para NetWare + + + Área de transferência + + + Legendas ocultas + + + Filtros de cores + + + Gerenciamento de cores + + + Cores + + + Comando + + + Dispositivos Conectados + + + Contatos + + + Copiar comando + + + Isolamento do Núcleo + + + Cortana + + + Cortana nos meus dispositivos + + + Cortana - Idioma + + + Gerenciador de credenciais + + + Dispositivo cruzado + + + Dispositivos personalizados + + + DNS + + + Cor escura + + + Modo escuro + + + Uso de dados + + + Data e hora + + + Aplicativos padrão + + + Câmera padrão + + + Local Padrão + + + Programas padrão + + + Local de salvamento padrão + + + Otimização de Entrega + + + Temas da área de trabalho + + + Gerenciador de dispositivos + + + Dispositivos e impressoras + + + DHCP + + + Discagem + + + Acesso direto + + + Abrir diretamente seu telefone + + + Exibir + + + Exibir propriedades + + + Documentos + + + Como duplicar minha exibição + + + Durante essas horas + + + Centro de facilidade de acesso + + + Edição + + + Email + + + Contas de email e aplicativo + + + Criptografia + + + Ambiente + + + Ethernet + + + Exploit Protection + + + Extras + + + Controle com os olhos + + + Rastreador ocular + + + Família e outras pessoas + + + Comentários e diagnóstico + + + Sistema de arquivos + + + FindFast + + + Localizar Meu Dispositivo + + + Firewall + + + Assistente de concentração – Horas silenciosas + + + Assistente de concentração – Momentos silenciosos + + + Opções de pasta + + + Fontes + + + Para desenvolvedores + + + Game Bar + + + Controles de jogos + + + DVR de Jogo + + + Modo de Jogo + + + Gateway + + + Geral + + + Obter programas + + + Introdução + + + Resumo + + + Configurações de gráficos + + + Escala de cinza + + + Semana verde + + + Exibição de fone de ouvido + + + Alto contraste + + + Áudio do Holographic + + + Ambiente do Holographic + + + Headset do Holographic + + + Gerenciamento do Holographic + + + Grupo doméstico + + + ID + + + Imagem + + + Opções de indexação + + + Infravermelho + + + Escrita à tinta e digitação + + + Opções de Internet + + + Cores invertidas + + + IP + + + Navegação isolada + + + Configurações do IME do Japão + + + Propriedades do joystick + + + Teclado + + + Teclado + + + Chaves + + + Linguagem + + + Cor clara + + + Modo claro + + + Localização + + + Tela de bloqueio + + + Lupa + + + Email – Microsoft Exchange ou Mensagens do Windows + + + Gerenciar redes conhecidas + + + Gerenciar recursos opcionais + + + Mensagens + + + Conexão limitada + + + Microfone + + + Caixa Postal de Email da Microsoft + + + Dispositivos móveis + + + Hotspot móvel + + + Mono + + + Mais detalhes + + + Movimento + + + Mouse + + + Mouse e touchpad + + + Propriedades de Mouse, Fontes, Teclado e Impressoras + + + Ponteiro do mouse + + + Propriedades de multimídia + + + Multitarefa + + + NFC + + + Transações NFC + + + Narrador + + + Barra de navegação + + + Rede + + + Central de rede e compartilhamento + + + Conexão de rede + + + Propriedades de rede + + + Assistente de Instalação de Rede + + + Status da rede + + + Luz noturna + + + Configurações de luz noturna + + + Observação + + + Somente disponível quando você conectar um dispositivo móvel ao dispositivo. + + + Disponível somente em dispositivos que suportam opções gráficas avançadas. + + + Somente disponível em dispositivos que têm uma bateria, como um Tablet. + + + Preterido no Windows 10, versão 1809 (build 17763) e posteriores. + + + Somente disponível se a Discagem estiver emparelhada. + + + Somente disponível se o DirectAccess estiver habilitado. + + + Somente disponível em dispositivos que suportam opções de exibição avançadas. + + + Presente somente se o usuário estiver registrado no WIP. + + + Requer hardware de rastreamento ocular. + + + Disponível se o IME Japão da Microsoft estiver instalado. + + + Disponível se o IME Pinyin da Microsoft estiver instalado. + + + Disponível se o IME Wubi da Microsoft estiver instalado. + + + Somente disponível se o aplicativo Portal de Realidade Misturada estiver instalado. + + + Somente disponível em dispositivos móveis e se a empresa tiver implantado um pacote de provisionamento. + + + Adicionado ao Windows 10, versão 1903 (build 18362). + + + Adicionado ao Windows 10, versão 2004 (build 19041). + + + Somente disponível se os "aplicativos de configurações" forem instalados, por exemplo, por terceiros. + + + Somente disponível se o hardware do touchpad estiver presente. + + + Somente disponível se o dispositivo tiver um adaptador Wi-Fi. + + + O dispositivo deve ser compatível com o Windows Anywhere. + + + Somente disponível se a empresa tiver implantado um pacote de provisionamento. + + + Notificações + + + Notificações e ações + + + Bloqueio Numérico + + + Administrador da Fonte de Dados ODBC (32 bits) + + + Administrador da Fonte de Dados ODBC (64 bits) + + + Arquivos offline + + + Mapas Offline + + + Mapas Offline - Baixar mapas + + + Na tela + + + SO + + + Outros dispositivos + + + Outras opções + + + Outros usuários + + + Controles dos pais + + + Senha + + + Propriedades da senha + + + Caneta e dispositivos de entrada + + + Caneta e toque + + + Caneta e Windows Ink + + + Pessoas ao meu Redor + + + Informações e ferramentas de desempenho + + + Permissões e histórico + + + Personalização (categoria) + + + Telefone + + + Telefone e modem + + + Telefone e modem - Opções + + + Chamadas telefônicas + + + Telefone - Aplicativos padrão + + + Imagem + + + Imagens + + + Configurações do IME Pinyin + + + Configurações do IME pinyin – léxico de domínio + + + Configurações do IME Pinyin - Configuração das teclas + + + Configurações do IME Pinyin - UDP + + + Reproduzindo um jogo em tela inteira + + + Plug-in para pesquisar as configurações do Windows + + + Configurações do Windows + + + Energia e suspensão + + + Opções de energia + + + Apresentação + + + Imprimir tela + + + Impressoras + + + Impressoras e scanners + + + Soluções e relatórios de problemas + + + Processador + + + Programas e recursos + + + Projeção para este computador + + + Provisionamento + + + Proximidade + + + Proxy + + + Quickime + + + Jogo em momentos silenciosos + + + Rádios + + + RAM + + + Reconhecimento + + + Recuperação + + + Olho vermelho + + + Vermelho-Verde + + + Semana vermelha + + + Região + + + Região e idioma + + + Formatação de região + + + Idioma regional + + + Propriedades de configurações regionais + + + Conexões RemoteApp e área de trabalho + + + Área de Trabalho Remota + + + Scanners e câmeras + + + Agendado + + + Tarefas agendadas + + + Rotação de Tela + + + Barras de rolagem + + + Scroll Lock + + + SDNS + + + Pesquisando no Windows + + + SecureDNS + + + Central de Segurança + + + Processador de Segurança + + + Limpeza da sessão + + + Configurar um quiosque + + + Home page das configurações + + + Experiências compartilhadas + + + wifi + + + Atalhos + + + Opções de entrada + + + Opções de entrada - Bloqueio dinâmico + + + Tamanho + + + Som + + + Fala + + + Reconhecimento de fala + + + Digitação de fala + + + Início + + + Locais de início + + + Aplicativos de inicialização + + + Armazenamento + + + Políticas de armazenamento + + + Sensor de Armazenamento + + + Central de sincronização + + + Sincronizar suas configurações + + + Sistema + + + Propriedades do sistema e assistente para Adicionar Novo Hardware + + + Guia + + + Modo tablet + + + Configurações do Tablet PC + + + Conversa + + + Converse com a Cortana + + + Barra de tarefas + + + Cor da barra de tarefas + + + Tarefas + + + Conferência em Equipe + + + Gerenciamento de dispositivos da equipe + + + Conversão de texto em fala + + + Temas + + + Linha do Tempo + + + Toque + + + Comentários por toque + + + Touchpad + + + Transparência + + + Solução de problemas + + + TruePlay + + + Digitação + + + Desinstalar + + + USB + + + Contas de usuário + + + Versão + + + Reprodução de vídeo + + + Vídeos + + + Áreas de Trabalho Virtuais + + + Vírus + + + Ativação por voz + + + Volume + + + VPN + + + Papel de parede + + + Cor mais quente + + + Centro de boas-vindas + + + Tela de boas-vindas + + + Roda + + + Wi-Fi + + + Chamada de Wi-Fi + + + Configurações de Wi-Fi + + + Borda da janela + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Firewall do Windows + + + Configuração do Windows Hello - Detecção Facial + + + Configuração do Windows Hello - Impressão digital + + + Programa Windows Insider + + + Centro de Mobilidade do Windows + + + Windows Search + + + Segurança do Windows + + + Windows Update + + + Windows Update - Opções Avançadas + + + Windows Update - Verificar se há atualizações + + + Windows Update - Opções de Reinicialização + + + Windows Update - Exibir atualizações opcionais + + + Windows Update - Exibir histórico de atualizações + + + Sem fio + + + Local de trabalho + + + Provisionamento do local de trabalho + + + Definições IME Wubi + + + Configurações do IME Wubi-UDP + + + Rede Xbox + + + Suas informações + + + Zoom + + + + + + + + + bpmf + + + chamando + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.pt-PT.resx b/Properties/Resources.pt-PT.resx new file mode 100644 index 00000000000..8f8023c1f2b --- /dev/null +++ b/Properties/Resources.pt-PT.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Sobre + + + Aceder a trabalho ou escola + + + Opções de Acessibilidade + + + Aplicações de acessórios + + + Informações da conta + + + Contas + + + Centro de Ações + + + Ativação + + + Histórico da atividade + + + Adicionar Hardware + + + Adicionar/Remover Programas + + + Adicionar o seu telemóvel + + + Ferramentas Administrativas + + + Definições avançadas de visualização + + + Gráficos avançados + + + ID de Publicidade + + + Modo de avião + + + Alt+Tab + + + Nomes alternativos + + + Animações + + + Cor da aplicação + + + Painel de Controlo + + + Diagnóstico de aplicações + + + Funcionalidades da aplicação + + + Definições do sistema + + + Volume das aplicações e preferências do dispositivo + + + Aplicação + + + Aplicações e Funcionalidades + + + Aplicações para sites + + + Área + + + Contas + + + Ferramentas Administrativas + + + Aspecto e Personalização + + + Aplicações + + + Relógio e Região + + + Cortana + + + Dispositivos + + + Facilidade de acesso + + + Extras + + + Jogos + + + Hardware e Som + + + Home page + + + Realidade mista + + + Rede e Internet + + + Personalização + + + Telefone + + + Privacidade + + + Programas + + + SurfaceHub + + + Sistema + + + Sistema e Segurança + + + Hora e idioma + + + Atualização e segurança + + + Contas de utilizador + + + Acesso atribuído + + + Áudio + + + Alertas de áudio + + + Áudio e voz + + + Reprodução Automática + + + Transferências automáticas de ficheiros + + + Fundo + + + Aplicações em Segundo Plano + + + Cópia de segurança + + + Cópia de Segurança e Restauro + + + Poupança de bateria + + + Definições de Poupança de Bateria + + + Detalhes de utilização da poupança de bateria + + + Utilização da bateria + + + Dispositivos Biométricos + + + Encriptação de Unidade BitLocker + + + Luz azul + + + Azul-amarelo + + + Bluetooth + + + Dispositivos Bluetooth + + + IME Bopomofo + + + Transmissão + + + Calendário + + + Histórico de chamadas + + + Câmara + + + IME Cangjie + + + Caps Lock + + + Celular e SIM + + + Escolha as pastas que irão aparecer no Início + + + Serviço ao cliente para NetWare + + + Área de transferência + + + Legendagem de áudio + + + Filtros de cor + + + Gestão de cores + + + Cores + + + Comando + + + Dispositivos Ligados + + + Contactos + + + Copiar comando + + + Isolamento do Núcleo + + + Cortana + + + Cortana nos meus dispositivos + + + Cortana - Idioma + + + Gestor de credenciais + + + Vários dispositivos + + + Dispositivos personalizados + + + DNS + + + Cor escura + + + Modo escuro + + + Utilização de dados + + + Data e hora + + + Aplicações predefinidas + + + Câmara predefinida + + + Localização predefinida + + + Programas predefinidos + + + Localizações para Guardar Predefinidas + + + Otimização da Entrega + + + Temas do ambiente de trabalho + + + Gestor de dispositivos + + + Dispositivos e impressoras + + + DHCP + + + Dial-up + + + Acesso direto + + + Abrir diretamente o telefone + + + Ecrã + + + Propriedades do ecrã + + + Documentos + + + A duplicar o meu ecrã + + + Durante estas horas + + + Centro de facilidade de acesso + + + Edição + + + E-mail + + + Contas de e-mail e aplicações + + + Encriptação + + + Ambiente + + + Ethernet + + + Exploit Protection + + + Extras + + + Controlo ocular + + + Rastreador ocular + + + Família e outras pessoas + + + Feedback e diagnósticos + + + Sistema de ficheiros + + + FindFast + + + Localizar o meu Dispositivo + + + Firewall + + + Auxiliar de concentração – Horas de descanso + + + Auxiliar de concentração – Momentos de pausa + + + Opções de pasta + + + Tipos de letra + + + Para programadores + + + Game bar + + + Controladores de jogo + + + Gravador de jogo + + + Modo Jogo + + + Gateway + + + Geral + + + Obter programas + + + Introdução + + + Reprodução Automática + + + Definições de gráficos + + + Escala de cinzentos + + + Semana verde + + + Ecrã do headset de realidade mista + + + Alto contraste + + + Áudio holográfico + + + Ambiente Holográfico + + + Headset Holográfico + + + Gestão Holográfica + + + Grupo doméstico + + + ID + + + Imagem + + + Opções de indexação + + + Infravermelhos + + + Tinta digital e escrita + + + Opções de Internet + + + Cores invertidas + + + IP + + + Navegação Isolada + + + Definições de IME Japão + + + Propriedades do joystick + + + Teclado + + + Teclado numérico + + + Chaves + + + Idioma + + + Cor clara + + + Modo claro + + + Localização + + + Ecrã de bloqueio + + + Lupa + + + Correio – Microsoft Exchange ou Mensagens do Windows + + + Gerir redes conhecidas + + + Gerir funcionalidades opcionais + + + Mensagens + + + Ligação com tráfego limitado + + + Microfone + + + Microsoft Mail Post Office + + + Dispositivos móveis + + + Hotspot móvel + + + Mono + + + Mais detalhes + + + Movimento + + + Rato + + + Rato e touchpad + + + Propriedades do Rato, Tipos de Letra, Teclado e Impressoras + + + Ponteiro do rato + + + Propriedades multimédia + + + Multitasking + + + NFC + + + Transações NFC + + + Narrador + + + Barra de navegação + + + Rede + + + Centro de rede e partilha + + + Ligação de rede + + + Propriedades da rede + + + Assistente de Configuração de Rede + + + Estado da rede + + + Luz noturna + + + Definições de luz noturna + + + Nota + + + Disponível apenas quando tiver ligado um dispositivo móvel ao seu dispositivo. + + + Disponível apenas em dispositivos que suportam opções de gráficos avançadas. + + + Disponível apenas em dispositivos com bateria, como um tablet. + + + Preterido no Windows 10, versão 1809 (compilação 17763) e posterior. + + + Só disponível se o Dispositivo de marcação estiver emparelhado. + + + Disponível apenas se o DirectAccess estiver ativado. + + + Disponível apenas em dispositivos que suportam opções de apresentação avançadas. + + + Presente apenas se o utilizador estiver inscrito no WIP. + + + Requer hardware de rastreio ocular. + + + Disponível se o editor de métodos de entrada do Japão da Microsoft estiver instalado. + + + Disponível se o editor de métodos de entrada Pinyin da Microsoft estiver instalado. + + + Disponível se o editor de métodos de entrada Wubi da Microsoft estiver instalado. + + + Disponível apenas se a aplicação Portal de Realidade Mista estiver instalada. + + + Disponível apenas em dispositivos móveis e se a empresa tiver implementado um pacote de aprovisionamento. + + + Adicionado no Windows 10, versão 1903 (compilação 18362). + + + Adicionado no Windows 10, versão 2004 (compilação 19041). + + + Só disponível se estiverem instaladas, por exemplo, “aplicações de definições” de terceiros. + + + Disponível apenas se estiver presente hardware de touchpad. + + + Disponível apenas se o dispositivo tiver um adaptador de Wi-Fi. + + + O dispositivo deve ter a capacidade Windows Anywhere. + + + Disponível apenas se a empresa tiver implementado um pacote de aprovisionamento. + + + Notificações + + + Notificações e ações + + + Bloqueio Numérico + + + Administrador da Origem de Dados ODBC (32 bits) + + + Administrador da Origem de Dados ODBC (64 bits) + + + Ficheiros offline + + + Mapas Offline + + + Mapas Offline – Transferir mapas + + + No ecrã + + + SO + + + Outros dispositivos + + + Outras opções + + + Outros utilizadores + + + Controlos parentais + + + Palavra-passe + + + Propriedades da palavra-passe + + + Dispositivos de caneta e entrada + + + Caneta e toque + + + Caneta e Windows Ink + + + Pessoas Perto de Mim + + + Informações e ferramentas de desempenho + + + Permissões e histórico + + + Personalização (categoria) + + + Telefone + + + Telefone e modem + + + Telefone e modem – Opções + + + Chamadas telefónicas + + + Telefone – Aplicações predefinidas + + + Imagem + + + Imagens + + + Definições IME Pinyin + + + Definições de IME Pinyin – léxico de domínio + + + Definições de IME Pinyin – Configuração de teclas + + + Definições IME Pinyin – UDP + + + A jogar em ecrã inteiro + + + Plug-in para pesquisa de definições do Windows + + + Definições do Windows + + + Energia e suspensão + + + Opções de energia + + + Apresentação + + + Print screen + + + Impressoras + + + Impressoras e scanners + + + Relatórios e soluções de problemas + + + Processador + + + Programas e funcionalidades + + + A projetar neste PC + + + A aprovisionar + + + Proximidade + + + Proxy + + + QuickTime + + + Jogo de momentos de pausa + + + Rádios + + + RAM + + + Reconhecimento + + + Recuperação + + + Olhos vermelhos + + + Vermelho-verde + + + Semana vermelha + + + Região + + + Região e idioma + + + Formatação da região + + + Idioma regional + + + Propriedades de definições regionais + + + Ligações RemoteApp e Ambientes de Trabalho + + + Ambiente de Trabalho Remoto + + + Scanners e câmaras + + + Agendado + + + Tarefas agendadas + + + Rotação do ecrã + + + Barras de deslocamento + + + Bloqueio de deslocamento + + + SDNS + + + A pesquisar no Windows + + + SecureDNS + + + Centro de Segurança + + + Processador de Segurança + + + Limpeza da sessão + + + Configurar um quiosque + + + Página inicial de definições + + + Experiências partilhadas + + + Wi-Fi + + + Atalhos + + + Opções de início de sessão + + + Opções de início de sessão – Bloqueio dinâmico + + + Tamanho + + + Som + + + Voz + + + Reconhecimento de voz + + + Escrita por voz + + + Iniciar + + + Locais de início + + + Aplicações de arranque + + + Armazenamento + + + Políticas de armazenamento + + + Sensor de Armazenamento + + + Centro de sincronização + + + Sincronizar as suas definições + + + Sistema + + + Propriedades do sistema e assistente para Adicionar Novo Hardware + + + Separador + + + Modo tablet + + + Definições do tablet PC + + + Conversa + + + Falar com a Cortana + + + Barra de tarefas + + + Cor da barra de tarefas + + + Tarefas + + + Conferência de Equipa + + + Gestão de dispositivos de equipa + + + Conversão de texto em voz + + + Temas + + + Linha cronológica + + + Toque + + + Feedback de toque + + + Touchpad + + + Transparência + + + Resolução de Problemas + + + TruePlay + + + Escrita + + + Desinstalar + + + USB + + + Contas de utilizador + + + Versão + + + Reprodução de vídeo + + + Vídeos + + + Ambientes de Trabalho Virtuais + + + Vírus + + + Ativação por voz + + + Volume + + + VPN + + + Padrão de fundo + + + Cor mais quente + + + Centro de boas-vindas + + + Ecrã de boas-vindas + + + Roda + + + Wi-Fi + + + Chamadas Wi-Fi + + + Definições de Wi-Fi + + + Limite da janela + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Firewall do Windows + + + Configuração do Windows Hello – Face + + + Configuração do Windows Hello – Impressão digital + + + Programa Windows Insider + + + Windows Mobility Center + + + Windows search + + + Segurança do Windows + + + Windows Update + + + Windows Update – Opções avançadas + + + Windows Update – Verificar se há atualizações + + + Windows Update – Opções de reinício + + + Windows Update – Ver atualizações opcionais + + + Windows Update – Ver histórico de atualizações + + + Sem fios + + + Local de trabalho + + + Aprovisionamento do local de trabalho + + + Definições IME Wubi + + + Definições Wubi IME – UDP + + + Rede Xbox + + + As suas informações + + + Zoom + + + + + + + + + bpmf + + + chamadas + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.ru-RU.resx b/Properties/Resources.ru-RU.resx new file mode 100644 index 00000000000..7451b44e6d0 --- /dev/null +++ b/Properties/Resources.ru-RU.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + О программе + + + Доступ к рабочей или учебной учетной записи + + + Специальные возможности + + + Приложения-помощники + + + Сведения об учетной записи + + + Учетные записи + + + Центр поддержки + + + Активация + + + Журнал действий + + + Добавление оборудования + + + Установка и удаление программ + + + Добавление номера телефона + + + Средства администрирования + + + Дополнительные параметры экрана + + + Расширенная графика + + + Идентификатор рекламы + + + Режим "в самолете" + + + ALT+TAB + + + Альтернативные имена + + + Анимации + + + Цвет приложения + + + Панель управления + + + Диагностика приложения + + + Функции приложения + + + Параметры системы + + + Громкость приложения и настройки устройства + + + Приложение + + + Приложения и компоненты + + + Приложения для веб-сайтов + + + Область + + + Учетные записи + + + Средства администрирования + + + Оформление и персонализация + + + Приложения + + + Часы и регион + + + Кортана + + + Устройства + + + Легкий доступ + + + Дополнительно + + + Игры + + + Оборудование и звук + + + Начальная страница + + + Смешанная реальность + + + Сеть и Интернет + + + Персонализация + + + Телефон + + + Конфиденциальность + + + Программы + + + SurfaceHub + + + Система + + + Система и безопасность + + + Время и язык + + + Обновления и безопасность + + + Учетные записи пользователей + + + Ограниченный доступ + + + Звук + + + Звуковые оповещения + + + Звук и речь + + + Автоматическое воспроизведение + + + Автоматическая загрузка файлов + + + Фон + + + Фоновые приложения + + + Резервное копирование + + + Архивация и восстановление + + + Экономия заряда + + + Параметры экономии заряда + + + Сведения об использовании экономии заряда + + + Использование батареи + + + Биометрические устройства + + + Шифрование диска BitLocker + + + Голубой + + + Синие-желтый + + + Bluetooth + + + Устройства Bluetooth + + + IME Bopomofo + + + Трансляция + + + Календарь + + + Журнал вызовов + + + Камера + + + IME Cangjie + + + Caps Lock + + + Передача данных и SIM + + + Выберите, какие папки будут отображаться в меню "Пуск" + + + Служба клиента для NetWare + + + Буфер обмена + + + Субтитры + + + Цветовые фильтры + + + Управление цветом + + + Цвета + + + Команда + + + Подключенные устройства + + + Контакты + + + Команда Copy + + + Изоляция ядра + + + Кортана + + + Кортана на всех моих устройствах + + + Кортана — язык + + + Диспетчер учетных данных + + + На нескольких устройствах + + + Пользовательские устройства + + + Служба доменных имен (DNS) + + + Темный цвет + + + Темный режим + + + Использование данных + + + Дата и время + + + Приложения по умолчанию + + + Камера по умолчанию + + + Место расположения по умолчанию + + + Программы по умолчанию + + + Расположения сохранения по умолчанию + + + Оптимизация доставки + + + Темы рабочего стола + + + Диспетчер устройств + + + Устройства и принтеры + + + DHCP + + + Удаленный доступ + + + Прямой доступ + + + Прямое открытие телефона + + + Отображение + + + Свойства экрана + + + Документы + + + Дублирование экрана + + + В эти часы + + + Центр специальных возможностей + + + Выпуск + + + Адрес электронной почты + + + Адрес электронной почты и учетные записи приложений + + + Шифрование + + + Среда + + + Ethernet + + + Защита от эксплойтов + + + Дополнения + + + Управление глазами + + + Отслеживание глаз + + + Семья и другие люди + + + Обратная связь и диагностика + + + Файловая система + + + FindFast + + + Поиск устройства + + + Брандмауэр + + + Фокусировка внимания — не беспокоить + + + Фокусировка внимания — не беспокоить + + + Параметры папки + + + Шрифты + + + Для разработчиков + + + Меню игры + + + Игровые устройства управления + + + DVR для игр + + + Режим игры + + + Шлюз + + + Общие + + + Получение программ + + + Начало работы + + + Заставка + + + Параметры графики + + + Оттенки серого + + + Зеленая неделя + + + Отображение гарнитуры + + + Высокая контрастность + + + Голографический звук + + + Голографическая среда + + + Голографическая гарнитура + + + Голографическое управление + + + Домашняя группа + + + Идентификатор + + + Изображение + + + Параметры индексирования + + + Инфракрасное + + + Рукописный ввод и ввод с клавиатуры + + + Свойства браузера + + + Инвертированные цвета + + + IP-адрес + + + Изолированный просмотр + + + Параметры IME для японского языка + + + Свойства джойстика + + + Клавиатура + + + Клавиатура + + + Ключи + + + Язык + + + Светлый цвет + + + Светлый режим + + + Расположение + + + Экран блокировки + + + Лупа + + + Электронная почта — Microsoft Exchange или Сообщения Windows + + + Управление известными сетями + + + Управление дополнительными компонентами + + + Обмен сообщениями + + + Лимитное подключение + + + Микрофон + + + Microsoft Mail Post Office + + + Мобильные устройства + + + Мобильный хот-спот + + + Mono + + + Дополнительные сведения + + + Движение + + + Мышь + + + Мышь и сенсорная панель + + + Свойства мыши, шрифтов, клавиатуры и принтеров + + + Указатель мыши + + + Свойства мультимедиа + + + Многозадачность + + + NFC + + + Транзакции NFC + + + Диктор + + + Панель навигации + + + Сеть + + + Центр управления сетями и общим доступом + + + Сетевое подключение + + + Свойства сети + + + Мастер настройки сети + + + Состояние сети + + + Ночной свет + + + Параметры ночного света + + + Примечание + + + Доступно только при подключении мобильного устройства к устройству. + + + Доступно только на устройствах, поддерживающих дополнительные параметры графики. + + + Доступно только на устройствах с батареей, например, на планшете. + + + Не рекомендуется использовать в Windows 10 версии 1809 (сборка 17763) и более поздних версиях. + + + Доступно, только если с Dial установлена связь. + + + Доступно, если включен DirectAccess. + + + Доступно только на устройствах, поддерживающих дополнительные параметры дисплея. + + + Отображается, только если пользователь зарегистрирован в НЗП. + + + Требуется оборудование для отслеживания взгляда. + + + Доступно, если установлен редактор метода ввода Майкрософт для японского языка. + + + Доступно, если установлен редактор метода ввода Майкрософт для пиньиня. + + + Доступно, если установлен редактор метода ввода Майкрософт для вуби. + + + Доступно, только если установлено приложение портала "Смешанная реальность". + + + Доступно только на мобильных устройствах и если предприятие развернуло пакет подготовки. + + + Добавлено в Windows 10 версии 1903 (сборка 18362). + + + Добавлено в Windows 10 версии 2004 (сборка 19041). + + + Доступно только при установленных "приложениях параметров", например, от третьей стороны. + + + Доступно только при наличии сенсорной панели. + + + Доступно, только если устройство имеет адаптер Wi-Fi. + + + Устройство должно поддерживать Windows Anywhere. + + + Доступно, только если предприятие развернуло пакет подготовки. + + + Уведомления + + + Уведомления и действия + + + Клавиша NUM LOCK + + + Администратор источника данных ODBC (32-разрядный) + + + Администратор источника данных ODBC (64-разрядный) + + + Автономные файлы + + + Автономные карты + + + Автономные карты — скачивание карт + + + На экране + + + ОС + + + Другие устройства + + + Другие параметры + + + Другие пользователи + + + Родительский контроль + + + Пароль + + + Свойства пароля + + + Перо и устройства ввода + + + Перо и сенсорный ввод + + + Перо и Windows Ink + + + Пользователи рядом + + + Средства и сведения о производительности + + + Разрешения и журнал + + + Персонализация (категория) + + + Телефон + + + Телефон и модем + + + Телефон и модем — параметры + + + Телефонные звонки + + + Телефон — приложения по умолчанию + + + Рисунок + + + Рисунки + + + Параметры IME для пиньиня + + + Параметры IME для пиньиня — лексикон домена + + + Параметры IME для пиньиня — настройка клавиш + + + Параметры IME для пиньиня — UDP + + + Воспроизведение игры во весь экран + + + Подключаемый модуль для поиска параметров Windows + + + Параметры Windows + + + Электропитание и спящий режим + + + Параметры электропитания + + + Представление + + + Клавиша PRINT SCREEN + + + Принтеры + + + Принтеры и сканеры + + + Отчеты о проблемах и решения + + + Процессор + + + Программы и компоненты + + + Проекция на этот компьютер + + + Подготовка + + + Близкое взаимодействие + + + Прокси-сервер + + + Куиккиме + + + Игра со спокойными моментами + + + Радио + + + ОЗУ + + + Распознавание + + + Восстановление + + + Эффект красных глаз + + + Красный-зеленый + + + Красная неделя + + + Регион + + + Регион и язык + + + Форматирование региона + + + Язык и региональные стандарты + + + Свойства региональных параметров + + + Подключения к рабочим столам и удаленным приложениям RemoteApp + + + Удаленный рабочий стол + + + Сканеры и камеры + + + Запланировано + + + Запланированные задачи + + + Поворот экрана + + + Полосы прокрутки + + + SCROLL LOCK + + + SDNS + + + Поиск в Windows + + + SecureDNS + + + Центр безопасности + + + Обработчик безопасности + + + Очистка сеанса + + + Установка киоска + + + Домашняя страница параметров + + + Общие возможности + + + Wi-Fi + + + Сочетания клавиш + + + Параметры входа + + + Параметры входа — динамическая блокировка + + + Размер + + + Звук + + + Речь + + + Распознавание речи + + + Ввод с помощью голоса + + + Начать + + + Отправные точки + + + Запуск приложений + + + Хранилище + + + Политики хранилища + + + Контроль памяти + + + Центр синхронизации + + + Синхронизация параметров + + + Система + + + Свойства системы и мастер добавления нового оборудования + + + Вкладка + + + Режим планшета + + + Параметры планшетного ПК + + + Разговор + + + Беседа с Кортаной + + + Панель задач + + + Цвет панели задач + + + Задачи + + + Конференц-связь в команде + + + Управление устройствами команды + + + Преобразование текста в речь + + + Темы + + + Временная шкала + + + Сенсорный ввод + + + Реакция на касание + + + Сенсорная панель + + + Прозрачность + + + Устранение неполадок + + + TruePlay + + + Ввод с клавиатуры + + + Удалить + + + USB + + + Учетные записи пользователей + + + Версия + + + Воспроизведение видео + + + Видео + + + Виртуальные рабочие столы + + + Вирус + + + Активация голосовых функций + + + Громкость + + + VPN + + + Обои + + + Более теплый цвет + + + Центр начальной настройки + + + Экран приветствия + + + Колесико + + + Wi-Fi + + + Вызовы через Wi-Fi + + + Параметры Wi-Fi + + + Граница окна + + + Программа обновления Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Защитник Windows + + + Брандмауэр Windows + + + Настройка Windows Hello — Распознавание лиц + + + Настройка Windows Hello — отпечаток + + + Программа предварительной оценки Windows + + + Центр мобильности Windows + + + Windows Search + + + Безопасность Windows + + + Центр обновления Windows + + + Центр обновления Windows — дополнительные параметры + + + Центр обновления Windows — проверка наличия обновлений + + + Центр обновления Windows — параметры перезапуска + + + Центр обновления Windows — просмотр необязательных обновлений + + + Центр обновления Windows — просмотр журнала обновлений + + + Беспроводной + + + Рабочее место + + + Подготовка рабочего места + + + Параметры редактора метода ввода Wubi + + + Параметры редактора метода ввода WuBi — UDP + + + Сеть Xbox + + + Ваши сведения + + + Увеличение + + + + + + + + + чжуинь + + + вызовы + + + + + + дейтеранопия + + + + + + + + + + + + + + + JpnIME + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + протанопия + + + планировщик заданий + + + + + + + + + + + + + + + тританопия + + + + + \ No newline at end of file diff --git a/Properties/Resources.sv-SE.resx b/Properties/Resources.sv-SE.resx new file mode 100644 index 00000000000..b9756ec450b --- /dev/null +++ b/Properties/Resources.sv-SE.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Om + + + Åtkomst, arbete eller skola + + + Alternativ för hjälpmedel + + + Tillbehörsappar + + + Kontoinformation + + + Konton + + + Åtgärdscenter + + + Aktivering + + + Aktivitetshistorik + + + Lägg till maskinvara + + + Lägg till/ta bort program + + + Lägg till din telefon + + + Administrationsverktyg + + + Avancerade bildskärmsinställningar + + + Avancerad grafik + + + Annonserings-ID + + + Flygplansläge + + + Alt+Tabb + + + Alternativa namn + + + Animeringar + + + Appfärg + + + Kontrollpanelen + + + Appdiagnostik + + + Appfunktioner + + + Systeminställningar + + + Inställningar för appvolym och enhet + + + App + + + Appar och funktioner + + + Appar för webbplatser + + + Område + + + Konton + + + Administrationsverktyg + + + Utseende och personanpassning + + + Appar + + + Klocka och region + + + Cortana + + + Enheter + + + Hjälpmedel + + + Extrafunktioner + + + Spel + + + Maskinvara och ljud + + + Startsida + + + Mixed Reality + + + Nätverk och Internet + + + Personanpassning + + + Telefon + + + Sekretess + + + Program + + + SurfaceHub + + + System + + + System och säkerhet + + + Tid och språk + + + Uppdatering och säkerhet + + + Användarkonton + + + Tilldelad åtkomst + + + Ljud + + + Ljudaviseringar + + + Ljud och tal + + + Automatisk uppspelning + + + Automatiska filnedladdningar + + + Bakgrund + + + Bakgrundsappar + + + Säkerhetskopiering + + + Säkerhetskopiera och återställ + + + Batterisparfunktionen + + + Inställningar för batterisparfunktionen + + + Användningsinformation om batterisparfunktionen + + + Batterianvändning + + + Biometriska enheter + + + BitLocker-diskkryptering + + + Blått ljus + + + Blågul + + + Bluetooth + + + Bluetooth-enheter + + + IME för Bopomofo + + + Sändning + + + Kalender + + + Samtalshistorik + + + Kamera + + + IME för Cangjie + + + Caps Lock + + + Mobilnät och SIM + + + Välj vilka mappar som ska visas på Start + + + Klienttjänst för NetWare + + + Urklipp + + + Undertexter + + + Färgfilter + + + Färghantering + + + Färger + + + Kommando + + + Anslutna enheter + + + Kontakter + + + Kopiera kommando + + + Kärnisolering + + + Cortana + + + Cortana på mina enheter + + + Cortana – språk + + + Autentiseringshanteraren + + + Mellan enheter + + + Anpassade enheter + + + DNS + + + Mörk färg + + + Mörkt läge + + + Dataanvändning + + + Datum och tid + + + Standardappar + + + Standardkamera + + + Standardplats + + + Standardprogram + + + Standardplatser för sparade filer + + + Leveransoptimering + + + Skrivbordsteman + + + Enhetshanteraren + + + Enheter och skrivare + + + DHCP + + + Fjärranslutning + + + Direkt åtkomst + + + Öppna din telefon direkt + + + Bildskärm + + + Bildskärmsegenskaper + + + Dokument + + + Duplicerar min bildskärm + + + Under dessa timmar + + + Hjälpmedelscenter + + + Utgåva + + + E-post + + + E-post- och appkonton + + + Kryptering + + + Miljö + + + Ethernet + + + Sårbarhetsskydd + + + Extrafunktioner + + + Ögonstyrning + + + Ögonspårare + + + Familj och andra personer + + + Feedback och diagnostik + + + Filsystem + + + FindFast + + + Hitta min enhet + + + Brandvägg + + + Fokusstöd – tysta timmar + + + Fokusstöd – tysta stunder + + + Mappalternativ + + + Teckensnitt + + + För utvecklare + + + Spelfältet + + + Spelkontroller + + + Spel-DVR + + + Spelläge + + + Gateway + + + Allmänt + + + Hämta program + + + Komma igång + + + Överblick + + + Grafikinställningar + + + Gråskala + + + Grön vecka + + + Bildskärm för headset + + + Högkontrast + + + Holographic-ljud + + + Holographic-miljö + + + Holographic-headset + + + Hantering av Holographic + + + Hemgrupp + + + ID + + + Bild + + + Indexeringsalternativ + + + Infraröd + + + Pennanteckning och inmatning + + + Internetalternativ + + + Inverterade färger + + + IP + + + Isolerad surfning + + + IME-inställningar för Japan + + + Egenskaper för styrspak + + + Tangentbord + + + Knappsats + + + Nycklar + + + Språk + + + Ljus färg + + + Ljust läge + + + Plats + + + Låsskärmen + + + Förstoringsglaset + + + E-post – Microsoft Exchange eller Windows Meddelanden + + + Hantera kända nätverk + + + Hantera valfria funktioner + + + Meddelanden + + + Anslutning med datapriser + + + Mikrofon + + + Microsoft Mail Post Office + + + Mobila enheter + + + Delning av trådlös anslutning + + + Mono + + + Mer information + + + Rörelse + + + Mus + + + Mus och pekplatta + + + Egenskaper för mus, teckensnitt, tangentbord och skrivare + + + Muspekare + + + Multimediaegenskaper + + + Flerprogramskörning + + + NFC + + + NFC-transaktioner + + + Skärmläsaren + + + Navigeringsfält + + + Nätverk + + + Nätverks- och delningscenter + + + Nätverksanslutning + + + Nätverksegenskaper + + + Guiden Konfigurera nätverk + + + Nätverksstatus + + + Nattläge + + + Inställningar för nattläge + + + Observera + + + Endast tillgängligt när du har anslutit en mobil enhet till enheten. + + + Endast tillgängligt för enheter som stöder avancerade grafikalternativ. + + + Endast tillgängligt för enheter som har ett batteri, t. ex. en surfplatta. + + + Inaktuellt i Windows 10, version 1809 (build 17763) och senare. + + + Endast tillgängligt om det finns en länkad uppringning. + + + Endast tillgängligt om DirectAccess har aktiverats. + + + Endast tillgängligt för enheter som stöder avancerade visningsalternativ. + + + Visa bara om användaren har registrerats i WIP. + + + Kräver eyetracker-maskinvara. + + + Tillgängligt om Microsoft Japan-indatametodredigeraren har installerats. + + + Tillgängligt om Microsoft pinyin-indatametodredigeraren har installerats. + + + Tillgängligt om Microsoft Wubi-indatametodredigeraren har installerats. + + + Endast tillgängligt om Mixed Reality Portal-appen är installerad. + + + Endast tillgängligt på mobila enheter och om företaget har distribuerat ett etableringspaket. + + + Tillagt i Windows 10, version 1903 (build 18362). + + + Tillagt i Windows 10, version 2004 (build 19041). + + + Endast tillgängligt om "inställningsappar" har installerats, exempelvis av en tredje part. + + + Endast tillgängligt om maskinvara för pekplatta finns. + + + Endast tillgängligt om enheten har en Wi-Fi-adapter. + + + Enheten måste vara Windows Anywhere-kompatibel. + + + Endast tillgängligt om företaget har distribuerat ett konfigurationspaket. + + + Aviseringar + + + Meddelanden och åtgärder + + + Num Lock + + + ODBC-datakällsadministratör (32-bitars) + + + ODBC-datakällsadministratör (64-bitars) + + + Offlinefiler + + + Offlinekartor + + + Offlinekartor – ladca ned kartor + + + På skärmen + + + Operativsystem + + + Andra enheter + + + Andra alternativ + + + Andra användare + + + Barnspärr + + + Lösenord + + + Lösenordsegenskaper + + + Penn- och indataenheter + + + Penna och pekskärm + + + Penna och Windows Ink + + + Personer i närheten + + + Prestandainformation och verktyg + + + Behörigheter och historik + + + Personanpassning (kategori) + + + Telefon + + + Telefon och modem + + + Telefoner och modem – alternativ + + + Telefonsamtal + + + Telefon – standardappar + + + Bild + + + Bilder + + + Pinyin IME-inställningar + + + Pinyin IME-inställningar – domänlexikon + + + Inställningar för Pinyin IME – nyckelkonfiguration + + + Pinyin IME-inställningar – UDP + + + Spela ett spel i helskärmsläge + + + Plugin-program för att söka efter Windows-inställningar + + + Windows-inställningar + + + Energi och sömn + + + Energialternativ + + + Presentation + + + PrintScrn + + + Skrivare + + + Skrivare och skannrar + + + Problemrapporter och lösningar + + + Processor + + + Program och funktioner + + + Projicera till den här datorn + + + Etablering + + + Närhet + + + Proxy + + + Quickime + + + Tyst stunds-spel + + + Trådlösa anslutningar + + + RAM + + + Igenkänning + + + Återställning + + + Röd iris + + + Röd-grön + + + Röd vecka + + + Region + + + Region och språk + + + Regionformat + + + Regionalt språk + + + Egenskaper för nationella inställningar + + + RemoteApp- och skrivbordsanslutningar + + + Fjärrskrivbord + + + Skannrar och kameror + + + Schemalagd + + + Schemalagda aktiviteter + + + Skärmrotation + + + Rullningslister + + + Scroll Lock + + + SDNS + + + Söker i Windows + + + SecureDNS + + + Security Center + + + Säkerhetsprocessor + + + Sessionsrensning + + + Konfigurera en kiosk + + + Startsida för inställningar + + + Delade upplevelser + + + wifi + + + Genvägar + + + Inloggningsalternativ + + + Inloggningsalternativ – dynamiskt lås + + + Storlek + + + Ljud + + + Tal + + + Taligenkänning + + + Talinmatning + + + Starta + + + Startplatser + + + Startappar + + + Storage + + + Lagringsprinciper + + + Storage Sense + + + Synkroniseringscenter + + + Synkronisera dina inställningar + + + System + + + Systemegenskaper och guiden Lägg till ny maskinvara + + + Flik + + + Surfplatteläge + + + Surfplatteinställningar + + + Prata + + + Prata med Cortana + + + Aktivitetsfält + + + Färg på aktivitetsfältet + + + Aktiviteter + + + Gruppkonferens + + + Teamenhetshantering + + + Text till tal + + + Teman + + + Tidslinje + + + Touch + + + Beröringsåterkoppling + + + Pekplatta + + + Transparens + + + Felsök + + + TruePlay + + + Inmatning + + + Avinstallera + + + USB + + + Användarkonton + + + Version + + + Videouppspelning + + + Videor + + + Virtuella skrivbord + + + Virus + + + Röstaktivering + + + Volym + + + VPN + + + Bakgrund + + + Varmare färg + + + Välkomstcenter + + + Välkomstskärm + + + Hjul + + + Wi-Fi + + + Wi-Fi-samtal + + + Wi-Fi-inställningar + + + Fönsterkantlinje + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows-brandväggen + + + Installation av Windows Hello – Ansiktsigenkänning + + + Installation av Windows Hello – fingeravtryck + + + Windows Insider Program + + + Windows mobilitetscenter + + + Windows Search + + + Windows-säkerhet + + + Windows Update + + + Windows Update – Avancerade alternativ + + + Windows Update – Sök efter uppdateringar + + + Windows Update – omstartsalternativ + + + Windows Update – Visa valfria uppdateringar + + + Windows Update – Visa uppdateringshistorik + + + Trådlöst + + + Arbetsplats + + + Arbetsplatsetablering + + + Wubi IME-inställningar + + + Wubi IME-inställningar – UDP + + + Xbox-nätverk + + + Din information + + + Zooma + + + + + + + + + bpmf + + + ringer + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.tr-TR.resx b/Properties/Resources.tr-TR.resx new file mode 100644 index 00000000000..fc6305011a6 --- /dev/null +++ b/Properties/Resources.tr-TR.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Hakkında + + + İş veya okula erişme + + + Erişilebilirlik Seçenekleri + + + Aksesuar uygulamaları + + + Hesap bilgileri + + + Hesaplar + + + İşlem Merkezi + + + Etkinleştirme + + + Etkinlik geçmişi + + + Donanım Ekle + + + Program Ekle/Kaldır + + + Telefonunuzu ekleyin + + + Yönetim Araçları + + + Gelişmiş görüntü ayarları + + + Gelişmiş grafikler + + + Reklam Kimliği + + + Uçak modu + + + Alt+Sekme + + + Alternatif adlar + + + Animasyonlar + + + Uygulama rengi + + + Denetim Masası + + + Uygulama tanılama + + + Uygulama özellikleri + + + Sistem ayarları + + + Uygulama ses ve cihaz tercihleri + + + Uygulama + + + Uygulamalar ve Özellikler + + + Web siteleri için uygulamalar + + + Alan + + + Hesaplar + + + Yönetim Araçları + + + Görünüm ve Kişiselleştirme + + + Uygulamalar + + + Saat ve Bölge + + + Cortana + + + Cihazlar + + + Erişim kolaylığı + + + Ek Özellikler + + + Oyun + + + Donanım ve Ses + + + Giriş sayfası + + + Karma gerçeklik + + + Ağ ve İnternet + + + Kişiselleştirme + + + Telefon + + + Gizlilik + + + Programlar + + + SurfaceHub + + + Sistem + + + Sistem ve Güvenlik + + + Saat ve dil + + + Güncelleştirme ve güvenlik + + + Kullanıcı hesapları + + + Atanan erişim + + + Ses + + + Sesli uyarılar + + + Ses ve konuşma + + + Otomatik Yürüt + + + Otomatik dosya indirme + + + Arka plan + + + Arka Plan Uygulamaları + + + Yedekleme + + + Yedekleme ve Geri Yükleme + + + Pil Tasarrufu + + + Pil Tasarrufu ayarları + + + Pil tasarrufu kullanım ayrıntıları + + + Pil kullanımı + + + Biyometrik Cihazlar + + + BitLocker Sürücü Şifrelemesi + + + Mavi ışık + + + Mavi sarı + + + Bluetooth + + + Bluetooth cihazları + + + Bopomofo IME + + + Yayın + + + Takvim + + + Arama geçmişi + + + Kamera + + + Cangjie IME + + + Caps Lock + + + Hücresel ve SIM + + + Başlangıç ekranında hangi klasörlerin görüneceğini seçin + + + NetWare istemci hizmeti + + + Pano + + + Kapalı açıklamalı alt yazı + + + Renk filtreleri + + + Renk yönetimi + + + Renkler + + + Komut + + + Bağlı Cihazlar + + + Kişiler + + + Kopyalama komutu + + + Çekirdek Yalıtımı + + + Cortana + + + Tüm cihazlarımda Cortana + + + Cortana - Dil + + + Kimlik bilgileri yöneticisi + + + Cihazlar arası + + + Özel cihazlar + + + DNS + + + Koyu renk + + + Karanlık mod + + + Veri kullanımı + + + Tarih ve saat + + + Varsayılan uygulamalar + + + Varsayılan kamera + + + Varsayılan konum + + + Varsayılan programlar + + + Varsayılan Kaydetme Konumları + + + Teslim İyileştirme + + + Masaüstü temaları + + + Cihaz yöneticisi + + + Cihazlar ve yazıcılar + + + DHCP + + + Çevirmeli + + + Doğrudan erişim + + + Telefonunuzu doğrudan açın + + + Görüntü + + + Görüntü özellikleri + + + Belgeler + + + Ekranımı çoğaltma + + + Bu saatlerde + + + Erişim kolaylığı merkezi + + + Sürüm + + + E-posta + + + E-posta ve uygulama hesapları + + + Şifreleme + + + Ortam + + + Ethernet + + + Exploit Protection + + + Ek Özellikler + + + Gözle denetim + + + Göz izleyici + + + Aile ve diğer kişiler + + + Geri bildirim ve tanılama + + + Dosya sistemi + + + Hızlı Bul + + + Cihazımı Bul + + + Güvenlik Duvarı + + + Odaklanma yardımı - Sessiz saatler + + + Odaklanma yardımı - Sessiz anlar + + + Klasör seçenekleri + + + Yazı tipleri + + + Geliştiriciler için + + + Oyun çubuğu + + + Oyun kumandaları + + + Oyun DVR + + + Oyun Modu + + + Ağ geçidi + + + Genel + + + Programları al + + + Kullanmaya başlayın + + + Göz Atma + + + Grafik ayarları + + + Gri tonlama + + + Yeşil hafta + + + Kulaklık ekranı + + + Yüksek karşıtlık + + + Holografik ses + + + Holografik Ortam + + + Holografik Başlık + + + Holografik Yönetim + + + Ev grubu + + + Kimlik + + + Resim + + + Dizin oluşturma seçenekleri + + + Kızılötesi + + + Mürekkep oluşturma ve yazma + + + İnternet seçenekleri + + + Ters renkler + + + IP + + + Yalıtılmış Gözatma + + + Japonya IME ayarları + + + Oyun çubuğu özellikleri + + + Klavye + + + Tuş takımı + + + Anahtarlar + + + Dil + + + Açık renk + + + Açık mod + + + Konum + + + Kilit ekranı + + + Büyüteç + + + Posta - Microsoft Exchange veya Windows Mesajlaşma + + + Bilinen ağları yönet + + + İsteğe bağlı özellikleri yönet + + + Mesajlaşma + + + Tarifeli bağlantı + + + Mikrofon + + + Microsoft Mail Post Office + + + Mobil cihazlar + + + Mobil etkin nokta + + + Mono + + + Diğer ayrıntılar + + + Hareket + + + Fare + + + Fare ve dokunmatik yüzey + + + Fare, Yazı tipleri, Klavye ve Yazıcı özellikleri + + + Fare işaretçisi + + + Medya özellikleri + + + Çoklu görev + + + NFC + + + NFC İşlemleri + + + Ekran okuyucusu + + + Gezinti çubuğu + + + + + + Ağ ve paylaşım merkezi + + + Ağ bağlantısı + + + Ağ özellikleri + + + Ağ Kurulum Sihirbazı + + + Ağ durumu + + + Gece ışığı + + + Gece ışığı ayarları + + + Not + + + Yalnızca cihazınıza bir mobil cihaz bağlı olduğunda kullanılabilir. + + + Yalnızca gelişmiş grafik seçeneklerini destekleyen cihazlarda kullanılabilir. + + + Yalnızca pil bulunan (örneğin tablet) cihazlarda kullanılabilir. + + + Windows 10, sürüm 1809 (derleme 17763) ve sonraki sürümlerde kullanım dışı bırakıldı. + + + Yalnızca Arama eşleştirilmişse kullanılabilir. + + + Yalnızca DirectAccess etkinleştirilmişse kullanılabilir. + + + Yalnızca gelişmiş görüntüleme seçeneklerini destekleyen cihazlarda kullanılabilir. + + + Yalnızca kullanıcı WIP'ye kayıtlı ise mevcuttur. + + + Eyetracker donanımı gerektirir. + + + Microsoft Japonya giriş yöntemi düzenleyicisi yüklüyse kullanılabilir. + + + Microsoft Pinyin giriş yöntemi düzenleyicisi yüklüyse kullanılabilir. + + + Microsoft Wubi giriş yöntemi düzenleyicisi yüklüyse kullanılabilir. + + + Yalnızca Karma Gerçeklik Portal uygulaması yüklüyse kullanılabilir. + + + Yalnızca mobil cihazlarda ve kuruluş bir sağlama paketi dağıttıysa kullanılabilir. + + + Windows 10, sürüm 1903 (derleme 18362)‘de eklendi. + + + Windows 10, sürüm 2004 (derleme 19041)‘de eklendi. + + + Yalnızca "ayarlar uygulamaları" yüklüyse kullanılabilir. (örneğin 3. bir taraf tarafından) + + + Yalnızca dokunmatik yüzey donanımı varsa kullanılabilir. + + + Yalnızca cihazda bir Wi-Fi bağdaştırıcısı varsa kullanılabilir. + + + Cihazın Windows Anywhere özelliğine sahip olması gerekir. + + + Yalnızca kuruluş bir sağlama paketi dağıttıysa kullanılabilir. + + + Bildirimler + + + Bildirimler ve eylemler + + + Num Lock + + + ODBC Veri Kaynağı Yöneticisi (32-bit) + + + ODBC Veri Kaynağı Yöneticisi (64-bit) + + + Çevrimdışı dosyalar + + + Çevrimdışı Haritalar + + + Çevrimdışı Haritalar - Haritaları indirme + + + Ekranda + + + İşletim Sistemi + + + Diğer cihazlar + + + Diğer seçenekler + + + Diğer kullanıcılar + + + Ebeveyn denetimleri + + + Parola + + + Parola özellikleri + + + Kalem ve giriş aygıtları + + + Kalem ve dokunmatik + + + Kalem ve Windows Ink + + + Yakınımdaki Kişiler + + + Performans bilgileri ve araçları + + + İzinler ve geçmiş + + + Kişiselleştirme (kategori) + + + Telefon + + + Telefon ve modem + + + Telefon ve modem - Seçenekler + + + Telefon çağrıları + + + Telefon - Varsayılan uygulamalar + + + Resim + + + Resimler + + + Pinyin IME ayarları + + + Pinyin IME ayarları - etki alanı sözlüğü + + + Pinyin IME ayarları - Anahtar yapılandırması + + + Pinyin IME ayarları - UDP + + + Tam ekranda oyun oynama + + + Windows ayarlarını aramak için eklenti + + + Windows ayarları + + + Güç ve uyku + + + Güç seçenekleri + + + Sunum + + + Yazdırma ekranı + + + Yazıcılar + + + Yazıcılar ve tarayıcılar + + + Sorun raporları ve çözümleri + + + İşlemci + + + Programlar ve özellikler + + + Bu bilgisayara yansıtma + + + Sağlama + + + Yakınlık + + + Ara sunucu + + + Quickime + + + Sessiz anlar oyunu + + + Radyolar + + + RAM + + + Tanıma + + + Kurtarma + + + Kırmızı göz + + + Kırmızı-yeşil + + + Kırmızı hafta + + + Bölge + + + Bölge ve dil + + + Bölge biçimlendirme + + + Bölgesel dil + + + Bölgesel ayarlar özellikleri + + + RemoteApp ve masaüstü bağlantıları + + + Uzak Masaüstü + + + Tarayıcılar ve kameralar + + + Planlanan + + + Zamanlanmış görevler + + + Ekran döndürme + + + Kaydırma çubukları + + + Kaydırma Kilidi + + + SDNS + + + Windows aranıyor + + + SecureDNS + + + Güvenlik Merkezi + + + Güvenlik İşlemcisi + + + Oturum temizleme + + + Kiosk ayarlama + + + Ayarlar giriş sayfası + + + Paylaşılan deneyimler + + + wifi + + + Kısayollar + + + Oturum açma seçenekleri + + + Oturum açma seçenekleri - Dinamik kilit + + + Boyut + + + Ses + + + Konuşma + + + Konuşma tanıma + + + Konuşma yazma + + + Başlat + + + Başlangıç yerleri + + + Başlangıç uygulamaları + + + Depolama + + + Depolama ilkeleri + + + Akıllı Depolama + + + Eşitleme merkezi + + + Ayarlarınızı eşitleyin + + + Sistem + + + Sistem özellikleri ve Yeni Donanım Ekleme sihirbazı + + + Sekme + + + Tablet modu + + + Tablet PC ayarları + + + Konuşma + + + Cortana ile konuşun + + + Görev çubuğu + + + Görev çubuğu rengi + + + Görevler + + + Ekip Konferansı + + + Takım cihazı yönetimi + + + Metin okuma + + + Temalar + + + Zaman çizelgesi + + + Dokunun + + + Dokunma geri bildirimi + + + Dokunmatik yüzey + + + Saydamlık + + + Sorun Giderme + + + TruePlay + + + Yazıyor + + + Kaldır + + + USB + + + Kullanıcı hesapları + + + Sürüm + + + Video kayıttan yürütme + + + Videolar + + + Sanal Masaüstleri + + + Virüs + + + Ses etkinleştirme + + + Ses düzeyi + + + VPN + + + Duvar kağıdı + + + Daha sıcak renk + + + Karşılama merkezi + + + Giriş Ekranı + + + Tekerlek + + + Wi-Fi + + + Wi-Fi Araması + + + Wi-Fi ayarları + + + Pencere kenarlığı + + + Windows Anytime Upgrade + + + Windows Anywhere + + + Windows CardSpace + + + Windows Defender + + + Windows Güvenlik Duvarı + + + Windows Hello kurulumu - Yüz Tanıma + + + Windows Hello kurulumu - Parmak izi + + + Windows Insider Programı + + + Windows Mobility Center + + + Windows arama + + + Windows Güvenlik + + + Windows Update + + + Windows Update - Gelişmiş Seçenekler + + + Windows Update - Güncelleştirmeleri denetle + + + Windows Update - Yeniden başlatma seçenekleri + + + Windows Update - isteğe bağlı güncelleştirmeleri görüntüle + + + Windows Update - Güncelleştirme geçmişini görüntüle + + + Kablosuz + + + Çalışma alanı + + + Çalışma alanı sağlama + + + Wubi IME ayarları + + + Wubi IME ayarları - UDP + + + Xbox Ağı + + + Bilgileriniz + + + Yakınlaştır + + + + + + + + + bpmf + + + arama + + + + + + deuteranopia + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + protanopia + + + schedtasks + + + + + + + + + + + + + + + tritanopia + + + + + \ No newline at end of file diff --git a/Properties/Resources.zh-TW.resx b/Properties/Resources.zh-TW.resx new file mode 100644 index 00000000000..6d6b8082eee --- /dev/null +++ b/Properties/Resources.zh-TW.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 關於 + + + 存取公司或學校 + + + 協助工具選項 + + + 配件專屬 App + + + 帳戶資訊 + + + 帳戶 + + + 重要訊息中心 + + + 啟用 + + + 活動歷程記錄 + + + 新增硬體 + + + 新增/移除程式 + + + 新增您的電話 + + + 系統管理工具 + + + 進階顯示設定 + + + 進階圖形 + + + 廣告識別碼 + + + 飛航模式 + + + Alt+Tab + + + 替代名稱 + + + 動畫 + + + 應用程式色彩 + + + 控制台 + + + 應用程式診斷 + + + 應用程式功能 + + + 系統設定 + + + 應用程式磁碟區與裝置喜好設定 + + + 應用程式 + + + 應用程式與功能 + + + 適用於網站的 App + + + 區域 + + + 帳戶 + + + 系統管理工具 + + + 外觀及個人化 + + + 應用程式 + + + 時鐘與地區 + + + Cortana + + + 裝置 + + + 輕鬆存取 + + + 額外項目 + + + 遊戲 + + + 硬體和音效 + + + 首頁 + + + 混合實境 + + + 網路和網際網路 + + + 個人化 + + + 電話 + + + 隱私權 + + + 程式 + + + SurfaceHub + + + 系統 + + + 系統及安全性 + + + 時間與語言 + + + 更新與安全性 + + + 使用者帳戶 + + + 受指派的存取權 + + + 音訊 + + + 音訊警示 + + + 音訊與語音 + + + 自動播放 + + + 自動下載檔案 + + + 背景 + + + 背景應用程式 + + + 備份 + + + 備份與還原 + + + 省電模式 + + + 省電模式設定 + + + 省電模式使用情況詳細資料 + + + 電池使用 + + + 生物特徵辨識裝置 + + + BitLocker 磁碟機加密 + + + 藍色光 + + + 黃藍色 + + + 藍牙 + + + 藍牙裝置 + + + 注音輸入法 + + + 廣播 + + + 行事曆 + + + 通話記錄 + + + 相機 + + + 倉頡輸入法 + + + Caps Lock + + + 行動數據與 SIM + + + 選擇要顯示在 [開始]5D; 上的資料夾 + + + NetWare 的用戶端服務 + + + 剪貼簿 + + + 隱藏式輔助字幕 + + + 色彩篩選 + + + 色彩管理 + + + 色彩 + + + 命令 + + + 已連線的裝置 + + + 連絡人 + + + 複製命令 + + + 核心隔離 + + + Cortana + + + 跨裝置使用 Cortana + + + Cortana - 語言 + + + 認證管理員 + + + 跨裝置 + + + 自訂裝置 + + + DNS + + + 深色 + + + 深色模式 + + + 資料使用量 + + + 日期和時間 + + + 預設應用程式 + + + 預設攝影機 + + + 預設位置 + + + 預設程式 + + + 預設儲存位置 + + + 傳遞最佳化 + + + 桌面主題 + + + 裝置管理員 + + + 裝置與印表機 + + + DHCP + + + 撥號 + + + 直接存取 + + + 直接開啟您的手機 + + + 顯示 + + + 顯示屬性 + + + 文件 + + + 正在複製我的顯示器 + + + 在這段時間內 + + + 輕鬆存取中心 + + + 版本 + + + 電子郵件 + + + 電子郵件和應用程式帳戶 + + + 加密 + + + 環境 + + + 乙太網路 + + + 惡意探索保護 + + + 額外項目 + + + 眼球控制 + + + 眼動追蹤儀 + + + 家庭與其他人員 + + + 意見反應與診斷 + + + 檔案系統 + + + FindFast + + + 尋找我的裝置 + + + 防火牆 + + + 專注輔助 - 勿打擾時間 + + + 專注輔助 - 安靜時刻 + + + 資料夾選項 + + + 字型 + + + 適用於開發人員 + + + 遊戲列 + + + 遊戲遙控器 + + + 遊戲 DVR + + + 遊戲模式 + + + 閘道 + + + 一般 + + + 取得程式 + + + 開始使用 + + + 概覽 + + + 圖形設定 + + + 灰階 + + + 綠色弱視 + + + 頭戴式裝置顯示器 + + + 高對比 + + + 全像攝影音訊 + + + 全像攝影環境 + + + 全像攝影頭戴式裝置 + + + 全像攝影管理 + + + 常用群組 + + + 識別碼 + + + 影像 + + + 索引選項 + + + 紅外線 + + + 筆跡及輸入 + + + 網際網路選項 + + + 反相色彩 + + + IP + + + 隔離瀏覽 + + + 日本輸入法設定 + + + 搖桿屬性 + + + 鍵盤 + + + 鍵盤 + + + 金鑰 + + + 語言 + + + 淺色 + + + 淺色模式 + + + 位置 + + + 鎖定螢幕 + + + 放大鏡 + + + 郵件 - Microsoft Exchange 或 Windows 訊息中心 + + + 管理已知的網路 + + + 管理選用功能 + + + 訊息中心 + + + 計量付費連線 + + + 麥克風 + + + Microsoft Mail Post Office + + + 行動裝置 + + + 行動熱點 + + + Mono + + + 詳細資料 + + + 動作 + + + 滑鼠 + + + 滑鼠和觸控板 + + + 滑鼠、字型、鍵盤和印表機屬性 + + + 滑鼠指標 + + + 多媒體屬性 + + + 多工 + + + NFC + + + NFC 交易 + + + 朗讀程式 + + + 瀏覽列 + + + 網路 + + + 網路與共享中心 + + + 網路連線 + + + 網路屬性 + + + 網路設定精靈 + + + 網路狀態 + + + 夜間光線 + + + 夜間光線設定 + + + 注意 + + + 只有在您將行動裝置連線至裝置時才可使用。 + + + 僅適用於支援進階圖形選項的裝置。 + + + 只在有電池的裝置上使用,例如平板電腦。 + + + 在 Windows 10 版本 1809 及更新版本中已被取代 (組建 17763)。 + + + 僅當撥號已經配對時才可用。 + + + 只有在啟用 DirectAccess 時才可用。 + + + 僅適用於支援進階顯示選項的裝置。 + + + 僅當使用者在 WIP 中註冊時才出現。 + + + 需要眼球追蹤器硬體。 + + + 若已安裝 Microsoft 日本輸入法編輯器,即可使用。 + + + 若已安裝 Microsoft 拼音輸入法編輯器,即可使用。 + + + 若已安裝 Microsoft 五筆輸入法編輯器,即可使用。 + + + 只有在安裝混合式現實入口網站應用程式時才可使用。 + + + 僅可在行動及有部署佈建中套件的企業中使用。 + + + 已新增至 Windows 10 版本 1903 (版本 18362)。 + + + 已新增至 Windows 10 版本 2004 (組建 19041)。 + + + 只有在安裝了 [設定應用程式]5D; 時才可使用,例如由協力廠商提供。 + + + 只有在有觸控板硬體時才可使用。 + + + 僅當裝置具有 Wi-Fi 介面卡時才可用。 + + + 裝置必須支援 Windows Anywhere。 + + + 僅當企業已部署佈建套件時才可用。 + + + 通知 + + + 通知和動作 + + + Num Lock + + + ODBC 資料來源系統管理員 (32 位元) + + + ODBC 資料來源系統管理員 (64 位元) + + + 離線檔案 + + + 離線地圖 + + + 離線地圖 - 下載地圖 + + + 螢幕上 + + + 作業系統 + + + 其他裝置 + + + 其他選項 + + + 其他使用者 + + + 家長監護 + + + 密碼 + + + 密碼屬性 + + + 筆與輸入裝置 + + + 筆和觸控 + + + 筆和 Windows Ink + + + 我附近的人員 + + + 效能資訊和工具 + + + 權限與歷程記錄 + + + 個人化 (類別) + + + 手機 + + + 電話與數據機 + + + 電話與數據機 - 選項 + + + 手機通話 + + + 手機 - 預設應用程式 + + + 圖片 + + + 圖片 + + + 拼音 IME 設定 + + + 拼音輸入法設定 - 網域辭典 + + + 拼音輸入法設定 - 金鑰設定 + + + 拼音 IME 設定 - UDP + + + 全螢幕玩遊戲 + + + 搜尋 Windows 設定外掛程式 + + + Windows 設定 + + + 電源與睡眠 + + + 電源選項 + + + 簡報 + + + 列印螢幕 + + + 印表機 + + + 印表機和掃描器 + + + 問題報告及解決方案 + + + 處理器 + + + 程式和功能 + + + 投影到此電腦 + + + 正在佈建 + + + 接近 + + + Proxy + + + Quickime + + + 安靜時刻遊戲 + + + 無線電波 + + + RAM + + + 辨識 + + + 復原 + + + 紅眼 + + + 紅-綠 + + + 紅色弱視 + + + 區域 + + + 地區和語言 + + + 地區格式 + + + 地區語言 + + + 地區設定屬性 + + + RemoteApp 和桌面連線 + + + 遠端桌面 + + + 掃描器與數位相機 + + + 已排程 + + + 排定的工作 + + + 旋轉螢幕 + + + 捲軸 + + + Scroll Lock + + + SDNS + + + 正在搜尋 Windows + + + SecureDNS + + + 資訊安全中心 + + + 安全性處理器 + + + 工作階段清除 + + + 設定 Kiosk + + + 設定首頁 + + + 共用體驗 + + + wifi + + + 快速鍵 + + + 登入選項 + + + 登入選項 - 動態鎖定 + + + 大小 + + + 音效 + + + 語音 + + + 語音辨識 + + + 語音輸入 + + + 開始 + + + 開始位置 + + + 啟動應用程式 + + + 儲存體 + + + 存放原則 + + + 儲存空間感知器 + + + 同步中心 + + + 同步您的設定 + + + 系統 + + + 系統屬性與新增硬體精靈 + + + Tab + + + 平板電腦模式 + + + 平板電腦設定 + + + 交談 + + + 與 Cortana 交談 + + + 工作列 + + + 工作列色彩 + + + 工作 + + + 小組會議 + + + 小組裝置管理 + + + 文字轉換語音 + + + 主題 + + + 時間軸 + + + 觸控 + + + 觸控回饋 + + + 觸控板 + + + 透明度 + + + 疑難排解 + + + TruePlay + + + 輸入 + + + 解除安裝 + + + USB + + + 使用者帳戶 + + + 版本 + + + 影片播放 + + + 影片 + + + 虛擬桌面 + + + 病毒 + + + 語音啟用 + + + 音量 + + + VPN + + + 桌布 + + + 暖色調 + + + 歡迎中心 + + + 歡迎畫面 + + + 滾輪 + + + Wi-Fi + + + Wi-Fi 通話 + + + Wi-Fi 設定 + + + 視窗框線 + + + Windows Anytime Upgrade + + + Windows 無所不在 + + + Windows CardSpace + + + Windows Defender + + + Windows 防火牆 + + + Windows Hello 設定 - 臉部 + + + Windows Hello 設定 - 指紋 + + + Windows 測試人員計畫 + + + Windows 行動中心 + + + Windows Search + + + Windows 安全性 + + + Windows Update + + + Windows Update - 進階選項 + + + Windows Update - 檢查更新 + + + Windows Update - 重新啟動選項 + + + Windows Update - 檢視選用的更新 + + + Windows Update - 檢視更新歷程記錄 + + + 無線 + + + 工作場所 + + + 工作場所佈建 + + + 五筆輸入法設定 + + + 五筆 IME 設定 - UDP + + + Xbox 網路 + + + 您的資訊 + + + 縮放 + + + + + + + + + 注音符號 + + + 通話 + + + + + + 綠色盲 + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 紅色盲 + + + schedtasks + + + + + + + + + + + + + + + 黃藍色盲 + + + + + \ No newline at end of file diff --git a/Properties/Resources.zh-cn.resx b/Properties/Resources.zh-cn.resx new file mode 100644 index 00000000000..3cb3276eb90 --- /dev/null +++ b/Properties/Resources.zh-cn.resx @@ -0,0 +1,1410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 关于 + + + 访问工作或学校 + + + 辅助功能选项 + + + 附件应用 + + + 帐户信息 + + + 帐户 + + + 操作中心 + + + 激活 + + + 活动历史记录 + + + 添加硬件 + + + 添加/删除程序 + + + 添加手机 + + + 管理工具 + + + 高级显示设置 + + + 高级图形 + + + 广告 ID + + + 飞行模式 + + + Alt+Tab + + + 备用名称 + + + 动画 + + + 应用颜色 + + + 控制面板 + + + 应用诊断 + + + 应用特征 + + + 系统设置 + + + 应用卷和设备首选项 + + + 应用 + + + 应用和功能 + + + 网站应用 + + + 区域 + + + 帐户 + + + 管理工具 + + + 外观和个性化 + + + 应用 + + + 时钟和区域 + + + Cortana + + + 设备 + + + 轻松访问 + + + 附加内容 + + + 游戏 + + + 硬件和声音 + + + 主页 + + + 混合现实 + + + 网络和 Internet + + + 个性化 + + + 手机 + + + 隐私 + + + 计划 + + + SurfaceHub + + + 系统 + + + 系统和安全性 + + + 时间和语言 + + + 更新和安全 + + + 用户帐户 + + + 分配的访问权限 + + + 音频 + + + 音频警报 + + + 音频和语音 + + + 自动播放 + + + 自动文件下载 + + + 背景 + + + 背景应用 + + + 备份 + + + 备份和还原 + + + 节电模式 + + + 节电模式设置 + + + 节电模式使用情况详细信息 + + + 电池使用 + + + 生物识别设备 + + + BitLocker 驱动器加密 + + + 蓝光 + + + 蓝黄色 + + + 蓝牙 + + + 蓝牙设备 + + + 注音输入法 + + + 广播 + + + 日历 + + + 呼叫历史记录 + + + 照相机 + + + 仓颉输入法 + + + 大写锁定 + + + 手机网络和 SIM 卡 + + + 选择“开始”菜单上显示的文件夹 + + + NetWare 的客户端服务 + + + 剪贴板 + + + 隐藏式字幕 + + + 颜色筛选器 + + + 颜色管理 + + + 颜色 + + + 命令 + + + 已连接的设备 + + + 联系人 + + + 复制命令 + + + 核心隔离 + + + Cortana + + + 我的设备上的 Cortana + + + Cortana - 语言 + + + 凭据管理器 + + + 跨设备 + + + 自定义设备 + + + DNS + + + 深色 + + + 深色模式 + + + 数据使用情况 + + + 日期和时间 + + + 默认应用 + + + 默认照相机 + + + 默认位置 + + + 默认程序 + + + 默认保存位置 + + + 传递优化 + + + 桌面主题 + + + 设备管理器 + + + 设备和打印机 + + + DHCP + + + 拨号 + + + 直接访问 + + + 直接打开手机 + + + 显示 + + + 显示属性 + + + 文档 + + + 复制我的显示器 + + + 在这些时间 + + + 轻松访问中心 + + + 版本 + + + 电子邮件 + + + 电子邮件和应用帐户 + + + 加密 + + + 环境 + + + 以太网 + + + Exploit Protection + + + 附加程序 + + + 目视控制 + + + 眼动追踪仪 + + + 家庭和其他人员 + + + 反馈和诊断 + + + 文件系统 + + + FindFast + + + 查找我的设备 + + + 防火墙 + + + 专注助手 - 免打扰时间 + + + 专注助手 - 免扰时间 + + + 文件夹选项 + + + 字体 + + + 适用于开发人员 + + + 游戏栏 + + + 游戏控制器 + + + 游戏 DVR + + + 游戏模式 + + + 网关 + + + 常规 + + + 获取应用程序 + + + 入门 + + + 概览 + + + 图形设置 + + + 灰度 + + + 绿色周 + + + 头戴显示设备 + + + 高对比度 + + + 全息音频 + + + 全息环境 + + + 全息头戴显示设备 + + + 全息管理 + + + 家庭组 + + + ID + + + 图像 + + + 索引选项 + + + 红外线 + + + 墨迹书写和键入 + + + Internet 选项 + + + 倒色 + + + IP + + + 隔离浏览 + + + 日语输入法设置 + + + 游戏杆属性 + + + 键盘 + + + 小键盘 + + + + + + 语言 + + + 浅色 + + + 浅色模式 + + + 位置 + + + 锁屏界面 + + + 放大镜 + + + 邮件 - Microsoft Exchange 或 Windows 消息 + + + 管理已知网络 + + + 管理可选功能 + + + 消息传递 + + + 按流量计费的连接 + + + 麦克风 + + + Microsoft Mail Post Office + + + 移动设备 + + + 移动热点 + + + Mono + + + 更多详细信息 + + + 运动 + + + 鼠标 + + + 鼠标和触摸板 + + + 鼠标、字体、键盘和打印机属性 + + + 鼠标指针 + + + 多媒体属性 + + + 多任务 + + + NFC + + + NFC 交易 + + + 讲述人 + + + 导航栏 + + + 网络 + + + 网络与共享中心 + + + 网络连接 + + + 网络属性 + + + 网络安装向导 + + + 网络状态 + + + 夜灯 + + + 夜灯设置 + + + 注意 + + + 仅当移动设备连接到设备时可用。 + + + 仅在支持高级图形选项的设备上可用。 + + + 仅适用于配备电池的设备,如平板电脑。 + + + 已在 Windows 10 版本 1809 (内部版本 17763) 及更高版本中弃用。 + + + 仅当拨号匹配时可用。 + + + 仅在启用 DirectAccess 时可用。 + + + 仅在支持高级显示选项的设备上可用。 + + + 仅当用户已注册 WIP 时显示。 + + + 需要眼动追踪仪硬件。 + + + 如果已安装 Microsoft 日语输入法编辑器,则可用。 + + + 如果已安装 Microsoft 拼音输入法编辑器,则可用。 + + + 如果已安装 Microsoft 五笔输入法编辑器,则可用。 + + + 仅当已安装混合现实门户应用时可用。 + + + 仅在移动设备上以及企业已部署预配程序包的情况下可用。 + + + 已在 Windows 10 版本 1903 (内部版本 18362) 新增。 + + + 已在 Windows 10 版本 2004 (内部版本 19041) 新增。 + + + 仅当已安装“设置应用” (例如,由第三方安装) 时可用。 + + + 仅当存在触摸板硬件时可用。 + + + 仅当设备具有 Wi-Fi 适配器时可用。 + + + 设备必须支持 Windows Anywhere。 + + + 仅当企业已部署预配程序包时可用。 + + + 通知 + + + 通知和操作 + + + Num Lock + + + ODBC 数据源管理员 (32 位) + + + ODBC 数据源管理员 (64 位) + + + 脱机文件 + + + 离线离线地图 + + + 离线地图 - 下载地图 + + + 屏上 + + + OS + + + 其他设备 + + + 其他选项 + + + 其他用户 + + + 家长控制 + + + 密码 + + + 密码属性 + + + 笔和输入设备 + + + 触笔和触控 + + + 笔和 Windows Ink + + + 网络邻居 + + + 性能信息和工具 + + + 权限和历史记录 + + + 个性化(类别) + + + 电话 + + + 电话和调制解调器 + + + 电话和调制解调器 - 选项 + + + 电话 + + + 手机 - 默认应用 + + + 图片 + + + 图片 + + + 拼音输入法设置 + + + 拼音输入法设置 - 专业词典 + + + 拼音输入法设置 - 按键配置 + + + 拼音输入法设置 - UDP + + + 全屏进行游戏 + + + 用于搜索 Windows 设置的插件 + + + Windows 设置 + + + 电源和休眠 + + + 电源选项 + + + 表示 + + + 打印屏幕 + + + 打印机 + + + 打印机和扫描仪 + + + 问题报告和解决方案 + + + 处理器 + + + 程序与功能 + + + 投影到这台电脑 + + + 正在预配 + + + 邻近 + + + 代理 + + + Quickime + + + 免扰时间游戏 + + + 无线电收发器 + + + RAM + + + 识别 + + + 恢复 + + + 红眼 + + + 红-绿 + + + 红色周 + + + 区域 + + + 区域与语言 + + + 区域格式设置 + + + 区域语言 + + + 区域设置属性 + + + RemoteApp 和桌面连接 + + + 远程桌面 + + + 扫描仪和照相机 + + + 已计划 + + + 计划任务 + + + 屏幕旋转 + + + 滚动条 + + + 滚动锁定 + + + SDNS + + + 正在搜索 Windows + + + SecureDNS + + + 安全中心 + + + 安全处理器 + + + 会话清理 + + + 设置展台 + + + 设置主页 + + + 共享体验 + + + Wifi + + + 快捷方式 + + + 登录选项 + + + 登录选项 - 动态锁定 + + + 大小 + + + 声音 + + + 语音 + + + 语音识别 + + + 语音键入 + + + 开始 + + + 起始位置 + + + 启动应用 + + + 存储 + + + 存储策略 + + + 存储感知 + + + 同步中心 + + + 同步设置 + + + 系统 + + + 系统属性和添加新硬件向导 + + + 制表符 + + + 平板电脑模式 + + + 平板电脑设置 + + + 说话 + + + 与 Cortana 交谈 + + + 任务栏 + + + 任务栏颜色 + + + 任务 + + + 团队会议 + + + 团队设备管理 + + + 文本转语音 + + + 主题 + + + 时间线 + + + 触摸 + + + 触控反馈 + + + 触摸板 + + + 透明度 + + + 排除故障 + + + TruePlay + + + 键入 + + + 卸载 + + + USB + + + 用户帐户 + + + 版本 + + + 视频播放 + + + 视频 + + + 虚拟桌面 + + + 病毒 + + + 语音激活 + + + 音量 + + + VPN + + + 壁纸 + + + 较暖的颜色 + + + 欢迎中心 + + + 欢迎屏幕 + + + 滚轮 + + + WLAN + + + WLAN 呼叫 + + + Wi-Fi 设置 + + + 窗口边框 + + + ADMX Windows Anytime Upgrade + + + 随处使用 Windows + + + Windows CardSpace + + + Windows Defender + + + Windows 防火墙 + + + Windows Hello 设置 - 人脸 + + + Windows Hello 设置 - 指纹 + + + Windows 预览体验计划 + + + Windows 移动中心 + + + Windows 搜索 + + + Windows 安全中心 + + + Windows 更新 + + + Windows 更新 - 高级选项 + + + Windows 更新 - 检查更新 + + + Windows 更新 - 重启选项 + + + Windows 更新 - 查看可选更新 + + + Windows 更新 - 查看更新历史记录 + + + 无线 + + + 工作区 + + + 工作区预配 + + + 五笔输入法设置 + + + 五笔输入法设置 - UDP + + + Xbox 网络 + + + 你的信息 + + + 缩放 + + + + + + + + + bpmf + + + 通话 + + + + + + 绿色盲 + + + + + + + + + + + + + + + jpnime + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 红色盲 + + + schedtasks + + + + + + + + + + + + + + + 蓝色盲 + + + + + \ No newline at end of file From 0a7ca4f5fef89af958f1d28408b273837b424c31 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 4 Oct 2021 18:10:00 -0500 Subject: [PATCH 20/45] Let WindowsSettings Plugin become built-in plugin. 1. Reference directly to Flow.Launcher.Plugin Project --- Flow.Plugin.WindowsSettings.csproj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Flow.Plugin.WindowsSettings.csproj b/Flow.Plugin.WindowsSettings.csproj index 90a627db864..c9fedc10578 100644 --- a/Flow.Plugin.WindowsSettings.csproj +++ b/Flow.Plugin.WindowsSettings.csproj @@ -77,9 +77,8 @@ PreserveNewest - - + \ No newline at end of file From b0cf10012caa4e5c9e4bace103268ab5edff8aef Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 4 Oct 2021 23:51:57 -0500 Subject: [PATCH 21/45] change output link to flow output directory --- Flow.Plugin.WindowsSettings.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Plugin.WindowsSettings.csproj b/Flow.Plugin.WindowsSettings.csproj index c9fedc10578..4f4a28cab97 100644 --- a/Flow.Plugin.WindowsSettings.csproj +++ b/Flow.Plugin.WindowsSettings.csproj @@ -15,7 +15,7 @@ - Debug\WindowsSettings\ + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.WindowsSettings DEBUG;TRACE false portable @@ -27,7 +27,7 @@ - Release\WindowsSettings\ + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.WindowsSettings TRACE true portable From 75d31633c1cbcf665550755a3d7abc16514949ef Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 9 Oct 2021 15:20:19 +1100 Subject: [PATCH 22/45] Add plugin folder --- .../.gitignore | 0 .../Classes}/WindowsSetting.cs | 0 .../Flow.Plugin.WindowsSettings.csproj | 0 .../Flow.Plugin.WindowsSettings.sln | 0 .../Helper}/ContextMenuHelper.cs | 0 .../Helper}/JsonSettingsListHelper.cs | 0 .../Helper}/ResultHelper.cs | 0 .../Helper}/TranslationHelper.cs | 0 .../Helper}/UnsupportedSettingsHelper.cs | 0 .../Images}/WindowsSettings.dark.png | Bin .../Images}/WindowsSettings.light.png | Bin Log.cs => Flow.Plugin.WindowsSettings/Log.cs | 0 Main.cs => Flow.Plugin.WindowsSettings/Main.cs | 0 .../Properties}/Resources.Designer.cs | 0 .../Properties}/Resources.cs-CZ.resx | 0 .../Properties}/Resources.de-DE.resx | 0 .../Properties}/Resources.es-ES.resx | 0 .../Properties}/Resources.fr-FR.resx | 0 .../Properties}/Resources.hu-HU.resx | 0 .../Properties}/Resources.it-IT.resx | 0 .../Properties}/Resources.ja-JP.resx | 0 .../Properties}/Resources.ko-KR.resx | 0 .../Properties}/Resources.pl-PL.resx | 0 .../Properties}/Resources.pt-BR.resx | 0 .../Properties}/Resources.pt-PT.resx | 0 .../Properties}/Resources.resx | 0 .../Properties}/Resources.ru-RU.resx | 0 .../Properties}/Resources.sv-SE.resx | 0 .../Properties}/Resources.tr-TR.resx | 0 .../Properties}/Resources.zh-TW.resx | 0 .../Properties}/Resources.zh-cn.resx | 0 README.md => Flow.Plugin.WindowsSettings/README.md | 0 .../WindowsSettings.json | 0 .../plugin.json | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => Flow.Plugin.WindowsSettings/.gitignore (100%) rename {Classes => Flow.Plugin.WindowsSettings/Classes}/WindowsSetting.cs (100%) rename Flow.Plugin.WindowsSettings.csproj => Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj (100%) rename Flow.Plugin.WindowsSettings.sln => Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln (100%) rename {Helper => Flow.Plugin.WindowsSettings/Helper}/ContextMenuHelper.cs (100%) rename {Helper => Flow.Plugin.WindowsSettings/Helper}/JsonSettingsListHelper.cs (100%) rename {Helper => Flow.Plugin.WindowsSettings/Helper}/ResultHelper.cs (100%) rename {Helper => Flow.Plugin.WindowsSettings/Helper}/TranslationHelper.cs (100%) rename {Helper => Flow.Plugin.WindowsSettings/Helper}/UnsupportedSettingsHelper.cs (100%) rename {Images => Flow.Plugin.WindowsSettings/Images}/WindowsSettings.dark.png (100%) rename {Images => Flow.Plugin.WindowsSettings/Images}/WindowsSettings.light.png (100%) rename Log.cs => Flow.Plugin.WindowsSettings/Log.cs (100%) rename Main.cs => Flow.Plugin.WindowsSettings/Main.cs (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.Designer.cs (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.cs-CZ.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.de-DE.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.es-ES.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.fr-FR.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.hu-HU.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.it-IT.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.ja-JP.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.ko-KR.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.pl-PL.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.pt-BR.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.pt-PT.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.ru-RU.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.sv-SE.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.tr-TR.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.zh-TW.resx (100%) rename {Properties => Flow.Plugin.WindowsSettings/Properties}/Resources.zh-cn.resx (100%) rename README.md => Flow.Plugin.WindowsSettings/README.md (100%) rename WindowsSettings.json => Flow.Plugin.WindowsSettings/WindowsSettings.json (100%) rename plugin.json => Flow.Plugin.WindowsSettings/plugin.json (100%) diff --git a/.gitignore b/Flow.Plugin.WindowsSettings/.gitignore similarity index 100% rename from .gitignore rename to Flow.Plugin.WindowsSettings/.gitignore diff --git a/Classes/WindowsSetting.cs b/Flow.Plugin.WindowsSettings/Classes/WindowsSetting.cs similarity index 100% rename from Classes/WindowsSetting.cs rename to Flow.Plugin.WindowsSettings/Classes/WindowsSetting.cs diff --git a/Flow.Plugin.WindowsSettings.csproj b/Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj similarity index 100% rename from Flow.Plugin.WindowsSettings.csproj rename to Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj diff --git a/Flow.Plugin.WindowsSettings.sln b/Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln similarity index 100% rename from Flow.Plugin.WindowsSettings.sln rename to Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln diff --git a/Helper/ContextMenuHelper.cs b/Flow.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs similarity index 100% rename from Helper/ContextMenuHelper.cs rename to Flow.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs diff --git a/Helper/JsonSettingsListHelper.cs b/Flow.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs similarity index 100% rename from Helper/JsonSettingsListHelper.cs rename to Flow.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs diff --git a/Helper/ResultHelper.cs b/Flow.Plugin.WindowsSettings/Helper/ResultHelper.cs similarity index 100% rename from Helper/ResultHelper.cs rename to Flow.Plugin.WindowsSettings/Helper/ResultHelper.cs diff --git a/Helper/TranslationHelper.cs b/Flow.Plugin.WindowsSettings/Helper/TranslationHelper.cs similarity index 100% rename from Helper/TranslationHelper.cs rename to Flow.Plugin.WindowsSettings/Helper/TranslationHelper.cs diff --git a/Helper/UnsupportedSettingsHelper.cs b/Flow.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs similarity index 100% rename from Helper/UnsupportedSettingsHelper.cs rename to Flow.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs diff --git a/Images/WindowsSettings.dark.png b/Flow.Plugin.WindowsSettings/Images/WindowsSettings.dark.png similarity index 100% rename from Images/WindowsSettings.dark.png rename to Flow.Plugin.WindowsSettings/Images/WindowsSettings.dark.png diff --git a/Images/WindowsSettings.light.png b/Flow.Plugin.WindowsSettings/Images/WindowsSettings.light.png similarity index 100% rename from Images/WindowsSettings.light.png rename to Flow.Plugin.WindowsSettings/Images/WindowsSettings.light.png diff --git a/Log.cs b/Flow.Plugin.WindowsSettings/Log.cs similarity index 100% rename from Log.cs rename to Flow.Plugin.WindowsSettings/Log.cs diff --git a/Main.cs b/Flow.Plugin.WindowsSettings/Main.cs similarity index 100% rename from Main.cs rename to Flow.Plugin.WindowsSettings/Main.cs diff --git a/Properties/Resources.Designer.cs b/Flow.Plugin.WindowsSettings/Properties/Resources.Designer.cs similarity index 100% rename from Properties/Resources.Designer.cs rename to Flow.Plugin.WindowsSettings/Properties/Resources.Designer.cs diff --git a/Properties/Resources.cs-CZ.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx similarity index 100% rename from Properties/Resources.cs-CZ.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx diff --git a/Properties/Resources.de-DE.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.de-DE.resx similarity index 100% rename from Properties/Resources.de-DE.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.de-DE.resx diff --git a/Properties/Resources.es-ES.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.es-ES.resx similarity index 100% rename from Properties/Resources.es-ES.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.es-ES.resx diff --git a/Properties/Resources.fr-FR.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx similarity index 100% rename from Properties/Resources.fr-FR.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx diff --git a/Properties/Resources.hu-HU.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx similarity index 100% rename from Properties/Resources.hu-HU.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx diff --git a/Properties/Resources.it-IT.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.it-IT.resx similarity index 100% rename from Properties/Resources.it-IT.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.it-IT.resx diff --git a/Properties/Resources.ja-JP.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx similarity index 100% rename from Properties/Resources.ja-JP.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx diff --git a/Properties/Resources.ko-KR.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx similarity index 100% rename from Properties/Resources.ko-KR.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx diff --git a/Properties/Resources.pl-PL.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx similarity index 100% rename from Properties/Resources.pl-PL.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx diff --git a/Properties/Resources.pt-BR.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx similarity index 100% rename from Properties/Resources.pt-BR.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx diff --git a/Properties/Resources.pt-PT.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx similarity index 100% rename from Properties/Resources.pt-PT.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx diff --git a/Properties/Resources.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.resx similarity index 100% rename from Properties/Resources.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.resx diff --git a/Properties/Resources.ru-RU.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.ru-RU.resx similarity index 100% rename from Properties/Resources.ru-RU.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.ru-RU.resx diff --git a/Properties/Resources.sv-SE.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.sv-SE.resx similarity index 100% rename from Properties/Resources.sv-SE.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.sv-SE.resx diff --git a/Properties/Resources.tr-TR.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx similarity index 100% rename from Properties/Resources.tr-TR.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx diff --git a/Properties/Resources.zh-TW.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx similarity index 100% rename from Properties/Resources.zh-TW.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx diff --git a/Properties/Resources.zh-cn.resx b/Flow.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx similarity index 100% rename from Properties/Resources.zh-cn.resx rename to Flow.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx diff --git a/README.md b/Flow.Plugin.WindowsSettings/README.md similarity index 100% rename from README.md rename to Flow.Plugin.WindowsSettings/README.md diff --git a/WindowsSettings.json b/Flow.Plugin.WindowsSettings/WindowsSettings.json similarity index 100% rename from WindowsSettings.json rename to Flow.Plugin.WindowsSettings/WindowsSettings.json diff --git a/plugin.json b/Flow.Plugin.WindowsSettings/plugin.json similarity index 100% rename from plugin.json rename to Flow.Plugin.WindowsSettings/plugin.json From 0b60d3d0df93a98ab9fcf2fc518d0d3b31301fee Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 9 Oct 2021 15:25:57 +1100 Subject: [PATCH 23/45] move to plugins folder --- .../.gitignore | 0 .../Classes/WindowsSetting.cs | 0 .../Flow.Plugin.WindowsSettings.csproj | 0 .../Flow.Plugin.WindowsSettings.sln | 0 .../Helper/ContextMenuHelper.cs | 0 .../Helper/JsonSettingsListHelper.cs | 0 .../Helper/ResultHelper.cs | 0 .../Helper/TranslationHelper.cs | 0 .../Helper/UnsupportedSettingsHelper.cs | 0 .../Images/WindowsSettings.dark.png | Bin .../Images/WindowsSettings.light.png | Bin .../Flow.Launcher.Plugin.WindowsSettings}/Log.cs | 0 .../Flow.Launcher.Plugin.WindowsSettings}/Main.cs | 0 .../Properties/Resources.Designer.cs | 0 .../Properties/Resources.cs-CZ.resx | 0 .../Properties/Resources.de-DE.resx | 0 .../Properties/Resources.es-ES.resx | 0 .../Properties/Resources.fr-FR.resx | 0 .../Properties/Resources.hu-HU.resx | 0 .../Properties/Resources.it-IT.resx | 0 .../Properties/Resources.ja-JP.resx | 0 .../Properties/Resources.ko-KR.resx | 0 .../Properties/Resources.pl-PL.resx | 0 .../Properties/Resources.pt-BR.resx | 0 .../Properties/Resources.pt-PT.resx | 0 .../Properties/Resources.resx | 0 .../Properties/Resources.ru-RU.resx | 0 .../Properties/Resources.sv-SE.resx | 0 .../Properties/Resources.tr-TR.resx | 0 .../Properties/Resources.zh-TW.resx | 0 .../Properties/Resources.zh-cn.resx | 0 .../Flow.Launcher.Plugin.WindowsSettings}/README.md | 0 .../WindowsSettings.json | 0 .../plugin.json | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/.gitignore (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Classes/WindowsSetting.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Flow.Plugin.WindowsSettings.csproj (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Flow.Plugin.WindowsSettings.sln (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Helper/ContextMenuHelper.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Helper/JsonSettingsListHelper.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Helper/ResultHelper.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Helper/TranslationHelper.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Helper/UnsupportedSettingsHelper.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Images/WindowsSettings.dark.png (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Images/WindowsSettings.light.png (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Log.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Main.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.Designer.cs (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.cs-CZ.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.de-DE.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.es-ES.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.fr-FR.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.hu-HU.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.it-IT.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.ja-JP.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.ko-KR.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.pl-PL.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.pt-BR.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.pt-PT.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.ru-RU.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.sv-SE.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.tr-TR.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.zh-TW.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/Properties/Resources.zh-cn.resx (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/README.md (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/WindowsSettings.json (100%) rename {Flow.Plugin.WindowsSettings => Plugins/Flow.Launcher.Plugin.WindowsSettings}/plugin.json (100%) diff --git a/Flow.Plugin.WindowsSettings/.gitignore b/Plugins/Flow.Launcher.Plugin.WindowsSettings/.gitignore similarity index 100% rename from Flow.Plugin.WindowsSettings/.gitignore rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/.gitignore diff --git a/Flow.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Classes/WindowsSetting.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs diff --git a/Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj similarity index 100% rename from Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj diff --git a/Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln similarity index 100% rename from Flow.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln diff --git a/Flow.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs diff --git a/Flow.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs diff --git a/Flow.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Helper/ResultHelper.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs diff --git a/Flow.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Helper/TranslationHelper.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs diff --git a/Flow.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs diff --git a/Flow.Plugin.WindowsSettings/Images/WindowsSettings.dark.png b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.dark.png similarity index 100% rename from Flow.Plugin.WindowsSettings/Images/WindowsSettings.dark.png rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.dark.png diff --git a/Flow.Plugin.WindowsSettings/Images/WindowsSettings.light.png b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.light.png similarity index 100% rename from Flow.Plugin.WindowsSettings/Images/WindowsSettings.light.png rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.light.png diff --git a/Flow.Plugin.WindowsSettings/Log.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Log.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs diff --git a/Flow.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Main.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.Designer.cs rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.de-DE.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.de-DE.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.es-ES.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-ES.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.es-ES.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-ES.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.hu-HU.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.it-IT.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.it-IT.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.ru-RU.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ru-RU.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.ru-RU.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ru-RU.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.sv-SE.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sv-SE.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.sv-SE.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sv-SE.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx diff --git a/Flow.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx similarity index 100% rename from Flow.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx diff --git a/Flow.Plugin.WindowsSettings/README.md b/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md similarity index 100% rename from Flow.Plugin.WindowsSettings/README.md rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md diff --git a/Flow.Plugin.WindowsSettings/WindowsSettings.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/WindowsSettings.json similarity index 100% rename from Flow.Plugin.WindowsSettings/WindowsSettings.json rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/WindowsSettings.json diff --git a/Flow.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json similarity index 100% rename from Flow.Plugin.WindowsSettings/plugin.json rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json From 02bb75fac46b01f7fd92069626b70d8e944cc66d Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 29 Oct 2021 21:52:11 -0500 Subject: [PATCH 24/45] Include WindowsSettings in Flow Project --- Flow.Launcher.sln | 17 ++++++++++++- .../Flow.Plugin.WindowsSettings.csproj | 4 +-- .../Flow.Plugin.WindowsSettings.sln | 25 ------------------- 3 files changed, 18 insertions(+), 28 deletions(-) delete mode 100644 Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln diff --git a/Flow.Launcher.sln b/Flow.Launcher.sln index 21c3b47dc0a..fda779fa8c0 100644 --- a/Flow.Launcher.sln +++ b/Flow.Launcher.sln @@ -1,4 +1,4 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 +Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29806.167 MinimumVisualStudioVersion = 10.0.40219.1 @@ -68,6 +68,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Proces EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.PluginsManager", "Plugins\Flow.Launcher.Plugin.PluginsManager\Flow.Launcher.Plugin.PluginsManager.csproj", "{4792A74A-0CEA-4173-A8B2-30E6764C6217}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Flow.Plugin.WindowsSettings", "Plugins\Flow.Launcher.Plugin.WindowsSettings\Flow.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -283,6 +285,18 @@ Global {4792A74A-0CEA-4173-A8B2-30E6764C6217}.Release|x64.Build.0 = Release|Any CPU {4792A74A-0CEA-4173-A8B2-30E6764C6217}.Release|x86.ActiveCfg = Release|Any CPU {4792A74A-0CEA-4173-A8B2-30E6764C6217}.Release|x86.Build.0 = Release|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|Any CPU.ActiveCfg = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|Any CPU.Build.0 = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.Build.0 = Debug|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|Any CPU.ActiveCfg = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|Any CPU.Build.0 = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -300,6 +314,7 @@ Global {F9C4C081-4CC3-4146-95F1-E102B4E10A5F} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {588088F4-3262-4F9F-9663-A05DE12534C3} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {4792A74A-0CEA-4173-A8B2-30E6764C6217} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} + {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {F26ACB50-3F6C-4907-B0C9-1ADACC1D0DED} diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj index 4f4a28cab97..e65a4c62e43 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj @@ -14,7 +14,7 @@ enable - + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.WindowsSettings DEBUG;TRACE false @@ -26,7 +26,7 @@ true - + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.WindowsSettings TRACE true diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln deleted file mode 100644 index 79ce0859866..00000000000 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.31512.422 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Plugin.WindowsSettings", "Flow.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {EA85E245-28F0-4192-B9E7-6FA8CFF3D3CD} - EndGlobalSection -EndGlobal From 582e29658bb64125f954d3a66c4019d056f5705b Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 29 Oct 2021 21:53:52 -0500 Subject: [PATCH 25/45] Update Translation Mechamism in Flow --- .../Helper/ResultHelper.cs | 2 +- .../Helper/TranslationHelper.cs | 30 +++++++++++-------- .../Main.cs | 15 +++++----- 3 files changed, 26 insertions(+), 21 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index fb781e1f8c8..177f1ec0059 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -71,7 +71,7 @@ internal static List GetResultList( if (result is null && entry.Keywords is not null) { - string[] searchKeywords = query.Terms[(string.IsNullOrEmpty(query.ActionKeyword) ? 0 : 1)..]; + string[] searchKeywords = query.SearchTerms; if (searchKeywords .All(x => entry diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 0e7b950e84e..48886167fee 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -19,12 +19,12 @@ internal static class TranslationHelper /// Translate all settings of the given list with . /// /// The list that contains to translate. - internal static void TranslateAllSettings(in IEnumerable? settingsList) + internal static IEnumerable TranslateAllSettings(in IEnumerable? settingsList) { + var translatedSettings = new List(); + if (settingsList is null) - { - return; - } + return new List(); foreach (var settings in settingsList) { @@ -47,9 +47,7 @@ internal static void TranslateAllSettings(in IEnumerable? settin Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main)); } - settings.Area = area ?? settings.Area ?? string.Empty; - settings.Name = name ?? settings.Name ?? string.Empty; - settings.Type = type ?? settings.Type ?? string.Empty; + if (!string.IsNullOrEmpty(settings.Note)) { @@ -61,11 +59,10 @@ internal static void TranslateAllSettings(in IEnumerable? settin settings.Note = note ?? settings.Note ?? string.Empty; } - - if (!(settings.AltNames is null) && settings.AltNames.Any()) + List? translatedAltNames = null; + if (settings.AltNames is not null && settings.AltNames.Any()) { - var translatedAltNames = new Collection(); - + translatedAltNames = new List(); foreach (var altName in settings.AltNames) { if (string.IsNullOrWhiteSpace(altName)) @@ -82,9 +79,18 @@ internal static void TranslateAllSettings(in IEnumerable? settin translatedAltNames.Add(translatedAltName ?? altName); } - settings.AltNames = translatedAltNames; } + var translatedSetting = new WindowsSetting + { + Area = area ?? settings.Area, + Name = name ?? settings.Name, + Type = type ?? settings.Type, + AltNames = translatedAltNames + }; + + translatedSettings.Add(translatedSetting); } + return translatedSettings; } } } diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs index f66d99ad8ce..b531ac97e2f 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs @@ -52,6 +52,11 @@ public sealed class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable /// private IEnumerable? _settingsList; + /// + /// List that contains translated string + /// + private IEnumerable _translatedSettingList = new List(); + /// /// Initializes a new instance of the class. /// @@ -85,7 +90,7 @@ public void Init(PluginInitContext context) Log.Init(_context.API); ResultHelper.Init(_context.API); - TranslationHelper.TranslateAllSettings(_settingsList); + _translatedSettingList = TranslationHelper.TranslateAllSettings(_settingsList); } /// @@ -95,13 +100,7 @@ public void Init(PluginInitContext context) /// A filtered list, can be empty when nothing was found. public List Query(Query query) { - if (_settingsList is null) - { - return new List(0); - } - - - var newList = ResultHelper.GetResultList(_settingsList, query, _defaultIconPath); + var newList = ResultHelper.GetResultList(_translatedSettingList, query, _defaultIconPath); return newList; From 255f8091a546cc0458a0efd387a2c84465e2379b Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 29 Oct 2021 22:16:13 -0500 Subject: [PATCH 26/45] Add OnCultureInfoChanged to IPluginI18n to allow plugin do action when culture change --- Flow.Launcher.Core/Resource/Internationalization.cs | 6 +++++- Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs | 9 ++++++++- Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs | 6 ++++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Core/Resource/Internationalization.cs b/Flow.Launcher.Core/Resource/Internationalization.cs index 78e8c5cbf23..374f7c71fc8 100644 --- a/Flow.Launcher.Core/Resource/Internationalization.cs +++ b/Flow.Launcher.Core/Resource/Internationalization.cs @@ -10,6 +10,7 @@ using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Plugin; using System.Globalization; +using System.Threading.Tasks; namespace Flow.Launcher.Core.Resource { @@ -95,10 +96,13 @@ public void ChangeLanguage(Language language) { LoadLanguage(language); } - UpdatePluginMetadataTranslations(); Settings.Language = language.LanguageCode; CultureInfo.CurrentCulture = new CultureInfo(language.LanguageCode); CultureInfo.CurrentUICulture = CultureInfo.CurrentCulture; + Task.Run(() => + { + UpdatePluginMetadataTranslations(); + }); } public bool PromptShouldUsePinyin(string languageCodeToSet) diff --git a/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs b/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs index e332d450eae..e8e861af651 100644 --- a/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs +++ b/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs @@ -1,4 +1,6 @@ -namespace Flow.Launcher.Plugin +using System.Globalization; + +namespace Flow.Launcher.Plugin { /// /// Represent plugins that support internationalization @@ -8,5 +10,10 @@ public interface IPluginI18n : IFeatures string GetTranslatedPluginTitle(); string GetTranslatedPluginDescription(); + + void OnCultureInfoChanged(CultureInfo newCulture) + { + + } } } \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs index b531ac97e2f..491bb903f20 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; +using System.Globalization; using System.Reflection; using Flow.Launcher.Plugin; using Flow.Plugin.WindowsSettings.Classes; @@ -106,6 +107,11 @@ public List Query(Query query) } + public void OnCultureInfoChanged(CultureInfo newCulture) + { + _translatedSettingList = TranslationHelper.TranslateAllSettings(_settingsList); + } + /// /// Return a list context menu entries for a given (shown at the right side of the result). /// From ae2e72b9262096294ae1c2f20479fb11e56774b1 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 29 Oct 2021 22:18:20 -0500 Subject: [PATCH 27/45] add comment --- Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs b/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs index e8e861af651..61662b671a2 100644 --- a/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs +++ b/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs @@ -11,6 +11,9 @@ public interface IPluginI18n : IFeatures string GetTranslatedPluginDescription(); + /// + /// The method will be invoked when language of flow changed + /// void OnCultureInfoChanged(CultureInfo newCulture) { From 7cfb71df3586d08f28dff98deef1760402d26b67 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 29 Oct 2021 23:08:59 -0500 Subject: [PATCH 28/45] Change WindowsSettings class to record and use with to create translated setting --- .../Classes/WindowsSetting.cs | 2 +- .../Helper/TranslationHelper.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs index 4a130daf746..be7cd44d307 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs @@ -9,7 +9,7 @@ namespace Flow.Plugin.WindowsSettings.Classes /// /// A windows setting /// - internal class WindowsSetting + internal record WindowsSetting { /// /// Initializes a new instance of the class. diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 48886167fee..529fae0a3c1 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -80,7 +80,7 @@ internal static IEnumerable TranslateAllSettings(in IEnumerable< } } - var translatedSetting = new WindowsSetting + var translatedSetting = settings with { Area = area ?? settings.Area, Name = name ?? settings.Name, From 304fb90c5d526fa08b7df79da3ef9925ebe0d830 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Sat, 30 Oct 2021 00:11:17 -0500 Subject: [PATCH 29/45] Expand EnvironmentVariable in Command --- .../Helper/ResultHelper.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index 177f1ec0059..c5fd287bda7 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -150,12 +150,8 @@ private static bool DoOpenSettingsAction(WindowsSetting entry) ProcessStartInfo processStartInfo; var command = entry.Command; - - if (command.Contains("%windir%", StringComparison.InvariantCultureIgnoreCase)) - { - var windowsFolder = Environment.GetFolderPath(Environment.SpecialFolder.Windows); - command = command.Replace("%windir%", windowsFolder, StringComparison.InvariantCultureIgnoreCase); - } + + command = Environment.ExpandEnvironmentVariables(command); if (command.Contains(' ')) { From 9fac7cc77fd31c3f58e20a4b0364dad600d8cafe Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Mon, 29 Nov 2021 17:47:49 -0600 Subject: [PATCH 30/45] Update WindowsSettings.light.png Co-Authored-By: Dobin Park <6903107+onesounds@users.noreply.github.com> --- .../Images/WindowsSettings.light.png | Bin 2781 -> 5683 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.light.png b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.light.png index d5ce64c1955024b3fac7db70b35fca8052d37a57..79691ed9598d3d4131db53350d483513ed5f1814 100644 GIT binary patch delta 4179 zcma)X-|&!6AtJm-9$%XvOuq+Y9};DF$!R2{}KZB;Cqiosxz z+IUq8PFo%8h*v?XVbrjvG5EbeV=y}E+La5#0%x&Uv^vHDgVVv{b+Fh|7`zS!qks&e z`RH8sc5-(KHlp}D>ni-0ivC~Hv>l-QQM{&>Hb%=?9j%4IYoRF=4Gh{*8;?QbUDO?2 zG@PkabuE|I2B2=B$^S>Gfb{b}AK9he~6C5ou(IEq z)d!&yB`?aXAS+@7HT&BWcH?%96ZD$w<-o?41jtjDsi#%IUHeUJ#8uMlLfXuUUX8c+ zuwd@0Pr&c9By!eN{gK4jv!-*V5+KnVb{l@9Y|n5kG@4GM(IOW^_zi#`G;|8l!7E%q z+E`WbQIF%qlATG>;OJBOX0^BH!hA@k?~YyXa1h*hm|Yo&Li>b|#ZH|Wwk;9HS2GEaA6*ZNPG3Lx7rhT>mgTO1Y~Ug>XrYM&As$BwSs zY(tyP{cQTo+^%&dPgK%ri|I77sp)<*QxnvmXyn`FwVLtZd}6Vvj*^g3jA?cK=BIxC zgqCz-6In$|cf{5+L79M`m$!@J#0|pg#XVE{k&5d3r{WVYOb2@@09`M zt{*7XR4C{lu|?3j=Egf+)LFKea?+hp-d8hj-IKs1;sIjUZyCBV5|{v?z$3ARLN&DT zTRw|ln{<4($5#)>nje2$EMLCDnI0fgyQ7=e{tCJ9cuyx87f0CwurgH?0fOnRuvQjR zVRnH4c>%&yL^kT0UY!?gd4B~>*wlSxoZl9oPHeD~`>_$Ld@I3$JIQVb;9MQ<1AM^k z*T4q1n-43~?IpnA?nHYJ$5kLh;NF1I^XO-@+F*mpY(rCl(lrbBI?rb&+B==fHXzPw z7@X>J=gwCK3c^xPrae+9NUZL+K?_Dimgxv3U?VJ5>{j=e+FDa#N=BTzprzJ%3g~6c zK`OLnytW)0u`_-%TV5uTI_hD70V~Bm?shiyTcszR@8$CJT9msFHp79(60tA{^krOV z#!t<1Km-(({t5_Gga9i>q-6{xuaT& zRj7(qVzxRA#6Y=~QkQ`h`GArwkITr&bCSlX7a!IiAu*3#^VR);W@>>s@aScs=azQ# zs+wvfRPkgf2M&@Mv@NdxK}ZO(=C;CMvErU)&x&44wGoaKr-R6*KB(MkW0~&@)ZIJsrJS6~e=1Qj^J%%W2dia+=o6<29URA^91gQA*N}T2gQ4#Gh(>b-c z)3)vNQ^Jra7@NlRixx;ouYAjC;uUU(HqC7bc#gj7oI6#k5wMTIzZ3nT-hoNXB^Eo* z{)GS0UdwGNmu4UHbB*uSMLakMI40l?ZDt=`UqW!s*`I#pE;Is5AAr%vI7~z~U;vE5 zLQwr5hoaa+hoHaKCVK*}P{MA5l{(6JARd$@Z(FxGyppz|!(6j}Eu7Tp`nn=NW@zz3 zL7Y?BA;04EXsW(Wq*d~ft)Ch9=Fhxzg1TP(AZs}M#_vpks8=M-CLukJ>N|_LXCh%N zO|Z>gGykcfmTWYXYEHlCTko<6SgM=Rs;ZK_RwQ=ut<{U0Q#om_@}(g=oY_w*Q5f6z z9lPD2l9u-{=kD(ACVf5pc0#&BohV#_Oy5XG!@n)Y5oOu4J}SccVNDFzKGn(ZF-f22 zAR}X({2$_WSqadVz^A9AfoyqSg$#crb960<27Rx6ZGO=@?JZTNQ zmS5q@3&=jA^Po5rKg@i|mFQ;gjp&yP6K8jf{QT$?Q^<;!WHANs;M4s^Sx&~v`!l?+ z((*5B$M3hpA*g2fG1irA=hOi=^r5|5CP;-Q_pFSkKR98ZBPf(oJ@c{9(p@HVHdy3J zjAQRR`jMt6de{o^RWZ(c&*=Xu10se5K~X3W_2dyRbmV3%k^AfW*i_}p`}iTFo`p1e zX5D536OF=M-FX%_R#4I)mFa%~;E*s=Odb5^^o7ns>YPVn2l)p)0y}BcX${@|`!g77 zXG1_y6^UT3=R~5XjtKRVt@XnLUeIP(^D9SEZ>;qgEMj@<%gdY2TnVjG&3ws|l0RYD zhPUHBo5rvdyDQ|FFeFeBco6VhT!;QFe_eJso8t1Ztz`Lfv#Cu#iB)ZFr1v!T`1R9X zAsKVfOsU(o;(+c~BihqQBSAGmrK1B%hbN)L1DDbbRV)a@QEkgw_g3$Het|GizHzDe%H5FfblwrT0MFY07V)u-Wl!$J@k9TC=M-Ncd&!!Du@(l;AW8E zDs8+889`daIXNs0mABE+skczA3;~(@gduRPAQgc`COpenR&Xh*C2f|#UJ5uQ6#h~M zR7YoR;btH=ViFf4eMJ@M$&E~nvL9U>5y_x0AVF~2tU(w8bZ>*?;e<{m2l#i~X?Pc#LubD#BB1mF1~ZS~Ub=K}d@?j%t_nlH4!#^|rWyRB>6v zLydfi#~cw#OiP{%jEt{Ui4Y5QaZ1`zLopj<{s#RXA_j^_EiRd_vL5AM2V{oom7-ao{pk6zZS|HAT%Vy1unr}RE*UKM+# zBKiKownHCD@dW;$kaxp8_fJUu&HD*pz9_|vRd8kw&cy)%T^nM%^0*$DU2 z{zF!W0Ap{#-mMa9Z$>cC{K;ky{}RX96U)-JoQJ@S7x9m7 z-UW$`ZOByB)Vvc>ta6e&yPmYQG8!K^^^LDF{?vM}dB4~$D`}yjm7#t@I4VR@WR#s( z)t>5V|86DCH8o&5xE2*kO*$SzDQk5T*E;#Yb@&RQN4WP}iBMgB&Eu=FChm4J=^2~o& z-ay|3{q0yiP5m}@J|7{(@N;_+c+EeQ+@1RI-uq*qcb`6dub-|)0ZKJbW=f&0N_^5X z_dX%z#IFPMzX$~+nl#}PuPu3o&bgy|c4NQ;7r3Iv7X6i1!jh7sm3HP2!m?p;sISKh zF?h|SkCndJvO4jbu?N*MHBvBF|M_Rxr?(|cHIzcBjLH0rH&HTInWd1i=dDb=p}9qG zB#<2T(JbN1Yx^~*&{QI&E7RsCNx8;P)p9NW`Ou-(I$_0H{*E&)`F2Yx!zs}R%@9fIZ86ACh$MPyhkEZHE(+L86~RjS7v)x1_8N-z>IJZ|~0< zx-25b^APIQ1dzyyZb#|aekx36y=@<@q`{#&)-tPFupNJt3bXxW<7|g-)oANiX4-6B zUdS2f5^ZtoYks^z*B;9~vv+>RpDe{`i>Kn$!=_wW7{}z9m)G_1&!tg@f-Fsd=(E;= z_6YSx)48l0O7p~yOI+BBup&!rtjfDDEgW`b4-f9Y%E5w5={IiOzWr6p8Tu03#Z~cS z7(6EoGeu5hWNE~8IbfVlvZ|K&XZ3q<56H=0|zC(ac_$(M{wo8h1qc=|x6i<-Bl zw)9RzX~A6S%!$6UvP%D|)<&R^P(!%kx20S3veLTW^o+(QOEuAxtWveRv(A=OD4Z%> z=lS(&ps1Iwf6sc)Rf!1X0S@P5dbjSAp8O^!^3dMfhjwKcz+$eshK{D``}O5CDaAlq zPDU+n4S)Kwxs*5RwNr4}F2~-S)YR~CfT*}>ofPJay7r>ZJm~uE@LPSo%|#t2isZH8 zNTL&WEVj7JQ#ZG}`5osR2rJ^Jf+ peJJvlh58~ti|vbd{{z(>X``MZNymhOJ%$DVE}p+)R7P-!`X4mny(|C# delta 1234 zcmdn2b60eN1rtZqM5`VZGd%;{WCH^u1#?S1Lo*X&QzIP(BLgD?eFH;%V*_17Q!7)0 zjjwMo+87w>8k&a~npl|_SQ!~=8yH#{7$_-JcWD^#| zwCF60<>Z5`Vw0D!$bQ3J7&z zHGYY?K##m@nVMNpT$-zplAn`bq)?n$q5u>x(NRdw&nr$%E=esZEmBBK$t=h$PR`6r zS4hpt1WFdCrT{f4q-K^DE7hYL3~~h(49?9@Q7B2xEdaVIGcP$aB{QWouSB7=L?I_J zDZeOHA+-eJ=K55H+{E;}M1{nh%)-({J%zy1%wh$Ir;1C93sUn^GK-5-6-skTiZYW^ zixtv~63a4EfC_^$f$~6)<^rwCS18LYOD!r&1R9o_oSK(dtdN+TT$)>)m>+2G!`>It?AHzDPjRa5tZz9Ged-WP-={k)`)XBwWzB!Q zB!p?Zz>9|R2fUr@F%~~^D;gTsy49_&-~8sZO2Xr< z6TkO)H{DC#qgps=W0d4?t@T0QLRY%1UBwj`#2o!#PU4NYp4%ONW_m~bIrSpCd!O+J zU$IF&k~by>zUwK9uKjau^2T3}PJPbn69{VNlRUL{%~~JnJ6y6_EB6WiJ8{m@!8~!+ zhJ~~E^~(5#kF8AHcp#pWTxjaJai)S~$)!8m8`UB-Hvc;D-Y$vn zLhZ%S8Oz@6e(oTAx_Qo%ImJ8=wh7OC_cL2h_2TjAHo=N1sk(NB#xkcj@BhfnC_beb3MWD(mxm+kpSK6Bwn_Rkz|S{wROOAX8$1vc?L6Fj2FvhIVd_QqB% zeqB$WmCk#=%~Y9iq}h1GkL;=cpCx(k-MeG8Ys8PI>-y{K_RhQGWn(S&Uw+n9hs-rB eUdgHfQu`S Date: Wed, 1 Dec 2021 06:14:03 +1100 Subject: [PATCH 31/45] update action keyword tips typo --- Flow.Launcher/Languages/en.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 15bf4883817..784f357467a 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -178,7 +178,7 @@ This new Action Keyword is already assigned to another plugin, please choose a different one Success Completed successfully - Enter the action keyword you need to start the plug-in. Use * if you don't want to specify an action keyword. In the case, The plug-in works without keywords. + Enter the action keyword you like to use to start the plugin. Use * if you don't want to specify any, and the plugin be triggered without any action keywords. Custom Query Hotkey From 0a5e636babd7cd4a0e9098e48cec1349945012e9 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 06:17:58 +1100 Subject: [PATCH 32/45] remove git ignore from WindowsSettings --- .../.gitignore | 367 ------------------ 1 file changed, 367 deletions(-) delete mode 100644 Plugins/Flow.Launcher.Plugin.WindowsSettings/.gitignore diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/.gitignore b/Plugins/Flow.Launcher.Plugin.WindowsSettings/.gitignore deleted file mode 100644 index 5f38a9aa6f7..00000000000 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/.gitignore +++ /dev/null @@ -1,367 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Rider ignored files -/contentModel.xml -/projectSettingsUpdater.xml -/.idea.Microsoft.PowerToys.Run.Plugin.WindowsSettings.iml -/modules.xml -/.idea -# Datasource local storage ignored files -/../../../../../../../:\文档\RiderProject\Flow.Plugin.WindowsSettings\.idea\.idea.Microsoft.PowerToys.Run.Plugin.WindowsSettings.dir\.idea/dataSources/ -/dataSources.local.xml -# Editor-based HTTP Client requests -/httpRequests/ - -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. -## -## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore - -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Mono auto generated files -mono_crash.* - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ - -# Visual Studio 2015/2017 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# StyleCop -StyleCopReport.xml - -# Files built by Visual Studio -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*_wpftmp.csproj -*.log -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc - -# Chutzpah Test files -_Chutzpah* - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opendb -*.opensdf -*.sdf -*.cachefile -*.VC.db -*.VC.VC.opendb - -# Visual Studio profiler -*.psess -*.vsp -*.vspx -*.sap - -# Visual Studio Trace Files -*.e2e - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# JustCode is a .NET coding add-in -.JustCode - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - -# Web workbench (sass) -.sass-cache/ - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.[Pp]ublish.xml -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx -*.appxbundle -*.appxupload - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!?*.[Cc]ache/ - -# Others -ClientBin/ -~$* -*~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings -*.rptproj.rsuser -*- [Bb]ackup.rdl -*- [Bb]ackup ([0-9]).rdl -*- [Bb]ackup ([0-9][0-9]).rdl - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat -node_modules/ - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt - -# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) -*.vbw - -# Visual Studio LightSwitch build output -**/*.HTMLClient/GeneratedArtifacts -**/*.DesktopClient/GeneratedArtifacts -**/*.DesktopClient/ModelManifest.xml -**/*.Server/GeneratedArtifacts -**/*.Server/ModelManifest.xml -_Pvt_Extensions - -# Paket dependency manager -.paket/paket.exe -paket-files/ - -# FAKE - F# Make -.fake/ - -# CodeRush personal settings -.cr/personal - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc - -# Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config - -# Tabs Studio -*.tss - -# Telerik's JustMock configuration file -*.jmconfig - -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs - -# OpenCover UI analysis results -OpenCover/ - -# Azure Stream Analytics local run output -ASALocalRun/ - -# MSBuild Binary and Structured Log -*.binlog - -# NVidia Nsight GPU debugger configuration file -*.nvuser - -# MFractors (Xamarin productivity tool) working folder -.mfractor/ - -# Local History for Visual Studio -.localhistory/ - -# BeatPulse healthcheck temp database -healthchecksdb - -# Backup folder for Package Reference Convert tool in Visual Studio 2017 -MigrationBackup/ - -# Ionide (cross platform F# VS Code tools) working folder -.ionide/ \ No newline at end of file From bf1e9397b864b75fd2f154aff079fa86a6928d96 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 06:27:51 +1100 Subject: [PATCH 33/45] rename WindowsSettings project --- Flow.Launcher.sln | 4 ++-- .../Classes/WindowsSetting.cs | 2 +- ...sproj => Flow.Launcher.Plugin.WindowsSettings.csproj} | 4 ++-- .../Helper/ContextMenuHelper.cs | 6 +++--- .../Helper/JsonSettingsListHelper.cs | 4 ++-- .../Helper/ResultHelper.cs | 6 +++--- .../Helper/TranslationHelper.cs | 6 +++--- .../Helper/UnsupportedSettingsHelper.cs | 4 ++-- Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs | 2 +- Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs | 8 ++++---- .../Properties/Resources.Designer.cs | 9 +++++---- Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md | 2 +- Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json | 2 +- 13 files changed, 30 insertions(+), 29 deletions(-) rename Plugins/Flow.Launcher.Plugin.WindowsSettings/{Flow.Plugin.WindowsSettings.csproj => Flow.Launcher.Plugin.WindowsSettings.csproj} (95%) diff --git a/Flow.Launcher.sln b/Flow.Launcher.sln index fda779fa8c0..3cba7d4be4b 100644 --- a/Flow.Launcher.sln +++ b/Flow.Launcher.sln @@ -1,4 +1,4 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 +Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29806.167 MinimumVisualStudioVersion = 10.0.40219.1 @@ -68,7 +68,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Proces EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.PluginsManager", "Plugins\Flow.Launcher.Plugin.PluginsManager\Flow.Launcher.Plugin.PluginsManager.csproj", "{4792A74A-0CEA-4173-A8B2-30E6764C6217}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Flow.Plugin.WindowsSettings", "Plugins\Flow.Launcher.Plugin.WindowsSettings\Flow.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.WindowsSettings", "Plugins\Flow.Launcher.Plugin.WindowsSettings\Flow.Launcher.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs index be7cd44d307..c9294d25c73 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; -namespace Flow.Plugin.WindowsSettings.Classes +namespace Flow.Launcher.Plugin.WindowsSettings.Classes { /// /// A windows setting diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj similarity index 95% rename from Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj rename to Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj index e65a4c62e43..5e65716ce4c 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj @@ -3,8 +3,8 @@ net5.0-windows {5043CECE-E6A7-4867-9CBE-02D27D83747A} Properties - Flow.Plugin.WindowsSettings - Flow.Plugin.WindowsSettings + Flow.Launcher.Plugin.WindowsSettings + Flow.Launcher.Plugin.WindowsSettings false false x64 diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs index c8adc57c4a5..4572d2b70fb 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs @@ -6,10 +6,10 @@ using System.Collections.Generic; using System.Windows; using Flow.Launcher.Plugin; -using Flow.Plugin.WindowsSettings.Classes; -using Flow.Plugin.WindowsSettings.Properties; +using Flow.Launcher.Plugin.WindowsSettings.Classes; +using Flow.Launcher.Plugin.WindowsSettings.Properties; -namespace Flow.Plugin.WindowsSettings.Helper +namespace Flow.Launcher.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with context menu entries diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs index 1a6d35fa576..19cfb30e244 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs @@ -9,9 +9,9 @@ using System.Reflection; using System.Text.Json; using System.Text.Json.Serialization; -using Flow.Plugin.WindowsSettings.Classes; +using Flow.Launcher.Plugin.WindowsSettings.Classes; -namespace Flow.Plugin.WindowsSettings.Helper +namespace Flow.Launcher.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with the JSON file that contains all Windows settings diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index c5fd287bda7..554fbeef990 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -8,10 +8,10 @@ using System.Linq; using System.Text; using Flow.Launcher.Plugin; -using Flow.Plugin.WindowsSettings.Classes; -using Flow.Plugin.WindowsSettings.Properties; +using Flow.Launcher.Plugin.WindowsSettings.Classes; +using Flow.Launcher.Plugin.WindowsSettings.Properties; -namespace Flow.Plugin.WindowsSettings.Helper +namespace Flow.Launcher.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with results diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 529fae0a3c1..776eec3802d 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -5,10 +5,10 @@ using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; -using Flow.Plugin.WindowsSettings.Classes; -using Flow.Plugin.WindowsSettings.Properties; +using Flow.Launcher.Plugin.WindowsSettings.Classes; +using Flow.Launcher.Plugin.WindowsSettings.Properties; -namespace Flow.Plugin.WindowsSettings.Helper +namespace Flow.Launcher.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with translations. diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs index b056ee0460e..627d875d074 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs @@ -5,9 +5,9 @@ using System; using System.Collections.Generic; using System.Linq; -using Flow.Plugin.WindowsSettings.Classes; +using Flow.Launcher.Plugin.WindowsSettings.Classes; -namespace Flow.Plugin.WindowsSettings.Helper +namespace Flow.Launcher.Plugin.WindowsSettings.Helper { /// /// Helper class to easier work with the version of the Windows OS diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs index f45256173c3..2f6324767e7 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Log.cs @@ -2,7 +2,7 @@ using System.Runtime.CompilerServices; using Flow.Launcher.Plugin; -namespace Flow.Plugin.WindowsSettings +namespace Flow.Launcher.Plugin.WindowsSettings { public static class Log { diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs index 491bb903f20..5c899ff44de 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs @@ -7,11 +7,11 @@ using System.Globalization; using System.Reflection; using Flow.Launcher.Plugin; -using Flow.Plugin.WindowsSettings.Classes; -using Flow.Plugin.WindowsSettings.Helper; -using Flow.Plugin.WindowsSettings.Properties; +using Flow.Launcher.Plugin.WindowsSettings.Classes; +using Flow.Launcher.Plugin.WindowsSettings.Helper; +using Flow.Launcher.Plugin.WindowsSettings.Properties; -namespace Flow.Plugin.WindowsSettings +namespace Flow.Launcher.Plugin.WindowsSettings { /// /// Main class of this plugin that implement all used interfaces. diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs index 1c5ca3c9668..1cfc92f28aa 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.Designer.cs @@ -8,9 +8,10 @@ // //------------------------------------------------------------------------------ -namespace Flow.Plugin.WindowsSettings.Properties { - - +namespace Flow.Launcher.Plugin.WindowsSettings.Properties { + using System; + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -38,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Flow.Plugin.WindowsSettings.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Flow.Launcher.Plugin.WindowsSettings.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md b/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md index b697214d973..e6a98726bd4 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md @@ -1,2 +1,2 @@ -# Flow.Plugin.WindowsSettings +# Flow.Launcher.Plugin.WindowsSettings Port from PowerToy WindowsSettings plugin diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json index b21e6d7809b..30105bbe372 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json @@ -7,6 +7,6 @@ "Version": "1.0.0", "Language": "csharp", "Website": "https://aka.ms/powertoys", - "ExecuteFileName": "Flow.Plugin.WindowsSettings.dll", + "ExecuteFileName": "Flow.Launcher.Plugin.WindowsSettings.dll", "IcoPath": "Images\\WindowsSettings.light.png" } From c88af8a4c660e46c771a4052fecaf0eff151d8b1 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 06:54:11 +1100 Subject: [PATCH 34/45] include WindowsSettings project in build --- Flow.Launcher.sln | 1 + .../Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs | 1 - Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs | 2 -- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Flow.Launcher.sln b/Flow.Launcher.sln index 3cba7d4be4b..95e8b39c13f 100644 --- a/Flow.Launcher.sln +++ b/Flow.Launcher.sln @@ -23,6 +23,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher", "Flow.Launc {9B130CC5-14FB-41FF-B310-0A95B6894C37} = {9B130CC5-14FB-41FF-B310-0A95B6894C37} {FDED22C8-B637-42E8-824A-63B5B6E05A3A} = {FDED22C8-B637-42E8-824A-63B5B6E05A3A} {A3DCCBCA-ACC1-421D-B16E-210896234C26} = {A3DCCBCA-ACC1-421D-B16E-210896234C26} + {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {403B57F2-1856-4FC7-8A24-36AB346B763E} = {403B57F2-1856-4FC7-8A24-36AB346B763E} {588088F4-3262-4F9F-9663-A05DE12534C3} = {588088F4-3262-4F9F-9663-A05DE12534C3} EndProjectSection diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index 554fbeef990..377b79ae8fa 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -99,7 +99,6 @@ internal static List GetResultList( ContextData = entry, Score = score }; - } diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs index 5c899ff44de..e87f41031cb 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs @@ -103,8 +103,6 @@ public List Query(Query query) { var newList = ResultHelper.GetResultList(_translatedSettingList, query, _defaultIconPath); return newList; - - } public void OnCultureInfoChanged(CultureInfo newCulture) From e66af0f605bf7ede314948302c0066b00e189481 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Tue, 30 Nov 2021 15:37:45 -0600 Subject: [PATCH 35/45] Add ControlPanelIcon Add Control Panel Icon to separate control panel setting and windows setting item Co-Authored-By: Dobin Park <6903107+onesounds@users.noreply.github.com> --- .../Classes/WindowsSetting.cs | 8 ++++++- .../Flow.Plugin.WindowsSettings.csproj | 7 ++---- .../Helper/ResultHelper.cs | 19 ++++++++------- .../Helper/TranslationHelper.cs | 2 +- .../Images/ControlPanel_Small.png | Bin 0 -> 2980 bytes .../Main.cs | 22 +++++++----------- 6 files changed, 28 insertions(+), 30 deletions(-) create mode 100644 Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/ControlPanel_Small.png diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs index be7cd44d307..35eb8cb45e4 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs @@ -37,10 +37,16 @@ public WindowsSetting() /// public string Command { get; set; } + private string type = string.Empty; + /// /// Gets or sets the type of the windows setting. /// public string Type { get; set; } + /// + /// Gets or sets the type display name of this setting. + /// + public string? DisplayType { get; set; } /// /// Gets or sets the alternative names of this setting. @@ -73,4 +79,4 @@ public WindowsSetting() /// public uint? DeprecatedInBuild { get; set; } } -} +} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj index e65a4c62e43..d6dc20dd47a 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Plugin.WindowsSettings.csproj @@ -70,12 +70,9 @@ - + PreserveNewest - - - PreserveNewest - + diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index c5fd287bda7..a273ea75df6 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -27,12 +27,13 @@ internal static class ResultHelper /// /// The original result list to convert. /// Query for specific result List - /// The path to the icon of each entry. + /// The path to the icon of each entry. /// A list with . internal static List GetResultList( in IEnumerable list, Query query, - string iconPath) + string windowsSettingIconPath, + string controlPanelIconPath) { var resultList = new List(); foreach (var entry in list) @@ -47,7 +48,7 @@ internal static List GetResultList( if (nameMatch.IsSearchPrecisionScoreMet()) { - var settingResult = NewSettingResult(nameMatch.Score + highScore); + var settingResult = NewSettingResult(nameMatch.Score + highScore, entry.Type); settingResult.TitleHighlightData = nameMatch.MatchData; result = settingResult; } @@ -56,7 +57,7 @@ internal static List GetResultList( var areaMatch = _api.FuzzySearch(query.Search, entry.Area); if (areaMatch.IsSearchPrecisionScoreMet()) { - var settingResult = NewSettingResult(areaMatch.Score + midScore); + var settingResult = NewSettingResult(areaMatch.Score + midScore, entry.Type); settingResult.SubTitleHighlightData = areaMatch.MatchData.Select(x => x + 6).ToList(); result = settingResult; } @@ -65,7 +66,7 @@ internal static List GetResultList( result = entry.AltNames? .Select(altName => _api.FuzzySearch(query.Search, altName)) .Where(match => match.IsSearchPrecisionScoreMet()) - .Select(altNameMatch => NewSettingResult(altNameMatch.Score + midScore)) + .Select(altNameMatch => NewSettingResult(altNameMatch.Score + midScore, entry.Type)) .FirstOrDefault(); } @@ -79,7 +80,7 @@ internal static List GetResultList( .SelectMany(x => x) .Contains(x, StringComparer.CurrentCultureIgnoreCase)) ) - result = NewSettingResult(midScore); + result = NewSettingResult(midScore, entry.Type); } } @@ -90,10 +91,10 @@ internal static List GetResultList( resultList.Add(result); - Result NewSettingResult(int score) => new() + Result NewSettingResult(int score, string type) => new() { Action = _ => DoOpenSettingsAction(entry), - IcoPath = iconPath, + IcoPath = type == "AppSettingsApp" ? windowsSettingIconPath : controlPanelIconPath, SubTitle = $"{Resources.Area} \"{entry.Area}\" {Resources.SubtitlePreposition} {entry.Type}", Title = entry.Name + entry.glyph, ContextData = entry, @@ -150,7 +151,7 @@ private static bool DoOpenSettingsAction(WindowsSetting entry) ProcessStartInfo processStartInfo; var command = entry.Command; - + command = Environment.ExpandEnvironmentVariables(command); if (command.Contains(' ')) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 529fae0a3c1..73ac76bf689 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -84,7 +84,7 @@ internal static IEnumerable TranslateAllSettings(in IEnumerable< { Area = area ?? settings.Area, Name = name ?? settings.Name, - Type = type ?? settings.Type, + DisplayType = type ?? settings.Type, AltNames = translatedAltNames }; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/ControlPanel_Small.png b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/ControlPanel_Small.png new file mode 100644 index 0000000000000000000000000000000000000000..8a8a41aeb8f370ac29e8164a6e31f2133ffbff53 GIT binary patch literal 2980 zcmaJ@XH*ku7Y@P#QWQao)EE#HO)@DYCM2{3OjHm71sjqw!5~R62_~S@{5TZBP!z17 zSSTWjh@jLJg>{kQvMNQ222nw!3&JjJP}y&P?AbYI=6&Bg_qq4E?aU;2dTi3xFxG%T zAlh^q)l0Dg3%9ze;_18OYn)mVqGGQmJDp9~wWsDVMbY%0wD;+BT#S_002-t0l{W487wAq0~8IQQAhxbL}B3oK*SJ;SS<9%1yi^a zvN=RAs@o4|iW3=jKr9X+B9Rh_1R=p71j0Zhia;PB0W=bghATASqAn)8LD%|n`D}qiv~HnB-$SN?LhfOZ?IslPpx=^A$GT{J*1;Fjt zSOT2DWZ>Wcj*Z8$2m}Df;lPjzipYh&`9~iuiWJScu>E^16o?TYZZO7bu_pI$!_^U?A=bM8?{Hd)i z?V2l}t$8jEeR=apji^~tE#fDm>-#Pql}h6*G?fihH)#18-3I#RyP^VS;x%9Z5 zWho|>ZFx*{%nE&Src3SQ@$1ozF;7wq4{7ahXy2T9`MA!f8Hn?NzWh<;w!Tf~HX}a+ zl+!HBT|V|LfwqsJ^bcoNGE&Z?PF^6yD;;T#IdQdlkN>P@?~WGhzqW_-BXkEeJhE~8-`#y+cOhY8HaO8P7&j^q_q#jN*xEJO4} z&rjGTJFOF{(cYZx`%t{$#RzQq`UYe53>V`!mrGOMG+)%**txsm$$+Nx(9p{2`=jJw ztEo%f#=9*wToOhvmhNj#UoE%GeHiE{w%>W)LHBZ6!KJVdAZfZ&P7@qcA8Lq*4s6!B zgkSZ9GQO`icVcI&R!EmJ4||g8*-tY*?%!X9rQ-8hHr&^&rkcKvuIm4tZtiOD*52@b zZ{qDk1IAun)_H2`1r9!sDcR4oxK~@gE_oblys359v6bDY*_uBD*9!eDQ*d& zHx_-PVb93@JP)%-xIR|+)1mAx&QcrO`A21$S@kc=BBSEJ>ZJ95fR;M#>}eY~N_VZ}-MsvwG$|;j3_m&q@?^kQS7n>^iCehTarloIxszgh*9-Ou5JypG&-Z<+^ zxlk!trCoG+{D`@>-;kAb&cgnEN(`*!3RCK*v2^X_WJ9UtoPGi9oJH%O&&#*i`z-4r z>z!MDayD>9koD59W|H4h#*!u~a?q`)Ax;)W%Jt3^+itrXGjI1>|53RTDYQSAHj}W! z$g)6A;5KF)DSxZ3X%_Zz$A$I|6@%SlGo8@7E%SqY>urMaFb@@-k-ugoF%n*XtLN3> zQWcHaD#Fq)Qx1mL=4|$E$VnR9ZXvf$syx+)^~0yeHhU&ieSUVO^i`C>E#cG|dmi?UDe%cq1>Hf26Lw!%(Qh{7h%dYJl^Zada}ZRbn@@IqW&voz86f_ zZ~EC{ZqnA{Vuy3pfGlm=)8t%ErlBm+w+#J^#-_vib*aJD@wc?#lfV9y zr{(W(O?h9z+PfyJBmUs1Ioekxm<>2(|JG?1H2YLd_Ttij?g5$l)?liz#r8pXI^D1+ zE#@H5k$3AVc#+S+4lpBJTnLJ#|2 zt-JIkbS_vqF)6z+0-@{RY;)15uIcreUYFFTcB5%hSG6EOb$H+*yJlN1X{z4f^PZc2 z^kZ2s(KMg;wtHln_Jyca{L7dCPK%5_g0Q&YLfe0p#4@>=bLnhC(Anb_Z{t@94!N0K zE4G8m2L*-8KMtsdzbd3p-t-#@;^&$^t*x1wD}@A(JH5SDYJ|M|Om3cV?w0&_GLrB* zOdfu!WsNsgKk{DljpLuZV|FbCwEgcT=Z|jcIe&jOlK1D`Q*W&(2lIoXhyCRaQN5=> zdi>hd;h=9Y5a6a#qFb)zfYUd{=Z=Q`p@MShlAo^(z1_`SQsJC>uiR?|W2BV4eP&O=_LU2ln z7##@M5Ph!v4!vjFj`lHfn##E+`P-wlWfr$>G=ksUFs&p)YxCa`x8PvE6rU>{$AI+K@Rlw%Q50zu)EA?^~`76;0v1lDl^G2bHuG4MwTysn=AV uGC?P>WmwV*UaXJ`U#q literal 0 HcmV?d00001 diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs index 491bb903f20..6afb3fb090c 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs @@ -18,16 +18,6 @@ namespace Flow.Plugin.WindowsSettings /// public sealed class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable { - /// - /// The path to the symbol for a light theme. - /// - private const string _lightSymbol = "Images/WindowsSettings.light.png"; - - /// - /// The path to the symbol for a dark theme. - /// - private const string _darkSymbol = "Images/WindowsSettings.dark.png"; - /// /// The name of this assembly. /// @@ -39,9 +29,14 @@ public sealed class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable private PluginInitContext? _context; /// - /// The path to the icon for each result. + /// The path to the icon for windows setting result. + /// + private const string windowSettingsIconPath = "Images/WindowsSettings.light.png"; + + /// + /// The path to the icon for control panel result. /// - private string _defaultIconPath; + private const string controlPanelIconPath = "Images/ControlPanel_Small.png"; /// /// Indicate that the plugin is disposed. @@ -64,7 +59,6 @@ public sealed class Main : IPlugin, IContextMenu, IPluginI18n, IDisposable public Main() { _assemblyName = Assembly.GetExecutingAssembly().GetName().Name ?? Name; - _defaultIconPath = _lightSymbol; } /// @@ -101,7 +95,7 @@ public void Init(PluginInitContext context) /// A filtered list, can be empty when nothing was found. public List Query(Query query) { - var newList = ResultHelper.GetResultList(_translatedSettingList, query, _defaultIconPath); + var newList = ResultHelper.GetResultList(_translatedSettingList, query, windowSettingsIconPath, controlPanelIconPath); return newList; From 0d152f5ee7478a92e5f7986caf75fed059001380 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 20:21:26 +1100 Subject: [PATCH 36/45] change default action keyword to global --- Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json index 30105bbe372..3180e4c4bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json @@ -1,6 +1,6 @@ { "ID": "5043CECEE6A748679CBE02D27D83747A", - "ActionKeyword": "$", + "ActionKeyword": "*", "Description": "Windows Settings Query Functionality", "Name": "Windows Settings", "Author": "TobiasSekan", From e7d3dec91fe53c79c9ab5527d8d003f943dbf371 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 20:27:44 +1100 Subject: [PATCH 37/45] fix typo --- Flow.Launcher/Languages/en.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 784f357467a..5dc040004a5 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -178,7 +178,7 @@ This new Action Keyword is already assigned to another plugin, please choose a different one Success Completed successfully - Enter the action keyword you like to use to start the plugin. Use * if you don't want to specify any, and the plugin be triggered without any action keywords. + Enter the action keyword you like to use to start the plugin. Use * if you don't want to specify any, and the plugin will be triggered without any action keywords. Custom Query Hotkey From acb697cba78f13940581f78b1c5dc2a3b8ff07cd Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 21:20:13 +1100 Subject: [PATCH 38/45] update project file, plugin.json and comments --- .../Classes/WindowsSetting.cs | 6 +----- .../Flow.Launcher.Plugin.WindowsSettings.csproj | 14 ++++++-------- .../Helper/ContextMenuHelper.cs | 6 +----- .../Helper/JsonSettingsListHelper.cs | 6 +----- .../Helper/ResultHelper.cs | 9 +-------- .../Helper/TranslationHelper.cs | 6 +----- .../Helper/UnsupportedSettingsHelper.cs | 6 +----- .../Flow.Launcher.Plugin.WindowsSettings/Main.cs | 6 +----- .../Flow.Launcher.Plugin.WindowsSettings/README.md | 2 +- .../plugin.json | 4 ++-- 10 files changed, 16 insertions(+), 49 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs index f0d36d8225c..aa90e900faf 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Collections.Generic; +using System.Collections.Generic; namespace Flow.Launcher.Plugin.WindowsSettings.Classes { 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 0a597216371..f8a19affd56 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj @@ -1,20 +1,18 @@  + Library net5.0-windows - {5043CECE-E6A7-4867-9CBE-02D27D83747A} - Properties - Flow.Launcher.Plugin.WindowsSettings - Flow.Launcher.Plugin.WindowsSettings + true + true false - false + Properties x64 prompt - true en-US enable - + ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.WindowsSettings DEBUG;TRACE false @@ -26,7 +24,7 @@ true - + ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.WindowsSettings TRACE true diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs index 4572d2b70fb..d23959329b1 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; +using System; using System.Collections.Generic; using System.Windows; using Flow.Launcher.Plugin; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs index 19cfb30e244..20e78f71774 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/JsonSettingsListHelper.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index 998a7f212d2..9da84d09d11 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; +using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; @@ -102,12 +98,9 @@ internal static List GetResultList( }; } - return resultList; } - - /// /// Add a tool-tip to the given , based o the given . /// diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs index 330e013d7a4..88e624a9e97 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/TranslationHelper.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System.Collections.Generic; +using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using Flow.Launcher.Plugin.WindowsSettings.Classes; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs index 627d875d074..e67be29f5db 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/UnsupportedSettingsHelper.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; +using System; using System.Collections.Generic; using System.Linq; using Flow.Launcher.Plugin.WindowsSettings.Classes; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs index b38bd8613ae..cbcca03ae7d 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Main.cs @@ -1,8 +1,4 @@ -// Copyright (c) Microsoft Corporation -// The Microsoft Corporation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; +using System; using System.Collections.Generic; using System.Globalization; using System.Reflection; diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md b/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md index e6a98726bd4..8276c25faa0 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/README.md @@ -1,2 +1,2 @@ # Flow.Launcher.Plugin.WindowsSettings -Port from PowerToy WindowsSettings plugin +Ported from PowerToys WindowsSettings plugin diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json index 3180e4c4bcb..58c02bd5f77 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json @@ -1,10 +1,10 @@ { - "ID": "5043CECEE6A748679CBE02D27D83747A", + "ID": "5043CETYU6A748679OPA02D27D99677A", "ActionKeyword": "*", "Description": "Windows Settings Query Functionality", "Name": "Windows Settings", "Author": "TobiasSekan", - "Version": "1.0.0", + "Version": "2.0.0", "Language": "csharp", "Website": "https://aka.ms/powertoys", "ExecuteFileName": "Flow.Launcher.Plugin.WindowsSettings.dll", From 8fc5776efe4c5a9b28a9fdcb6b565ac0c616d11f Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 21:25:36 +1100 Subject: [PATCH 39/45] update plugin description --- Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json index 58c02bd5f77..5d2ad85e710 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json @@ -1,12 +1,12 @@ { "ID": "5043CETYU6A748679OPA02D27D99677A", "ActionKeyword": "*", - "Description": "Windows Settings Query Functionality", + "Description": "Search settings inside Control Panel and Settings App", "Name": "Windows Settings", "Author": "TobiasSekan", "Version": "2.0.0", "Language": "csharp", - "Website": "https://aka.ms/powertoys", + "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.WindowsSettings.dll", "IcoPath": "Images\\WindowsSettings.light.png" } From 0b725eb02c43f1368095f38058acd5512bc1533b Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Dec 2021 22:15:22 +1100 Subject: [PATCH 40/45] change project to .Net SDK, Any CPU build, remove Platform targeted, --- Flow.Launcher.sln | 24 +++++++++---------- ...low.Launcher.Plugin.WindowsSettings.csproj | 5 +--- 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/Flow.Launcher.sln b/Flow.Launcher.sln index 95e8b39c13f..ef4a0519e7f 100644 --- a/Flow.Launcher.sln +++ b/Flow.Launcher.sln @@ -286,18 +286,18 @@ Global {4792A74A-0CEA-4173-A8B2-30E6764C6217}.Release|x64.Build.0 = Release|Any CPU {4792A74A-0CEA-4173-A8B2-30E6764C6217}.Release|x86.ActiveCfg = Release|Any CPU {4792A74A-0CEA-4173-A8B2-30E6764C6217}.Release|x86.Build.0 = Release|Any CPU - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|Any CPU.ActiveCfg = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|Any CPU.Build.0 = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.Build.0 = Debug|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|Any CPU.ActiveCfg = Release|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|Any CPU.Build.0 = Release|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 - {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.Build.0 = Release|x64 + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.Build.0 = Debug|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|Any CPU.Build.0 = Release|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|Any CPU + {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE 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 f8a19affd56..c30fbf9972a 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 net5.0-windows @@ -6,7 +6,6 @@ true false Properties - x64 prompt en-US enable @@ -18,7 +17,6 @@ false portable true - x64 MinimumRecommendedRules.ruleset 4 true @@ -29,7 +27,6 @@ TRACE true portable - x64 MinimumRecommendedRules.ruleset 4 true From aad4fc1973883161f826cff08bc8ade23fc4b0a8 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 2 Dec 2021 21:33:05 +1100 Subject: [PATCH 41/45] update subtitle's setting type display to System settings/Control Panel --- .../Helper/ResultHelper.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs index 9da84d09d11..ca3b06b8d61 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs @@ -91,7 +91,7 @@ internal static List GetResultList( { Action = _ => DoOpenSettingsAction(entry), IcoPath = type == "AppSettingsApp" ? windowsSettingIconPath : controlPanelIconPath, - SubTitle = $"{Resources.Area} \"{entry.Area}\" {Resources.SubtitlePreposition} {entry.Type}", + SubTitle = GetSubtitle(entry.Area, type), Title = entry.Name + entry.glyph, ContextData = entry, Score = score @@ -101,6 +101,13 @@ internal static List GetResultList( return resultList; } + private static string GetSubtitle(string section, string entryType) + { + var settingType = entryType == "AppSettingsApp" ? "System settings" : "Control Panel"; + + return $"{settingType} > {section}"; + } + /// /// Add a tool-tip to the given , based o the given . /// @@ -109,8 +116,10 @@ internal static List GetResultList( private static void AddOptionalToolTip(WindowsSetting entry, Result result) { var toolTipText = new StringBuilder(); + + var settingType = entry.Type == "AppSettingsApp" ? "System settings" : "Control Panel"; - toolTipText.AppendLine($"{Resources.Application}: {entry.Type}"); + toolTipText.AppendLine($"{Resources.Application}: {settingType}"); toolTipText.AppendLine($"{Resources.Area}: {entry.Area}"); if (entry.AltNames != null && entry.AltNames.Any()) From b497f7bf528c62b9d994525796761d893130b3e3 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 2 Dec 2021 21:44:13 +1100 Subject: [PATCH 42/45] remove WindowsSettings.json duplicate taskbar entry, update description --- .../WindowsSettings.json | 55 +------------------ 1 file changed, 2 insertions(+), 53 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/WindowsSettings.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/WindowsSettings.json index 15779950b5b..f40828cd563 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/WindowsSettings.json +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/WindowsSettings.json @@ -1408,16 +1408,6 @@ "FontFamily": "Segoe MDL2 Assets" } }, - { - "Name": "Taskbar", - "Area": "System", - "Type": "AppSettingsApp", - "Command": "ms-settings:taskbar", - "IconGlyph": { - "Glyph": "\ue90e", - "FontFamily": "Segoe MDL2 Assets" - } - }, { "Name": "NotificationsAndActions", "Area": "System", @@ -11118,8 +11108,8 @@ }, { "Name": "Auto-hide the taskbar", - "Area": null, - "Type": "TaskLink", + "Area": "Personalization", + "Type": "AppSettingsApp", "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Taskbar", "Keywords": [ [ @@ -11229,47 +11219,6 @@ ] ] }, - { - "Name": "Customise the taskbar", - "Area": null, - "Type": "TaskLink", - "Command": "%SystemRoot%\\System32\\control.exe -name Microsoft.Taskbar", - "Keywords": [ - [ - "customising", - "customisation", - "customises", - "customization", - "customizes", - "customizing", - "personalisation", - "personalise", - "personalization", - "personalize" - ], - [ - "icons", - "area", - "sgtray.exe", - "start", - "tray", - "systemtray", - "systray", - "task", - "toolbar", - "tray", - "taskbar", - "task-bar", - "bars", - "toolbars" - ], - [ - "notifications", - "notifying", - "notified" - ] - ] - }, { "Name": "Group similar windows on the taskbar", "Area": null, From 0250a28c9f915ee250aeb94c8a522a3bdcc4b950 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 2 Dec 2021 21:53:56 +1100 Subject: [PATCH 43/45] update typo --- .../Classes/WindowsSetting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs index aa90e900faf..0140254817f 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Classes/WindowsSetting.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; namespace Flow.Launcher.Plugin.WindowsSettings.Classes { @@ -55,7 +55,7 @@ public WindowsSetting() public IEnumerable>? Keywords { get; set; } /// - /// Gets or sets the Ghyph of this setting + /// Gets or sets the Glyph of this setting /// public string? glyph { get; set; } From 7297c1be39af7865d833c0767841cf3c6115602e Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 2 Dec 2021 22:00:21 +1100 Subject: [PATCH 44/45] remove ControlPanel plugin --- Flow.Launcher.sln | 16 - .../ControlPanelItem.cs | 25 -- .../ControlPanelList.cs | 339 ------------------ .../Flow.Launcher.Plugin.ControlPanel.csproj | 58 --- .../Images/ControlPanel.png | Bin 1373 -> 0 bytes .../Languages/de.xaml | 8 - .../Languages/en.xaml | 8 - .../Languages/pl.xaml | 8 - .../Languages/sk.xaml | 8 - .../Languages/tr.xaml | 8 - .../Languages/zh-cn.xaml | 8 - .../Languages/zh-tw.xaml | 8 - .../Flow.Launcher.Plugin.ControlPanel/Main.cs | 99 ----- .../plugin.json | 12 - 14 files changed, 605 deletions(-) delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelItem.cs delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelList.cs delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Flow.Launcher.Plugin.ControlPanel.csproj delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Images/ControlPanel.png delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/de.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/en.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/pl.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/sk.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/tr.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-cn.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-tw.xaml delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/Main.cs delete mode 100644 Plugins/Flow.Launcher.Plugin.ControlPanel/plugin.json diff --git a/Flow.Launcher.sln b/Flow.Launcher.sln index ef4a0519e7f..b8deae5530a 100644 --- a/Flow.Launcher.sln +++ b/Flow.Launcher.sln @@ -13,7 +13,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{3A73 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher", "Flow.Launcher\Flow.Launcher.csproj", "{DB90F671-D861-46BB-93A3-F1304F5BA1C5}" ProjectSection(ProjectDependencies) = postProject - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} = {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} = {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} {4792A74A-0CEA-4173-A8B2-30E6764C6217} = {4792A74A-0CEA-4173-A8B2-30E6764C6217} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} @@ -36,8 +35,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Progra EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.WebSearch", "Plugins\Flow.Launcher.Plugin.WebSearch\Flow.Launcher.Plugin.WebSearch.csproj", "{403B57F2-1856-4FC7-8A24-36AB346B763E}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.ControlPanel", "Plugins\Flow.Launcher.Plugin.ControlPanel\Flow.Launcher.Plugin.ControlPanel.csproj", "{1EE20B48-82FB-48A2-8086-675D6DDAB4F0}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.PluginIndicator", "Plugins\Flow.Launcher.Plugin.PluginIndicator\Flow.Launcher.Plugin.PluginIndicator.csproj", "{FDED22C8-B637-42E8-824A-63B5B6E05A3A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Sys", "Plugins\Flow.Launcher.Plugin.Sys\Flow.Launcher.Plugin.Sys.csproj", "{0B9DE348-9361-4940-ADB6-F5953BFFCCEC}" @@ -165,18 +162,6 @@ Global {403B57F2-1856-4FC7-8A24-36AB346B763E}.Release|x64.Build.0 = Release|Any CPU {403B57F2-1856-4FC7-8A24-36AB346B763E}.Release|x86.ActiveCfg = Release|Any CPU {403B57F2-1856-4FC7-8A24-36AB346B763E}.Release|x86.Build.0 = Release|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Debug|x64.ActiveCfg = Debug|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Debug|x64.Build.0 = Debug|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Debug|x86.ActiveCfg = Debug|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Debug|x86.Build.0 = Debug|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Release|Any CPU.Build.0 = Release|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Release|x64.ActiveCfg = Release|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Release|x64.Build.0 = Release|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Release|x86.ActiveCfg = Release|Any CPU - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0}.Release|x86.Build.0 = Release|Any CPU {FDED22C8-B637-42E8-824A-63B5B6E05A3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FDED22C8-B637-42E8-824A-63B5B6E05A3A}.Debug|Any CPU.Build.0 = Debug|Any CPU {FDED22C8-B637-42E8-824A-63B5B6E05A3A}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -305,7 +290,6 @@ Global GlobalSection(NestedProjects) = preSolution {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {403B57F2-1856-4FC7-8A24-36AB346B763E} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {FDED22C8-B637-42E8-824A-63B5B6E05A3A} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {0B9DE348-9361-4940-ADB6-F5953BFFCCEC} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} {A3DCCBCA-ACC1-421D-B16E-210896234C26} = {3A73F5A7-0335-40D8-BF7C-F20BE5D0BA87} diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelItem.cs b/Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelItem.cs deleted file mode 100644 index d821107b606..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelItem.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System.Diagnostics; -using System.Drawing; - -namespace Flow.Launcher.Plugin.ControlPanel -{ - //from:https://raw.githubusercontent.com/CoenraadS/Windows-Control-Panel-Items - public class ControlPanelItem - { - public string LocalizedString { get; private set; } - public string InfoTip { get; private set; } - public string GUID { get; private set; } - public ProcessStartInfo ExecutablePath { get; private set; } - public Icon Icon { get; private set; } - public int Score { get; set; } - - public ControlPanelItem(string newLocalizedString, string newInfoTip, string newGUID, ProcessStartInfo newExecutablePath, Icon newIcon) - { - LocalizedString = newLocalizedString; - InfoTip = newInfoTip; - ExecutablePath = newExecutablePath; - Icon = newIcon; - GUID = newGUID; - } - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelList.cs b/Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelList.cs deleted file mode 100644 index 70afda53673..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/ControlPanelList.cs +++ /dev/null @@ -1,339 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Drawing; -using System.Runtime.InteropServices; -using System.Text; -using Microsoft.Win32; - -namespace Flow.Launcher.Plugin.ControlPanel -{ - //from:https://raw.githubusercontent.com/CoenraadS/Windows-Control-Panel-Items - public static class ControlPanelList - { - private const uint GROUP_ICON = 14; - private const uint LOAD_LIBRARY_AS_DATAFILE = 0x00000002; - private const string CONTROL = @"%SystemRoot%\System32\control.exe"; - - private delegate bool EnumResNameDelegate( - IntPtr hModule, - IntPtr lpszType, - IntPtr lpszName, - IntPtr lParam); - - [DllImport("kernel32.dll", EntryPoint = "EnumResourceNamesW", CharSet = CharSet.Unicode, SetLastError = true)] - static extern bool EnumResourceNamesWithID(IntPtr hModule, uint lpszType, EnumResNameDelegate lpEnumFunc, IntPtr lParam); - - [DllImport("kernel32.dll", SetLastError = true)] - static extern IntPtr LoadLibraryEx(string lpFileName, IntPtr hFile, uint dwFlags); - - [DllImport("kernel32.dll", SetLastError = true)] - static extern bool FreeLibrary(IntPtr hModule); - - [DllImport("user32.dll", CharSet = CharSet.Auto)] - static extern int LoadString(IntPtr hInstance, uint uID, StringBuilder lpBuffer, int nBufferMax); - - [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] - static extern IntPtr LoadImage(IntPtr hinst, IntPtr lpszName, uint uType, - int cxDesired, int cyDesired, uint fuLoad); - - [DllImport("user32.dll", CharSet = CharSet.Auto)] - static extern bool DestroyIcon(IntPtr handle); - - [DllImport("kernel32.dll")] - static extern IntPtr FindResource(IntPtr hModule, IntPtr lpName, IntPtr lpType); - - static IntPtr defaultIconPtr; - - - static RegistryKey nameSpace = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\ControlPanel\\NameSpace"); - static RegistryKey clsid = Registry.ClassesRoot.OpenSubKey("CLSID"); - - public static List Create(uint iconSize) - { - int size = (int)iconSize; - RegistryKey currentKey; - ProcessStartInfo executablePath; - List controlPanelItems = new List(); - string localizedString; - string infoTip; - Icon myIcon; - - foreach (string key in nameSpace.GetSubKeyNames()) - { - currentKey = clsid.OpenSubKey(key); - if (currentKey != null) - { - executablePath = getExecutablePath(currentKey); - - if (!(executablePath == null)) //Cannot have item without executable path - { - localizedString = getLocalizedString(currentKey); - - if (!string.IsNullOrEmpty(localizedString))//Cannot have item without Title - { - infoTip = getInfoTip(currentKey); - - myIcon = getIcon(currentKey, size); - - controlPanelItems.Add(new ControlPanelItem(localizedString, infoTip, key, executablePath, myIcon)); - } - } - } - } - - return controlPanelItems; - } - - private static ProcessStartInfo getExecutablePath(RegistryKey currentKey) - { - ProcessStartInfo executablePath = new ProcessStartInfo(); - string applicationName; - - if (currentKey.GetValue("System.ApplicationName") != null) - { - //CPL Files (usually native MS items) - applicationName = currentKey.GetValue("System.ApplicationName").ToString(); - executablePath.FileName = Environment.ExpandEnvironmentVariables(CONTROL); - executablePath.Arguments = "-name " + applicationName; - } - else if (currentKey.OpenSubKey("Shell\\Open\\Command") != null && currentKey.OpenSubKey("Shell\\Open\\Command").GetValue(null) != null) - { - //Other files (usually third party items) - string input = "\"" + Environment.ExpandEnvironmentVariables(currentKey.OpenSubKey("Shell\\Open\\Command").GetValue(null).ToString()) + "\""; - executablePath.FileName = "cmd.exe"; - executablePath.Arguments = "/C " + input; - executablePath.WindowStyle = ProcessWindowStyle.Hidden; - } - else - { - return null; - } - - return executablePath; - } - - private static string getLocalizedString(RegistryKey currentKey) - { - IntPtr dataFilePointer; - string[] localizedStringRaw; - uint stringTableIndex; - StringBuilder resource; - string localizedString; - - if (currentKey.GetValue("LocalizedString") != null) - { - localizedStringRaw = currentKey.GetValue("LocalizedString").ToString().Split(new[] { ",-" }, StringSplitOptions.None); - - if (localizedStringRaw.Length > 1) - { - if (localizedStringRaw[0][0] == '@') - { - localizedStringRaw[0] = localizedStringRaw[0].Substring(1); - } - - localizedStringRaw[0] = Environment.ExpandEnvironmentVariables(localizedStringRaw[0]); - - dataFilePointer = LoadLibraryEx(localizedStringRaw[0], IntPtr.Zero, LOAD_LIBRARY_AS_DATAFILE); //Load file with strings - - stringTableIndex = sanitizeUint(localizedStringRaw[1]); - - resource = new StringBuilder(255); - LoadString(dataFilePointer, stringTableIndex, resource, resource.Capacity + 1); //Extract needed string - FreeLibrary(dataFilePointer); - - localizedString = resource.ToString(); - - //Some apps don't return a string, although they do have a stringIndex. Use Default value. - - if (String.IsNullOrEmpty(localizedString)) - { - if (currentKey.GetValue(null) != null) - { - localizedString = currentKey.GetValue(null).ToString(); - } - else - { - return null; //Cannot have item without title. - } - } - } - else - { - localizedString = localizedStringRaw[0]; - } - } - else if (currentKey.GetValue(null) != null) - { - localizedString = currentKey.GetValue(null).ToString(); - } - else - { - return null; //Cannot have item without title. - } - return localizedString; - } - - private static string getInfoTip(RegistryKey currentKey) - { - IntPtr dataFilePointer; - string[] infoTipRaw; - uint stringTableIndex; - StringBuilder resource; - string infoTip = ""; - - if (currentKey.GetValue("InfoTip") != null) - { - infoTipRaw = currentKey.GetValue("InfoTip").ToString().Split(new[] { ",-" }, StringSplitOptions.None); - - if (infoTipRaw.Length == 2) - { - if (infoTipRaw[0][0] == '@') - { - infoTipRaw[0] = infoTipRaw[0].Substring(1); - } - infoTipRaw[0] = Environment.ExpandEnvironmentVariables(infoTipRaw[0]); - - dataFilePointer = LoadLibraryEx(infoTipRaw[0], IntPtr.Zero, LOAD_LIBRARY_AS_DATAFILE); //Load file with strings - - stringTableIndex = sanitizeUint(infoTipRaw[1]); - - resource = new StringBuilder(255); - LoadString(dataFilePointer, stringTableIndex, resource, resource.Capacity + 1); //Extract needed string - FreeLibrary(dataFilePointer); - - infoTip = resource.ToString(); - } - else - { - infoTip = currentKey.GetValue("InfoTip").ToString(); - } - } - else - { - infoTip = ""; - } - - return infoTip; - } - - private static Icon getIcon(RegistryKey currentKey, int iconSize) - { - IntPtr iconPtr = IntPtr.Zero; - List iconString; - IntPtr dataFilePointer; - IntPtr iconIndex; - Icon myIcon = null; - - if (currentKey.OpenSubKey("DefaultIcon") != null) - { - if (currentKey.OpenSubKey("DefaultIcon").GetValue(null) != null) - { - iconString = new List(currentKey.OpenSubKey("DefaultIcon").GetValue(null).ToString().Split(new[] { ',' }, 2)); - if (string.IsNullOrEmpty(iconString[0])) - { - // fallback to default icon - return null; - } - - if (iconString[0][0] == '@') - { - iconString[0] = iconString[0].Substring(1); - } - - dataFilePointer = LoadLibraryEx(iconString[0], IntPtr.Zero, LOAD_LIBRARY_AS_DATAFILE); - - if (iconString.Count == 2) - { - iconIndex = (IntPtr)sanitizeUint(iconString[1]); - - iconPtr = LoadImage(dataFilePointer, iconIndex, 1, iconSize, iconSize, 0); - } - - if (iconPtr == IntPtr.Zero) - { - defaultIconPtr = IntPtr.Zero; - EnumResourceNamesWithID(dataFilePointer, GROUP_ICON, EnumRes, IntPtr.Zero); //Iterate through resources. - - iconPtr = LoadImage(dataFilePointer, defaultIconPtr, 1, iconSize, iconSize, 0); - } - - FreeLibrary(dataFilePointer); - - if (iconPtr != IntPtr.Zero) - { - try - { - myIcon = Icon.FromHandle(iconPtr); - myIcon = (Icon)myIcon.Clone(); //Remove pointer dependancy. - } - catch - { - //Silently fail for now. - } - } - } - } - - if (iconPtr != IntPtr.Zero) - { - DestroyIcon(iconPtr); - } - return myIcon; - } - - private static uint sanitizeUint(string args) //Remove all chars before and after first set of digits. - { - int x = 0; - - while (x < args.Length && !Char.IsDigit(args[x])) - { - args = args.Substring(1); - } - - x = 0; - - while (x < args.Length && Char.IsDigit(args[x])) - { - x++; - } - - if (x < args.Length) - { - args = args.Remove(x); - } - - /*If the logic is correct, this should never through an exception. - * If there is an exception, then need to analyze what the input is. - * Returning the wrong number will cause more errors */ - return Convert.ToUInt32(args); - } - - private static bool IS_INTRESOURCE(IntPtr value) - { - if (((uint)value) > ushort.MaxValue) - return false; - return true; - } - - private static uint GET_RESOURCE_ID(IntPtr value) - { - if (IS_INTRESOURCE(value)) - return (uint)value; - throw new NotSupportedException("value is not an ID!"); - } - - private static string GET_RESOURCE_NAME(IntPtr value) - { - if (IS_INTRESOURCE(value)) - return value.ToString(); - return Marshal.PtrToStringUni(value); - } - - private static bool EnumRes(IntPtr hModule, IntPtr lpszType, IntPtr lpszName, IntPtr lParam) - { - defaultIconPtr = lpszName; - return false; - } - } -} diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Flow.Launcher.Plugin.ControlPanel.csproj b/Plugins/Flow.Launcher.Plugin.ControlPanel/Flow.Launcher.Plugin.ControlPanel.csproj deleted file mode 100644 index ff4a10d697f..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Flow.Launcher.Plugin.ControlPanel.csproj +++ /dev/null @@ -1,58 +0,0 @@ - - - - Library - net5.0-windows - {1EE20B48-82FB-48A2-8086-675D6DDAB4F0} - Properties - Flow.Launcher.Plugin.ControlPanel - Flow.Launcher.Plugin.ControlPanel - true - false - false - - - - true - portable - false - ..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.ControlPanel\ - DEBUG;TRACE - prompt - 4 - false - - - - pdbonly - true - ..\..\Output\Release\Plugins\Flow.Launcher.Plugin.ControlPanel\ - TRACE - prompt - 4 - false - - - - - PreserveNewest - - - - - - - - - - - PreserveNewest - - - MSBuild:Compile - Designer - PreserveNewest - - - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Images/ControlPanel.png b/Plugins/Flow.Launcher.Plugin.ControlPanel/Images/ControlPanel.png deleted file mode 100644 index 1a69112f39e84b5d9f636856c567c00717b7241a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1373 zcmV-j1)}2sI zX-vAPHBC*^q-pB1x5Pi78{4>RyKB1W#!VAbX*4yxX>5s#iVV-) zpc4^hm>UiyJgYC?d(Qhl&pGG$zW19E5{U$B0b;QU6bkD?RvXrZtTwC}Arios-(CG6 zLAJA%jkK!7#mk#!-f4LJ*$oSI?U-4Cmz>CD*N@pyt8w+0y)^fTt4CK`=#s`CtU zl7>lZB{L1J$RB=$s4mWWkx|w0CjmMx-sb7_EV3+9SLeWJG(acRY^|p<9Om)03rya+ zLgeHrEREY!=JJj{;q1?y854Zt$hPD-G!x-KOI>b41_u3{>*&H}E2E{Q0rg8yTxT?5 ztF6W1bmHylW#aUwJb3Rj9PLMz%x5n*aqR6q84HQb%_YZLvnl0uX@$(rM!0aPo2sgf zR99D}Ehwr~)HH5Kr`HiZ`z@i?R&?dIMb~MyYN|GtEyq7=q&53*f80fqG*ne>%s8RL z>BMX{pq%+CZ*tinrI4wqAa2hioK7c#AY_%ax?w97BX6T~eEuo4S`7w6 zN!CgACKE!5k(oQUG1hHa5X;o;meLZMU9}75ax%Nm{}hA4ux!DRo?cXH&7yfB7A4`i zw`e|7v&Rz&V)6Kbxtz@YWMT%LPM5aWNZUIpW0R9p1UHmX@zVTCnLVYDveFU;ho7ds zd8F-F%2-cNFPm!2xiiZWDa|h1%_xeJb7DnNknOKdNXj=N+bx8{5fo)6Yr`wb4B>DD z*=|`Bd*wU3#j=5VX9XUQhvw#{jF;dS;e*@w;itdxdPkSt z*`LGf9VHfvaQNW1CF4ce+4Xu2?T4E1dPnK&a}$lGKGH{{G5Y%4c)g>vA8JCcU%Vu* zB$jO&w`{U=;`n|#F5afAs|#6{F><-7gRbC@6}8&*#Hz(sSbYer#pN6({~OGHT;( zWk%kAcYpFc(%=6m`F7N535VUpzTI1B-LVN#Oz)+1W`EJxOChf|{y9WZz}2!DSIcH# z{)7l%wPd%Vr8E1B#$F0Jn>`(}6_6xT472~Aux5m;$S(!sJ|B;UhZ!I9F)=mfIuL?!-0OfJO8D=sfnGhA3%}{ zSH57GrY9%({oFZJz~0@vuv!=PSrxJam~ZcU?zuTXG{l=nk7BZx7NmYsNH7>?{BioW zJrxp(IR9KYk4`P&YTcQ(FSA-LwC#0q?Z!?1{N+6R+TTJDa9v$n-;q%(AC#Pe#q9APDSiZshXSPX7A!5*kxwPIUo9QHTNv`To!T$rs<)<7)N8 zmK}{M`Pt`_DSW;$x^CT>6Qj|}@4x;$x2O0Fc`v_ljpS0P#5udYJnMVy_HtAzaW1Zr zT>0`SgxOtMomMq)e=w(;wK}aT7!10Aj(kWILWmd+g|6Qp9Lg(4z9jPY$ZElwX;IdN ftTwC*S#9_az!9QQE$iOu00000NkvXXu0mjfopF^M diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/de.xaml deleted file mode 100644 index d4bda14acdd..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/de.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - Systemsteuerung - Suche in der Systemsteuerung - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/en.xaml deleted file mode 100644 index 70b0461745e..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/en.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - Control Panel - Search within the Control Panel - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/pl.xaml deleted file mode 100644 index 1b731120e0f..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/pl.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - Panel sterowania - Szybie wyszukiwanie ustawień w panelu sterowania - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/sk.xaml deleted file mode 100644 index 3b9249b7888..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/sk.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - Ovládací panel - Vyhľadáva položky Ovládacieho panela - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/tr.xaml deleted file mode 100644 index 7564b5c958c..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/tr.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - Denetim Masası - Denetim Masası'nda arama yapın. - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-cn.xaml deleted file mode 100644 index 35d45260d0c..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-cn.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - 控制面板 - 搜索控制面板 - - \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-tw.xaml deleted file mode 100644 index daa97d4a3d7..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/zh-tw.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - 控制台 - 搜尋控制台 - - diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Main.cs b/Plugins/Flow.Launcher.Plugin.ControlPanel/Main.cs deleted file mode 100644 index 9a721cc1773..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Main.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using Flow.Launcher.Infrastructure; - -namespace Flow.Launcher.Plugin.ControlPanel -{ - public class Main : IPlugin, IPluginI18n - { - private PluginInitContext context; - private List controlPanelItems = new List(); - private string iconFolder; - private string fileType; - - public void Init(PluginInitContext context) - { - this.context = context; - controlPanelItems = ControlPanelList.Create(48); - iconFolder = Path.Combine(context.CurrentPluginMetadata.PluginDirectory, @"Images\ControlPanelIcons\"); - fileType = ".bmp"; - - if (!Directory.Exists(iconFolder)) - { - Directory.CreateDirectory(iconFolder); - } - - foreach (ControlPanelItem item in controlPanelItems) - { - if (!File.Exists(iconFolder + item.GUID + fileType) && item.Icon != null) - { - item.Icon.ToBitmap().Save(iconFolder + item.GUID + fileType); - } - } - } - - public List Query(Query query) - { - List results = new List(); - - foreach (var item in controlPanelItems) - { - var titleMatch = StringMatcher.FuzzySearch(query.Search, item.LocalizedString); - var subTitleMatch = StringMatcher.FuzzySearch(query.Search, item.InfoTip); - - item.Score = Math.Max(titleMatch.Score, subTitleMatch.Score); - if (item.Score > 0) - { - var result = new Result - { - Title = item.LocalizedString, - SubTitle = item.InfoTip, - Score = item.Score, - IcoPath = Path.Combine(context.CurrentPluginMetadata.PluginDirectory, - @"Images\\ControlPanelIcons\\" + item.GUID + fileType), - Action = e => - { - try - { - Process.Start(item.ExecutablePath); - } - catch (Exception) - { - //Silently Fail for now.. todo - } - return true; - } - }; - - if (item.Score == titleMatch.Score) - { - result.TitleHighlightData = titleMatch.MatchData; - } - else - { - result.SubTitleHighlightData = subTitleMatch.MatchData; - } - - results.Add(result); - } - } - - List panelItems = results.OrderByDescending(o => o.Score).Take(5).ToList(); - return panelItems; - } - - public string GetTranslatedPluginTitle() - { - return context.API.GetTranslation("flowlauncher_plugin_controlpanel_plugin_name"); - } - - public string GetTranslatedPluginDescription() - { - return context.API.GetTranslation("flowlauncher_plugin_controlpanel_plugin_description"); - } - } -} \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/plugin.json b/Plugins/Flow.Launcher.Plugin.ControlPanel/plugin.json deleted file mode 100644 index 23f35e9ac1c..00000000000 --- a/Plugins/Flow.Launcher.Plugin.ControlPanel/plugin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "ID": "209621585B9B4D81813913C507C058C6", - "ActionKeyword": "*", - "Name": "Control Panel", - "Description": "Search within the Control Panel.", - "Author": "CoenraadS", - "Version": "1.1.2", - "Language": "csharp", - "Website": "https://github.com/Flow-Launcher/Flow.Launcher", - "ExecuteFileName": "Flow.Launcher.Plugin.ControlPanel.dll", - "IcoPath": "Images\\ControlPanel.png" -} From a4fd337856c5faa8b2e568c01d69097879c150e1 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 2 Dec 2021 22:05:27 +1100 Subject: [PATCH 45/45] remove unused icon image WindowsSettings.dark.png --- .../Images/WindowsSettings.dark.png | Bin 2882 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.dark.png diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.dark.png b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Images/WindowsSettings.dark.png deleted file mode 100644 index b45708305fa713735a7d9eb4068286994c2b73dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2882 zcmcIm4Nw%<9Y3TZIF&Zokk)GFWpUCpxVK;T;cd7?;Ut`J7g<*h*Cw`Kul{$tvI$CZQ4mEK@!t^_}RC|0h&?k zWZJuXx4ZBC-tYhWf4uj0lehAb1@jlpH@vX8EKSi2#nB{V<*hW&EeGijfvu@x zfUk0urfuOTClS*1C{I!Gc-$Q4%!(SM7>C0_(JaNXBu0>0i>$*0DQgAO3@)Szsua~F zMFs{V^eZvlNnoW@E<~a;w6c~C6Al=afKiGu(}qjaK#%A4&`4wkt?8?pv6Zymn-Xg^ zEm1^OAx(*?0$SCKWW8Y8STv;QiWX9Cp>1aP28E(9V=x+1!>RCy0)@gTg1I$}Wm5X0 ze2I#nuBbJN5}r4y8s3Rv~WR0Y4_*cVNc+SpS=t7$1 zX?hCk!F3=)9nOFml4eN8Zh$Q`Z&_YQGqYetlmabx0`+)!x2)+<7LeQJB(Ny6B#AtY z?8^fJ%aJVO50DOK1;521*rwSYRVBP~VEB4gLzRdbS&ruXHUW~N!)7O0 z(c&i^n3D9s-=@z41=?2oyDavl`w*feqzJ3QdEmYfM~1`ph-Hw{rWN> zD6)nG9qBO@Kv9ZHnjpzRfWi_U)R2fL03^k<>sMKd*AVeP;EgCE&`~6cMM*N=L?kgL z>ma6sFg{=KafeUVlw<_(!jvI^VW}ww&0tMT(!i8UT1<-~S(G#lfmm2qB>`z5sKRDR z#K0;Ek7G9@*pdR8rDmk65R)MR$xs7Ozk-s4oIAhR2M#VjoX>y9zV>yFks0}LdCBG!9d6BCexfByIm`5LhbMQjy?Sg z`itKm@5>6clkJ80OSX3n_HNBPk+(0eEN2^T-t`lQ-#GJ0*h}{>)AoPuOJ6SUSz6xv zZg*$)6T_p&=MSBw8yXj9g|{4T`%SVpV{TjiihsN_y6=^`n2XpP$+_z>*PF*WkC*(V z{>qXIOOxk*|G>JntN(rZuaj|f?6J#h4_gL~)GAV2Vqnky=YG51d9eR11{?t23|f!lk*T$uF!JIe$+_X+rKCeCn%# z#>qFwK5pDtn>g@V+oIvd+HZWgv8hiFuE>1r)n5k#TbjP@UUOf0G5pZgMU@Sn@@@If zuYOV&$?dval=(@{nI(hs+8%7PFDoA^yzn>Q@droq|F|vVz`X9xns4^x-goahX4lf{ z`(g3D=wkcbSG|)X|FTXd#=I5PzpLIk9?fe#)%4vxBY)bupr@{2gZRKgxjNKPbZz@U z{Om^~2j8yX=04H=DP5H)*uDScn6RnAKJMF|@l0Kp@|E|cv6HWM*N(V;7kl5{W82U++5XZ-U;aOLT)JyXMd$OR?}g?UbM`(tu=nqe zyYgbqFLytl>}Yl5UbMZGZ)$3EUO9BG|46k!W}bS!Z+*^>GD?pvzBaMz&_c8#oE`Z= z^6tjLiC6NEZ0{d96