mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #969 from Flow-Launcher/windowsSettingtranslationWarning
Move Tasklink Name into Resource (except altName) & Glyph Icon Support
This commit is contained in:
commit
6abd37dc4d
21 changed files with 4184 additions and 1428 deletions
|
|
@ -99,7 +99,7 @@ namespace Flow.Launcher.Core.Resource
|
|||
Settings.Language = language.LanguageCode;
|
||||
CultureInfo.CurrentCulture = new CultureInfo(language.LanguageCode);
|
||||
CultureInfo.CurrentUICulture = CultureInfo.CurrentCulture;
|
||||
Task.Run(() =>
|
||||
_ = Task.Run(() =>
|
||||
{
|
||||
UpdatePluginMetadataTranslations();
|
||||
});
|
||||
|
|
@ -182,6 +182,7 @@ namespace Flow.Launcher.Core.Resource
|
|||
{
|
||||
p.Metadata.Name = pluginI18N.GetTranslatedPluginTitle();
|
||||
p.Metadata.Description = pluginI18N.GetTranslatedPluginDescription();
|
||||
pluginI18N.OnCultureInfoChanged(CultureInfo.CurrentCulture);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Classes
|
|||
/// <summary>
|
||||
/// Gets or sets the Glyph of this setting
|
||||
/// </summary>
|
||||
public string? glyph { get; set; }
|
||||
public GlyphInfo? IconGlyph { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a additional note of this settings.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Library</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
|
|
@ -32,22 +32,11 @@
|
|||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="WindowsSettings.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="plugin.json">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="WindowsSettings.json">
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\Resources.Designer.cs">
|
||||
|
|
@ -59,7 +48,7 @@
|
|||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
|
@ -69,6 +58,12 @@
|
|||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="WindowsSettings.json">
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
||||
</ItemGroup>
|
||||
|
|
|
|||
|
|
@ -18,6 +18,18 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
|
||||
public static void Init(IPublicAPI api) => _api = api;
|
||||
|
||||
private static List<Result> GetDefaultReuslts(in IEnumerable<WindowsSetting> list,
|
||||
string windowsSettingIconPath,
|
||||
string controlPanelIconPath)
|
||||
{
|
||||
return list.Select(entry =>
|
||||
{
|
||||
var result = NewSettingResult(100, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
|
||||
AddOptionalToolTip(entry, result);
|
||||
return result;
|
||||
}).ToList();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Return a list with <see cref="Result"/>s, based on the given list.
|
||||
/// </summary>
|
||||
|
|
@ -31,13 +43,20 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
string windowsSettingIconPath,
|
||||
string controlPanelIconPath)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(query.Search))
|
||||
{
|
||||
return GetDefaultReuslts(list, windowsSettingIconPath, controlPanelIconPath);
|
||||
}
|
||||
|
||||
var resultList = new List<Result>();
|
||||
|
||||
foreach (var entry in list)
|
||||
{
|
||||
// Adjust the score to lower the order of many irrelevant matches from area strings
|
||||
// that may only be for description.
|
||||
const int nonNameMatchScoreAdj = 10;
|
||||
|
||||
|
||||
Result? result;
|
||||
Debug.Assert(_api != null, nameof(_api) + " != null");
|
||||
|
||||
|
|
@ -45,7 +64,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
|
||||
if (nameMatch.IsSearchPrecisionScoreMet())
|
||||
{
|
||||
var settingResult = NewSettingResult(nameMatch.Score, entry.Type);
|
||||
var settingResult = NewSettingResult(nameMatch.Score, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
|
||||
settingResult.TitleHighlightData = nameMatch.MatchData;
|
||||
result = settingResult;
|
||||
}
|
||||
|
|
@ -54,7 +73,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
var areaMatch = _api.FuzzySearch(query.Search, entry.Area);
|
||||
if (areaMatch.IsSearchPrecisionScoreMet())
|
||||
{
|
||||
var settingResult = NewSettingResult(areaMatch.Score - nonNameMatchScoreAdj, entry.Type);
|
||||
var settingResult = NewSettingResult(areaMatch.Score - nonNameMatchScoreAdj, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
|
||||
result = settingResult;
|
||||
}
|
||||
else
|
||||
|
|
@ -62,7 +81,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
result = entry.AltNames?
|
||||
.Select(altName => _api.FuzzySearch(query.Search, altName))
|
||||
.Where(match => match.IsSearchPrecisionScoreMet())
|
||||
.Select(altNameMatch => NewSettingResult(altNameMatch.Score - nonNameMatchScoreAdj, entry.Type))
|
||||
.Select(altNameMatch => NewSettingResult(altNameMatch.Score - nonNameMatchScoreAdj, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry))
|
||||
.FirstOrDefault();
|
||||
}
|
||||
|
||||
|
|
@ -76,7 +95,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
.SelectMany(x => x)
|
||||
.Contains(x, StringComparer.CurrentCultureIgnoreCase))
|
||||
)
|
||||
result = NewSettingResult(nonNameMatchScoreAdj, entry.Type);
|
||||
result = NewSettingResult(nonNameMatchScoreAdj, entry.Type, windowsSettingIconPath, controlPanelIconPath, entry);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -86,21 +105,24 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
AddOptionalToolTip(entry, result);
|
||||
|
||||
resultList.Add(result);
|
||||
|
||||
Result NewSettingResult(int score, string type) => new()
|
||||
{
|
||||
Action = _ => DoOpenSettingsAction(entry),
|
||||
IcoPath = type == "AppSettingsApp" ? windowsSettingIconPath : controlPanelIconPath,
|
||||
SubTitle = GetSubtitle(entry.Area, type),
|
||||
Title = entry.Name + entry.glyph,
|
||||
ContextData = entry,
|
||||
Score = score
|
||||
};
|
||||
}
|
||||
|
||||
return resultList;
|
||||
}
|
||||
|
||||
private const int TaskLinkScorePanelty = 50;
|
||||
|
||||
private static Result NewSettingResult(int score, string type, string windowsSettingIconPath, string controlPanelIconPath, WindowsSetting entry) => new()
|
||||
{
|
||||
Action = _ => DoOpenSettingsAction(entry),
|
||||
IcoPath = type == "AppSettingsApp" ? windowsSettingIconPath : controlPanelIconPath,
|
||||
Glyph = entry.IconGlyph,
|
||||
SubTitle = GetSubtitle(entry.Area, type),
|
||||
Title = entry.Name,
|
||||
ContextData = entry,
|
||||
Score = score - (type == "TaskLink" ? TaskLinkScorePanelty : 0),
|
||||
};
|
||||
|
||||
private static string GetSubtitle(string section, string entryType)
|
||||
{
|
||||
var settingType = entryType == "AppSettingsApp" ? "System settings" : "Control Panel";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using Flow.Launcher.Plugin.WindowsSettings.Classes;
|
||||
using Flow.Launcher.Plugin.WindowsSettings.Properties;
|
||||
|
|
@ -40,7 +41,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
|
||||
if (string.IsNullOrEmpty(type))
|
||||
{
|
||||
Log.Warn($"Resource string for [{settings.Name}] not found", typeof(Main));
|
||||
Log.Warn($"Resource string for [{settings.Type}] not found", typeof(Main));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -48,10 +49,6 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
if (!string.IsNullOrEmpty(settings.Note))
|
||||
{
|
||||
var note = Resources.ResourceManager.GetString(settings.Note);
|
||||
if (string.IsNullOrEmpty(note))
|
||||
{
|
||||
Log.Warn($"Resource string for [{settings.Note}] not found", typeof(Main));
|
||||
}
|
||||
|
||||
settings.Note = note ?? settings.Note ?? string.Empty;
|
||||
}
|
||||
|
|
@ -67,10 +64,6 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
|
|||
}
|
||||
|
||||
var translatedAltName = Resources.ResourceManager.GetString(altName);
|
||||
if (string.IsNullOrEmpty(translatedAltName))
|
||||
{
|
||||
Log.Warn($"Resource string for [{altName}] not found", typeof(Main));
|
||||
}
|
||||
|
||||
translatedAltNames.Add(translatedAltName ?? altName);
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
|
@ -1736,4 +1736,779 @@
|
|||
<value>Zoom</value>
|
||||
<comment>Mean zooming of things via a magnifier</comment>
|
||||
</data>
|
||||
<data name="ChangeDeviceInstallationSettings" xml:space="preserve">
|
||||
<value>Change device installation settings</value>
|
||||
</data>
|
||||
<data name="TurnOffBackgroundImages" xml:space="preserve">
|
||||
<value>Turn off background images</value>
|
||||
</data>
|
||||
<data name="NavigationProperties" xml:space="preserve">
|
||||
<value>Navigation properties</value>
|
||||
</data>
|
||||
<data name="MediaStreamingOptions" xml:space="preserve">
|
||||
<value>Media streaming options</value>
|
||||
</data>
|
||||
<data name="MakeAFileTypeAlwaysOpenInASpecificProgram" xml:space="preserve">
|
||||
<value>Make a file type always open in a specific program</value>
|
||||
</data>
|
||||
<data name="ChangeTheNarratorSVoice" xml:space="preserve">
|
||||
<value>Change the Narrator’s voice</value>
|
||||
</data>
|
||||
<data name="FindAndFixKeyboardProblems" xml:space="preserve">
|
||||
<value>Find and fix keyboard problems</value>
|
||||
</data>
|
||||
<data name="UseScreenReader" xml:space="preserve">
|
||||
<value>Use screen reader</value>
|
||||
</data>
|
||||
<data name="ShowWhichWorkgroupThisComputerIsOn" xml:space="preserve">
|
||||
<value>Show which workgroup this computer is on</value>
|
||||
</data>
|
||||
<data name="ChangeMouseWheelSettings" xml:space="preserve">
|
||||
<value>Change mouse wheel settings</value>
|
||||
</data>
|
||||
<data name="ManageComputerCertificates" xml:space="preserve">
|
||||
<value>Manage computer certificates</value>
|
||||
</data>
|
||||
<data name="FindAndFixProblems" xml:space="preserve">
|
||||
<value>Find and fix problems</value>
|
||||
</data>
|
||||
<data name="ChangeSettingsForContentReceivedUsingTapAndSend" xml:space="preserve">
|
||||
<value>Change settings for content received using Tap and send</value>
|
||||
</data>
|
||||
<data name="ChangeDefaultSettingsForMediaOrDevices" xml:space="preserve">
|
||||
<value>Change default settings for media or devices</value>
|
||||
</data>
|
||||
<data name="PrintTheSpeechReferenceCard" xml:space="preserve">
|
||||
<value>Print the speech reference card</value>
|
||||
</data>
|
||||
<data name="CalibrateDisplayColour" xml:space="preserve">
|
||||
<value>Calibrate display colour</value>
|
||||
</data>
|
||||
<data name="ManageFileEncryptionCertificates" xml:space="preserve">
|
||||
<value>Manage file encryption certificates</value>
|
||||
</data>
|
||||
<data name="ViewRecentMessagesAboutYourComputer" xml:space="preserve">
|
||||
<value>View recent messages about your computer</value>
|
||||
</data>
|
||||
<data name="GiveOtherUsersAccessToThisComputer" xml:space="preserve">
|
||||
<value>Give other users access to this computer</value>
|
||||
</data>
|
||||
<data name="ShowHiddenFilesAndFolders" xml:space="preserve">
|
||||
<value>Show hidden files and folders</value>
|
||||
</data>
|
||||
<data name="ChangeWindowsToGoStartUpOptions" xml:space="preserve">
|
||||
<value>Change Windows To Go start-up options</value>
|
||||
</data>
|
||||
<data name="SeeWhichProcessesStartUpAutomaticallyWhenYouStartWindows" xml:space="preserve">
|
||||
<value>See which processes start up automatically when you start Windows</value>
|
||||
</data>
|
||||
<data name="TellIfAnRSSFeedIsAvailableOnAWebsite" xml:space="preserve">
|
||||
<value>Tell if an RSS feed is available on a website</value>
|
||||
</data>
|
||||
<data name="AddClocksForDifferentTimeZones" xml:space="preserve">
|
||||
<value>Add clocks for different time zones</value>
|
||||
</data>
|
||||
<data name="AddABluetoothDevice" xml:space="preserve">
|
||||
<value>Add a Bluetooth device</value>
|
||||
</data>
|
||||
<data name="CustomiseTheMouseButtons" xml:space="preserve">
|
||||
<value>Customise the mouse buttons</value>
|
||||
</data>
|
||||
<data name="SetTabletButtonsToPerformCertainTasks" xml:space="preserve">
|
||||
<value>Set tablet buttons to perform certain tasks</value>
|
||||
</data>
|
||||
<data name="ViewInstalledFonts" xml:space="preserve">
|
||||
<value>View installed fonts</value>
|
||||
</data>
|
||||
<data name="ChangeTheWayCurrencyIsDisplayed" xml:space="preserve">
|
||||
<value>Change the way currency is displayed</value>
|
||||
</data>
|
||||
<data name="EditGroupPolicy" xml:space="preserve">
|
||||
<value>Edit group policy</value>
|
||||
</data>
|
||||
<data name="ManageBrowserAddOns" xml:space="preserve">
|
||||
<value>Manage browser add-ons</value>
|
||||
</data>
|
||||
<data name="CheckProcessorSpeed" xml:space="preserve">
|
||||
<value>Check processor speed</value>
|
||||
</data>
|
||||
<data name="CheckFirewallStatus" xml:space="preserve">
|
||||
<value>Check firewall status</value>
|
||||
</data>
|
||||
<data name="SendOrReceiveAFile" xml:space="preserve">
|
||||
<value>Send or receive a file</value>
|
||||
</data>
|
||||
<data name="AddOrRemoveUserAccounts" xml:space="preserve">
|
||||
<value>Add or remove user accounts</value>
|
||||
</data>
|
||||
<data name="EditTheSystemEnvironmentVariables" xml:space="preserve">
|
||||
<value>Edit the system environment variables</value>
|
||||
</data>
|
||||
<data name="ManageBitlocker" xml:space="preserve">
|
||||
<value>Manage BitLocker</value>
|
||||
</data>
|
||||
<data name="AutoHideTheTaskbar" xml:space="preserve">
|
||||
<value>Auto-hide the taskbar</value>
|
||||
</data>
|
||||
<data name="ChangeSoundCardSettings" xml:space="preserve">
|
||||
<value>Change sound card settings</value>
|
||||
</data>
|
||||
<data name="MakeChangesToAccounts" xml:space="preserve">
|
||||
<value>Make changes to accounts</value>
|
||||
</data>
|
||||
<data name="EditLocalUsersAndGroups" xml:space="preserve">
|
||||
<value>Edit local users and groups</value>
|
||||
</data>
|
||||
<data name="ViewNetworkComputersAndDevices" xml:space="preserve">
|
||||
<value>View network computers and devices</value>
|
||||
</data>
|
||||
<data name="InstallAProgramFromTheNetwork" xml:space="preserve">
|
||||
<value>Install a program from the network</value>
|
||||
</data>
|
||||
<data name="ViewScannersAndCameras" xml:space="preserve">
|
||||
<value>View scanners and cameras</value>
|
||||
</data>
|
||||
<data name="MicrosoftIMERegisterWordJapanese" xml:space="preserve">
|
||||
<value>Microsoft IME Register Word (Japanese)</value>
|
||||
</data>
|
||||
<data name="RestoreYourFilesWithFileHistory" xml:space="preserve">
|
||||
<value>Restore your files with File History</value>
|
||||
</data>
|
||||
<data name="TurnOnScreenKeyboardOnOrOff" xml:space="preserve">
|
||||
<value>Turn On-Screen keyboard on or off</value>
|
||||
</data>
|
||||
<data name="BlockOrAllowThirdPartyCookies" xml:space="preserve">
|
||||
<value>Block or allow third-party cookies</value>
|
||||
</data>
|
||||
<data name="FindAndFixAudioRecordingProblems" xml:space="preserve">
|
||||
<value>Find and fix audio recording problems</value>
|
||||
</data>
|
||||
<data name="CreateARecoveryDrive" xml:space="preserve">
|
||||
<value>Create a recovery drive</value>
|
||||
</data>
|
||||
<data name="MicrosoftNewPhoneticSettings" xml:space="preserve">
|
||||
<value>Microsoft New Phonetic Settings</value>
|
||||
</data>
|
||||
<data name="GenerateASystemHealthReport" xml:space="preserve">
|
||||
<value>Generate a system health report</value>
|
||||
</data>
|
||||
<data name="FixProblemsWithYourComputer" xml:space="preserve">
|
||||
<value>Fix problems with your computer</value>
|
||||
</data>
|
||||
<data name="BackUpAndRestoreWindows7" xml:space="preserve">
|
||||
<value>Back up and Restore (Windows 7)</value>
|
||||
</data>
|
||||
<data name="PreviewDeleteShowOrHideFonts" xml:space="preserve">
|
||||
<value>Preview, delete, show or hide fonts</value>
|
||||
</data>
|
||||
<data name="MicrosoftQuickSettings" xml:space="preserve">
|
||||
<value>Microsoft Quick Settings</value>
|
||||
</data>
|
||||
<data name="ViewReliabilityHistory" xml:space="preserve">
|
||||
<value>View reliability history</value>
|
||||
</data>
|
||||
<data name="AccessRemoteappAndDesktops" xml:space="preserve">
|
||||
<value>Access RemoteApp and desktops</value>
|
||||
</data>
|
||||
<data name="SetUpODBCDataSources" xml:space="preserve">
|
||||
<value>Set up ODBC data sources</value>
|
||||
</data>
|
||||
<data name="ResetSecurityPolicies" xml:space="preserve">
|
||||
<value>Reset Security Policies</value>
|
||||
</data>
|
||||
<data name="BlockOrAllowPopUps" xml:space="preserve">
|
||||
<value>Block or allow pop-ups</value>
|
||||
</data>
|
||||
<data name="TurnAutocompleteInInternetExplorerOnOrOff" xml:space="preserve">
|
||||
<value>Turn autocomplete in Internet Explorer on or off</value>
|
||||
</data>
|
||||
<data name="MicrosoftPinyinSimplefastOptions" xml:space="preserve">
|
||||
<value>Microsoft Pinyin SimpleFast Options</value>
|
||||
</data>
|
||||
<data name="ChangeWhatClosingTheLidDoes" xml:space="preserve">
|
||||
<value>Change what closing the lid does</value>
|
||||
</data>
|
||||
<data name="TurnOffUnnecessaryAnimations" xml:space="preserve">
|
||||
<value>Turn off unnecessary animations</value>
|
||||
</data>
|
||||
<data name="CreateARestorePoint" xml:space="preserve">
|
||||
<value>Create a restore point</value>
|
||||
</data>
|
||||
<data name="TurnOffAutomaticWindowArrangement" xml:space="preserve">
|
||||
<value>Turn off automatic window arrangement</value>
|
||||
</data>
|
||||
<data name="TroubleshootingHistory" xml:space="preserve">
|
||||
<value>Troubleshooting History</value>
|
||||
</data>
|
||||
<data name="DiagnoseYourComputersMemoryProblems" xml:space="preserve">
|
||||
<value>Diagnose your computer's memory problems</value>
|
||||
</data>
|
||||
<data name="ViewRecommendedActionsToKeepWindowsRunningSmoothly" xml:space="preserve">
|
||||
<value>View recommended actions to keep Windows running smoothly</value>
|
||||
</data>
|
||||
<data name="ChangeCursorBlinkRate" xml:space="preserve">
|
||||
<value>Change cursor blink rate</value>
|
||||
</data>
|
||||
<data name="AddOrRemovePrograms" xml:space="preserve">
|
||||
<value>Add or remove programs</value>
|
||||
</data>
|
||||
<data name="CreateAPasswordResetDisk" xml:space="preserve">
|
||||
<value>Create a password reset disk</value>
|
||||
</data>
|
||||
<data name="ConfigureAdvancedUserProfileProperties" xml:space="preserve">
|
||||
<value>Configure advanced user profile properties</value>
|
||||
</data>
|
||||
<data name="StartOrStopUsingAutoplayForAllMediaAndDevices" xml:space="preserve">
|
||||
<value>Start or stop using AutoPlay for all media and devices</value>
|
||||
</data>
|
||||
<data name="ChangeAutomaticMaintenanceSettings" xml:space="preserve">
|
||||
<value>Change Automatic Maintenance settings</value>
|
||||
</data>
|
||||
<data name="SpecifySingleOrDoubleClickToOpen" xml:space="preserve">
|
||||
<value>Specify single- or double-click to open</value>
|
||||
</data>
|
||||
<data name="SelectUsersWhoCanUseRemoteDesktop" xml:space="preserve">
|
||||
<value>Select users who can use remote desktop</value>
|
||||
</data>
|
||||
<data name="ShowWhichProgramsAreInstalledOnYourComputer" xml:space="preserve">
|
||||
<value>Show which programs are installed on your computer</value>
|
||||
</data>
|
||||
<data name="AllowRemoteAccessToYourComputer" xml:space="preserve">
|
||||
<value>Allow remote access to your computer</value>
|
||||
</data>
|
||||
<data name="ViewAdvancedSystemSettings" xml:space="preserve">
|
||||
<value>View advanced system settings</value>
|
||||
</data>
|
||||
<data name="HowToInstallAProgram" xml:space="preserve">
|
||||
<value>How to install a program</value>
|
||||
</data>
|
||||
<data name="ChangeHowYourKeyboardWorks" xml:space="preserve">
|
||||
<value>Change how your keyboard works</value>
|
||||
</data>
|
||||
<data name="AutomaticallyAdjustForDaylightSavingTime" xml:space="preserve">
|
||||
<value>Automatically adjust for daylight saving time</value>
|
||||
</data>
|
||||
<data name="ChangeTheOrderOfWindowsSideshowGadgets" xml:space="preserve">
|
||||
<value>Change the order of Windows SideShow gadgets</value>
|
||||
</data>
|
||||
<data name="CheckKeyboardStatus" xml:space="preserve">
|
||||
<value>Check keyboard status</value>
|
||||
</data>
|
||||
<data name="ControlTheComputerWithoutTheMouseOrKeyboard" xml:space="preserve">
|
||||
<value>Control the computer without the mouse or keyboard</value>
|
||||
</data>
|
||||
<data name="ChangeOrRemoveAProgram" xml:space="preserve">
|
||||
<value>Change or remove a program</value>
|
||||
</data>
|
||||
<data name="ChangeMultiTouchGestureSettings" xml:space="preserve">
|
||||
<value>Change multi-touch gesture settings</value>
|
||||
</data>
|
||||
<data name="SetUpODBCDataSources64Bit" xml:space="preserve">
|
||||
<value>Set up ODBC data sources (64-bit)</value>
|
||||
</data>
|
||||
<data name="ConfigureProxyServer" xml:space="preserve">
|
||||
<value>Configure proxy server</value>
|
||||
</data>
|
||||
<data name="ChangeYourHomepage" xml:space="preserve">
|
||||
<value>Change your homepage</value>
|
||||
</data>
|
||||
<data name="GroupSimilarWindowsOnTheTaskbar" xml:space="preserve">
|
||||
<value>Group similar windows on the taskbar</value>
|
||||
</data>
|
||||
<data name="ChangeWindowsSideshowSettings" xml:space="preserve">
|
||||
<value>Change Windows SideShow settings</value>
|
||||
</data>
|
||||
<data name="UseAudioDescriptionForVideo" xml:space="preserve">
|
||||
<value>Use audio description for video</value>
|
||||
</data>
|
||||
<data name="ChangeWorkgroupName" xml:space="preserve">
|
||||
<value>Change workgroup name</value>
|
||||
</data>
|
||||
<data name="FindAndFixPrintingProblems" xml:space="preserve">
|
||||
<value>Find and fix printing problems</value>
|
||||
</data>
|
||||
<data name="ChangeWhenTheComputerSleeps" xml:space="preserve">
|
||||
<value>Change when the computer sleeps</value>
|
||||
</data>
|
||||
<data name="SetUpAVirtualPrivateNetworkVPNConnection" xml:space="preserve">
|
||||
<value>Set up a virtual private network (VPN) connection</value>
|
||||
</data>
|
||||
<data name="AccommodateLearningAbilities" xml:space="preserve">
|
||||
<value>Accommodate learning abilities</value>
|
||||
</data>
|
||||
<data name="SetUpADialUpConnection" xml:space="preserve">
|
||||
<value>Set up a dial-up connection</value>
|
||||
</data>
|
||||
<data name="SetUpAConnectionOrNetwork" xml:space="preserve">
|
||||
<value>Set up a connection or network</value>
|
||||
</data>
|
||||
<data name="HowToChangeYourWindowsPassword" xml:space="preserve">
|
||||
<value>How to change your Windows password</value>
|
||||
</data>
|
||||
<data name="MakeItEasierToSeeTheMousePointer" xml:space="preserve">
|
||||
<value>Make it easier to see the mouse pointer</value>
|
||||
</data>
|
||||
<data name="SetUpIscsiInitiator" xml:space="preserve">
|
||||
<value>Set up iSCSI initiator</value>
|
||||
</data>
|
||||
<data name="AccommodateLowVision" xml:space="preserve">
|
||||
<value>Accommodate low vision</value>
|
||||
</data>
|
||||
<data name="ManageOfflineFiles" xml:space="preserve">
|
||||
<value>Manage offline files</value>
|
||||
</data>
|
||||
<data name="ReviewYourComputersStatusAndResolveIssues" xml:space="preserve">
|
||||
<value>Review your computer's status and resolve issues</value>
|
||||
</data>
|
||||
<data name="MicrosoftChangjieSettings" xml:space="preserve">
|
||||
<value>Microsoft ChangJie Settings</value>
|
||||
</data>
|
||||
<data name="ReplaceSoundsWithVisualCues" xml:space="preserve">
|
||||
<value>Replace sounds with visual cues</value>
|
||||
</data>
|
||||
<data name="ChangeTemporaryInternetFileSettings" xml:space="preserve">
|
||||
<value>Change temporary Internet file settings</value>
|
||||
</data>
|
||||
<data name="ConnectToTheInternet" xml:space="preserve">
|
||||
<value>Connect to the Internet</value>
|
||||
</data>
|
||||
<data name="FindAndFixAudioPlaybackProblems" xml:space="preserve">
|
||||
<value>Find and fix audio playback problems</value>
|
||||
</data>
|
||||
<data name="ChangeTheMousePointerDisplayOrSpeed" xml:space="preserve">
|
||||
<value>Change the mouse pointer display or speed</value>
|
||||
</data>
|
||||
<data name="BackUpYourRecoveryKey" xml:space="preserve">
|
||||
<value>Back up your recovery key</value>
|
||||
</data>
|
||||
<data name="SaveBackupCopiesOfYourFilesWithFileHistory" xml:space="preserve">
|
||||
<value>Save backup copies of your files with File History</value>
|
||||
</data>
|
||||
<data name="ViewCurrentAccessibilitySettings" xml:space="preserve">
|
||||
<value>View current accessibility settings</value>
|
||||
</data>
|
||||
<data name="ChangeTabletPenSettings" xml:space="preserve">
|
||||
<value>Change tablet pen settings</value>
|
||||
</data>
|
||||
<data name="ChangeHowYourMouseWorks" xml:space="preserve">
|
||||
<value>Change how your mouse works</value>
|
||||
</data>
|
||||
<data name="ShowHowMuchRAMIsOnThisComputer" xml:space="preserve">
|
||||
<value>Show how much RAM is on this computer</value>
|
||||
</data>
|
||||
<data name="EditPowerPlan" xml:space="preserve">
|
||||
<value>Edit power plan</value>
|
||||
</data>
|
||||
<data name="AdjustSystemVolume" xml:space="preserve">
|
||||
<value>Adjust system volume</value>
|
||||
</data>
|
||||
<data name="DefragmentAndOptimiseYourDrives" xml:space="preserve">
|
||||
<value>Defragment and optimise your drives</value>
|
||||
</data>
|
||||
<data name="SetUpODBCDataSources32Bit" xml:space="preserve">
|
||||
<value>Set up ODBC data sources (32-bit)</value>
|
||||
</data>
|
||||
<data name="ChangeFontSettings" xml:space="preserve">
|
||||
<value>Change Font Settings</value>
|
||||
</data>
|
||||
<data name="MagnifyPortionsOfTheScreenUsingMagnifier" xml:space="preserve">
|
||||
<value>Magnify portions of the screen using Magnifier</value>
|
||||
</data>
|
||||
<data name="ChangeTheFileTypeAssociatedWithAFileExtension" xml:space="preserve">
|
||||
<value>Change the file type associated with a file extension</value>
|
||||
</data>
|
||||
<data name="ViewEventLogs" xml:space="preserve">
|
||||
<value>View event logs</value>
|
||||
</data>
|
||||
<data name="ManageWindowsCredentials" xml:space="preserve">
|
||||
<value>Manage Windows Credentials</value>
|
||||
</data>
|
||||
<data name="SetUpAMicrophone" xml:space="preserve">
|
||||
<value>Set up a microphone</value>
|
||||
</data>
|
||||
<data name="ChangeHowTheMousePointerLooks" xml:space="preserve">
|
||||
<value>Change how the mouse pointer looks</value>
|
||||
</data>
|
||||
<data name="ChangePowerSavingSettings" xml:space="preserve">
|
||||
<value>Change power-saving settings</value>
|
||||
</data>
|
||||
<data name="OptimiseForBlindness" xml:space="preserve">
|
||||
<value>Optimise for blindness</value>
|
||||
</data>
|
||||
<data name="null" xml:space="preserve">
|
||||
<value>
|
||||
</value>
|
||||
</data>
|
||||
<data name="TurnWindowsFeaturesOnOrOff" xml:space="preserve">
|
||||
<value>Turn Windows features on or off</value>
|
||||
</data>
|
||||
<data name="ShowWhichOperatingSystemYourComputerIsRunning" xml:space="preserve">
|
||||
<value>Show which operating system your computer is running</value>
|
||||
</data>
|
||||
<data name="ViewLocalServices" xml:space="preserve">
|
||||
<value>View local services</value>
|
||||
</data>
|
||||
<data name="ManageWorkFolders" xml:space="preserve">
|
||||
<value>Manage Work Folders</value>
|
||||
</data>
|
||||
<data name="EncryptYourOfflineFiles" xml:space="preserve">
|
||||
<value>Encrypt your offline files</value>
|
||||
</data>
|
||||
<data name="TrainTheComputerToRecogniseYourVoice" xml:space="preserve">
|
||||
<value>Train the computer to recognise your voice</value>
|
||||
</data>
|
||||
<data name="AdvancedPrinterSetup" xml:space="preserve">
|
||||
<value>Advanced printer setup</value>
|
||||
</data>
|
||||
<data name="ChangeDefaultPrinter" xml:space="preserve">
|
||||
<value>Change default printer</value>
|
||||
</data>
|
||||
<data name="EditEnvironmentVariablesForYourAccount" xml:space="preserve">
|
||||
<value>Edit environment variables for your account</value>
|
||||
</data>
|
||||
<data name="OptimiseVisualDisplay" xml:space="preserve">
|
||||
<value>Optimise visual display</value>
|
||||
</data>
|
||||
<data name="ChangeMouseClickSettings" xml:space="preserve">
|
||||
<value>Change mouse click settings</value>
|
||||
</data>
|
||||
<data name="ChangeAdvancedColourManagementSettingsForDisplaysScannersAndPrinters" xml:space="preserve">
|
||||
<value>Change advanced colour management settings for displays, scanners and printers</value>
|
||||
</data>
|
||||
<data name="LetWindowsSuggestEaseOfAccessSettings" xml:space="preserve">
|
||||
<value>Let Windows suggest Ease of Access settings</value>
|
||||
</data>
|
||||
<data name="ClearDiskSpaceByDeletingUnnecessaryFiles" xml:space="preserve">
|
||||
<value>Clear disk space by deleting unnecessary files</value>
|
||||
</data>
|
||||
<data name="ViewDevicesAndPrinters" xml:space="preserve">
|
||||
<value>View devices and printers</value>
|
||||
</data>
|
||||
<data name="PrivateCharacterEditor" xml:space="preserve">
|
||||
<value>Private Character Editor</value>
|
||||
</data>
|
||||
<data name="RecordStepsToReproduceAProblem" xml:space="preserve">
|
||||
<value>Record steps to reproduce a problem</value>
|
||||
</data>
|
||||
<data name="AdjustTheAppearanceAndPerformanceOfWindows" xml:space="preserve">
|
||||
<value>Adjust the appearance and performance of Windows</value>
|
||||
</data>
|
||||
<data name="SettingsForMicrosoftIMEJapanese" xml:space="preserve">
|
||||
<value>Settings for Microsoft IME (Japanese)</value>
|
||||
</data>
|
||||
<data name="InviteSomeoneToConnectToYourPCAndHelpYouOrOfferToHelpSomeoneElse" xml:space="preserve">
|
||||
<value>Invite someone to connect to your PC and help you, or offer to help someone else</value>
|
||||
</data>
|
||||
<data name="RunProgramsMadeForPreviousVersionsOfWindows" xml:space="preserve">
|
||||
<value>Run programs made for previous versions of Windows</value>
|
||||
</data>
|
||||
<data name="ChooseTheOrderOfHowYourScreenRotates" xml:space="preserve">
|
||||
<value>Choose the order of how your screen rotates</value>
|
||||
</data>
|
||||
<data name="ChangeHowWindowsSearches" xml:space="preserve">
|
||||
<value>Change how Windows searches</value>
|
||||
</data>
|
||||
<data name="SetFlicksToPerformCertainTasks" xml:space="preserve">
|
||||
<value>Set flicks to perform certain tasks</value>
|
||||
</data>
|
||||
<data name="ChangeAccountType" xml:space="preserve">
|
||||
<value>Change account type</value>
|
||||
</data>
|
||||
<data name="ChangeScreenSaver" xml:space="preserve">
|
||||
<value>Change screen saver</value>
|
||||
</data>
|
||||
<data name="ChangeUserAccountControlSettings" xml:space="preserve">
|
||||
<value>Change User Account Control settings</value>
|
||||
</data>
|
||||
<data name="TurnOnEasyAccessKeys" xml:space="preserve">
|
||||
<value>Turn on easy access keys</value>
|
||||
</data>
|
||||
<data name="IdentifyAndRepairNetworkProblems" xml:space="preserve">
|
||||
<value>Identify and repair network problems</value>
|
||||
</data>
|
||||
<data name="FindAndFixNetworkingAndConnectionProblems" xml:space="preserve">
|
||||
<value>Find and fix networking and connection problems</value>
|
||||
</data>
|
||||
<data name="PlayCdsOrOtherMediaAutomatically" xml:space="preserve">
|
||||
<value>Play CDs or other media automatically</value>
|
||||
</data>
|
||||
<data name="ViewBasicInformationAboutYourComputer" xml:space="preserve">
|
||||
<value>View basic information about your computer</value>
|
||||
</data>
|
||||
<data name="ChooseHowYouOpenLinks" xml:space="preserve">
|
||||
<value>Choose how you open links</value>
|
||||
</data>
|
||||
<data name="AllowRemoteAssistanceInvitationsToBeSentFromThisComputer" xml:space="preserve">
|
||||
<value>Allow Remote Assistance invitations to be sent from this computer</value>
|
||||
</data>
|
||||
<data name="TaskManager" xml:space="preserve">
|
||||
<value>Task Manager</value>
|
||||
</data>
|
||||
<data name="TurnFlicksOnOrOff" xml:space="preserve">
|
||||
<value>Turn flicks on or off</value>
|
||||
</data>
|
||||
<data name="AddALanguage" xml:space="preserve">
|
||||
<value>Add a language</value>
|
||||
</data>
|
||||
<data name="ViewNetworkStatusAndTasks" xml:space="preserve">
|
||||
<value>View network status and tasks</value>
|
||||
</data>
|
||||
<data name="TurnMagnifierOnOrOff" xml:space="preserve">
|
||||
<value>Turn Magnifier on or off</value>
|
||||
</data>
|
||||
<data name="SeeTheNameOfThisComputer" xml:space="preserve">
|
||||
<value>See the name of this computer</value>
|
||||
</data>
|
||||
<data name="ViewNetworkConnections" xml:space="preserve">
|
||||
<value>View network connections</value>
|
||||
</data>
|
||||
<data name="PerformRecommendedMaintenanceTasksAutomatically" xml:space="preserve">
|
||||
<value>Perform recommended maintenance tasks automatically</value>
|
||||
</data>
|
||||
<data name="ManageDiskSpaceUsedByYourOfflineFiles" xml:space="preserve">
|
||||
<value>Manage disk space used by your offline files</value>
|
||||
</data>
|
||||
<data name="TurnHighContrastOnOrOff" xml:space="preserve">
|
||||
<value>Turn High Contrast on or off</value>
|
||||
</data>
|
||||
<data name="ChangeTheWayTimeIsDisplayed" xml:space="preserve">
|
||||
<value>Change the way time is displayed</value>
|
||||
</data>
|
||||
<data name="ChangeHowWebPagesAreDisplayedInTabs" xml:space="preserve">
|
||||
<value>Change how web pages are displayed in tabs</value>
|
||||
</data>
|
||||
<data name="ChangeTheWayDatesAndListsAreDisplayed" xml:space="preserve">
|
||||
<value>Change the way dates and lists are displayed</value>
|
||||
</data>
|
||||
<data name="ManageAudioDevices" xml:space="preserve">
|
||||
<value>Manage audio devices</value>
|
||||
</data>
|
||||
<data name="ChangeSecuritySettings" xml:space="preserve">
|
||||
<value>Change security settings</value>
|
||||
</data>
|
||||
<data name="CheckSecurityStatus" xml:space="preserve">
|
||||
<value>Check security status</value>
|
||||
</data>
|
||||
<data name="DeleteCookiesOrTemporaryFiles" xml:space="preserve">
|
||||
<value>Delete cookies or temporary files</value>
|
||||
</data>
|
||||
<data name="SpecifyWhichHandYouWriteWith" xml:space="preserve">
|
||||
<value>Specify which hand you write with</value>
|
||||
</data>
|
||||
<data name="ChangeTouchInputSettings" xml:space="preserve">
|
||||
<value>Change touch input settings</value>
|
||||
</data>
|
||||
<data name="HowToChangeTheSizeOfVirtualMemory" xml:space="preserve">
|
||||
<value>How to change the size of virtual memory</value>
|
||||
</data>
|
||||
<data name="HearTextReadAloudWithNarrator" xml:space="preserve">
|
||||
<value>Hear text read aloud with Narrator</value>
|
||||
</data>
|
||||
<data name="SetUpUSBGameControllers" xml:space="preserve">
|
||||
<value>Set up USB game controllers</value>
|
||||
</data>
|
||||
<data name="ShowWhichDomainYourComputerIsOn" xml:space="preserve">
|
||||
<value>Show which domain your computer is on</value>
|
||||
</data>
|
||||
<data name="ViewAllProblemReports" xml:space="preserve">
|
||||
<value>View all problem reports</value>
|
||||
</data>
|
||||
<data name="16BitApplicationSupport" xml:space="preserve">
|
||||
<value>16-Bit Application Support</value>
|
||||
</data>
|
||||
<data name="SetUpDiallingRules" xml:space="preserve">
|
||||
<value>Set up dialling rules</value>
|
||||
</data>
|
||||
<data name="EnableOrDisableSessionCookies" xml:space="preserve">
|
||||
<value>Enable or disable session cookies</value>
|
||||
</data>
|
||||
<data name="GiveAdministrativeRightsToADomainUser" xml:space="preserve">
|
||||
<value>Give administrative rights to a domain user</value>
|
||||
</data>
|
||||
<data name="ChooseWhenToTurnOffDisplay" xml:space="preserve">
|
||||
<value>Choose when to turn off display</value>
|
||||
</data>
|
||||
<data name="MoveThePointerWithTheKeypadUsingMousekeys" xml:space="preserve">
|
||||
<value>Move the pointer with the keypad using MouseKeys</value>
|
||||
</data>
|
||||
<data name="ChangeWindowsSideshowCompatibleDeviceSettings" xml:space="preserve">
|
||||
<value>Change Windows SideShow-compatible device settings</value>
|
||||
</data>
|
||||
<data name="AdjustCommonlyUsedMobilitySettings" xml:space="preserve">
|
||||
<value>Adjust commonly used mobility settings</value>
|
||||
</data>
|
||||
<data name="ChangeTextToSpeechSettings" xml:space="preserve">
|
||||
<value>Change text-to-speech settings</value>
|
||||
</data>
|
||||
<data name="SetTheTimeAndDate" xml:space="preserve">
|
||||
<value>Set the time and date</value>
|
||||
</data>
|
||||
<data name="ChangeLocationSettings" xml:space="preserve">
|
||||
<value>Change location settings</value>
|
||||
</data>
|
||||
<data name="ChangeMouseSettings" xml:space="preserve">
|
||||
<value>Change mouse settings</value>
|
||||
</data>
|
||||
<data name="ManageStorageSpaces" xml:space="preserve">
|
||||
<value>Manage Storage Spaces</value>
|
||||
</data>
|
||||
<data name="ShowOrHideFileExtensions" xml:space="preserve">
|
||||
<value>Show or hide file extensions</value>
|
||||
</data>
|
||||
<data name="AllowAnAppThroughWindowsFirewall" xml:space="preserve">
|
||||
<value>Allow an app through Windows Firewall</value>
|
||||
</data>
|
||||
<data name="ChangeSystemSounds" xml:space="preserve">
|
||||
<value>Change system sounds</value>
|
||||
</data>
|
||||
<data name="AdjustCleartypeText" xml:space="preserve">
|
||||
<value>Adjust ClearType text</value>
|
||||
</data>
|
||||
<data name="TurnScreenSaverOnOrOff" xml:space="preserve">
|
||||
<value>Turn screen saver on or off</value>
|
||||
</data>
|
||||
<data name="FindAndFixWindowsUpdateProblems" xml:space="preserve">
|
||||
<value>Find and fix windows update problems</value>
|
||||
</data>
|
||||
<data name="ChangeBluetoothSettings" xml:space="preserve">
|
||||
<value>Change Bluetooth settings</value>
|
||||
</data>
|
||||
<data name="ConnectToANetwork" xml:space="preserve">
|
||||
<value>Connect to a network</value>
|
||||
</data>
|
||||
<data name="ChangeTheSearchProviderInInternetExplorer" xml:space="preserve">
|
||||
<value>Change the search provider in Internet Explorer</value>
|
||||
</data>
|
||||
<data name="JoinADomain" xml:space="preserve">
|
||||
<value>Join a domain</value>
|
||||
</data>
|
||||
<data name="AddADevice" xml:space="preserve">
|
||||
<value>Add a device</value>
|
||||
</data>
|
||||
<data name="FindAndFixProblemsWithWindowsSearch" xml:space="preserve">
|
||||
<value>Find and fix problems with Windows Search</value>
|
||||
</data>
|
||||
<data name="ChooseAPowerPlan" xml:space="preserve">
|
||||
<value>Choose a power plan</value>
|
||||
</data>
|
||||
<data name="ChangeHowTheMousePointerLooksWhenItSMoving" xml:space="preserve">
|
||||
<value>Change how the mouse pointer looks when it’s moving</value>
|
||||
</data>
|
||||
<data name="UninstallAProgram" xml:space="preserve">
|
||||
<value>Uninstall a program</value>
|
||||
</data>
|
||||
<data name="CreateAndFormatHardDiskPartitions" xml:space="preserve">
|
||||
<value>Create and format hard disk partitions</value>
|
||||
</data>
|
||||
<data name="ChangeDateTimeOrNumberFormats" xml:space="preserve">
|
||||
<value>Change date, time or number formats</value>
|
||||
</data>
|
||||
<data name="ChangePCWakeUpSettings" xml:space="preserve">
|
||||
<value>Change PC wake-up settings</value>
|
||||
</data>
|
||||
<data name="ManageNetworkPasswords" xml:space="preserve">
|
||||
<value>Manage network passwords</value>
|
||||
</data>
|
||||
<data name="ChangeInputMethods" xml:space="preserve">
|
||||
<value>Change input methods</value>
|
||||
</data>
|
||||
<data name="ManageAdvancedSharingSettings" xml:space="preserve">
|
||||
<value>Manage advanced sharing settings</value>
|
||||
</data>
|
||||
<data name="ChangeBatterySettings" xml:space="preserve">
|
||||
<value>Change battery settings</value>
|
||||
</data>
|
||||
<data name="RenameThisComputer" xml:space="preserve">
|
||||
<value>Rename this computer</value>
|
||||
</data>
|
||||
<data name="LockOrUnlockTheTaskbar" xml:space="preserve">
|
||||
<value>Lock or unlock the taskbar</value>
|
||||
</data>
|
||||
<data name="ManageWebCredentials" xml:space="preserve">
|
||||
<value>Manage Web Credentials</value>
|
||||
</data>
|
||||
<data name="ChangeTheTimeZone" xml:space="preserve">
|
||||
<value>Change the time zone</value>
|
||||
</data>
|
||||
<data name="StartSpeechRecognition" xml:space="preserve">
|
||||
<value>Start speech recognition</value>
|
||||
</data>
|
||||
<data name="ViewInstalledUpdates" xml:space="preserve">
|
||||
<value>View installed updates</value>
|
||||
</data>
|
||||
<data name="WhatsHappenedToTheQuickLaunchToolbar" xml:space="preserve">
|
||||
<value>What's happened to the Quick Launch toolbar?</value>
|
||||
</data>
|
||||
<data name="ChangeSearchOptionsForFilesAndFolders" xml:space="preserve">
|
||||
<value>Change search options for files and folders</value>
|
||||
</data>
|
||||
<data name="AdjustSettingsBeforeGivingAPresentation" xml:space="preserve">
|
||||
<value>Adjust settings before giving a presentation</value>
|
||||
</data>
|
||||
<data name="ScanADocumentOrPicture" xml:space="preserve">
|
||||
<value>Scan a document or picture</value>
|
||||
</data>
|
||||
<data name="ChangeTheWayMeasurementsAreDisplayed" xml:space="preserve">
|
||||
<value>Change the way measurements are displayed</value>
|
||||
</data>
|
||||
<data name="PressKeyCombinationsOneAtATime" xml:space="preserve">
|
||||
<value>Press key combinations one at a time</value>
|
||||
</data>
|
||||
<data name="RestoreDataFilesOrComputerFromBackupWindows7" xml:space="preserve">
|
||||
<value>Restore data, files or computer from backup (Windows 7)</value>
|
||||
</data>
|
||||
<data name="SetYourDefaultPrograms" xml:space="preserve">
|
||||
<value>Set your default programs</value>
|
||||
</data>
|
||||
<data name="SetUpABroadbandConnection" xml:space="preserve">
|
||||
<value>Set up a broadband connection</value>
|
||||
</data>
|
||||
<data name="CalibrateTheScreenForPenOrTouchInput" xml:space="preserve">
|
||||
<value>Calibrate the screen for pen or touch input</value>
|
||||
</data>
|
||||
<data name="ManageUserCertificates" xml:space="preserve">
|
||||
<value>Manage user certificates</value>
|
||||
</data>
|
||||
<data name="ScheduleTasks" xml:space="preserve">
|
||||
<value>Schedule tasks</value>
|
||||
</data>
|
||||
<data name="IgnoreRepeatedKeystrokesUsingFilterkeys" xml:space="preserve">
|
||||
<value>Ignore repeated keystrokes using FilterKeys</value>
|
||||
</data>
|
||||
<data name="FindAndFixBluescreenProblems" xml:space="preserve">
|
||||
<value>Find and fix bluescreen problems</value>
|
||||
</data>
|
||||
<data name="HearAToneWhenKeysArePressed" xml:space="preserve">
|
||||
<value>Hear a tone when keys are pressed</value>
|
||||
</data>
|
||||
<data name="DeleteBrowsingHistory" xml:space="preserve">
|
||||
<value>Delete browsing history</value>
|
||||
</data>
|
||||
<data name="ChangeWhatThePowerButtonsDo" xml:space="preserve">
|
||||
<value>Change what the power buttons do</value>
|
||||
</data>
|
||||
<data name="CreateStandardUserAccount" xml:space="preserve">
|
||||
<value>Create standard user account</value>
|
||||
</data>
|
||||
<data name="TakeSpeechTutorials" xml:space="preserve">
|
||||
<value>Take speech tutorials</value>
|
||||
</data>
|
||||
<data name="ViewSystemResourceUsageInTaskManager" xml:space="preserve">
|
||||
<value>View system resource usage in Task Manager</value>
|
||||
</data>
|
||||
<data name="CreateAnAccount" xml:space="preserve">
|
||||
<value>Create an account</value>
|
||||
</data>
|
||||
<data name="GetMoreFeaturesWithANewEditionOfWindows" xml:space="preserve">
|
||||
<value>Get more features with a new edition of Windows</value>
|
||||
</data>
|
||||
<data name="AppControlPanel" xml:space="preserve">
|
||||
<value>Control Panel</value>
|
||||
</data>
|
||||
<data name="TaskLink" xml:space="preserve">
|
||||
<value>TaskLink</value>
|
||||
</data>
|
||||
<data name="AreaUnknown" xml:space="preserve">
|
||||
<value>Unknown</value>
|
||||
</data>
|
||||
</root>
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -4,7 +4,7 @@
|
|||
"Description": "Search settings inside Control Panel and Settings App",
|
||||
"Name": "Windows Settings",
|
||||
"Author": "TobiasSekan",
|
||||
"Version": "2.0.2",
|
||||
"Version": "2.1.0",
|
||||
"Language": "csharp",
|
||||
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
|
||||
"ExecuteFileName": "Flow.Launcher.Plugin.WindowsSettings.dll",
|
||||
|
|
|
|||
Loading…
Reference in a new issue