[PT Run] [WindowsSettings plugin] Translation improvements and LocProject.json (#13078)

* TranslationHelper: Update/add if conditions

* Resource strings: Update <ControlPanel>

* Creating <LocProject.json>
This commit is contained in:
Heiko
2021-09-06 19:17:20 +02:00
committed by GitHub
parent dcc4563c8c
commit 2bfc62d9a5
5 changed files with 121 additions and 101 deletions

View File

@@ -29,22 +29,28 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper
foreach (var settings in settingsList) foreach (var settings in settingsList)
{ {
// Translate Name // Translate Name
var name = Resources.ResourceManager.GetString(settings.Name); if (!string.IsNullOrWhiteSpace(settings.Name))
if (string.IsNullOrEmpty(name))
{ {
Log.Warn($"Resource string for [{settings.Name}] not found", typeof(TranslationHelper)); var name = Resources.ResourceManager.GetString(settings.Name);
} if (string.IsNullOrEmpty(name))
{
Log.Warn($"Resource string for [{settings.Name}] not found", typeof(TranslationHelper));
}
settings.Name = name ?? settings.Name ?? string.Empty; settings.Name = name ?? settings.Name ?? string.Empty;
}
// Translate Type (App) // Translate Type (App)
var type = Resources.ResourceManager.GetString(settings.Type); if (!string.IsNullOrWhiteSpace(settings.Type))
if (string.IsNullOrEmpty(type))
{ {
Log.Warn($"Resource string for [{settings.Type}] not found", typeof(TranslationHelper)); var type = Resources.ResourceManager.GetString(settings.Type);
} if (string.IsNullOrEmpty(type))
{
Log.Warn($"Resource string for [{settings.Type}] not found", typeof(TranslationHelper));
}
settings.Type = type ?? settings.Type ?? string.Empty; settings.Type = type ?? settings.Type ?? string.Empty;
}
// Translate Areas // Translate Areas
if (!(settings.Areas is null) && settings.Areas.Any()) if (!(settings.Areas is null) && settings.Areas.Any())
@@ -95,7 +101,7 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper
} }
// Translate Note // Translate Note
if (!string.IsNullOrEmpty(settings.Note)) if (!string.IsNullOrWhiteSpace(settings.Note))
{ {
var note = Resources.ResourceManager.GetString(settings.Note); var note = Resources.ResourceManager.GetString(settings.Note);
if (string.IsNullOrEmpty(note)) if (string.IsNullOrEmpty(note))

View File

@@ -0,0 +1,14 @@
{
"Projects": [
{
"LanguageSet": "Azure_Languages",
"LocItems": [
{
"SourceFile": "src\\modules\\launcher\\Plugins\\Microsoft.PowerToys.Run.Plugin.WindowsSettings\\Properties\\Resources.resx",
"CopyOption": "LangIDOnName",
"OutputPath": "src\\modules\\launcher\\Plugins\\Microsoft.PowerToys.Run.Plugin.WindowsSettings\\Properties"
}
]
}
]
}

View File

@@ -258,6 +258,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to Control Panel.
/// </summary>
internal static string AppControlPanel {
get {
return ResourceManager.GetString("AppControlPanel", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to App diagnostics. /// Looks up a localized string similar to App diagnostics.
/// </summary> /// </summary>
@@ -915,15 +924,6 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to Control Panel.
/// </summary>
internal static string ControlPanel {
get {
return ResourceManager.GetString("ControlPanel", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Copy command. /// Looks up a localized string similar to Copy command.
/// </summary> /// </summary>

View File

@@ -201,6 +201,10 @@
<data name="AppColor" xml:space="preserve"> <data name="AppColor" xml:space="preserve">
<value>App color</value> <value>App color</value>
</data> </data>
<data name="AppControlPanel" xml:space="preserve">
<value>Control Panel</value>
<comment>Type of the setting is a "(legacy) Control Panel setting"</comment>
</data>
<data name="AppDiagnostics" xml:space="preserve"> <data name="AppDiagnostics" xml:space="preserve">
<value>App diagnostics</value> <value>App diagnostics</value>
<comment>Area Privacy</comment> <comment>Area Privacy</comment>
@@ -464,10 +468,6 @@
<value>Contacts</value> <value>Contacts</value>
<comment>Area Privacy</comment> <comment>Area Privacy</comment>
</data> </data>
<data name="ControlPanel" xml:space="preserve">
<value>Control Panel</value>
<comment>Type of the setting is a "(legacy) Control Panel setting"</comment>
</data>
<data name="CopyCommand" xml:space="preserve"> <data name="CopyCommand" xml:space="preserve">
<value>Copy command</value> <value>Copy command</value>
</data> </data>

View File

@@ -1251,486 +1251,486 @@
{ {
"Name": "AccessibilityOptions", "Name": "AccessibilityOptions",
"Areas": [ "AreaEaseOfAccess" ], "Areas": [ "AreaEaseOfAccess" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "access.cpl" ], "AltNames": [ "access.cpl" ],
"Command": "control access.cpl" "Command": "control access.cpl"
}, },
{ {
"Name": "ActionCenter", "Name": "ActionCenter",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.ActionCenter" "Command": "control /name Microsoft.ActionCenter"
}, },
{ {
"Name": "AddHardware", "Name": "AddHardware",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.AddHardware" "Command": "control /name Microsoft.AddHardware"
}, },
{ {
"Name": "AddRemovePrograms", "Name": "AddRemovePrograms",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "appwiz.cpl" ], "AltNames": [ "appwiz.cpl" ],
"Command": "control appwiz.cpl" "Command": "control appwiz.cpl"
}, },
{ {
"Name": "AdministrativeTools", "Name": "AdministrativeTools",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.AdministrativeTools" "Command": "control /name Microsoft.AdministrativeTools"
}, },
{ {
"Name": "AutoPlay", "Name": "AutoPlay",
"Areas": [ "AreaPrograms" ], "Areas": [ "AreaPrograms" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.AutoPlay" "Command": "control /name Microsoft.AutoPlay"
}, },
{ {
"Name": "BackupAndRestore", "Name": "BackupAndRestore",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.BackupAndRestore" "Command": "control /name Microsoft.BackupAndRestore"
}, },
{ {
"Name": "BiometricDevices", "Name": "BiometricDevices",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.BiometricDevices" "Command": "control /name Microsoft.BiometricDevices"
}, },
{ {
"Name": "BitLockerDriveEncryption", "Name": "BitLockerDriveEncryption",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.BitLockerDriveEncryption" "Command": "control /name Microsoft.BitLockerDriveEncryption"
}, },
{ {
"Name": "BluetoothDevices", "Name": "BluetoothDevices",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.BluetoothDevices" "Command": "control /name Microsoft.BluetoothDevices"
}, },
{ {
"Name": "ColorManagement", "Name": "ColorManagement",
"Areas": [ "AreaAppearanceAndPersonalization" ], "Areas": [ "AreaAppearanceAndPersonalization" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.ColorManagement" "Command": "control /name Microsoft.ColorManagement"
}, },
{ {
"Name": "CredentialManager", "Name": "CredentialManager",
"Areas": [ "AreaUserAccounts" ], "Areas": [ "AreaUserAccounts" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "Password" ], "AltNames": [ "Password" ],
"Command": "control /name Microsoft.CredentialManager" "Command": "control /name Microsoft.CredentialManager"
}, },
{ {
"Name": "ClientServiceForNetWare", "Name": "ClientServiceForNetWare",
"Areas": [ "AreaPrograms" ], "Areas": [ "AreaPrograms" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "nwc.cpl" ], "AltNames": [ "nwc.cpl" ],
"Command": "control nwc.cpl" "Command": "control nwc.cpl"
}, },
{ {
"Name": "DateAndTime", "Name": "DateAndTime",
"Areas": [ "AreaClockAndRegion" ], "Areas": [ "AreaClockAndRegion" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "timedate.cpl" ], "AltNames": [ "timedate.cpl" ],
"Command": "control /name Microsoft.DateAndTime" "Command": "control /name Microsoft.DateAndTime"
}, },
{ {
"Name": "DefaultLocation", "Name": "DefaultLocation",
"Areas": [ "AreaClockAndRegion" ], "Areas": [ "AreaClockAndRegion" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.DefaultLocation" "Command": "control /name Microsoft.DefaultLocation"
}, },
{ {
"Name": "DefaultPrograms", "Name": "DefaultPrograms",
"Areas": [ "AreaPrograms" ], "Areas": [ "AreaPrograms" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.DefaultPrograms" "Command": "control /name Microsoft.DefaultPrograms"
}, },
{ {
"Name": "DeviceManager", "Name": "DeviceManager",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.DeviceManager" "Command": "control /name Microsoft.DeviceManager"
}, },
{ {
"Name": "DevicesAndPrinters", "Name": "DevicesAndPrinters",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.DevicesAndPrinters" "Command": "control /name Microsoft.DevicesAndPrinters"
}, },
{ {
"Name": "EaseOfAccessCenter", "Name": "EaseOfAccessCenter",
"Areas": [ "AreaEaseOfAccess" ], "Areas": [ "AreaEaseOfAccess" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.EaseOfAccessCenter" "Command": "control /name Microsoft.EaseOfAccessCenter"
}, },
{ {
"Name": "FolderOptions", "Name": "FolderOptions",
"Areas": [ "AreaAppearanceAndPersonalization" ], "Areas": [ "AreaAppearanceAndPersonalization" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.FolderOptions" "Command": "control /name Microsoft.FolderOptions"
}, },
{ {
"Name": "Fonts", "Name": "Fonts",
"Areas": [ "AreaAppearanceAndPersonalization" ], "Areas": [ "AreaAppearanceAndPersonalization" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.Fonts" "Command": "control /name Microsoft.Fonts"
}, },
{ {
"Name": "GameControllers", "Name": "GameControllers",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.GameControllers" "Command": "control /name Microsoft.GameControllers"
}, },
{ {
"Name": "GetPrograms", "Name": "GetPrograms",
"Areas": [ "AreaPrograms" ], "Areas": [ "AreaPrograms" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.GetPrograms" "Command": "control /name Microsoft.GetPrograms"
}, },
{ {
"Name": "GettingStarted", "Name": "GettingStarted",
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.GettingStarted" "Command": "control /name Microsoft.GettingStarted"
}, },
{ {
"Name": "HomeGroup", "Name": "HomeGroup",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.HomeGroup" "Command": "control /name Microsoft.HomeGroup"
}, },
{ {
"Name": "IndexingOptions", "Name": "IndexingOptions",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.IndexingOptions" "Command": "control /name Microsoft.IndexingOptions"
}, },
{ {
"Name": "Infrared", "Name": "Infrared",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.Infrared" "Command": "control /name Microsoft.Infrared"
}, },
{ {
"Name": "InternetOptions", "Name": "InternetOptions",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "inetcpl.cpl" ], "AltNames": [ "inetcpl.cpl" ],
"Command": "control /name Microsoft.InternetOptions" "Command": "control /name Microsoft.InternetOptions"
}, },
{ {
"Name": "MailMicrosoftExchangeOrWindowsMessaging", "Name": "MailMicrosoftExchangeOrWindowsMessaging",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "mlcfg32.cpl" ], "AltNames": [ "mlcfg32.cpl" ],
"Command": "control mlcfg32.cpl" "Command": "control mlcfg32.cpl"
}, },
{ {
"Name": "Mouse", "Name": "Mouse",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.Mouse" "Command": "control /name Microsoft.Mouse"
}, },
{ {
"Name": "NetworkAndSharingCenter", "Name": "NetworkAndSharingCenter",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.NetworkAndSharingCenter" "Command": "control /name Microsoft.NetworkAndSharingCenter"
}, },
{ {
"Name": "NetworkConnection", "Name": "NetworkConnection",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control netconnections" "Command": "control netconnections"
}, },
{ {
"Name": "NetworkSetupWizard", "Name": "NetworkSetupWizard",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "netsetup.cpl" ], "AltNames": [ "netsetup.cpl" ],
"Command": "control netsetup.cpl" "Command": "control netsetup.cpl"
}, },
{ {
"Name": "OdbcDataSourceAdministrator32Bit", "Name": "OdbcDataSourceAdministrator32Bit",
"Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ], "Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "odbccp32.cpl" ], "AltNames": [ "odbccp32.cpl" ],
"Command": "%windir%/syswow64/odbcad32.exe" "Command": "%windir%/syswow64/odbcad32.exe"
}, },
{ {
"Name": "OdbcDataSourceAdministrator64Bit", "Name": "OdbcDataSourceAdministrator64Bit",
"Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ], "Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "%windir%/system32/odbcad32.exe" "Command": "%windir%/system32/odbcad32.exe"
}, },
{ {
"Name": "OfflineFiles", "Name": "OfflineFiles",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.OfflineFiles" "Command": "control /name Microsoft.OfflineFiles"
}, },
{ {
"Name": "ParentalControls", "Name": "ParentalControls",
"Areas": [ "AreaUserAccounts" ], "Areas": [ "AreaUserAccounts" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.ParentalControls" "Command": "control /name Microsoft.ParentalControls"
}, },
{ {
"Name": "PenAndInputDevices", "Name": "PenAndInputDevices",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.PenAndInputDevices" "Command": "control /name Microsoft.PenAndInputDevices"
}, },
{ {
"Name": "PenAndTouch", "Name": "PenAndTouch",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.PenAndTouch" "Command": "control /name Microsoft.PenAndTouch"
}, },
{ {
"Name": "PeopleNearMe", "Name": "PeopleNearMe",
"Areas": [ "AreaUserAccounts" ], "Areas": [ "AreaUserAccounts" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.PeopleNearMe" "Command": "control /name Microsoft.PeopleNearMe"
}, },
{ {
"Name": "PerformanceInformationAndTools", "Name": "PerformanceInformationAndTools",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.PerformanceInformationAndTools" "Command": "control /name Microsoft.PerformanceInformationAndTools"
}, },
{ {
"Name": "PhoneAndModemOptions", "Name": "PhoneAndModemOptions",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.PhoneAndModemOptions" "Command": "control /name Microsoft.PhoneAndModemOptions"
}, },
{ {
"Name": "PhoneAndModem", "Name": "PhoneAndModem",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "modem.cpl" ], "AltNames": [ "modem.cpl" ],
"Command": "control /name Microsoft.PhoneAndModem" "Command": "control /name Microsoft.PhoneAndModem"
}, },
{ {
"Name": "PowerOptions", "Name": "PowerOptions",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "powercfg.cpl" ], "AltNames": [ "powercfg.cpl" ],
"Command": "control /name Microsoft.PowerOptions" "Command": "control /name Microsoft.PowerOptions"
}, },
{ {
"Name": "Printers", "Name": "Printers",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.Printers" "Command": "control /name Microsoft.Printers"
}, },
{ {
"Name": "ProblemReportsAndSolutions", "Name": "ProblemReportsAndSolutions",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.ProblemReportsAndSolutions" "Command": "control /name Microsoft.ProblemReportsAndSolutions"
}, },
{ {
"Name": "ProgramsAndFeatures", "Name": "ProgramsAndFeatures",
"Areas": [ "AreaPrograms" ], "Areas": [ "AreaPrograms" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.ProgramsAndFeatures" "Command": "control /name Microsoft.ProgramsAndFeatures"
}, },
{ {
"Name": "Recovery", "Name": "Recovery",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.Recovery" "Command": "control /name Microsoft.Recovery"
}, },
{ {
"Name": "RegionAndLanguage", "Name": "RegionAndLanguage",
"Areas": [ "AreaClockAndRegion" ], "Areas": [ "AreaClockAndRegion" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.RegionAndLanguage" "Command": "control /name Microsoft.RegionAndLanguage"
}, },
{ {
"Name": "RemoteAppAndDesktopConnections", "Name": "RemoteAppAndDesktopConnections",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.RemoteAppAndDesktopConnections" "Command": "control /name Microsoft.RemoteAppAndDesktopConnections"
}, },
{ {
"Name": "ScannersAndCameras", "Name": "ScannersAndCameras",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "sticpl.cpl" ], "AltNames": [ "sticpl.cpl" ],
"Command": "control /name Microsoft.ScannersAndCameras" "Command": "control /name Microsoft.ScannersAndCameras"
}, },
{ {
"Name": "ScheduledTasks", "Name": "ScheduledTasks",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "schedtasks" ], "AltNames": [ "schedtasks" ],
"Command": "control schedtasks" "Command": "control schedtasks"
}, },
{ {
"Name": "SecurityCenter", "Name": "SecurityCenter",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.SecurityCenter" "Command": "control /name Microsoft.SecurityCenter"
}, },
{ {
"Name": "Sound", "Name": "Sound",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.Sound" "Command": "control /name Microsoft.Sound"
}, },
{ {
"Name": "SpeechRecognition", "Name": "SpeechRecognition",
"Areas": [ "AreaEaseOfAccess" ], "Areas": [ "AreaEaseOfAccess" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.SpeechRecognition" "Command": "control /name Microsoft.SpeechRecognition"
}, },
{ {
"Name": "SyncCenter", "Name": "SyncCenter",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.SyncCenter" "Command": "control /name Microsoft.SyncCenter"
}, },
{ {
"Name": "System", "Name": "System",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "sysdm.cpl" ], "AltNames": [ "sysdm.cpl" ],
"Command": "control sysdm.cpl" "Command": "control sysdm.cpl"
}, },
{ {
"Name": "TabletPcSettings", "Name": "TabletPcSettings",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.TabletPCSettings" "Command": "control /name Microsoft.TabletPCSettings"
}, },
{ {
"Name": "TextToSpeech", "Name": "TextToSpeech",
"Areas": [ "AreaEaseOfAccess" ], "Areas": [ "AreaEaseOfAccess" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.TextToSpeech" "Command": "control /name Microsoft.TextToSpeech"
}, },
{ {
"Name": "UserAccounts", "Name": "UserAccounts",
"Areas": [ "AreaUserAccounts" ], "Areas": [ "AreaUserAccounts" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.UserAccounts" "Command": "control /name Microsoft.UserAccounts"
}, },
{ {
"Name": "WelcomeCenter", "Name": "WelcomeCenter",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.WelcomeCenter" "Command": "control /name Microsoft.WelcomeCenter"
}, },
{ {
"Name": "WindowsAnytimeUpgrade", "Name": "WindowsAnytimeUpgrade",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.WindowsAnytimeUpgrade" "Command": "control /name Microsoft.WindowsAnytimeUpgrade"
}, },
{ {
"Name": "WindowsCardSpace", "Name": "WindowsCardSpace",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.CardSpace" "Command": "control /name Microsoft.CardSpace"
}, },
{ {
"Name": "WindowsDefender", "Name": "WindowsDefender",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.WindowsDefender" "Command": "control /name Microsoft.WindowsDefender"
}, },
{ {
"Name": "WindowsFirewall", "Name": "WindowsFirewall",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.WindowsFirewall" "Command": "control /name Microsoft.WindowsFirewall"
}, },
{ {
"Name": "WindowsMobilityCenter", "Name": "WindowsMobilityCenter",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"Command": "control /name Microsoft.MobilityCenter" "Command": "control /name Microsoft.MobilityCenter"
}, },
{ {
"Name": "DisplayProperties", "Name": "DisplayProperties",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "desk.cpl" ], "AltNames": [ "desk.cpl" ],
"Command": "control Desk.cpl" "Command": "control Desk.cpl"
}, },
{ {
"Name": "FindFast", "Name": "FindFast",
"Areas": [ "AreaSystemAndSecurity" ], "Areas": [ "AreaSystemAndSecurity" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "findfast.cpl" ], "AltNames": [ "findfast.cpl" ],
"Command": "control FindFast.cpl" "Command": "control FindFast.cpl"
}, },
{ {
"Name": "RegionalSettingsProperties", "Name": "RegionalSettingsProperties",
"Areas": [ "AreaEaseOfAccess" ], "Areas": [ "AreaEaseOfAccess" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "intl.cpl" ], "AltNames": [ "intl.cpl" ],
"Command": "control Intl.cpl" "Command": "control Intl.cpl"
}, },
{ {
"Name": "JoystickProperties", "Name": "JoystickProperties",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "joy.cpl" ], "AltNames": [ "joy.cpl" ],
"Command": "control Joy.cpl" "Command": "control Joy.cpl"
}, },
{ {
"Name": "MouseFontsKeyboardAndPrintersProperties", "Name": "MouseFontsKeyboardAndPrintersProperties",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "main.cpl" ], "AltNames": [ "main.cpl" ],
"Command": "control Main.cpl" "Command": "control Main.cpl"
}, },
{ {
"Name": "MultimediaProperties", "Name": "MultimediaProperties",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "mmsys.cpl" ], "AltNames": [ "mmsys.cpl" ],
"Command": "control Mmsys.cpl" "Command": "control Mmsys.cpl"
}, },
{ {
"Name": "NetworkProperties", "Name": "NetworkProperties",
"Areas": [ "AreaNetworkAndInternet" ], "Areas": [ "AreaNetworkAndInternet" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "netcpl.cpl" ], "AltNames": [ "netcpl.cpl" ],
"Command": "control Netcpl.cpl" "Command": "control Netcpl.cpl"
}, },
{ {
"Name": "PasswordProperties", "Name": "PasswordProperties",
"Areas": [ "AreaUserAccounts" ], "Areas": [ "AreaUserAccounts" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "password.cpl" ], "AltNames": [ "password.cpl" ],
"Command": "control Password.cpl" "Command": "control Password.cpl"
}, },
{ {
"Name": "SystemPropertiesAndAddNewHardwareWizard", "Name": "SystemPropertiesAndAddNewHardwareWizard",
"Areas": [ "AreaHardwareAndSound" ], "Areas": [ "AreaHardwareAndSound" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "sysdm.cpl" ], "AltNames": [ "sysdm.cpl" ],
"Command": "control Sysdm.cpl" "Command": "control Sysdm.cpl"
}, },
{ {
"Name": "DesktopThemes", "Name": "DesktopThemes",
"Areas": [ "AreaAppearanceAndPersonalization" ], "Areas": [ "AreaAppearanceAndPersonalization" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "themes.cpl" ], "AltNames": [ "themes.cpl" ],
"Command": "control Themes.cpl" "Command": "control Themes.cpl"
}, },
{ {
"Name": "MicrosoftMailPostOffice", "Name": "MicrosoftMailPostOffice",
"Areas": [ "AreaPrograms" ], "Areas": [ "AreaPrograms" ],
"Type": "ControlPanel", "Type": "AppControlPanel",
"AltNames": [ "wgpocpl.cpl" ], "AltNames": [ "wgpocpl.cpl" ],
"Command": "control Wgpocpl.cpl" "Command": "control Wgpocpl.cpl"
} }