diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 000000000..6abd850ed
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,23 @@
+# For more information, see:
+# https://github.com/actions/stale
+name: Mark stale issues and pull requests
+
+on:
+ schedule:
+ - cron: '30 1 * * *'
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses: actions/stale@v4
+ with:
+ stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
+ days-before-stale: 30
+ days-before-close: 5
+ days-before-pr-close: -1
+ exempt-all-milestones: true
+ close-issue-message: 'This issue was closed because it has been stale for 5 days with no activity. If you feel this issue still needs attention please feel free to reopen.'
\ No newline at end of file
diff --git a/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs b/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs
index c0cd022ea..fab1b3e8f 100644
--- a/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs
+++ b/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs
@@ -2,6 +2,8 @@
using Flow.Launcher.Infrastructure.Logger;
using System;
using System.Collections.Generic;
+using System.Net;
+using System.Net.Http;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
@@ -10,43 +12,43 @@ namespace Flow.Launcher.Core.ExternalPlugins
{
public static class PluginsManifest
{
- static PluginsManifest()
- {
- UpdateTask = UpdateManifestAsync();
- }
-
- public static List UserPlugins { get; private set; } = new List();
-
- public static Task UpdateTask { get; private set; }
+ private const string manifestFileUrl = "https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json";
private static readonly SemaphoreSlim manifestUpdateLock = new(1);
- public static Task UpdateManifestAsync()
- {
- if (manifestUpdateLock.CurrentCount == 0)
- {
- return UpdateTask;
- }
+ private static string latestEtag = "";
- return UpdateTask = DownloadManifestAsync();
- }
+ public static List UserPlugins { get; private set; } = new List();
- private async static Task DownloadManifestAsync()
+ public static async Task UpdateManifestAsync(CancellationToken token = default)
{
try
{
- await manifestUpdateLock.WaitAsync().ConfigureAwait(false);
+ await manifestUpdateLock.WaitAsync(token).ConfigureAwait(false);
- await using var jsonStream = await Http.GetStreamAsync("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json")
- .ConfigureAwait(false);
+ var request = new HttpRequestMessage(HttpMethod.Get, manifestFileUrl);
+ request.Headers.Add("If-None-Match", latestEtag);
- UserPlugins = await JsonSerializer.DeserializeAsync>(jsonStream).ConfigureAwait(false);
+ var response = await Http.SendAsync(request, token).ConfigureAwait(false);
+
+ if (response.StatusCode == HttpStatusCode.OK)
+ {
+ Log.Info($"|PluginsManifest.{nameof(UpdateManifestAsync)}|Fetched plugins from manifest repo");
+
+ var json = await response.Content.ReadAsStreamAsync(token).ConfigureAwait(false);
+
+ UserPlugins = await JsonSerializer.DeserializeAsync>(json, cancellationToken: token).ConfigureAwait(false);
+
+ latestEtag = response.Headers.ETag.Tag;
+ }
+ else if (response.StatusCode != HttpStatusCode.NotModified)
+ {
+ Log.Warn($"|PluginsManifest.{nameof(UpdateManifestAsync)}|Http response for manifest file was {response.StatusCode}");
+ }
}
catch (Exception e)
{
- Log.Exception("|PluginManagement.GetManifest|Encountered error trying to download plugins manifest", e);
-
- UserPlugins = new List();
+ Log.Exception($"|PluginsManifest.{nameof(UpdateManifestAsync)}|Http request failed", e);
}
finally
{
diff --git a/Flow.Launcher.Core/Flow.Launcher.Core.csproj b/Flow.Launcher.Core/Flow.Launcher.Core.csproj
index 60c4ec3de..fdd23a0d2 100644
--- a/Flow.Launcher.Core/Flow.Launcher.Core.csproj
+++ b/Flow.Launcher.Core/Flow.Launcher.Core.csproj
@@ -1,7 +1,7 @@
- net5.0-windows
+ net6.0-windowstruetrueLibrary
@@ -53,7 +53,7 @@
-
+
diff --git a/Flow.Launcher.Core/Plugin/ExecutablePlugin.cs b/Flow.Launcher.Core/Plugin/ExecutablePlugin.cs
index 0982e4017..049d1c583 100644
--- a/Flow.Launcher.Core/Plugin/ExecutablePlugin.cs
+++ b/Flow.Launcher.Core/Plugin/ExecutablePlugin.cs
@@ -1,5 +1,4 @@
-using System;
-using System.Diagnostics;
+using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
@@ -22,18 +21,23 @@ namespace Flow.Launcher.Core.Plugin
RedirectStandardOutput = true,
RedirectStandardError = true
};
+
+ // required initialisation for below request calls
+ _startInfo.ArgumentList.Add(string.Empty);
}
protected override Task RequestAsync(JsonRPCRequestModel request, CancellationToken token = default)
{
- _startInfo.Arguments = $"\"{request}\"";
+ // since this is not static, request strings will build up in ArgumentList if index is not specified
+ _startInfo.ArgumentList[0] = request.ToString();
return ExecuteAsync(_startInfo, token);
}
protected override string Request(JsonRPCRequestModel rpcRequest, CancellationToken token = default)
{
- _startInfo.Arguments = $"\"{rpcRequest}\"";
+ // since this is not static, request strings will build up in ArgumentList if index is not specified
+ _startInfo.ArgumentList[0] = rpcRequest.ToString();
return Execute(_startInfo);
}
}
-}
\ No newline at end of file
+}
diff --git a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs
index 384418db9..4cfa83382 100644
--- a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs
+++ b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs
@@ -354,7 +354,9 @@ namespace Flow.Launcher.Core.Plugin
this.context = context;
await InitSettingAsync();
}
- private static readonly Thickness settingControlMargin = new(10);
+ private static readonly Thickness settingControlMargin = new(10, 4, 10, 4);
+ private static readonly Thickness settingPanelMargin = new(15, 20, 15, 20);
+ private static readonly Thickness settingTextBlockMargin = new(10, 4, 10, 4);
private JsonRpcConfigurationModel _settingsTemplate;
public Control CreateSettingPanel()
{
@@ -363,7 +365,7 @@ namespace Flow.Launcher.Core.Plugin
var settingWindow = new UserControl();
var mainPanel = new StackPanel
{
- Margin = settingControlMargin,
+ Margin = settingPanelMargin,
Orientation = Orientation.Vertical
};
settingWindow.Content = mainPanel;
@@ -375,10 +377,13 @@ namespace Flow.Launcher.Core.Plugin
Orientation = Orientation.Horizontal,
Margin = settingControlMargin
};
- var name = new Label()
+ var name = new TextBlock()
{
- Content = attribute.Label,
- Margin = settingControlMargin
+ Text = attribute.Label,
+ Width = 120,
+ VerticalAlignment = VerticalAlignment.Center,
+ Margin = settingControlMargin,
+ TextWrapping = TextWrapping.WrapWithOverflow
};
FrameworkElement contentControl;
@@ -390,8 +395,8 @@ namespace Flow.Launcher.Core.Plugin
contentControl = new TextBlock
{
Text = attribute.Description.Replace("\\r\\n", "\r\n"),
- Margin = settingControlMargin,
- MaxWidth = 400,
+ Margin = settingTextBlockMargin,
+ MaxWidth = 500,
TextWrapping = TextWrapping.WrapWithOverflow
};
break;
diff --git a/Flow.Launcher.Core/Plugin/PluginAssemblyLoader.cs b/Flow.Launcher.Core/Plugin/PluginAssemblyLoader.cs
index 515b0bedc..9d76b6be0 100644
--- a/Flow.Launcher.Core/Plugin/PluginAssemblyLoader.cs
+++ b/Flow.Launcher.Core/Plugin/PluginAssemblyLoader.cs
@@ -15,20 +15,6 @@ namespace Flow.Launcher.Core.Plugin
private readonly AssemblyName assemblyName;
- private static readonly ConcurrentDictionary loadedAssembly;
-
- static PluginAssemblyLoader()
- {
- var currentAssemblies = AppDomain.CurrentDomain.GetAssemblies();
- loadedAssembly = new ConcurrentDictionary(
- currentAssemblies.Select(x => new KeyValuePair(x.FullName, default)));
-
- AppDomain.CurrentDomain.AssemblyLoad += (sender, args) =>
- {
- loadedAssembly[args.LoadedAssembly.FullName] = default;
- };
- }
-
internal PluginAssemblyLoader(string assemblyFilePath)
{
dependencyResolver = new AssemblyDependencyResolver(assemblyFilePath);
@@ -47,10 +33,9 @@ namespace Flow.Launcher.Core.Plugin
// When resolving dependencies, ignore assembly depenedencies that already exits with Flow.Launcher
// Otherwise duplicate assembly will be loaded and some weird behavior will occur, such as WinRT.Runtime.dll
// will fail due to loading multiple versions in process, each with their own static instance of registration state
- if (assemblyPath == null || ExistsInReferencedPackage(assemblyName))
- return null;
+ var existAssembly = Default.Assemblies.FirstOrDefault(x => x.FullName == assemblyName.FullName);
- return LoadFromAssemblyPath(assemblyPath);
+ return existAssembly ?? (assemblyPath == null ? null : LoadFromAssemblyPath(assemblyPath));
}
internal Type FromAssemblyGetTypeOfInterface(Assembly assembly, Type type)
@@ -58,10 +43,5 @@ namespace Flow.Launcher.Core.Plugin
var allTypes = assembly.ExportedTypes;
return allTypes.First(o => o.IsClass && !o.IsAbstract && o.GetInterfaces().Any(t => t == type));
}
-
- internal bool ExistsInReferencedPackage(AssemblyName assemblyName)
- {
- return loadedAssembly.ContainsKey(assemblyName.FullName);
- }
}
}
\ No newline at end of file
diff --git a/Flow.Launcher.Core/Resource/AvailableLanguages.cs b/Flow.Launcher.Core/Resource/AvailableLanguages.cs
index 0ad7ede1e..f541d3f35 100644
--- a/Flow.Launcher.Core/Resource/AvailableLanguages.cs
+++ b/Flow.Launcher.Core/Resource/AvailableLanguages.cs
@@ -19,6 +19,8 @@ namespace Flow.Launcher.Core.Resource
public static Language Serbian = new Language("sr", "Srpski");
public static Language Portuguese_Portugal = new Language("pt-pt", "Português");
public static Language Portuguese_Brazil = new Language("pt-br", "Português (Brasil)");
+ public static Language Spanish = new Language("es", "Spanish");
+ public static Language Spanish_LatinAmerica = new Language("es-419", "Spanish (Latin America)");
public static Language Italian = new Language("it", "Italiano");
public static Language Norwegian_Bokmal = new Language("nb-NO", "Norsk Bokmål");
public static Language Slovak = new Language("sk", "Slovenský");
@@ -43,6 +45,8 @@ namespace Flow.Launcher.Core.Resource
Serbian,
Portuguese_Portugal,
Portuguese_Brazil,
+ Spanish,
+ Spanish_LatinAmerica,
Italian,
Norwegian_Bokmal,
Slovak,
diff --git a/Flow.Launcher.Core/Updater.cs b/Flow.Launcher.Core/Updater.cs
index e09c6380c..69b537b39 100644
--- a/Flow.Launcher.Core/Updater.cs
+++ b/Flow.Launcher.Core/Updater.cs
@@ -91,8 +91,9 @@ namespace Flow.Launcher.Core
catch (Exception e) when (e is HttpRequestException or WebException or SocketException || e.InnerException is TimeoutException)
{
Log.Exception($"|Updater.UpdateApp|Check your connection and proxy settings to github-cloud.s3.amazonaws.com.", e);
- api.ShowMsg(api.GetTranslation("update_flowlauncher_fail"),
- api.GetTranslation("update_flowlauncher_check_connection"));
+ if (!silentUpdate)
+ api.ShowMsg(api.GetTranslation("update_flowlauncher_fail"),
+ api.GetTranslation("update_flowlauncher_check_connection"));
}
finally
{
@@ -124,7 +125,7 @@ namespace Flow.Launcher.Core
var releases = await System.Text.Json.JsonSerializer.DeserializeAsync>(jsonStream).ConfigureAwait(false);
var latest = releases.Where(r => !r.Prerelease).OrderByDescending(r => r.PublishedAt).First();
var latestUrl = latest.HtmlUrl.Replace("/tag/", "/download/");
-
+
var client = new WebClient
{
Proxy = Http.WebProxy
diff --git a/Flow.Launcher.Infrastructure/Constant.cs b/Flow.Launcher.Infrastructure/Constant.cs
index cd49217a4..57b39e46e 100644
--- a/Flow.Launcher.Infrastructure/Constant.cs
+++ b/Flow.Launcher.Infrastructure/Constant.cs
@@ -21,7 +21,7 @@ namespace Flow.Launcher.Infrastructure
public static readonly string PreinstalledDirectory = Path.Combine(ProgramDirectory, Plugins);
public const string Issue = "https://github.com/Flow-Launcher/Flow.Launcher/issues/new";
public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location.NonNull()).ProductVersion;
- public const string Documentation = "https://flow-launcher.github.io/docs/#/usage-tips";
+ public const string Documentation = "https://flowlauncher.com/docs/#/usage-tips";
public static readonly int ThumbnailSize = 64;
private static readonly string ImagesDirectory = Path.Combine(ProgramDirectory, "Images");
@@ -43,8 +43,8 @@ namespace Flow.Launcher.Infrastructure
public const string Settings = "Settings";
public const string Logs = "Logs";
- public const string Website = "https://flow-launcher.github.io";
+ public const string Website = "https://flowlauncher.com";
public const string GitHub = "https://github.com/Flow-Launcher/Flow.Launcher";
- public const string Docs = "https://flow-launcher.github.io/docs";
+ public const string Docs = "https://flowlauncher.com/docs";
}
}
diff --git a/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj b/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
index 40c2cb956..930cf0b91 100644
--- a/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
+++ b/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
@@ -1,7 +1,7 @@
- net5.0-windows
+ net6.0-windows{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}Librarytrue
diff --git a/Flow.Launcher.Infrastructure/Http/Http.cs b/Flow.Launcher.Infrastructure/Http/Http.cs
index b45b6adcd..9f4146b7b 100644
--- a/Flow.Launcher.Infrastructure/Http/Http.cs
+++ b/Flow.Launcher.Infrastructure/Http/Http.cs
@@ -153,5 +153,13 @@ namespace Flow.Launcher.Infrastructure.Http
var response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead, token);
return await response.Content.ReadAsStreamAsync();
}
+
+ ///
+ /// Asynchrously send an HTTP request.
+ ///
+ public static async Task SendAsync(HttpRequestMessage request, CancellationToken token = default)
+ {
+ return await client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, token);
+ }
}
}
diff --git a/Flow.Launcher.Infrastructure/Image/ImageCache.cs b/Flow.Launcher.Infrastructure/Image/ImageCache.cs
index 13277c7d9..04e11bf1a 100644
--- a/Flow.Launcher.Infrastructure/Image/ImageCache.cs
+++ b/Flow.Launcher.Infrastructure/Image/ImageCache.cs
@@ -74,7 +74,7 @@ namespace Flow.Launcher.Infrastructure.Image
// To delete the images from the data dictionary based on the resizing of the Usage Dictionary
// Double Check to avoid concurrent remove
if (Data.Count > permissibleFactor * MaxCached)
- foreach (var key in Data.OrderBy(x => x.Value.usage).Take(Data.Count - MaxCached).Select(x => x.Key).ToArray())
+ foreach (var key in Data.OrderBy(x => x.Value.usage).Take(Data.Count - MaxCached).Select(x => x.Key))
Data.TryRemove(key, out _);
semaphore.Release();
}
diff --git a/Flow.Launcher.Infrastructure/Logger/Log.cs b/Flow.Launcher.Infrastructure/Logger/Log.cs
index 26e305ace..75f208c9e 100644
--- a/Flow.Launcher.Infrastructure/Logger/Log.cs
+++ b/Flow.Launcher.Infrastructure/Logger/Log.cs
@@ -211,4 +211,4 @@ namespace Flow.Launcher.Infrastructure.Logger
LogInternal(message, LogLevel.Warn);
}
}
-}
\ No newline at end of file
+}
diff --git a/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj b/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
index 7ce2fc8fd..41072993c 100644
--- a/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
+++ b/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
@@ -1,7 +1,7 @@
-
+
- net5.0-windows
+ net6.0-windows{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}trueLibrary
@@ -14,10 +14,10 @@
- 2.1.0
- 2.1.0
- 2.1.0
- 2.1.0
+ 3.0.0
+ 3.0.0
+ 3.0.0
+ 3.0.0Flow.Launcher.PluginFlow-LauncherMIT
@@ -42,6 +42,7 @@
4AnyCPUfalse
+ ..\Output\Debug\Flow.Launcher.Plugin.xml
diff --git a/Flow.Launcher.Plugin/GlyphInfo.cs b/Flow.Launcher.Plugin/GlyphInfo.cs
index d24624d8f..730046e1d 100644
--- a/Flow.Launcher.Plugin/GlyphInfo.cs
+++ b/Flow.Launcher.Plugin/GlyphInfo.cs
@@ -7,5 +7,10 @@ using System.Windows.Media;
namespace Flow.Launcher.Plugin
{
+ ///
+ /// Text with FontFamily specified
+ ///
+ /// Font Family of this Glyph
+ /// Text/Unicode of the Glyph
public record GlyphInfo(string FontFamily, string Glyph);
}
diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
index 133ad25a5..69057820e 100644
--- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
+++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
@@ -228,8 +228,27 @@ namespace Flow.Launcher.Plugin
public void OpenDirectory(string DirectoryPath, string FileName = null);
///
- /// Opens the url. The browser and mode used is based on what's configured in Flow's default browser settings.
+ /// Opens the URL with the given Uri object.
+ /// The browser and mode used is based on what's configured in Flow's default browser settings.
+ ///
+ public void OpenUrl(Uri url, bool? inPrivate = null);
+
+ ///
+ /// Opens the URL with the given string.
+ /// The browser and mode used is based on what's configured in Flow's default browser settings.
+ /// Non-C# plugins should use this method.
///
public void OpenUrl(string url, bool? inPrivate = null);
+
+ ///
+ /// Opens the application URI with the given Uri object, e.g. obsidian://search-query-example
+ ///
+ public void OpenAppUri(Uri appUri);
+
+ ///
+ /// Opens the application URI with the given string, e.g. obsidian://search-query-example
+ /// Non-C# plugins should use this method
+ ///
+ public void OpenAppUri(string appUri);
}
}
diff --git a/Flow.Launcher.Plugin/Result.cs b/Flow.Launcher.Plugin/Result.cs
index 29f8198ab..4a5eb39af 100644
--- a/Flow.Launcher.Plugin/Result.cs
+++ b/Flow.Launcher.Plugin/Result.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Media;
@@ -10,11 +10,11 @@ namespace Flow.Launcher.Plugin
{
private string _pluginDirectory;
-
+
private string _icoPath;
///
- /// Provides the title of the result. This is always required.
+ /// The title of the result. This is always required.
///
public string Title { get; set; }
@@ -29,6 +29,13 @@ namespace Flow.Launcher.Plugin
///
public string ActionKeywordAssigned { get; set; }
+ ///
+ /// This holds the text which can be provided by plugin to be copied to the
+ /// user's clipboard when Ctrl + C is pressed on a result. If the text is a file/directory path
+ /// flow will copy the actual file/folder instead of just the path text.
+ ///
+ public string CopyText { get; set; } = string.Empty;
+
///
/// This holds the text which can be provided by plugin to help Flow autocomplete text
/// for user on the plugin result. If autocomplete action for example is tab, pressing tab will have
@@ -36,6 +43,11 @@ namespace Flow.Launcher.Plugin
///
public string AutoCompleteText { get; set; }
+ ///
+ /// Image Displayed on the result
+ /// Relative Path to the Image File
+ /// GlyphInfo is prioritized if not null
+ ///
public string IcoPath
{
get { return _icoPath; }
@@ -60,16 +72,23 @@ namespace Flow.Launcher.Plugin
public IconDelegate Icon;
///
- /// Information for Glyph Icon
+ /// Information for Glyph Icon (Prioritized than IcoPath/Icon if user enable Glyph Icons)
///
- public GlyphInfo Glyph { get; init; }
+ public GlyphInfo Glyph { get; init; }
///
- /// return true to hide flowlauncher after select result
+ /// Delegate. An action to take in the form of a function call when the result has been selected
+ ///
+ /// true to hide flowlauncher after select result
+ ///
///
public Func Action { get; set; }
+ ///
+ /// Priority of the current result
+ /// default: 0
+ ///
public int Score { get; set; }
///
@@ -77,13 +96,11 @@ namespace Flow.Launcher.Plugin
///
public IList TitleHighlightData { get; set; }
- ///
- /// A list of indexes for the characters to be highlighted in SubTitle
- ///
+ [Obsolete("Deprecated as of Flow Launcher v1.9.1. Subtitle highlighting is no longer offered")]
public IList SubTitleHighlightData { get; set; }
///
- /// Only results that originQuery match with current query will be displayed in the panel
+ /// Query information associated with the result
///
internal Query OriginQuery { get; set; }
@@ -103,6 +120,7 @@ namespace Flow.Launcher.Plugin
}
}
+ ///
public override bool Equals(object obj)
{
var r = obj as Result;
@@ -110,12 +128,12 @@ namespace Flow.Launcher.Plugin
var equality = string.Equals(r?.Title, Title) &&
string.Equals(r?.SubTitle, SubTitle) &&
string.Equals(r?.IcoPath, IcoPath) &&
- TitleHighlightData == r.TitleHighlightData &&
- SubTitleHighlightData == r.SubTitleHighlightData;
+ TitleHighlightData == r.TitleHighlightData;
return equality;
}
+ ///
public override int GetHashCode()
{
var hashcode = (Title?.GetHashCode() ?? 0) ^
@@ -123,15 +141,17 @@ namespace Flow.Launcher.Plugin
return hashcode;
}
+ ///
public override string ToString()
{
return Title + SubTitle;
}
- public Result() { }
-
///
- /// Additional data associate with this result
+ /// Additional data associated with this result
+ ///
+ /// As external information for ContextMenu
+ ///
///
public object ContextData { get; set; }
diff --git a/Flow.Launcher.Plugin/SharedCommands/SearchWeb.cs b/Flow.Launcher.Plugin/SharedCommands/SearchWeb.cs
index 6c4ac8ebf..6588132b9 100644
--- a/Flow.Launcher.Plugin/SharedCommands/SearchWeb.cs
+++ b/Flow.Launcher.Plugin/SharedCommands/SearchWeb.cs
@@ -60,7 +60,7 @@ namespace Flow.Launcher.Plugin.SharedCommands
try
{
- Process.Start(psi);
+ Process.Start(psi)?.Dispose();
}
catch (System.ComponentModel.Win32Exception)
{
@@ -100,7 +100,7 @@ namespace Flow.Launcher.Plugin.SharedCommands
psi.FileName = url;
}
- Process.Start(psi);
+ Process.Start(psi)?.Dispose();
}
// This error may be thrown if browser path is incorrect
catch (System.ComponentModel.Win32Exception)
diff --git a/Flow.Launcher.Test/Flow.Launcher.Test.csproj b/Flow.Launcher.Test/Flow.Launcher.Test.csproj
index 8de0681c8..f429586ce 100644
--- a/Flow.Launcher.Test/Flow.Launcher.Test.csproj
+++ b/Flow.Launcher.Test/Flow.Launcher.Test.csproj
@@ -1,7 +1,7 @@
- net5.0-windows10.0.19041.0
+ net6.0-windows10.0.19041.0{FF742965-9A80-41A5-B042-D6C7D3A21708}LibraryProperties
diff --git a/Flow.Launcher.Test/Plugins/JsonRPCPluginTest.cs b/Flow.Launcher.Test/Plugins/JsonRPCPluginTest.cs
index 383650619..7231dfbe0 100644
--- a/Flow.Launcher.Test/Plugins/JsonRPCPluginTest.cs
+++ b/Flow.Launcher.Test/Plugins/JsonRPCPluginTest.cs
@@ -76,7 +76,7 @@ namespace Flow.Launcher.Test.Plugins
[TestCaseSource(typeof(JsonRPCPluginTest), nameof(ResponseModelsSource))]
public async Task GivenModel_WhenSerializeWithDifferentNamingPolicy_ThenExpectSameResult_Async(JsonRPCQueryResponseModel reference)
{
- var camelText = JsonSerializer.Serialize(reference, new() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });
+ var camelText = JsonSerializer.Serialize(reference, new JsonSerializerOptions() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });
var pascalText = JsonSerializer.Serialize(reference);
diff --git a/Flow.Launcher/App.xaml.cs b/Flow.Launcher/App.xaml.cs
index 9ee486b3b..4ebff16a9 100644
--- a/Flow.Launcher/App.xaml.cs
+++ b/Flow.Launcher/App.xaml.cs
@@ -69,8 +69,6 @@ namespace Flow.Launcher
PluginManager.LoadPlugins(_settings.PluginSettings);
_mainVM = new MainViewModel(_settings);
- HotKeyMapper.Initialize(_mainVM);
-
API = new PublicAPIInstance(_settingsVM, _mainVM, _alphabet);
Http.API = API;
@@ -83,6 +81,8 @@ namespace Flow.Launcher
Current.MainWindow = window;
Current.MainWindow.Title = Constant.FlowLauncher;
+
+ HotKeyMapper.Initialize(_mainVM);
// happlebao todo temp fix for instance code logic
// load plugin before change language, because plugin language also needs be changed
@@ -153,7 +153,6 @@ namespace Flow.Launcher
DispatcherUnhandledException += ErrorReporting.DispatcherUnhandledException;
}
-
///
/// let exception throw as normal is better for Debug
///
@@ -179,4 +178,4 @@ namespace Flow.Launcher
Current.MainWindow.Show();
}
}
-}
\ No newline at end of file
+}
diff --git a/Flow.Launcher/Converters/QuerySuggestionBoxConverter.cs b/Flow.Launcher/Converters/QuerySuggestionBoxConverter.cs
index 08ee8571e..ecdfc5851 100644
--- a/Flow.Launcher/Converters/QuerySuggestionBoxConverter.cs
+++ b/Flow.Launcher/Converters/QuerySuggestionBoxConverter.cs
@@ -53,7 +53,10 @@ namespace Flow.Launcher.Converters
// Check if Text will be larger then our QueryTextBox
System.Windows.Media.Typeface typeface = new Typeface(QueryTextBox.FontFamily, QueryTextBox.FontStyle, QueryTextBox.FontWeight, QueryTextBox.FontStretch);
System.Windows.Media.FormattedText ft = new FormattedText(QueryTextBox.Text, System.Globalization.CultureInfo.CurrentCulture, System.Windows.FlowDirection.LeftToRight, typeface, QueryTextBox.FontSize, Brushes.Black);
- if (ft.Width > QueryTextBox.ActualWidth || QueryTextBox.HorizontalOffset != 0)
+
+ var offset = QueryTextBox.Padding.Right;
+
+ if ((ft.Width + offset) > QueryTextBox.ActualWidth || QueryTextBox.HorizontalOffset != 0)
{
return string.Empty;
};
diff --git a/Flow.Launcher/CustomQueryHotkeySetting.xaml b/Flow.Launcher/CustomQueryHotkeySetting.xaml
index 2f7d28212..187f99d18 100644
--- a/Flow.Launcher/CustomQueryHotkeySetting.xaml
+++ b/Flow.Launcher/CustomQueryHotkeySetting.xaml
@@ -79,20 +79,18 @@
-
+
-
-
+
+
-
-
+ LastChildFill="True">
-
+ Content="{DynamicResource preview}"
+ DockPanel.Dock="Right" />
+
+
@@ -159,15 +155,13 @@
diff --git a/Flow.Launcher/Properties/PublishProfiles/NetCore3.1-SelfContained.pubxml.user b/Flow.Launcher/Properties/PublishProfiles/NetCore3.1-SelfContained.pubxml.user
deleted file mode 100644
index 312c6e3b8..000000000
--- a/Flow.Launcher/Properties/PublishProfiles/NetCore3.1-SelfContained.pubxml.user
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.da-DK.resx b/Flow.Launcher/Properties/Resources.da-DK.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.da-DK.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.de-DE.resx b/Flow.Launcher/Properties/Resources.de-DE.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.de-DE.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.es-419.resx b/Flow.Launcher/Properties/Resources.es-419.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.es-419.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.es-EM.resx b/Flow.Launcher/Properties/Resources.es-EM.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.es-EM.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.fr-FR.resx b/Flow.Launcher/Properties/Resources.fr-FR.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.fr-FR.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.it-IT.resx b/Flow.Launcher/Properties/Resources.it-IT.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.it-IT.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.ja-JP.resx b/Flow.Launcher/Properties/Resources.ja-JP.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.ja-JP.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.ko-KR.resx b/Flow.Launcher/Properties/Resources.ko-KR.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.ko-KR.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.nb-NO.resx b/Flow.Launcher/Properties/Resources.nb-NO.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.nb-NO.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.nl-NL.resx b/Flow.Launcher/Properties/Resources.nl-NL.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.nl-NL.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.pl-PL.resx b/Flow.Launcher/Properties/Resources.pl-PL.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.pl-PL.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.pt-BR.resx b/Flow.Launcher/Properties/Resources.pt-BR.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.pt-BR.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.pt-PT.resx b/Flow.Launcher/Properties/Resources.pt-PT.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.pt-PT.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.ru-RU.resx b/Flow.Launcher/Properties/Resources.ru-RU.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.ru-RU.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.sk-SK.resx b/Flow.Launcher/Properties/Resources.sk-SK.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.sk-SK.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.sr-CS.resx b/Flow.Launcher/Properties/Resources.sr-CS.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.sr-CS.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.tr-TR.resx b/Flow.Launcher/Properties/Resources.tr-TR.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.tr-TR.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.uk-UA.resx b/Flow.Launcher/Properties/Resources.uk-UA.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.uk-UA.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.zh-TW.resx b/Flow.Launcher/Properties/Resources.zh-TW.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.zh-TW.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/Properties/Resources.zh-cn.resx b/Flow.Launcher/Properties/Resources.zh-cn.resx
new file mode 100644
index 000000000..b5e00e8a2
--- /dev/null
+++ b/Flow.Launcher/Properties/Resources.zh-cn.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs
index 5b490bede..81f7a2389 100644
--- a/Flow.Launcher/PublicAPIInstance.cs
+++ b/Flow.Launcher/PublicAPIInstance.cs
@@ -209,21 +209,53 @@ namespace Flow.Launcher
explorer.Start();
}
- public void OpenUrl(string url, bool? inPrivate = null)
+ private void OpenUri(Uri uri, bool? inPrivate = null)
{
- var browserInfo = _settingsVM.Settings.CustomBrowser;
-
- var path = browserInfo.Path == "*" ? "" : browserInfo.Path;
-
- if (browserInfo.OpenInTab)
+ if (uri.Scheme == Uri.UriSchemeHttp || uri.Scheme == Uri.UriSchemeHttps)
{
- url.OpenInBrowserTab(path, inPrivate ?? browserInfo.EnablePrivate, browserInfo.PrivateArg);
+ var browserInfo = _settingsVM.Settings.CustomBrowser;
+
+ var path = browserInfo.Path == "*" ? "" : browserInfo.Path;
+
+ if (browserInfo.OpenInTab)
+ {
+ uri.AbsoluteUri.OpenInBrowserTab(path, inPrivate ?? browserInfo.EnablePrivate, browserInfo.PrivateArg);
+ }
+ else
+ {
+ uri.AbsoluteUri.OpenInBrowserWindow(path, inPrivate ?? browserInfo.EnablePrivate, browserInfo.PrivateArg);
+ }
}
else
{
- url.OpenInBrowserWindow(path, inPrivate ?? browserInfo.EnablePrivate, browserInfo.PrivateArg);
- }
+ Process.Start(new ProcessStartInfo()
+ {
+ FileName = uri.AbsoluteUri,
+ UseShellExecute = true
+ })?.Dispose();
+ return;
+ }
+ }
+
+ public void OpenUrl(string url, bool? inPrivate = null)
+ {
+ OpenUri(new Uri(url), inPrivate);
+ }
+
+ public void OpenUrl(Uri url, bool? inPrivate = null)
+ {
+ OpenUri(url, inPrivate);
+ }
+
+ public void OpenAppUri(string appUri)
+ {
+ OpenUri(new Uri(appUri));
+ }
+
+ public void OpenAppUri(Uri appUri)
+ {
+ OpenUri(appUri);
}
public event FlowLauncherGlobalKeyboardEventHandler GlobalKeyboardEvent;
@@ -254,4 +286,4 @@ namespace Flow.Launcher
#endregion
}
-}
+}
\ No newline at end of file
diff --git a/Flow.Launcher/ReportWindow.xaml.cs b/Flow.Launcher/ReportWindow.xaml.cs
index 7318fe4cd..6a9fd60e0 100644
--- a/Flow.Launcher/ReportWindow.xaml.cs
+++ b/Flow.Launcher/ReportWindow.xaml.cs
@@ -52,8 +52,8 @@ namespace Flow.Launcher
var link = new Hyperlink { IsEnabled = true };
link.Inlines.Add(url);
link.NavigateUri = new Uri(url);
- link.RequestNavigate += (s, e) => SearchWeb.NewTabInBrowser(e.Uri.ToString());
- link.Click += (s, e) => SearchWeb.NewTabInBrowser(url);
+ link.RequestNavigate += (s, e) => SearchWeb.OpenInBrowserTab(e.Uri.ToString());
+ link.Click += (s, e) => SearchWeb.OpenInBrowserTab(url);
paragraph.Inlines.Add(textBeforeUrl);
paragraph.Inlines.Add(link);
diff --git a/Flow.Launcher/Resources/CustomControlTemplate.xaml b/Flow.Launcher/Resources/CustomControlTemplate.xaml
index dd9dba391..b4d7e78a7 100644
--- a/Flow.Launcher/Resources/CustomControlTemplate.xaml
+++ b/Flow.Launcher/Resources/CustomControlTemplate.xaml
@@ -1469,6 +1469,7 @@
-
+
@@ -1486,7 +1487,7 @@
@@ -1520,6 +1519,7 @@
Grid.RowSpan="3"
Grid.ColumnSpan="3"
Margin="0,5"
+ HorizontalAlignment="Right"
ui:FocusVisualHelper.IsTemplateFocusTarget="True"
Background="{DynamicResource ToggleSwitchContainerBackground}" />
-
-
+
+
- New Tab
- New Window
+
+
-
+
@@ -135,7 +135,7 @@
-
+
-
+
@@ -102,7 +99,7 @@
TargetType="{x:Type CheckBox}">
-
+
@@ -115,7 +112,12 @@
BasedOn="{StaticResource DefaultToggleSwitch}"
TargetType="{x:Type ui:ToggleSwitch}">
-
+
+
+
+
+
+
-
-
-
+
-
-
+
+
-
-
-
-
+
@@ -152,7 +158,7 @@
-
+
@@ -160,44 +166,50 @@
-
-
+
+
-
-
+
+
-
+
-
+
@@ -249,12 +263,12 @@
-
-
+
+
-
-
-
\ No newline at end of file
diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs
index abf3a1d14..0531c925d 100644
--- a/Flow.Launcher/ViewModel/MainViewModel.cs
+++ b/Flow.Launcher/ViewModel/MainViewModel.cs
@@ -4,7 +4,6 @@ using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
-using System.Windows.Media;
using System.Windows.Input;
using Flow.Launcher.Core.Plugin;
using Flow.Launcher.Core.Resource;
@@ -20,7 +19,8 @@ using Flow.Launcher.Infrastructure.Logger;
using Microsoft.VisualStudio.Threading;
using System.Threading.Channels;
using ISavable = Flow.Launcher.Plugin.ISavable;
-
+using System.IO;
+using System.Collections.Specialized;
namespace Flow.Launcher.ViewModel
{
@@ -231,7 +231,7 @@ namespace Flow.Launcher.ViewModel
AutocompleteQueryCommand = new RelayCommand(_ =>
{
var result = SelectedResults.SelectedItem?.Result;
- if (result != null) // SelectedItem returns null if selection is empty.
+ if (result != null && SelectedIsFromQueryResults()) // SelectedItem returns null if selection is empty.
{
var autoCompleteText = result.Title;
@@ -254,6 +254,18 @@ namespace Flow.Launcher.ViewModel
}
});
+ BackspaceCommand = new RelayCommand(index =>
+ {
+ var query = QueryBuilder.Build(QueryText.Trim(), PluginManager.NonGlobalPlugins);
+
+ // GetPreviousExistingDirectory does not require trailing '\', otherwise will return empty string
+ var path = FilesFolders.GetPreviousExistingDirectory((_) => true, query.Search.TrimEnd('\\'));
+
+ var actionKeyword = string.IsNullOrEmpty(query.ActionKeyword) ? string.Empty : $"{query.ActionKeyword} ";
+
+ ChangeQueryText($"{actionKeyword}{path}");
+ });
+
LoadContextMenuCommand = new RelayCommand(_ =>
{
if (SelectedIsFromQueryResults())
@@ -334,6 +346,9 @@ namespace Flow.Launcher.ViewModel
{
// re-query is done in QueryText's setter method
QueryText = queryText;
+ // set to false so the subsequent set true triggers
+ // PropertyChanged and MoveQueryTextToEnd is called
+ QueryTextCursorMovedToEnd = false;
}
else if (reQuery)
{
@@ -393,9 +408,14 @@ namespace Flow.Launcher.ViewModel
// because it is more accurate and reliable representation than using Visibility as a condition check
public bool MainWindowVisibilityStatus { get; set; } = true;
+ public Visibility SearchIconVisibility { get; set; }
+
public double MainWindowWidth => _settings.WindowSize;
+ public string PluginIconPath { get; set; } = null;
+
public ICommand EscCommand { get; set; }
+ public ICommand BackspaceCommand { get; set; }
public ICommand SelectNextItemCommand { get; set; }
public ICommand SelectPrevItemCommand { get; set; }
public ICommand SelectNextPageCommand { get; set; }
@@ -408,6 +428,9 @@ namespace Flow.Launcher.ViewModel
public ICommand OpenSettingCommand { get; set; }
public ICommand ReloadPluginDataCommand { get; set; }
public ICommand ClearQueryCommand { get; private set; }
+
+ public ICommand CopyToClipboard { get; set; }
+
public ICommand AutocompleteQueryCommand { get; set; }
public string OpenResultCommandModifiers { get; private set; }
@@ -528,6 +551,8 @@ namespace Flow.Launcher.ViewModel
{
Results.Clear();
Results.Visbility = Visibility.Collapsed;
+ PluginIconPath = null;
+ SearchIconVisibility = Visibility.Visible;
return;
}
@@ -556,6 +581,18 @@ namespace Flow.Launcher.ViewModel
var plugins = PluginManager.ValidPluginsForQuery(query);
+ if (plugins.Count == 1)
+ {
+ PluginIconPath = plugins.Single().Metadata.IcoPath;
+ SearchIconVisibility = Visibility.Hidden;
+ }
+ else
+ {
+ PluginIconPath = null;
+ SearchIconVisibility = Visibility.Visible;
+ }
+
+
if (query.ActionKeyword == Plugin.Query.GlobalPluginWildcardSign)
{
// Wait 45 millisecond for query change in global query
@@ -646,7 +683,7 @@ namespace Flow.Launcher.ViewModel
Action = _ =>
{
_topMostRecord.Remove(result);
- App.API.ShowMsg("Success");
+ App.API.ShowMsg(InternationalizationManager.Instance.GetTranslation("success"));
return false;
}
};
@@ -690,7 +727,11 @@ namespace Flow.Launcher.ViewModel
IcoPath = icon,
SubTitle = subtitle,
PluginDirectory = metadata.PluginDirectory,
- Action = _ => false
+ Action = _ =>
+ {
+ App.API.OpenUrl(metadata.Website);
+ return true;
+ }
};
return menu;
}
@@ -734,20 +775,10 @@ namespace Flow.Launcher.ViewModel
public void Show()
{
- if (_settings.UseSound)
- {
- MediaPlayer media = new MediaPlayer();
- media.Open(new Uri(AppDomain.CurrentDomain.BaseDirectory + "Resources\\open.wav"));
- media.Play();
- }
-
MainWindowVisibility = Visibility.Visible;
MainWindowVisibilityStatus = true;
-
- if(_settings.UseAnimation)
- ((MainWindow)Application.Current.MainWindow).WindowAnimator();
-
+
MainWindowOpacity = 1;
}
@@ -847,6 +878,52 @@ namespace Flow.Launcher.ViewModel
Results.AddResults(resultsForUpdates, token);
}
+ ///
+ /// This is the global copy method for an individual result. If no text is passed,
+ /// the method will work out what is to be copied based on the result, so plugin can offer the text
+ /// to be copied via the result model. If the text is a directory/file path,
+ /// then actual file/folder will be copied instead.
+ /// The result's subtitle text is the default text to be copied
+ ///
+ public void ResultCopy(string stringToCopy)
+ {
+ if (string.IsNullOrEmpty(stringToCopy))
+ {
+ var result = Results.SelectedItem?.Result;
+ if (result != null)
+ {
+ string copyText = string.IsNullOrEmpty(result.CopyText) ? result.SubTitle : result.CopyText;
+ var isFile = File.Exists(copyText);
+ var isFolder = Directory.Exists(copyText);
+ if (isFile || isFolder)
+ {
+ var paths = new StringCollection();
+ paths.Add(copyText);
+
+ Clipboard.SetFileDropList(paths);
+ App.API.ShowMsg(
+ App.API.GetTranslation("copy")
+ +" "
+ + (isFile? App.API.GetTranslation("fileTitle") : App.API.GetTranslation("folderTitle")),
+ App.API.GetTranslation("completedSuccessfully"));
+ }
+ else
+ {
+ Clipboard.SetDataObject(copyText.ToString());
+ App.API.ShowMsg(
+ App.API.GetTranslation("copy")
+ + " "
+ + App.API.GetTranslation("textTitle"),
+ App.API.GetTranslation("completedSuccessfully"));
+ }
+ }
+
+ return;
+ }
+
+ Clipboard.SetDataObject(stringToCopy);
+ }
+
#endregion
}
}
\ No newline at end of file
diff --git a/Flow.Launcher/ViewModel/PluginViewModel.cs b/Flow.Launcher/ViewModel/PluginViewModel.cs
index 864a60646..38f2421a1 100644
--- a/Flow.Launcher/ViewModel/PluginViewModel.cs
+++ b/Flow.Launcher/ViewModel/PluginViewModel.cs
@@ -66,4 +66,4 @@ namespace Flow.Launcher.ViewModel
public static bool IsActionKeywordRegistered(string newActionKeyword) => PluginManager.ActionKeywordRegistered(newActionKeyword);
}
-}
\ No newline at end of file
+}
diff --git a/Flow.Launcher/ViewModel/ResultViewModel.cs b/Flow.Launcher/ViewModel/ResultViewModel.cs
index 908de0c09..4d32d792d 100644
--- a/Flow.Launcher/ViewModel/ResultViewModel.cs
+++ b/Flow.Launcher/ViewModel/ResultViewModel.cs
@@ -7,11 +7,16 @@ using Flow.Launcher.Infrastructure.Logger;
using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.Plugin;
using System.IO;
+using System.Drawing.Text;
+using System.Collections.Generic;
namespace Flow.Launcher.ViewModel
{
public class ResultViewModel : BaseModel
{
+ private static PrivateFontCollection fontCollection = new();
+ private static Dictionary fonts = new();
+
public ResultViewModel(Result result, Settings settings)
{
if (result != null)
@@ -23,13 +28,29 @@ namespace Flow.Launcher.ViewModel
// Checks if it's a system installed font, which does not require path to be provided.
if (glyph.FontFamily.EndsWith(".ttf") || glyph.FontFamily.EndsWith(".otf"))
{
- var fontPath = Result.Glyph.FontFamily;
- Glyph = Path.IsPathRooted(fontPath)
- ? Result.Glyph
- : Result.Glyph with
+ string fontFamilyPath = glyph.FontFamily;
+
+ if (!Path.IsPathRooted(fontFamilyPath))
+ {
+ fontFamilyPath = Path.Combine(Result.PluginDirectory, fontFamilyPath);
+ }
+
+ if (fonts.ContainsKey(fontFamilyPath))
+ {
+ Glyph = glyph with
{
- FontFamily = Path.Combine(Result.PluginDirectory, fontPath)
+ FontFamily = fonts[fontFamilyPath]
};
+ }
+ else
+ {
+ fontCollection.AddFontFile(fontFamilyPath);
+ fonts[fontFamilyPath] = $"{Path.GetDirectoryName(fontFamilyPath)}/#{fontCollection.Families[^1].Name}";
+ Glyph = glyph with
+ {
+ FontFamily = fonts[fontFamilyPath]
+ };
+ }
}
else
{
diff --git a/Flow.Launcher/ViewModel/ResultsViewModel.cs b/Flow.Launcher/ViewModel/ResultsViewModel.cs
index 01a19d871..db24825d0 100644
--- a/Flow.Launcher/ViewModel/ResultsViewModel.cs
+++ b/Flow.Launcher/ViewModel/ResultsViewModel.cs
@@ -310,4 +310,4 @@ namespace Flow.Launcher.ViewModel
}
}
}
-}
\ No newline at end of file
+}
diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
index 342c85da2..2fc6934d5 100644
--- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
+++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs
@@ -273,7 +273,7 @@ namespace Flow.Launcher.ViewModel
#region theme
- public static string Theme => @"https://flow-launcher.github.io/docs/#/how-to-create-a-theme";
+ public static string Theme => @"https://flowlauncher.com/docs/#/how-to-create-a-theme";
public string SelectedTheme
{
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs
index d7b412392..735530520 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs
@@ -37,7 +37,8 @@ namespace Flow.Launcher.Plugin.BrowserBookmark
return new();
foreach (var folder in rootElement.EnumerateObject())
{
- EnumerateFolderBookmark(folder.Value, bookmarks, source);
+ if (folder.Value.ValueKind == JsonValueKind.Object)
+ EnumerateFolderBookmark(folder.Value, bookmarks, source);
}
return bookmarks;
}
@@ -64,4 +65,4 @@ namespace Flow.Launcher.Plugin.BrowserBookmark
}
}
-}
\ No newline at end of file
+}
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
index 2a586818c..8454b11e6 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windowstrue{9B130CC5-14FB-41FF-B310-0A95B6894C37}Properties
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/bookmark.png b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/bookmark.png
index b8aee3564..d68cecea1 100644
Binary files a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/bookmark.png and b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/bookmark.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/copylink.png b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/copylink.png
index 0dee870b6..3218c94c9 100644
Binary files a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/copylink.png and b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Images/copylink.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml
new file mode 100644
index 000000000..86c09730c
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Tilføj
+ Slet
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml
new file mode 100644
index 000000000..0f8227530
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser-Lesezeichen
+ Lesezeichen durchsuchen
+
+
+ Lesezeichen-Daten
+ Lesezeichen öffnen in:
+ Neues Fenster
+ Neuer Tab
+ Browser aus Pfad festlegen:
+ Auswählen
+ Kopiere Url
+ Die Url des Lesezeichens in die Zwischenablage kopieren
+ Lade Browser-Lesezeichen aus:
+ Browser-Name
+ Pfad zum Datenverzeichnis
+ Hinzufügen
+ Löschen
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/en.xaml
index af2a556c1..8f5396dd7 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/en.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/en.xaml
@@ -8,7 +8,7 @@
Search your browser bookmarks
- Bookmmark Data
+ Bookmark DataOpen bookmarks in:New windowNew tab
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml
new file mode 100644
index 000000000..b22481631
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Marcadores del Navegador
+ Busca en los marcadores de tu navegador
+
+
+ Datos de Marcadores
+ Abrir marcadores en:
+ Nueva ventana
+ Nueva pestaña
+ Establecer navegador desde ruta:
+ Elegir
+ Copiar url
+ Copiar la url del marcador al portapapeles
+ Cargar navegador desde:
+ Nombre del Navegador
+ Ruta del Directorio de Datos
+ Añadir
+ Eliminar
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml
new file mode 100644
index 000000000..190679ea4
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Marcadores del navegador
+ Busca en los marcadores de tu navegador
+
+
+ Datos de marcador
+ Abrir marcadores en:
+ Nueva ventana
+ Nueva Pestaña
+ Establecer navegador desde ruta:
+ Elige
+ Copiar enlace
+ Copiar enlace del marcador al portapapeles
+ Iniciar navegador desde:
+ Nombre del navegador
+ Ruta del directorio de datos
+ Añadir
+ Eliminar
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml
new file mode 100644
index 000000000..485092912
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Ajouter
+ Supprimer
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml
new file mode 100644
index 000000000..f0f2d79bb
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Aggiungi
+ Cancella
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml
new file mode 100644
index 000000000..232007a4d
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ 追
+ 削除
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml
new file mode 100644
index 000000000..6f916cf54
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ 브라우저 북마크
+ 브라우저의 북마크 검색
+
+
+ 북마크 데이터
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ 브라우저 이름
+ 데이터 디렉토리 위치
+ 추
+ 삭제
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml
new file mode 100644
index 000000000..c5d6f77a0
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Add
+ Delete
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml
new file mode 100644
index 000000000..d1cbaa001
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Toevoegen
+ Verwijder
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml
new file mode 100644
index 000000000..024232350
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Dodaj
+ Usu
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml
new file mode 100644
index 000000000..db29166a0
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Adicionar
+ Apagar
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml
index 259f34c85..eefcc1d2e 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml
@@ -1,19 +1,20 @@
-
- Marcadores do navegador
- Pesquisar nos marcadores do navegador
+
+ Marcadores do navegador
+ Pesquisar nos marcadores do navegador
-
+
+ Dados do marcadorAbrir marcadores em:Nova janelaNovo separadorCaminho do navegador:EscolherCopiar URL
- Copiar URL do marcador para área de transferência
- Carregar navegador de:
+ Copiar URL do marcador para a área de transferência
+ Carregar navegador em:Nome do navegadorCaminho do diretório de dadosAdicionar
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml
new file mode 100644
index 000000000..545ddbf9a
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Добавить
+ Удалить
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml
index 76fc24883..b45b437a8 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml
@@ -1,11 +1,12 @@
-
- Prehliadač záložiek
- Vyhľadáva záložky prehliadača
+
+ Záložky prehliadača
+ Vyhľadáva záložky prehliadača
-
+
+ Nastavenia pluginuOtvoriť záložky v:Nové oknoNová karta
@@ -15,7 +16,7 @@
Kopírovať URL záložky do schránkyNačítať prehliadač z:Názov prehliadača
- Cesta k dátovému priečinku
+ Umiestnenie priečinku s dátamiPridaťOdstrániť
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml
new file mode 100644
index 000000000..d898a834c
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Dodaj
+ Obriši
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml
index dbfad64f4..3e18a245e 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml
@@ -1,9 +1,22 @@
-
-
-
- Yer İşaretleri
- Tarayıcılarınızdaki yer işaretlerini arayın.
-
-
\ No newline at end of file
+
+
+
+
+ Yer İşaretleri
+ Tarayıcılarınızdaki yer işaretlerini arayın.
+
+
+ Yer İmleri Verisi
+ Open bookmarks in:
+ Yeni Pencere
+ Yeni Sekme
+ Dizin üzerinden tarayıcı seç:
+ Seç
+ Url Kopyala
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Ekle
+ Sil
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml
new file mode 100644
index 000000000..f8701ed49
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ Browser Bookmarks
+ Search your browser bookmarks
+
+
+ Bookmark Data
+ Open bookmarks in:
+ New window
+ New tab
+ Set browser from path:
+ Choose
+ Copy url
+ Copy the bookmark's url to clipboard
+ Load Browser From:
+ Browser Name
+ Data Directory Path
+ Додати
+ Видалити
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml
index 288e3ed94..81fa84b44 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml
@@ -1,17 +1,22 @@
-
-
-
- 浏览器书签
- 搜索您的浏览器书签
-
-
- 在以下位置打开书签:
- 新窗口
- 新标签
- 设置浏览器路径:
- 选择
- 复制网址
- 将书签的网址复制到剪贴板
-
\ No newline at end of file
+
+
+
+
+ 浏览器书签
+ 搜索您的浏览器书签
+
+
+ 书签数据
+ 在以下位置打开书签:
+ 新窗口
+ 新标签
+ 设置浏览器路径:
+ 选择
+ 复制网址
+ 将书签的网址复制到剪贴板
+ 从以下浏览器加载:
+ 浏览器名称
+ 数据文件路径
+ 增加
+ 删除
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml
new file mode 100644
index 000000000..f9e98bb10
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+ 瀏覽器書籤
+ 搜索你的瀏覽器書籤
+
+
+ 書籤資料
+ Open bookmarks in:
+ 新增視窗
+ 新增分頁
+ Set browser from path:
+ 選擇
+ 複製網址
+ 複製書籤網址
+ Load Browser From:
+ 瀏覽器名稱
+ Data Directory Path
+ 新增
+ 刪除
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/CustomBrowserSetting.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/CustomBrowserSetting.xaml
index 8a2a65f26..4d23bd060 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/CustomBrowserSetting.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/CustomBrowserSetting.xaml
@@ -5,11 +5,12 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Flow.Launcher.Plugin.BrowserBookmark.Models"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="{DynamicResource BookmarkDataSetting}"
- Width="500"
+ Title="{DynamicResource flowlauncher_plugin_browserbookmark_bookmarkDataSetting}"
+ Width="520"
Background="{DynamicResource PopuBGColor}"
Foreground="{DynamicResource PopupTextColor}"
KeyDown="WindowKeyDown"
+ ResizeMode="NoResize"
SizeToContent="Height"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
@@ -66,39 +67,54 @@
FontFamily="Segoe UI"
FontSize="20"
FontWeight="SemiBold"
- Text="{DynamicResource BookmarkDataSetting}"
+ Text="{DynamicResource flowlauncher_plugin_browserbookmark_bookmarkDataSetting}"
TextAlignment="Left" />
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -110,15 +126,13 @@
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/ru.xaml
new file mode 100644
index 000000000..15598118c
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/ru.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Calculator
+ Allows to do mathematical calculations.(Try 5*3-2 in Flow Launcher)
+ Not a number (NaN)
+ Expression wrong or incomplete (Did you forget some parentheses?)
+ Copy this number to the clipboard
+ Decimal separator
+ The decimal separator to be used in the output.
+ Use system locale
+ Comma (,)
+ Dot (.)
+ Max. decimal places
+
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sk.xaml
index d930c2312..4cdd4c934 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sk.xaml
@@ -6,7 +6,7 @@
Nie je číslo (NaN)Nesprávny alebo neúplný výraz (Nezabudli ste na zátvorky?)Kopírovať výsledok do schránky
- Oddeľovač des. miest
+ Oddeľovač desatinných miestOddeľovač desatinných miest použitý vo výsledku.Použiť podľa systémuČiarka (,)
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sr.xaml
new file mode 100644
index 000000000..15598118c
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/sr.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Calculator
+ Allows to do mathematical calculations.(Try 5*3-2 in Flow Launcher)
+ Not a number (NaN)
+ Expression wrong or incomplete (Did you forget some parentheses?)
+ Copy this number to the clipboard
+ Decimal separator
+ The decimal separator to be used in the output.
+ Use system locale
+ Comma (,)
+ Dot (.)
+ Max. decimal places
+
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/tr.xaml
index 47b312192..07a287d52 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/tr.xaml
@@ -1,10 +1,15 @@
-
-
- Hesap Makinesi
- Matematiksel hesaplamalar yapmaya yarar. (5*3-2 yazmayı deneyin)
- Sayı değil (NaN)
- İfade hatalı ya da eksik. (Parantez koymayı mı unuttunuz?)
- Bu sayıyı panoya kopyala
-
\ No newline at end of file
+
+
+
+ Hesap Makinesi
+ Matematiksel hesaplamalar yapmaya yarar. (5*3-2 yazmayı deneyin)
+ Sayı değil (NaN)
+ İfade hatalı ya da eksik. (Parantez koymayı mı unuttunuz?)
+ Bu sayıyı panoya kopyala
+ Decimal separator
+ The decimal separator to be used in the output.
+ Use system locale
+ Comma (,)
+ Dot (.)
+ Max. decimal places
+
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/uk-UA.xaml
new file mode 100644
index 000000000..15598118c
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/uk-UA.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Calculator
+ Allows to do mathematical calculations.(Try 5*3-2 in Flow Launcher)
+ Not a number (NaN)
+ Expression wrong or incomplete (Did you forget some parentheses?)
+ Copy this number to the clipboard
+ Decimal separator
+ The decimal separator to be used in the output.
+ Use system locale
+ Comma (,)
+ Dot (.)
+ Max. decimal places
+
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-cn.xaml
index a73bc63f2..aada17d5a 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-cn.xaml
@@ -2,7 +2,7 @@
计算器
- 为Flow Launcher提供数学计算能力。(试着在Flow Launcher输入 5*3-2)
+ 为 Flow Launcher 提供数学计算能力。(试着在 Flow Launcher 输入 5*3-2)请输入数字表达错误或不完整(您是否忘记了一些括号?)将结果复制到剪贴板
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-tw.xaml
index 2fe9cc5b8..a9c26a335 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/zh-tw.xaml
@@ -1,8 +1,15 @@
-
-
- 計算機
- 為 Flow Launcher 提供數學計算功能。(試著在 Flow Launcher 輸入 5*3-2)
-
-
+
+
+
+ 計算機
+ 為 Flow Launcher 提供數學計算功能。(試著在 Flow Launcher 輸入 5*3-2)
+ Not a number (NaN)
+ Expression wrong or incomplete (Did you forget some parentheses?)
+ Copy this number to the clipboard
+ Decimal separator
+ The decimal separator to be used in the output.
+ Use system locale
+ Comma (,)
+ Dot (.)
+ Max. decimal places
+
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Main.cs b/Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
index 7de4d30fe..ea278b49b 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
@@ -6,7 +6,6 @@ using System.Text.RegularExpressions;
using System.Windows;
using System.Windows.Controls;
using Mages.Core;
-using Flow.Launcher.Infrastructure.Storage;
using Flow.Launcher.Plugin.Caculator.ViewModels;
using Flow.Launcher.Plugin.Caculator.Views;
@@ -25,6 +24,9 @@ namespace Flow.Launcher.Plugin.Caculator
@")+$", RegexOptions.Compiled);
private static readonly Regex RegBrackets = new Regex(@"[\(\)\[\]]", RegexOptions.Compiled);
private static Engine MagesEngine;
+ private const string comma = ",";
+ private const string dot = ".";
+
private PluginInitContext Context { get; set; }
private static Settings _settings;
@@ -35,7 +37,7 @@ namespace Flow.Launcher.Plugin.Caculator
Context = context;
_settings = context.API.LoadSettingJsonStorage();
_viewModel = new SettingsViewModel(_settings);
-
+
MagesEngine = new Engine(new Configuration
{
Scope = new Dictionary
@@ -54,7 +56,19 @@ namespace Flow.Launcher.Plugin.Caculator
try
{
- var expression = query.Search.Replace(",", ".");
+ string expression;
+
+ switch (_settings.DecimalSeparator)
+ {
+ case DecimalSeparator.Comma:
+ case DecimalSeparator.UseSystemLocale when CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator == ",":
+ expression = query.Search.Replace(",", ".");
+ break;
+ default:
+ expression = query.Search;
+ break;
+ }
+
var result = MagesEngine.Interpret(expression);
if (result?.ToString() == "NaN")
@@ -76,6 +90,7 @@ namespace Flow.Launcher.Plugin.Caculator
IcoPath = "Images/calculator.png",
Score = 300,
SubTitle = Context.API.GetTranslation("flowlauncher_plugin_calculator_copy_number_to_clipboard"),
+ CopyText = newResult,
Action = c =>
{
try
@@ -119,6 +134,10 @@ namespace Flow.Launcher.Plugin.Caculator
return false;
}
+ if ((query.Search.Contains(dot) && GetDecimalSeparator() != dot) ||
+ (query.Search.Contains(comma) && GetDecimalSeparator() != comma))
+ return false;
+
return true;
}
@@ -142,8 +161,8 @@ namespace Flow.Launcher.Plugin.Caculator
switch (_settings.DecimalSeparator)
{
case DecimalSeparator.UseSystemLocale: return systemDecimalSeperator;
- case DecimalSeparator.Dot: return ".";
- case DecimalSeparator.Comma: return ",";
+ case DecimalSeparator.Dot: return dot;
+ case DecimalSeparator.Comma: return comma;
default: return systemDecimalSeperator;
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs b/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
index 10cee364b..615514873 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
+
namespace Flow.Launcher.Plugin.Caculator
{
public class Settings
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml
index 01108895d..c0621a2d9 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/Views/CalculatorSettings.xaml
@@ -1,58 +1,70 @@
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/plugin.json b/Plugins/Flow.Launcher.Plugin.Calculator/plugin.json
index faf899846..771babb90 100644
--- a/Plugins/Flow.Launcher.Plugin.Calculator/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.Calculator/plugin.json
@@ -4,7 +4,7 @@
"Name": "Calculator",
"Description": "Provide mathematical calculations.(Try 5*3-2 in Flow Launcher)",
"Author": "cxfksword",
- "Version": "1.1.8",
+ "Version": "1.1.10",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Caculator.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj b/Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj
index 8f9466794..b4ab89a36 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windowstruetruetrue
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/copy.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/copy.png
index 8f1fca752..26786b11e 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/copy.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/copy.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/deletefilefolder.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/deletefilefolder.png
index 024cc9291..a8e27d342 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/deletefilefolder.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/deletefilefolder.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/excludeindexpath.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/excludeindexpath.png
index 8578ac7fb..19b7025a5 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/excludeindexpath.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/excludeindexpath.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/file.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/file.png
index 36156767a..bf12c186e 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/file.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/file.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/folder.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/folder.png
index 569fa7049..2ae7250a2 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/folder.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/folder.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/index.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/index.png
index c63fc8069..a671dac21 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/index.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/index.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/quickaccess.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/quickaccess.png
index 470a6782f..e3fdeb4f7 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/quickaccess.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/quickaccess.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/removequickaccess.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/removequickaccess.png
index fbfb0b960..0ca287ea3 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/removequickaccess.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/removequickaccess.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Images/user.png b/Plugins/Flow.Launcher.Plugin.Explorer/Images/user.png
index 2d45c1ee9..03402d8e8 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Explorer/Images/user.png and b/Plugins/Flow.Launcher.Plugin.Explorer/Images/user.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml
new file mode 100644
index 000000000..82b599e48
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Slet
+ Rediger
+ Tilføj
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Færdig
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Slet
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml
index 2209b5bed..7f332aea9 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml
@@ -1,14 +1,67 @@
-
-
-
- Löschen
- Bearbeiten
- Hinzufügen
-
-
- Bitte wähle eine Ordnerverknüpfung
- Bist du sicher {0} zu löschen?
-
-
\ No newline at end of file
+
+
+
+
+ Please make a selection first
+ Bitte wähle eine Ordnerverknüpfung
+ Bist du sicher {0} zu löschen?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Löschen
+ Bearbeiten
+ Hinzufügen
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Fertig
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Löschen
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml
index e23bd77bd..e703d8545 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml
@@ -15,6 +15,7 @@
To fix this, start the Windows Search service. Select here to remove this warningThe warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to returnExplorer Alternative
+ Error occurred during search: {0}Delete
@@ -23,6 +24,8 @@
Customise Action KeywordsQuick Access LinksIndex Search Excluded Paths
+ Use Index Search For Path Search
+ Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is onIndexing OptionsSearch:Path Search:
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml
new file mode 100644
index 000000000..537de3ebe
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Por favor, seleccione primero
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Eliminar
+ Editar
+ Añadir
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Done
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Eliminar
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml
new file mode 100644
index 000000000..39a1887bb
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Por favor, seleccione primero
+ Por favor, seleccione un enlace de carpeta
+ ¿Estás seguro de que quieres eliminar {0}?
+ ¿Estás seguro que quieres eliminar permanentemente este {0}?
+ Eliminado correctamente
+ El {0} fué eliminado correctamente
+ Asignar una palabra clave para acciones global podría mostrar demasiados resultados en las búsquedas. Por favor, seleccione una palabra clave específica
+ El acceso rápido no puede usar la palabra clave para acciones global cuando está habilitado. Por favor, elija una palabra clave específica
+ El servicio requerido de indexación de búsqueda de Windows no parece estar ejecutándose
+ Para solventarlo, inicia el servicio de búsqueda de Windows. Selecciona aquí para eliminar esta advertencia
+ El mensaje de advertencia se ha desactivado. Como alternativa para buscar archivos y carpetas, ¿te gustaría instalar el complemento Everything?{0}{0}Selecciona 'Sí' para instalar el complemento Everythong, o 'No' para volver
+ Explorador alternativo
+
+
+ Eliminar
+ Editar
+ Añadir
+ Personalizar palabras clave de acción
+ Enlaces de acceso rápido
+ Rutas excluídas del índice de búsqueda
+ Opciones de indexación
+ Buscar:
+ Ruta de búsqueda:
+ Búsqueda de contenido de archivo:
+ Buscar índice:
+ Acceso rápido:
+ Palabra clave de acción actual
+ Listo
+ Activado
+ Cuando esté deshabilitado Flow no ejecutará la opción de búsqueda, y además usará '*' para no dejar en uso la palabra clave de la acción
+
+
+ Explorador
+ Busca y gestiona archivos y carpetas. El explorador utiliza el índice de búsqueda de Windows
+
+
+ Copiar ruta
+ Copiar
+ Eliminar
+ Ruta:
+ Eliminar el seleccionado
+ Ejecutar como usuario diferente
+ Ejecutar lo seleccionado usando una cuenta de usuario diferente
+ Abrir carpeta contenedora
+ Abre la ubicación del archivo o carpeta
+ Abrir con el editor:
+ Excluir la carpeta actual y sus subcarpetas del índice de búsqueda
+ Excluido del índice de búsqueda
+ Abrir opciones de indexación de Windows
+ Administrar archivos y carpetas indexados
+ Error al abrir las opciones de indexación de Windows
+ Añadir al acceso rápido
+ Añadir el {0} actual al acceso rápido
+ Añadido correctamente
+ Añadido correctamente al acceso rápido
+ Eliminado correctamente
+ Eliminado correctamente del acceso rápido
+ Añadir al acceso rápido para que se pueda abrir con la palabra clave de acción de la búsqueda del explorador de windows
+ Eliminar del acceso rápido
+ Eliminar del acceso rápido
+ Eliminar el {0} actual del acceso rápido
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml
new file mode 100644
index 000000000..117331949
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Supprimer
+ Modifier
+ Ajouter
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Termin
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Supprimer
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml
new file mode 100644
index 000000000..efae3dac2
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Cancella
+ Modifica
+ Aggiungi
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Conferma
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Cancella
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml
new file mode 100644
index 000000000..5cd0ab7a6
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ 削除
+ 編
+ 追
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ 完
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ 削除
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml
new file mode 100644
index 000000000..d82754efb
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ 폴더 링크를 선택하세요
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ 삭제
+ 편집
+ 추
+ 사용자 지정 액션 키워드
+ Quick Access Links
+ Index Search Excluded Paths
+ 색인 옵션
+ 검색:
+ 경로 검색:
+ 파일 내용 검색:
+ 색인 검색:
+ Quick Access:
+ Current Action Keyword
+ 완료
+ 켬
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ 탐색기
+ Window Index Search를 사용하여 파일과 폴더를 검색 및 관리합니다
+
+
+ 경로 복사
+ 복사하기
+ 삭제
+ 경로:
+ Delete the selected
+ 다른 유저 권한으로 실행
+ Run the selected using a different user account
+ 포함된 폴더 열기
+ Opens the location that contains the file or folder
+ 편집기에서 열기:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ 윈도우 인덱싱 옵션 열기
+ Manage indexed files and folders
+ 윈도우 인덱싱 옵션 열기에 실패했습니다
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ 성공적으로 추가되었습니다
+ Successfully added to Quick Access
+ 성공적으로 제거했습니다
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml
new file mode 100644
index 000000000..29600d920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Delete
+ Edit
+ Add
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Done
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Delete
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml
new file mode 100644
index 000000000..6f37445d9
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Verwijder
+ Bewerken
+ Toevoegen
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Klaar
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Verwijder
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml
index 9a6b38f6f..3a9e7bcf4 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml
@@ -1,14 +1,67 @@
-
-
-
- Usuń
- Edytuj
- Dodaj
-
-
- Musisz wybrać któryś folder z listy
- Czy jesteś pewien że chcesz usunąć {0}?
-
-
\ No newline at end of file
+
+
+
+
+ Please make a selection first
+ Musisz wybrać któryś folder z listy
+ Czy jesteś pewien że chcesz usunąć {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Usuń
+ Edytuj
+ Dodaj
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Zapisz
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Usu
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml
new file mode 100644
index 000000000..f4686341b
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Apagar
+ Editar
+ Adicionar
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Finalizado
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Apagar
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml
index 6d5160f2a..3fcddf3b4 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml
@@ -2,14 +2,14 @@
- Primeiro, escolha uma selação
+ Tem que efetuar uma seleçãoSelecione a ligação para a pastaTem a certeza de que deseja eliminar {0}?Tem certeza de que deseja eliminar permanentemente {0}?Eliminada com sucesso{0} foi eliminada com sucesso
- A atribuição de uma palavra-chave global pode devolver demasiados resultados. deve escolher uma palavra-chave específica.
- Se o plugin Acesso rápido estiver ativo, não pode ser definido como palavra-chave global. Por favor escolha outra.
+ A atribuição de uma palavra-chave global pode devolver demasiados resultados. Deve escolher uma palavra-chave específica.
+ Se o plugin Acesso rápido estiver ativo, não pode ser ativado com a palavra-chave global. Por favor escolha outra.Parece que o serviço de pesquisa Windows não está em execução.Para corrigir, inicie o serviço Windows Search. Selecione aqui para remover este aviso.A mensagem de aviso foi desativada. Como alternativa ao serviço de pesquisa Windows, gostaria de instalar o plugin Everything?{0}{0}Selecione 'Sim' para instalar ou 'Não' para não instalar.
@@ -28,10 +28,10 @@
Pesquisa no conteúdo dos ficheiros:Pesquisa no índice:Acesso rápido:
- Palavra-chave atual:
+ Palavra-chave atualFeitoAtivo
- Se desativar a opção, o Flow Launcher não irá executar esta opção de pesquisa e utilizará '*' para libertar a palavra-chave
+ Se desativar a opção, Flow Launcher não irá executar esta opção de pesquisa e utilizará '*' para libertar a palavra-chaveExplorador
@@ -48,8 +48,8 @@
Abrir pasta de destinoAbre a localização que contém o ficheiro ou a pastaAbrir com o editor:
- Excluir diretório do índice de pesquisas
- Excluído do índice de pesquisa
+ Excluir diretório atual do índice de pesquisas
+ Excluído do índice de pesquisasAbrir opções de indexação do WindowsGerir ficheiros e pastas indexadasNão foi possível abrir as opções de indexação do Windows
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml
new file mode 100644
index 000000000..febafb8bd
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Удалить
+ Редактировать
+ Добавить
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Подтвердить
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Удалить
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml
index fe1b8d6a6..2005eb436 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml
@@ -5,49 +5,49 @@
Najprv vyberte položkuVyberte odkaz na priečinokNaozaj chcete odstrániť {0}?
- Naozaj chcete natrvalo odstrániť túto položku {0}?
+ Naozaj chcete natrvalo odstrániť {0}?Odstránenie bolo úspešné
- Úspešne odstránené {0}
- Priradenie globálnej skratky akcie by mohlo počas vyhľadávania poskytnúť príliš veľa výsledkov. Vyberte si konkrétne kľúčové slovo akcie
- Ak je rýchly prístup povolený, nemôže byť nastavená globálna skratka akcie. Prosím, vyberte konkrétnu skratku akcie
+ Úspešne odstránený {0}
+ Priradenie globálneho aktivačného príkazu by mohlo počas vyhľadávania poskytnúť príliš veľa výsledkov. Vyberte si konkrétny aktivačný príkaz
+ Ak je rýchly prístup povolený, nemôže byť nastavený globálny aktivačný príkaz. Prosím, vyberte konkrétny aktivačný príkazZdá sa, že požadovaná služba Windows Index Search nie je spustenáAk to chcete opraviť, spustite službu Windows Search. Ak chcete odstrániť toto upozornenie, kliknite semUpozornenie bolo vypnuté. Chceli by ste ako alternatívu na vyhľadávanie súborov a priečinkov nainštalovať plugin Everything?{0}{0}Ak chcete nainštalovať plugin Everything, zvoľte 'Áno', pre návrat zvoľte 'Nie'
- Alternatíva pre Explorer
+ Alternatíva pre PreskumníkaOdstrániťUpraviťPridať
- Upraviť skratku akcie
+ Upraviť aktivačný príkazOdkazy Rýchleho prístupuVylúčené umiestnenia indexovaniaMožnosti indexovaniaVyhľadávanie:
- Vyhľadávanie umiestnenia:
- Vyhľadávanie obsahu súborov:
+ Cesta vyhľadávania:
+ Vyhľadávanie v obsahu súborov:Vyhľadávanie v indexe:Rýchly prístup:
- Aktuálna skratka:
+ Aktuálny aktivačný príkazHotovoPovolené
- Ak je vypnuté, Flow túto možnosť vyhľadávania nevykoná a následne sa vráti späť na "*", aby sa uvoľnila skratka akcie.
+ Ak je vypnuté, Flow túto možnosť vyhľadávania nevykoná a následne sa vráti späť na "*", aby sa uvoľnila skratka akciePrieskumník
- Vyhľadáva a spravuje súbory a priečinky. Explorer používa indexovanie vyhľadávania vo Windowse
+ Vyhľadáva a spravuje súbory a priečinky. Prieskumník používa indexovanie vyhľadávania vo WindowseKopírovať cestuKopírovaťOdstrániť
- Umiestnenie:
+ Cesta:Odstrániť vybranéSpustiť ako iný používateľSpustí vybranú položku ako používateľ s iným kontomOtvoriť umiestnenie priečinkaOtvorí umiestnenie, ktoré obsahuje súbor alebo priečinok
- Otvoriť editorom:
+ Otvoriť v editore:Vylúčiť položku a jej podpriečinky z indexu vyhľadávaniaVylúčiť z indexu vyhľadávaniaOtvoriť možnosti vyhľadávania vo Windowse
@@ -59,9 +59,9 @@
Úspešne pridané do Rýchleho prístupuÚspešne odstránenéÚspešne odstránené z Rýchleho prístupu
- Pridať do Rýchleho prístupu, aby ho bolo možné otvoriť pomocou skratky akcie pluginu Explorer
+ Pridať do Rýchleho prístupu, aby ho bolo možné otvoriť pomocou aktivačného príkazu pluginu PrieskumníkOdstráni z Rýchleho prístupu
- Odstrániť z Rýchleho prístupu
+ Odstráni z Rýchleho prístupuOdstráni {0} z Rýchleho prístupu
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml
new file mode 100644
index 000000000..ec8d6dbbc
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Obriši
+ Izmeni
+ Dodaj
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Gotovo
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Obriši
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml
index d6744fdd4..6c063b943 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml
@@ -1,14 +1,67 @@
-
-
-
- Sil
- Düzenle
- Ekle
-
-
- Lütfen bir klasör bağlantısı seçin
- {0} bağlantısını silmek istediğinize emin misiniz?
-
-
\ No newline at end of file
+
+
+
+
+ Please make a selection first
+ Lütfen bir klasör bağlantısı seçin
+ {0} bağlantısını silmek istediğinize emin misiniz?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Sil
+ Düzenle
+ Ekle
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Tamam
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Sil
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml
new file mode 100644
index 000000000..d6e883f4e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml
@@ -0,0 +1,67 @@
+
+
+
+
+ Please make a selection first
+ Please select a folder link
+ Are you sure you want to delete {0}?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ Видалити
+ Редагувати
+ Додати
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ Готово
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ Copy
+ Видалити
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml
index dac6e908b..60a749952 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml
@@ -1,57 +1,67 @@
-
-
-
- 请先选择
- 请选择一个文件夹链接
- 您确定要删除 {0} 吗?
- 您确定要永久删除此 {0} 吗?
- 删除成功
- 已成功删除 {0}
- 使用全局操作关键字可能会在搜索过程中带来太多结果。请使用一个特定的操作关键字。
-
-
- 删除
- 编辑
- 添加
- 自定义动作关键字
- 快速访问链接
- 索引搜索排除的路径
- 索引选项
- 搜索激活:
- 路径搜索激活:
- 文件内容搜索:
-
-
- Explorer
- 利用Windows索引来搜索和管理文件和文件夹。
-
-
- 复制路径
- 复制
- 删除
- 路径:
- 删除所选
- 以其他用户身份运行
- 使用其他用户帐户运行所选的
- 打开文件所在文件夹
- 打开文件或文件夹所在目录
- 使用编辑器打开:
- 从索引搜索中排除当前目录和子目录
- 从索引搜索中排除
- 打开Windows索引选项
- 管理索引文件和文件夹
- 无法打开Windows索引选项
- 添加到快速访问
- 将 {0} 添加到快速访问中
- 添加完成
- 成功添加到快速访问
- 删除完成
- 已成功从快速访问中删除
- 添加到快速访问,以便可以使用Explorer的搜索关键字将其打开
- 从快速访问中删除
- 从快速访问中删除
- 从快速访问中删除 {0}
-
-
\ No newline at end of file
+
+
+
+
+ 请先进行选择
+ 请选择一个文件夹链接
+ 您确定要删除 {0} 吗?
+ 您确定要永久删除此 {0} 吗?
+ 删除成功
+ 已成功删除 {0}
+ 使用全局操作关键字可能会在搜索过程中带来太多结果。请使用一个特定的操作关键字。
+ 无法使用全局动作关键词作为快速访问关键字,请指定动作关键字
+ Windows 索引搜索所需的服务似乎没有运行
+ 若要解决这个问题,请启动 Windows 搜索服务。点击此处删除警告
+ 警告消息已关闭。 作为搜索文件和文件夹的一个替代办法,你想要安装 Everything 插件吗?{0}{0}选择 '是'安装Everything插件',或者'否' 退出
+ 资源管理器选项
+
+
+ 删除
+ 编辑
+ 增加
+ 自定义动作关键字
+ 快速访问链接
+ 索引搜索排除的路径
+ 索引选项
+ 搜索激活:
+ 路径搜索激活:
+ 文件内容搜索:
+ 索引搜索:
+ 快速访问
+ 当前触发关键字
+ 确认
+ 启用
+ 当禁用时,Flow Launcher 将不会执行此搜索选项,并且还会恢复到“*”以释放动作关键字
+
+
+ 文件管理器
+ 利用Windows索引来搜索和管理文件和文件夹。
+
+
+ 复制路径
+ 复制
+ 删除
+ 路径:
+ 删除所选内容
+ 以其他用户身份运行
+ 使用其他用户帐户运行所选内容
+ 打开文件所在文件夹
+ 打开文件或文件夹所在目录
+ 使用编辑器打开:
+ 从索引搜索中排除当前目录和子目录
+ 从索引搜索中排除
+ 打开Windows索引选项
+ 管理索引文件和文件夹
+ 无法打开Windows索引选项
+ 添加到快速访问
+ 将 {0} 添加到快速访问中
+ 添加完成
+ 成功添加到快速访问
+ 删除完成
+ 已成功从快速访问中删除
+ 添加到快速访问,以便可以使用Explorer的搜索关键字将其打开
+ 从快速访问中删除
+ 从快速访问中删除
+ 从快速访问中删除 {0}
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml
index 1455aa676..367aef5b5 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml
@@ -1,14 +1,67 @@
-
-
-
- 刪除
- 編輯
- 新增
-
-
- 請選擇一個資料夾
- 你確認要刪除{0}嗎?
-
-
+
+
+
+
+ Please make a selection first
+ 請選擇一個資料夾
+ 你確認要刪除{0}嗎?
+ Are you sure you want to permanently delete this {0}?
+ Deletion successful
+ Successfully deleted the {0}
+ Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword
+ Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword
+ The required service for Windows Index Search does not appear to be running
+ To fix this, start the Windows Search service. Select here to remove this warning
+ The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return
+ Explorer Alternative
+
+
+ 刪除
+ 編輯
+ 新增
+ Customise Action Keywords
+ Quick Access Links
+ Index Search Excluded Paths
+ Indexing Options
+ Search:
+ Path Search:
+ File Content Search:
+ Index Search:
+ Quick Access:
+ Current Action Keyword
+ 確
+ Enabled
+ When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword
+
+
+ Explorer
+ Search and manage files and folders. Explorer utilises Windows Index Search
+
+
+ Copy path
+ 複製
+ 刪除
+ Path:
+ Delete the selected
+ Run as different user
+ Run the selected using a different user account
+ Open containing folder
+ Opens the location that contains the file or folder
+ Open With Editor:
+ Exclude current and sub-directories from Index Search
+ Excluded from Index Search
+ Open Windows Indexing Options
+ Manage indexed files and folders
+ Failed to open Windows Indexing Options
+ Add to Quick Access
+ Add the current {0} to Quick Access
+ Successfully Added
+ Successfully added to Quick Access
+ Successfully Removed
+ Successfully removed from Quick Access
+ Add to Quick Access so it can be opened with Explorer's Search Activation action keyword
+ Remove from Quick Access
+ Remove from Quick Access
+ Remove the current {0} from Quick Access
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/DirectoryInfo/DirectoryInfoSearch.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/DirectoryInfo/DirectoryInfoSearch.cs
index 14c90d57f..93b68675f 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/DirectoryInfo/DirectoryInfoSearch.cs
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/DirectoryInfo/DirectoryInfoSearch.cs
@@ -1,4 +1,4 @@
-using Flow.Launcher.Infrastructure.Logger;
+using Flow.Launcher.Infrastructure.Logger;
using Flow.Launcher.Plugin.SharedCommands;
using System;
using System.Collections.Generic;
@@ -58,8 +58,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo
{
var directoryInfo = new System.IO.DirectoryInfo(path);
- foreach (var fileSystemInfo in directoryInfo.EnumerateFileSystemInfos(searchCriteria, enumerationOption)
- )
+ foreach (var fileSystemInfo in directoryInfo.EnumerateFileSystemInfos(searchCriteria, enumerationOption))
{
if (fileSystemInfo is System.IO.DirectoryInfo)
{
@@ -76,8 +75,17 @@ namespace Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo
}
catch (Exception e)
{
- Log.Exception("Flow.Plugin.Explorer.", nameof(DirectoryInfoSearch), e);
- results.Add(new Result {Title = e.Message, Score = 501});
+ Log.Exception(nameof(DirectoryInfoSearch), "Error occured while searching path", e);
+
+ results.Add(
+ new Result
+ {
+ Title = string.Format(SearchManager.Context.API.GetTranslation(
+ "plugin_explorer_directoryinfosearch_error"),
+ e.Message),
+ Score = 501,
+ IcoPath = Constants.ExplorerIconImagePath
+ });
return results;
}
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs
index 351091dfe..90b85d187 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Settings.cs
@@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.Explorer
// as at v1.7.0 this is to maintain backwards compatibility, need to be removed afterwards.
public List QuickFolderAccessLinks { get; set; } = new List();
- public bool UseWindowsIndexForDirectorySearch { get; set; } = true;
+ public bool UseWindowsIndexForDirectorySearch { get; set; } = false;
public List IndexSearchExcludedSubdirectoryPaths { get; set; } = new List();
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs
index 77ec5457b..9167691b4 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/ViewModels/SettingsViewModel.cs
@@ -52,5 +52,16 @@ namespace Flow.Launcher.Plugin.Explorer.ViewModels
}
internal bool IsNewActionKeywordGlobal(string newActionKeyword) => newActionKeyword == Query.GlobalPluginWildcardSign;
+
+ public bool UseWindowsIndexForDirectorySearch {
+ get
+ {
+ return Settings.UseWindowsIndexForDirectorySearch;
+ }
+ set
+ {
+ Settings.UseWindowsIndexForDirectorySearch = value;
+ }
+ }
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml
index ce8ecb6ff..0be68e257 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml
@@ -4,7 +4,6 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:viewModels="clr-namespace:Flow.Launcher.Plugin.Explorer.ViewModels"
xmlns:views="clr-namespace:Flow.Launcher.Plugin.Explorer.Views"
d:DesignHeight="450"
d:DesignWidth="800"
@@ -89,21 +88,30 @@
-
+
+
+
+
-
+
@@ -124,19 +132,19 @@
Orientation="Horizontal">
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs
index 6f0bc49ee..1592314b0 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs
@@ -29,6 +29,8 @@ namespace Flow.Launcher.Plugin.Explorer.Views
this.viewModel = viewModel;
+ DataContext = viewModel;
+
lbxAccessLinks.ItemsSource = this.viewModel.Settings.QuickAccessLinks;
lbxExcludedPaths.ItemsSource = this.viewModel.Settings.IndexSearchExcludedSubdirectoryPaths;
@@ -60,9 +62,7 @@ namespace Flow.Launcher.Plugin.Explorer.Views
lbxExcludedPaths.Items.SortDescriptions.Add(new SortDescription("Path", ListSortDirection.Ascending));
- btnDelete.Visibility = Visibility.Hidden;
- btnEdit.Visibility = Visibility.Hidden;
- btnAdd.Visibility = Visibility.Hidden;
+ SetButtonVisibilityToHidden();
if (expAccessLinks.IsExpanded || expExcludedPaths.IsExpanded || expActionKeywords.IsExpanded)
{
@@ -123,8 +123,8 @@ namespace Flow.Launcher.Plugin.Explorer.Views
private void expActionKeywords_Collapsed(object sender, RoutedEventArgs e)
{
- if (!expActionKeywords.IsExpanded)
- expActionKeywords.Height = double.NaN;
+ expActionKeywords.Height = double.NaN;
+ SetButtonVisibilityToHidden();
}
private void expAccessLinks_Click(object sender, RoutedEventArgs e)
@@ -143,8 +143,8 @@ namespace Flow.Launcher.Plugin.Explorer.Views
private void expAccessLinks_Collapsed(object sender, RoutedEventArgs e)
{
- if (!expAccessLinks.IsExpanded)
- expAccessLinks.Height = double.NaN;
+ expAccessLinks.Height = double.NaN;
+ SetButtonVisibilityToHidden();
}
private void expExcludedPaths_Click(object sender, RoutedEventArgs e)
@@ -161,6 +161,11 @@ namespace Flow.Launcher.Plugin.Explorer.Views
RefreshView();
}
+ private void expExcludedPaths_Collapsed(object sender, RoutedEventArgs e)
+ {
+ SetButtonVisibilityToHidden();
+ }
+
private void btnDelete_Click(object sender, RoutedEventArgs e)
{
var selectedRow = lbxAccessLinks.SelectedItem as AccessLink ?? lbxExcludedPaths.SelectedItem as AccessLink;
@@ -309,6 +314,13 @@ namespace Flow.Launcher.Plugin.Explorer.Views
{
viewModel.OpenWindowsIndexingOptions();
}
+
+ public void SetButtonVisibilityToHidden()
+ {
+ btnDelete.Visibility = Visibility.Hidden;
+ btnEdit.Visibility = Visibility.Hidden;
+ btnAdd.Visibility = Visibility.Hidden;
+ }
}
public class ActionKeywordView
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json b/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json
index 0d2b1069b..10be3381d 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json
@@ -10,7 +10,7 @@
"Name": "Explorer",
"Description": "Search and manage files and folders. Explorer utilises Windows Index Search",
"Author": "Jeremy Wu",
- "Version": "1.11.0",
+ "Version": "1.11.2",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Explorer.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Flow.Launcher.Plugin.PluginIndicator.csproj b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Flow.Launcher.Plugin.PluginIndicator.csproj
index fd1f460b7..4176d2d50 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Flow.Launcher.Plugin.PluginIndicator.csproj
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Flow.Launcher.Plugin.PluginIndicator.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windows{FDED22C8-B637-42E8-824A-63B5B6E05A3A}PropertiesFlow.Launcher.Plugin.PluginIndicator
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Images/work.png b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Images/work.png
index 6ff9b8b15..b213f0b04 100644
Binary files a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Images/work.png and b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Images/work.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/da.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/da.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/es-419.xaml
similarity index 50%
rename from Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/ko.xaml
rename to Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/es-419.xaml
index bcfdd3fc9..8385355a9 100644
--- a/Plugins/Flow.Launcher.Plugin.ControlPanel/Languages/ko.xaml
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/es-419.xaml
@@ -1,7 +1,7 @@
- 제어판
- 제어판 항목을 검색합니다.
+ Indicador de Plugins
+ Sugiere palabras clave de plugins
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/es.xaml
new file mode 100644
index 000000000..715ac087e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/es.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Indicador de complementos
+ Provee sugerencias de palabras de acción para complementos
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/fr.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/fr.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/it.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/it.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ja.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ja.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ko.xaml
new file mode 100644
index 000000000..328b63ced
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ko.xaml
@@ -0,0 +1,7 @@
+
+
+
+ 플러그인 인디케이터
+ 플러그인의 액션 키워드 제안을 제공합니다
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/nb.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/nb.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/nl.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/nl.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pl.xaml
index 8884ee6fe..c9d607b65 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pl.xaml
@@ -1,8 +1,7 @@
-
-
- Plugin Indicator
- Pokazuje podpowiedzi jakich zainstalowanych wtyczek możesz użyć
-
-
\ No newline at end of file
+
+
+
+ Plugin Indicator
+ Pokazuje podpowiedzi jakich zainstalowanych wtyczek możesz użyć
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pt-br.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/pt-br.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ru.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ru.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/sr.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/sr.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/uk-UA.xaml
new file mode 100644
index 000000000..985aa6920
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/uk-UA.xaml
@@ -0,0 +1,7 @@
+
+
+
+ Plugin Indicator
+ Provides plugins action words suggestions
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Main.cs b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Main.cs
index b046b2beb..ec33a64e7 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Main.cs
@@ -25,6 +25,7 @@ namespace Flow.Launcher.Plugin.PluginIndicator
SubTitle = $"Activate {metadata.Name} plugin",
Score = 100,
IcoPath = metadata.IcoPath,
+ AutoCompleteText = $"{keyword}{Plugin.Query.TermSeparator}",
Action = c =>
{
context.API.ChangeQuery($"{keyword}{Plugin.Query.TermSeparator}");
diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json b/Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json
index d2197d700..b19e3c99c 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json
@@ -4,7 +4,7 @@
"Name": "Plugin Indicator",
"Description": "Provide plugin actionword suggestion",
"Author": "qianlifeng",
- "Version": "1.1.3",
+ "Version": "1.1.4",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.PluginIndicator.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.PluginsManager/ContextMenu.cs
index a20e5a267..37f0a126e 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/ContextMenu.cs
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/ContextMenu.cs
@@ -2,7 +2,7 @@
using Flow.Launcher.Infrastructure.UserSettings;
using System;
using System.Collections.Generic;
-using System.Text;
+using System.Text.RegularExpressions;
namespace Flow.Launcher.Plugin.PluginsManager
{
@@ -53,8 +53,8 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
// standard UrlSourceCode format in PluginsManifest's plugins.json file: https://github.com/jjw24/Flow.Launcher.Plugin.Putty/tree/master
var link = pluginManifestInfo.UrlSourceCode.StartsWith("https://github.com")
- ? pluginManifestInfo.UrlSourceCode.Replace("/tree/master", "/issues/new/choose")
- : pluginManifestInfo.UrlSourceCode;
+ ? Regex.Replace(pluginManifestInfo.UrlSourceCode, @"\/tree\/\w+$", "") + "/issues/new/choose"
+ : pluginManifestInfo.UrlSourceCode;
Context.API.OpenUrl(link);
return true;
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Flow.Launcher.Plugin.PluginsManager.csproj b/Plugins/Flow.Launcher.Plugin.PluginsManager/Flow.Launcher.Plugin.PluginsManager.csproj
index 62534ef98..2b773bee4 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Flow.Launcher.Plugin.PluginsManager.csproj
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Flow.Launcher.Plugin.PluginsManager.csproj
@@ -1,7 +1,7 @@
Library
- net5.0-windows
+ net6.0-windowstruetruetrue
@@ -38,6 +38,6 @@
-
+
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/manifestsite.png b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/manifestsite.png
index f96ba15b2..54f3f62fc 100644
Binary files a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/manifestsite.png and b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/manifestsite.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/pluginsmanager.png b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/pluginsmanager.png
index 65f0e41dc..91b3148c5 100644
Binary files a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/pluginsmanager.png and b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/pluginsmanager.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/request.png b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/request.png
index a9126cb9b..a43b87d85 100644
Binary files a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/request.png and b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/request.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/sourcecode.png b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/sourcecode.png
index 8efbdaa48..77afc44f9 100644
Binary files a/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/sourcecode.png and b/Plugins/Flow.Launcher.Plugin.PluginsManager/Images/sourcecode.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml
new file mode 100644
index 000000000..f45e100ae
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Descargando complemento
+ Descargado con éxito
+ Error: No se pudo descargar el plugin
+ {0} por {1} {2}{3}¿Desea desinstalar este complemento? Después de la desinstalación Flow se reiniciará automáticamente.
+ {0} por {1} {2}{3}¿Desea instalar este complemento? Después de la instalación Flow se reiniciará automáticamente.
+ Instalar complemento
+ Descargar e instalar {0}
+ Desinstalar complemento
+ Plugin instalado correctamente. Reiniciando Flow, por favor espere...
+ No se puede encontrar el archivo de metadatos plugin.json del archivo zip extraído.
+ Error: Ya existe un plugin que tiene la misma o mayor versión con {0}.
+ Error al instalar complemento
+ Ocurrió un error al intentar instalar {0}
+ Ninguna actualización disponible
+ Todos los complementos están actualizados
+ {0} por {1} {2}{3}¿Desea actualizar este complemento? Después de la actualización Flow se reiniciará automáticamente.
+ Actualización del complemento
+ Este complemento tiene una actualización, ¿te gustaría verla?
+ Este complemento ya está instalado
+ Error al descargar el manifiesto del complemento
+ Por favor, comprueba que puedes establecer conexión con github.com. Este error significa que es posible que no puedas instalar o actualizar complementos.
+ Instalando desde una fuente desconocida
+ ¡Estás instalando este complemento desde una fuente desconocida y puede contener riesgos potenciales!{0}{0}Por favor, asegúrate de saber de dónde procede este complemento y de que es seguro.{0}{0}¿Aún así te gustaría continuar?{0}{0}(Puede apagar esta advertencia en la configuración)
+
+
+
+
+ Administrador de complementos
+ Administración de instalación, desinstalación o actualización de los complementos de Flow Launcher
+ Autor desconocido
+
+
+ Abrir sitio web
+ Visite el sitio web del complemento
+ Ver código fuente
+ Ver el código fuente del complemento
+ Sugerir una mejora o enviar una incidencia
+ Sugerir una mejora o enviar una incidencia al desarrollador del complemento
+ Ir al repositorio de complementos de Flow
+ Visite el repositorio PluginsManifest para ver complementos hechos por la comunidad
+
+
+ Aviso de instalación de fuentes desconocidas
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml
new file mode 100644
index 000000000..6c48bd8d9
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ 플러그인 다운로드 중
+ 다운로드 성공
+ 오류: 플러그인을 받을 수 없습니다
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ 플러그인 설치
+ 다운로드 및 설치 {0}
+ 플러그인 제거
+ 플러그인 설치 성공. Flow를 재시작합니다, 잠시 기다려주세요...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ 사용 가능한 업데이트가 없습니다
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ 플러그인 업데이트
+ This plugin has an update, would you like to see it?
+ 이미 설치된 플러그인입니다
+ 플러그인 목록 다운로드 실패
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ 플러그인 관리자
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ 알수없는 제작자
+
+
+ 웹사이트 열기
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml
index 81c05b286..a5cc8866b 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml
@@ -4,9 +4,9 @@
Descarregar pluginDescarregado com sucesso
- Erro: não foi possível descarregar o plugin
+ Não foi possível descarregar o plugin{0} de {1} {2}{3}Tem a certeza de que pretende desinstalar este plugin? Após a desinstalação, Flow Launcher será reiniciado.
- {0} de{1} {2}{3}Tem a certeza de que pretende instalar este plugin? Após a instalação, Flow Launcher será reiniciado.
+ {0} de {1} {2}{3}Tem a certeza de que pretende instalar este plugin? Após a instalação, Flow Launcher será reiniciado.Instalador de pluginsDescarregar e instalar {0}Desinstalador de plugins
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml
index cca5f54b2..72b2f0838 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml
@@ -6,12 +6,12 @@
Úspešne stiahnutéChyba: Nepodarilo sa stiahnuť plugin{0} od {1} {2}{3}Chcete odinštalovať tento plugin? Po odinštalovaní sa Flow automaticky reštartuje.
- {0} by {1} {2}{3}Chcete nainštalovať tento plugin? Po nainštalovaní sa Flow automaticky reštartuje.
+ {0} od {1} {2}{3}Chcete nainštalovať tento plugin? Po nainštalovaní sa Flow automaticky reštartuje.Inštalovať pluginStiahnuť a nainštalovať {0}Odinštalovať pluginPlugin bol úspešne nainštalovaný. Reštartuje sa Flow, čakajte, prosím...
- Inštalácia zlyhala: nepodarilo sa nájsť metadáta súboru plugin.json nového pluginu
+ Inštalácia zlyhala: nepodarilo sa nájsť metadáta súboru plugin.json z extrahovaného súboru ZIP.Chyba: Plugin s rovnakou alebo vyššou verziou ako {0} už existuje.Chyba inštalácie pluginuNastala chyba počas inštalácie pluginu {0}
@@ -19,10 +19,10 @@
Všetky pluginy sú aktuálne{0} od {1} {2}{3}Chcete aktualizovať tento plugin? Po odinštalovaní sa Flow automaticky reštartuje.Aktualizácia pluginu
- Tento plugin má dostupnú aktualizáciu, chcete ju zobraziť?
+ Aktualizácia pre tento plugin je k dispozícii, chcete ju zobraziť?Tento plugin je už nainštalovanýStiahnutie manifestu pluginu zlyhalo
- Skontrolujte, či sa môžete pripojiť na github.com. Táto chyba znamená, že pravdepodobne nemôžete pluginy inštalovať alebo aktualizovať.
+ Skontrolujte, či sa môžete pripojiť ku github.com. Táto chyba znamená, že pravdepodobne nemôžete pluginy inštalovať alebo aktualizovať.Inštalácia z neznámeho zdrojaTento plugin inštalujete z neznámeho zdroja a môže obsahovať potenciálne riziká!{0}{0}Uistite sa, že rozumiete, odkiaľ tento plugin pochádza, a že je bezpečný.{0}{0}Chcete pokračovať?{0}{0}(Toto upozornenie môžete vypnúť v nastaveniach)
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml
new file mode 100644
index 000000000..23fb6aa1e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ Downloading plugin
+ Successfully downloaded
+ Error: Unable to download the plugin
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ Plugin Install
+ Download and install {0}
+ Plugin Uninstall
+ Plugin successfully installed. Restarting Flow, please wait...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ Error installing plugin
+ Error occured while trying to install {0}
+ No update available
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ Plugin Update
+ This plugin has an update, would you like to see it?
+ This plugin is already installed
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ Plugins Manager
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ Open website
+ Visit the plugin's website
+ See source code
+ See the plugin's source code
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml
index d74ab008f..757bf2bf0 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml
@@ -1,38 +1,48 @@
-
-
-
- 下载插件
- 下载完成
- {0} by {1} {2}{3} 您要卸载此插件吗? 卸载后,Flow Launcher 将自动重启。
- {0} by {1} {2}{3} 您要安装此插件吗? 安装后,Flow Launcher 将自动重启
- 插件安装
- 插件卸载
- 安装失败:无法从新插件中找到plugin.json元数据文件
- 安装插件时出错
- 尝试安装 {0} 时发生错误
- 无可用更新
- 所有插件都是最新的
- {0} by {1} {2}{3}您要更新此插件吗? 更新后,Flow Launcher 将自动重启。
- 插件更新
- 该插件有更新,您想看看吗?
- 该插件已安装
-
-
-
-
- 插件管理
- 安装,卸载或更新 Flow Launcher 插件
-
-
- 打开网站
- 访问插件的网站
- 查看源代码
- 查看插件的源代码
- 提出增强建议或提交问题
- 提出增强功能或将问题提交给插件开发人员
- 转到 Flow Launcher 的插件存储库
- 访问 PluginsManifest 存储库以查看社区提供的插件
-
-
\ No newline at end of file
+
+
+
+
+ 下载插件
+ 下载完成
+ 错误:无法下载该插件
+ {0} by {1} {2}{3} 您要卸载此插件吗? 卸载后,Flow Launcher 将自动重启。
+ {0} by {1} {2}{3} 您要安装此插件吗? 安装后,Flow Launcher 将自动重启
+ 插件安装
+ 下载与安装 {0}
+ 插件卸载
+ 插件安装成功。正在重新启动 Flow Launcher,请稍候...
+ 安装失败:无法从新插件中找到plugin.json元数据文件
+ 错误:具有相同或更高版本的 {0} 的插件已经存在。
+ 安装插件时出错
+ 尝试安装 {0} 时发生错误
+ 无可用更新
+ 所有插件都是最新的
+ {0} by {1} {2}{3}您要更新此插件吗? 更新后,Flow Launcher 将自动重启。
+ 插件更新
+ 该插件有更新,您想看看吗?
+ 此插件已安装
+ 插件列表下载失败
+ 请检查您是否可以连接到 github.com。这个错误意味着您可能无法安装或更新插件。
+ 从未知源安装
+ 您正在从未知源安装此插件,它可能包含潜在风险!{0}{0}请确保您了解来源以及安全性。{0}{0}您想要继续吗?{0}{0}(您可以通过设置关闭此警告)
+
+
+
+
+ 插件管理
+ 安装,卸载或更新 Flow Launcher 插件
+ 未知作者
+
+
+ 打开网站
+ 访问插件的网站
+ 查看源代码
+ 查看插件源代码
+ 提出增强建议或提交问题
+ 提出增强功能或将问题提交给插件开发人员
+ 转到 Flow Launcher 的插件存储库
+ 访问 PluginsManifest 存储库以查看社区提供的插件
+
+
+ 未知源安装警告
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml
new file mode 100644
index 000000000..5349babae
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+ 正在下載插件
+ 下載完成
+ 錯誤:無法下載插件
+ {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.
+ {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.
+ 安裝插件
+ 下載並安裝 {0}
+ 卸載插件
+ 插件安裝成功。正在重啟 Flow,請稍後...
+ Unable to find the plugin.json metadata file from the extracted zip file.
+ Error: A plugin which has the same or greater version with {0} already exists.
+ 安裝插件時發生錯誤
+ 嘗試安裝 {0} 時發生錯誤
+ 無可用更新
+ All plugins are up to date
+ {0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.
+ 插件更新
+ This plugin has an update, would you like to see it?
+ 已安裝此插件
+ Plugin Manifest Download Failed
+ Please check if you can connect to github.com. This error means you may not be able to install or update plugins.
+ Installing from an unknown source
+ You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings)
+
+
+
+
+ 插件管理
+ Management of installing, uninstalling or updating Flow Launcher plugins
+ Unknown Author
+
+
+ 打開網頁
+ 查看插件的網站
+ 查看原始碼
+ 查看插件的原始碼
+ Suggest an enhancement or submit an issue
+ Suggest an enhancement or submit an issue to the plugin developer
+ Go to Flow's plugins repository
+ Visit the PluginsManifest repository to see community-made plugin submissions
+
+
+ Install from unknown source warning
+
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs b/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs
index f445826fa..57c857403 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs
@@ -12,7 +12,7 @@ using System.Windows;
namespace Flow.Launcher.Plugin.PluginsManager
{
- public class Main : ISettingProvider, IAsyncPlugin, IContextMenu, IPluginI18n, IAsyncReloadable
+ public class Main : ISettingProvider, IAsyncPlugin, IContextMenu, IPluginI18n
{
internal PluginInitContext Context { get; set; }
@@ -24,62 +24,41 @@ namespace Flow.Launcher.Plugin.PluginsManager
internal PluginsManager pluginManager;
- private DateTime lastUpdateTime = DateTime.MinValue;
-
public Control CreateSettingPanel()
{
return new PluginsManagerSettings(viewModel);
}
- public Task InitAsync(PluginInitContext context)
+ public async Task InitAsync(PluginInitContext context)
{
Context = context;
Settings = context.API.LoadSettingJsonStorage();
viewModel = new SettingsViewModel(context, Settings);
contextMenu = new ContextMenu(Context);
pluginManager = new PluginsManager(Context, Settings);
- _manifestUpdateTask = pluginManager.UpdateManifestAsync().ContinueWith(_ =>
- {
- lastUpdateTime = DateTime.Now;
- }, TaskContinuationOptions.OnlyOnRanToCompletion);
- return Task.CompletedTask;
+ await pluginManager.UpdateManifestAsync();
}
public List LoadContextMenus(Result selectedResult)
{
return contextMenu.LoadContextMenus(selectedResult);
}
-
- private Task _manifestUpdateTask = Task.CompletedTask;
public async Task> QueryAsync(Query query, CancellationToken token)
{
- var search = query.Search;
-
- if (string.IsNullOrWhiteSpace(search))
+ if (string.IsNullOrWhiteSpace(query.Search))
return pluginManager.GetDefaultHotKeys();
- if ((DateTime.Now - lastUpdateTime).TotalHours > 12 && _manifestUpdateTask.IsCompleted) // 12 hours
- {
- _manifestUpdateTask = pluginManager.UpdateManifestAsync().ContinueWith(t =>
- {
- lastUpdateTime = DateTime.Now;
- }, TaskContinuationOptions.OnlyOnRanToCompletion);
- }
-
- return search switch
+ return query.FirstSearch.ToLower() switch
{
//search could be url, no need ToLower() when passed in
- var s when s.StartsWith(Settings.HotKeyInstall, StringComparison.OrdinalIgnoreCase)
- => await pluginManager.RequestInstallOrUpdate(search, token),
- var s when s.StartsWith(Settings.HotkeyUninstall, StringComparison.OrdinalIgnoreCase)
- => pluginManager.RequestUninstall(search),
- var s when s.StartsWith(Settings.HotkeyUpdate, StringComparison.OrdinalIgnoreCase)
- => await pluginManager.RequestUpdate(search, token),
+ Settings.InstallCommand => await pluginManager.RequestInstallOrUpdate(query.SecondToEndSearch, token),
+ Settings.UninstallCommand => pluginManager.RequestUninstall(query.SecondToEndSearch),
+ Settings.UpdateCommand => await pluginManager.RequestUpdate(query.SecondToEndSearch, token),
_ => pluginManager.GetDefaultHotKeys().Where(hotkey =>
{
- hotkey.Score = StringMatcher.FuzzySearch(search, hotkey.Title).Score;
+ hotkey.Score = StringMatcher.FuzzySearch(query.Search, hotkey.Title).Score;
return hotkey.Score > 0;
}).ToList()
};
@@ -94,11 +73,5 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
return Context.API.GetTranslation("plugin_pluginsmanager_plugin_description");
}
-
- public async Task ReloadDataAsync()
- {
- await pluginManager.UpdateManifestAsync();
- lastUpdateTime = DateTime.Now;
- }
}
}
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs b/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
index a2f580ee1..bbf155e23 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
@@ -51,7 +51,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
private Task _downloadManifestTask = Task.CompletedTask;
- internal Task UpdateManifestAsync()
+ internal Task UpdateManifestAsync(CancellationToken token = default, bool silent = false)
{
if (_downloadManifestTask.Status == TaskStatus.Running)
{
@@ -59,11 +59,12 @@ namespace Flow.Launcher.Plugin.PluginsManager
}
else
{
- _downloadManifestTask = PluginsManifest.UpdateTask;
- _downloadManifestTask.ContinueWith(_ =>
- Context.API.ShowMsg(Context.API.GetTranslation("plugin_pluginsmanager_update_failed_title"),
- Context.API.GetTranslation("plugin_pluginsmanager_update_failed_subtitle"), icoPath, false),
- TaskContinuationOptions.OnlyOnFaulted);
+ _downloadManifestTask = PluginsManifest.UpdateManifestAsync(token);
+ if (!silent)
+ _downloadManifestTask.ContinueWith(_ =>
+ Context.API.ShowMsg(Context.API.GetTranslation("plugin_pluginsmanager_update_failed_title"),
+ Context.API.GetTranslation("plugin_pluginsmanager_update_failed_subtitle"), icoPath, false),
+ TaskContinuationOptions.OnlyOnFaulted);
return _downloadManifestTask;
}
}
@@ -74,31 +75,34 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
new Result()
{
- Title = Settings.HotKeyInstall,
+ Title = Settings.InstallCommand,
IcoPath = icoPath,
+ AutoCompleteText = $"{Context.CurrentPluginMetadata.ActionKeyword} {Settings.InstallCommand} ",
Action = _ =>
{
- Context.API.ChangeQuery("pm install ");
+ Context.API.ChangeQuery($"{Context.CurrentPluginMetadata.ActionKeyword} {Settings.InstallCommand} ");
return false;
}
},
new Result()
{
- Title = Settings.HotkeyUninstall,
+ Title = Settings.UninstallCommand,
IcoPath = icoPath,
+ AutoCompleteText = $"{Context.CurrentPluginMetadata.ActionKeyword} {Settings.UninstallCommand} ",
Action = _ =>
{
- Context.API.ChangeQuery("pm uninstall ");
+ Context.API.ChangeQuery($"{Context.CurrentPluginMetadata.ActionKeyword} {Settings.UninstallCommand} ");
return false;
}
},
new Result()
{
- Title = Settings.HotkeyUpdate,
+ Title = Settings.UpdateCommand,
IcoPath = icoPath,
+ AutoCompleteText = $"{Context.CurrentPluginMetadata.ActionKeyword} {Settings.UpdateCommand} ",
Action = _ =>
{
- Context.API.ChangeQuery("pm update ");
+ Context.API.ChangeQuery($"{Context.CurrentPluginMetadata.ActionKeyword} {Settings.UpdateCommand} ");
return false;
}
}
@@ -113,12 +117,12 @@ namespace Flow.Launcher.Plugin.PluginsManager
.Any(x => x.Metadata.ID == plugin.ID && x.Metadata.Version.CompareTo(plugin.Version) < 0))
{
if (MessageBox.Show(Context.API.GetTranslation("plugin_pluginsmanager_update_exists"),
- Context.API.GetTranslation("plugin_pluginsmanager_update_title"),
- MessageBoxButton.YesNo) == MessageBoxResult.Yes)
+ Context.API.GetTranslation("plugin_pluginsmanager_update_title"),
+ MessageBoxButton.YesNo) == MessageBoxResult.Yes)
Context
.API
.ChangeQuery(
- $"{Context.CurrentPluginMetadata.ActionKeywords.FirstOrDefault()} {Settings.HotkeyUpdate} {plugin.Name}");
+ $"{Context.CurrentPluginMetadata.ActionKeywords.FirstOrDefault()} {Settings.UpdateCommand} {plugin.Name}");
var mainWindow = Application.Current.MainWindow;
mainWindow.Show();
@@ -138,13 +142,13 @@ namespace Flow.Launcher.Plugin.PluginsManager
Environment.NewLine, Environment.NewLine);
if (MessageBox.Show(message, Context.API.GetTranslation("plugin_pluginsmanager_install_title"),
- MessageBoxButton.YesNo) == MessageBoxResult.No)
+ MessageBoxButton.YesNo) == MessageBoxResult.No)
return;
// at minimum should provide a name, but handle plugin that is not downloaded from plugins manifest and is a url download
var downloadFilename = string.IsNullOrEmpty(plugin.Version)
- ? $"{plugin.Name}-{Guid.NewGuid()}.zip"
- : $"{plugin.Name}-{plugin.Version}.zip";
+ ? $"{plugin.Name}-{Guid.NewGuid()}.zip"
+ : $"{plugin.Name}-{plugin.Version}.zip";
var filePath = Path.Combine(DataLocation.PluginsDirectory, downloadFilename);
@@ -161,7 +165,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
if (e is HttpRequestException)
MessageBox.Show(Context.API.GetTranslation("plugin_pluginsmanager_download_error"),
- Context.API.GetTranslation("plugin_pluginsmanager_downloading_plugin"));
+ Context.API.GetTranslation("plugin_pluginsmanager_downloading_plugin"));
Context.API.ShowMsgError(Context.API.GetTranslation("plugin_pluginsmanager_install_error_title"),
string.Format(Context.API.GetTranslation("plugin_pluginsmanager_install_error_subtitle"),
@@ -173,29 +177,14 @@ namespace Flow.Launcher.Plugin.PluginsManager
}
Context.API.ShowMsg(Context.API.GetTranslation("plugin_pluginsmanager_install_title"),
- Context.API.GetTranslation("plugin_pluginsmanager_install_success_restart"));
+ Context.API.GetTranslation("plugin_pluginsmanager_install_success_restart"));
Context.API.RestartApp();
}
internal async ValueTask> RequestUpdate(string search, CancellationToken token)
{
- if (!PluginsManifest.UserPlugins.Any())
- {
- await UpdateManifestAsync();
- }
-
- token.ThrowIfCancellationRequested();
-
- var autocompletedResults = AutoCompleteReturnAllResults(search,
- Settings.HotkeyUpdate,
- "Update",
- "Select a plugin to update");
-
- if (autocompletedResults.Any())
- return autocompletedResults;
-
- var uninstallSearch = search.Replace(Settings.HotkeyUpdate, string.Empty, StringComparison.OrdinalIgnoreCase).TrimStart();
+ await UpdateManifestAsync(token);
var resultsForUpdate =
from existingPlugin in Context.API.GetAllPlugins()
@@ -241,8 +230,8 @@ namespace Flow.Launcher.Plugin.PluginsManager
Environment.NewLine, Environment.NewLine);
if (MessageBox.Show(message,
- Context.API.GetTranslation("plugin_pluginsmanager_update_title"),
- MessageBoxButton.YesNo) == MessageBoxResult.Yes)
+ Context.API.GetTranslation("plugin_pluginsmanager_update_title"),
+ MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
Uninstall(x.PluginExistingMetadata, false);
@@ -277,15 +266,14 @@ namespace Flow.Launcher.Plugin.PluginsManager
return false;
},
- ContextData =
+ ContextData =
new UserPlugin
{
- Website = x.PluginNewUserPlugin.Website,
- UrlSourceCode = x.PluginNewUserPlugin.UrlSourceCode
+ Website = x.PluginNewUserPlugin.Website, UrlSourceCode = x.PluginNewUserPlugin.UrlSourceCode
}
});
- return Search(results, uninstallSearch);
+ return Search(results, search);
}
internal bool PluginExists(string id)
@@ -333,28 +321,31 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
if (e.SpecialKeyState.CtrlPressed)
{
- SearchWeb.NewTabInBrowser(plugin.UrlDownload);
+ SearchWeb.OpenInBrowserTab(plugin.UrlDownload);
return ShouldHideWindow;
}
if (Settings.WarnFromUnknownSource)
{
if (!InstallSourceKnown(plugin.UrlDownload)
- && MessageBox.Show(string.Format(Context.API.GetTranslation("plugin_pluginsmanager_install_unknown_source_warning"),
- Environment.NewLine),
- Context.API.GetTranslation("plugin_pluginsmanager_install_unknown_source_warning_title"),
- MessageBoxButton.YesNo) == MessageBoxResult.No)
+ && MessageBox.Show(string.Format(Context.API.GetTranslation("plugin_pluginsmanager_install_unknown_source_warning"),
+ Environment.NewLine),
+ Context.API.GetTranslation("plugin_pluginsmanager_install_unknown_source_warning_title"),
+ MessageBoxButton.YesNo) == MessageBoxResult.No)
return false;
}
Application.Current.MainWindow.Hide();
_ = InstallOrUpdate(plugin);
-
+
return ShouldHideWindow;
}
};
- return new List { result };
+ return new List
+ {
+ result
+ };
}
private bool InstallSourceKnown(string url)
@@ -366,20 +357,13 @@ namespace Flow.Launcher.Plugin.PluginsManager
return url.StartsWith(acceptedSource) && Context.API.GetAllPlugins().Any(x => x.Metadata.Website.StartsWith(contructedUrlPart));
}
- internal async ValueTask> RequestInstallOrUpdate(string searchName, CancellationToken token)
+ internal async ValueTask> RequestInstallOrUpdate(string search, CancellationToken token)
{
- if (!PluginsManifest.UserPlugins.Any())
- {
- await UpdateManifestAsync();
- }
+ await UpdateManifestAsync(token);
- token.ThrowIfCancellationRequested();
-
- var searchNameWithoutKeyword = searchName.Replace(Settings.HotKeyInstall, string.Empty, StringComparison.OrdinalIgnoreCase).Trim();
-
- if (Uri.IsWellFormedUriString(searchNameWithoutKeyword, UriKind.Absolute)
- && searchNameWithoutKeyword.Split('.').Last() == zip)
- return InstallFromWeb(searchNameWithoutKeyword);
+ if (Uri.IsWellFormedUriString(search, UriKind.Absolute)
+ && search.Split('.').Last() == zip)
+ return InstallFromWeb(search);
var results =
PluginsManifest
@@ -394,7 +378,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
if (e.SpecialKeyState.CtrlPressed)
{
- SearchWeb.NewTabInBrowser(x.Website);
+ SearchWeb.OpenInBrowserTab(x.Website);
return ShouldHideWindow;
}
@@ -405,7 +389,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
ContextData = x
});
- return Search(results, searchNameWithoutKeyword);
+ return Search(results, search);
}
private void Install(UserPlugin plugin, string downloadedFilePath)
@@ -438,21 +422,21 @@ namespace Flow.Launcher.Plugin.PluginsManager
if (string.IsNullOrEmpty(metadataJsonFilePath) || string.IsNullOrEmpty(pluginFolderPath))
{
MessageBox.Show(Context.API.GetTranslation("plugin_pluginsmanager_install_errormetadatafile"),
- Context.API.GetTranslation("plugin_pluginsmanager_install_error_title"));
-
- throw new FileNotFoundException (
+ Context.API.GetTranslation("plugin_pluginsmanager_install_error_title"));
+
+ throw new FileNotFoundException(
string.Format("Unable to find plugin.json from the extracted zip file, or this path {0} does not exist", pluginFolderPath));
}
if (SameOrLesserPluginVersionExists(metadataJsonFilePath))
{
MessageBox.Show(string.Format(Context.API.GetTranslation("plugin_pluginsmanager_install_error_duplicate"), plugin.Name),
- Context.API.GetTranslation("plugin_pluginsmanager_install_error_title"));
+ Context.API.GetTranslation("plugin_pluginsmanager_install_error_title"));
throw new InvalidOperationException(
string.Format("A plugin with the same ID and version already exists, " +
- "or the version is greater than this downloaded plugin {0}",
- plugin.Name));
+ "or the version is greater than this downloaded plugin {0}",
+ plugin.Name));
}
var directory = string.IsNullOrEmpty(plugin.Version) ? $"{plugin.Name}-{Guid.NewGuid()}" : $"{plugin.Name}-{plugin.Version}";
@@ -465,16 +449,6 @@ namespace Flow.Launcher.Plugin.PluginsManager
internal List RequestUninstall(string search)
{
- var autocompletedResults = AutoCompleteReturnAllResults(search,
- Settings.HotkeyUninstall,
- "Uninstall",
- "Select a plugin to uninstall");
-
- if (autocompletedResults.Any())
- return autocompletedResults;
-
- var uninstallSearch = search.Replace(Settings.HotkeyUninstall, string.Empty, StringComparison.OrdinalIgnoreCase).TrimStart();
-
var results = Context.API
.GetAllPlugins()
.Select(x =>
@@ -491,8 +465,8 @@ namespace Flow.Launcher.Plugin.PluginsManager
Environment.NewLine, Environment.NewLine);
if (MessageBox.Show(message,
- Context.API.GetTranslation("plugin_pluginsmanager_uninstall_title"),
- MessageBoxButton.YesNo) == MessageBoxResult.Yes)
+ Context.API.GetTranslation("plugin_pluginsmanager_uninstall_title"),
+ MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
Application.Current.MainWindow.Hide();
Uninstall(x.Metadata);
@@ -505,7 +479,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
}
});
- return Search(results, uninstallSearch);
+ return Search(results, search);
}
private void Uninstall(PluginMetadata plugin, bool removedSetting = true)
@@ -520,42 +494,12 @@ namespace Flow.Launcher.Plugin.PluginsManager
using var _ = File.CreateText(Path.Combine(plugin.PluginDirectory, "NeedDelete.txt"));
}
- private List AutoCompleteReturnAllResults(string search, string hotkey, string title, string subtitle)
- {
- if (!string.IsNullOrEmpty(search)
- && hotkey.StartsWith(search)
- && (hotkey != search || !search.StartsWith(hotkey)))
- {
- return
- new List
- {
- new Result
- {
- Title = title,
- IcoPath = icoPath,
- SubTitle = subtitle,
- Action = e =>
- {
- Context
- .API
- .ChangeQuery(
- $"{Context.CurrentPluginMetadata.ActionKeywords.FirstOrDefault()} {hotkey} ");
-
- return false;
- }
- }
- };
- }
-
- return new List();
- }
-
private bool SameOrLesserPluginVersionExists(string metadataPath)
{
var newMetadata = JsonSerializer.Deserialize(File.ReadAllText(metadataPath));
return Context.API.GetAllPlugins()
- .Any(x => x.Metadata.ID == newMetadata.ID
- && newMetadata.Version.CompareTo(x.Metadata.Version) <= 0);
+ .Any(x => x.Metadata.ID == newMetadata.ID
+ && newMetadata.Version.CompareTo(x.Metadata.Version) <= 0);
}
}
-}
+}
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs b/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs
index a951010c0..6fd4e51ac 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs
@@ -6,11 +6,11 @@ namespace Flow.Launcher.Plugin.PluginsManager
{
internal class Settings
{
- internal string HotKeyInstall { get; set; } = "install";
+ internal const string InstallCommand = "install";
- internal string HotkeyUninstall { get; set; } = "uninstall";
+ internal const string UninstallCommand = "uninstall";
- internal string HotkeyUpdate { get; set; } = "update";
+ internal const string UpdateCommand = "update";
public bool WarnFromUnknownSource { get; set; } = true;
}
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json b/Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json
index c46ea91d9..0bee472d9 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json
@@ -6,7 +6,7 @@
"Name": "Plugins Manager",
"Description": "Management of installing, uninstalling or updating Flow Launcher plugins",
"Author": "Jeremy Wu",
- "Version": "1.11.0",
+ "Version": "1.12.2",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.PluginsManager.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Flow.Launcher.Plugin.ProcessKiller.csproj b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Flow.Launcher.Plugin.ProcessKiller.csproj
index 799230b10..80642c8a3 100644
--- a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Flow.Launcher.Plugin.ProcessKiller.csproj
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Flow.Launcher.Plugin.ProcessKiller.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windowsFlow.Launcher.Plugin.ProcessKillerFlow.Launcher.Plugin.ProcessKillerFlow-Launcher
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Images/app.png b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Images/app.png
index fa76a5d29..418086275 100644
Binary files a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Images/app.png and b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Images/app.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/da.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/da.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/de.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/de.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/es-419.xaml
new file mode 100644
index 000000000..2dd0745c3
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/es-419.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Terminar procesos
+ Cierra procesos en ejecución desde Flow Launcher
+
+ termina todas las instancias de "{0}"
+ terminar {0} procesos
+ termina todas las instancias
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/es.xaml
new file mode 100644
index 000000000..2e13e17d9
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/es.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Finalizador de procesos
+ Finaliza procesos en ejecución desde Flow Launcher
+
+ finaliza todas las instancias de "{0}"
+ finalizar {0} procesos
+ finaliza todas las instancias
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/fr.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/fr.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/it.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/it.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ja.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ja.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ko.xaml
new file mode 100644
index 000000000..a19c958b4
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ko.xaml
@@ -0,0 +1,11 @@
+
+
+
+ 프로세스 킬러
+ 실행중인 프로세스를 Flow를 사용하여 종료합니다
+
+ "{0}"의 모든 인스턴스를 종료
+ {0} 프로세스 종료
+ 모든 인스턴스 종료
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/nb.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/nb.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/nl.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/nl.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pl.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pl.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-br.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-br.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-pt.xaml
index 9c4fe7be0..b5c75f2d9 100644
--- a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/pt-pt.xaml
@@ -2,7 +2,7 @@
Terminador de processos
- Terminar todos os processos do Flow Launcher
+ Terminar todos os processos Flow Launcherterminar todas as instâncias de {0}terminar {0} processos
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ru.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ru.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/sr.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/sr.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/tr.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/tr.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/uk-UA.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/uk-UA.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-cn.xaml
index c99f29584..160ca5f96 100644
--- a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-cn.xaml
@@ -2,7 +2,7 @@
进程杀手
- 使用Flow Launcher终止正在运行的进程
+ 使用 Flow Launcher 终止正在运行的进程杀死 {0} 的所有实例杀死 {0} 进程
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-tw.xaml
new file mode 100644
index 000000000..c4cc85463
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/zh-tw.xaml
@@ -0,0 +1,11 @@
+
+
+
+ Process Killer
+ Kill running processes from Flow Launcher
+
+ kill all instances of "{0}"
+ kill {0} processes
+ kill all instances
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs
index 31b4a67ed..19f96aea1 100644
--- a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Main.cs
@@ -88,6 +88,7 @@ namespace Flow.Launcher.Plugin.ProcessKiller
TitleHighlightData = StringMatcher.FuzzySearch(termToSearch, p.ProcessName).MatchData,
Score = pr.Score,
ContextData = p.ProcessName,
+ AutoCompleteText = $"{_context.CurrentPluginMetadata.ActionKeyword}{Plugin.Query.TermSeparator}{p.ProcessName}",
Action = (c) =>
{
processHelper.TryKill(p);
diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/plugin.json b/Plugins/Flow.Launcher.Plugin.ProcessKiller/plugin.json
index d42f0fd54..8e3eb87fe 100644
--- a/Plugins/Flow.Launcher.Plugin.ProcessKiller/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/plugin.json
@@ -4,7 +4,7 @@
"Name":"Process Killer",
"Description":"Kill running processes from Flow",
"Author":"Flow-Launcher",
- "Version":"1.2.3",
+ "Version":"1.2.6",
"Language":"csharp",
"Website":"https://github.com/Flow-Launcher/Flow.Launcher.Plugin.ProcessKiller",
"IcoPath":"Images\\app.png",
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
index 90e613280..9e093b7a5 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
@@ -87,46 +87,20 @@
+ Content="{DynamicResource flowlauncher_plugin_program_update}"
+ Style="{DynamicResource AccentButtonStyle}" />
-
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj b/Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj
index 2eb04b5a9..2809e0b5c 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj
+++ b/Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows10.0.19041.0
+ net6.0-windows10.0.19041.0{FDB3555B-58EF-4AE6-B5F1-904719637AB4}PropertiesFlow.Launcher.Plugin.Program
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Images/cmd.png b/Plugins/Flow.Launcher.Plugin.Program/Images/cmd.png
index 686583653..284e1d371 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Program/Images/cmd.png and b/Plugins/Flow.Launcher.Plugin.Program/Images/cmd.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Images/disable.png b/Plugins/Flow.Launcher.Plugin.Program/Images/disable.png
index e9d4976bc..61bcc97fb 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Program/Images/disable.png and b/Plugins/Flow.Launcher.Plugin.Program/Images/disable.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Images/folder.png b/Plugins/Flow.Launcher.Plugin.Program/Images/folder.png
index 569fa7049..2ae7250a2 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Program/Images/folder.png and b/Plugins/Flow.Launcher.Plugin.Program/Images/folder.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Images/program.png b/Plugins/Flow.Launcher.Plugin.Program/Images/program.png
index e4c789689..ecc91bdb3 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Program/Images/program.png and b/Plugins/Flow.Launcher.Plugin.Program/Images/program.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Images/user.png b/Plugins/Flow.Launcher.Plugin.Program/Images/user.png
index 2d45c1ee9..03402d8e8 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Program/Images/user.png and b/Plugins/Flow.Launcher.Plugin.Program/Images/user.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml
new file mode 100644
index 000000000..261ef4129
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Slet
+ Rediger
+ Tilføj
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Fortsæt
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml
index 18e8d9ff1..87b767fc0 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml
@@ -1,37 +1,60 @@
-
-
-
- Löschen
- Bearbeiten
- Hinzufügen
- Speicherort
- Indexiere Dateiendungen
- erneut Indexieren
- Indexieren
- Indexierungs Startmenü
- Indexierungsspeicher
- Endungen
- Maximale Tiefe
-
- Verzeichnis:
- Durchsuchen
- Dateiendungen:
- Maximale Suchtiefe (-1 ist unlimitiert):
-
- Bitte wähle eine Programmquelle
-
- Aktualisieren
- Flow Launcher indexiert nur Datien mit folgenden Endungen:
- (Jede Endung muss durch ein ; getrennt werden)
- Dateiendungen wurden erfolgreich aktualisiert
- Dateiendungen dürfen nicht leer sein
-
- Als Administrator ausführen
- Enthaltenden Ordner öffnen
-
- Programm
- Suche Programme mit Flow Launcher
-
-
\ No newline at end of file
+
+
+
+
+ Löschen
+ Bearbeiten
+ Hinzufügen
+ Name
+ Aktivieren
+ Disable
+ Speicherort
+ All Programs
+ Indexiere Dateiendungen
+ erneut Indexieren
+ Indexieren
+ Indexierungs Startmenü
+ When enabled, Flow will load programs from the start menu
+ Indexierungsspeicher
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Endungen
+ Maximale Tiefe
+
+ Verzeichnis:
+ Durchsuchen
+ Dateiendungen:
+ Maximale Suchtiefe (-1 ist unlimitiert):
+
+ Bitte wähle eine Programmquelle
+ Are you sure you want to delete the selected program sources?
+
+ Aktualisieren
+ Flow Launcher indexiert nur Datien mit folgenden Endungen:
+ Dateiendungen wurden erfolgreich aktualisiert
+ Dateiendungen dürfen nicht leer sein
+
+ Run As Different User
+ Als Administrator ausführen
+ Open containing folder
+ Disable this program from displaying
+
+ Programm
+ Suche Programme mit Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Erfolgreich
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml
index b8ad553ed..8d8cae02c 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml
@@ -7,6 +7,8 @@
DeleteEditAdd
+ Name
+ EnableDisableLocationAll Programs
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml
new file mode 100644
index 000000000..b2204f896
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Eliminar
+ Editar
+ Añadir
+ Nombre
+ Habilitar
+ Deshabilitar
+ Ubicación
+ Todos los programas
+ Sufijos de archivo
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Success
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml
new file mode 100644
index 000000000..ac4694122
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Eliminar
+ Editar
+ Añadir
+ Nombre
+ Activar
+ Desactivar
+ Ubicación
+ Todos los programas
+ Extensiones de archivo
+ Re-indexar
+ Indexando
+ Indexar menú de inicio
+ Cuando está activo, Flow cargará los programas desde el menú de inicio
+ Indexar registro
+ Cuando está activo, Flow cargará los programas desde el registro
+ Ocultar ruta de aplicación
+ Para archivos ejecutables como UWP o lnk, oculta la ruta del archivo
+ Buscar en la descripción del programa
+ Desactivar esto también evitará que Flow busque en la descripción del programa
+ Extensiones
+ Profundidad máxima
+
+ Carpeta
+ Buscar
+ Extensiones de archivo:
+ Profundidad de búsqueda máxima (-1 es sin límite):
+
+ Por favor, seleccione la ruta del programa
+ ¿Estás seguro de querer eliminar las rutas de programa seleccionadas?
+
+ Aceptar
+ Flow Launcher sólo indexará los archivos que terminen con las siguientes extensiones. (Separa cada extensión con ';' )
+ Extensiones de archivo actualizadas correctamente
+ Las extensiones de archivo no pueden estar vacías
+
+ Ejecutar como usuario diferente
+ Ejecutar como administrador
+ Abrir carpeta contenedora
+ Esconde este programa
+
+ Programa
+ Busca programas en Flow Launcher
+
+ Ruta incorrecta
+
+ Explorador personalizado
+ Parámetros
+ Puedes cambiar el explorador usado para abrir la carpeta contenedora introduciendo una variable del entorno que contenga el comando para abrir del explorador que quieres usar. Para probar la variable del entorno puedes usar CMD.
+ Introduce los parámetros personalizados que deseas añadir para tu explorador. %s para la carpeta padre, %f para la ruta absoluta (que sólo funciona con win32). Revisa la página web del explorador para más detalles.
+
+
+ Éxito
+ Se escondió el programa en las búsquedas correctamente
+ Esta aplicación no fué diseñada para ser ejecutada como administrador
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml
new file mode 100644
index 000000000..cb6ca1f72
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Supprimer
+ Modifier
+ Ajouter
+ Nom
+ Activer
+ Désactiver
+ Emplacement
+ Tous les programmes
+ Suffixes de fichiers
+ Réindexer
+ Indexation
+ Menu de Démarrage de l'Index
+ Lorsque cette option est activée, Flow chargera les programmes depuis le menu de démarrage
+ Registre d'index
+ Lorsque cette option est activée, Flow chargera les programmes depuis le registre
+ Masquer le chemin de l'application
+ Pour les fichiers exécutables tels que UWP ou lnk, masquez le chemin d'accès pour ne pas être visible
+ Rechercher dans la description du programme
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Exécuter en tant qu'utilisateur différent
+ Exécuter en tant qu'administrateur
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Chemin d'accès invalide
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Ajout
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml
new file mode 100644
index 000000000..8d227b79e
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Cancella
+ Modifica
+ Aggiungi
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Successo
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml
index 3b2d8f20b..b23079e9a 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml
@@ -1,38 +1,60 @@
-
-
-
- Delete
- Edit
- Add
- Location
- Index file suffixes
- Reindex
- Indexing
- Index Start Menu
- Index Registry
- Suffixes
- Max Depth
-
- Directory:
- Browse
- File Suffixes:
- Maximum Search Depth (-1 is unlimited):
-
- Please select a program source
- Are your sure to delete {0}?
-
- Update
- Flow Launcher will only index files that end with following suffixes:
- (Each suffix should split by ;)
- Sucessfully update file suffixes
- File suffixes can't be empty
-
- Run As Administrator
- Open containing folder
-
- Program
- Search programs in Flow Launcher
-
-
\ No newline at end of file
+
+
+
+
+ 削除
+ 編
+ 追
+ Name
+ 有効
+ Disable
+ Location
+ All Programs
+ Index file suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory:
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are your sure to delete {0}?
+
+ Update
+ Flow Launcher will only index files that end with following suffixes:
+ Sucessfully update file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ 成功しまし
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml
new file mode 100644
index 000000000..ee59d0221
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ 삭제
+ 편집
+ 추
+ Name
+ 활성화
+ 비활성화
+ 위치
+ 모든 프로그램
+ 파일 확장자
+ 재색인
+ 색인 중
+ 시작메뉴 색인
+ 활성화시 Flow가 시작 메뉴의 프로그램을 로드합니다.
+ 레지스트리 색인
+ 활성화시 Flow가 레지스트리로부터 프로그램을 로드합니다
+ 앱 경로 숨김
+ UWP나 Lnk 같이 실행 가능한 프로그램인 경우 경로를 표시하지 않습니다
+ 프로그램 설명 검색
+ 비활성화시 프로그램 설명란에 적힌 내용을 Flow가 검색하지 않습니다
+ 확장자
+ 최대 깊이
+
+ 디렉토리
+ 찾아보기
+ 파일 확장자:
+ 최대 검색 깊이 (-1은 무한대):
+
+ 프로그램 검색 출처를 선택하세요
+ 선택하신 프로그램 출처를 삭제하시겠습니까?
+
+ 확인
+ Flow Launcher는 해당 확장자의 파일만 색인합니다. 각 확장자는 ';'로 구분됩니다.
+ 파일 확장자를 성공적으로 업데이트 했습니다
+ 파일 확장자는 비울 수 없습니다
+
+ 다른 유저 권한으로 실행
+ 관리자 권한으로 실행
+ 포함된 폴더 열기
+ 이 프로그램 표시 비활성화
+
+ 프로그램
+ Flow Launcher에서 프로그램 검색
+
+ 잘못된 경로
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ 성공
+ 쿼리 결과에 이 프로그램이 표시되지 않도록 비활성화 했습니다.
+ 이 앱은 관리자로 실행되지 않습니다
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml
new file mode 100644
index 000000000..fa5ab1303
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Delete
+ Edit
+ Add
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Success
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml
new file mode 100644
index 000000000..c8581fc2d
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Verwijder
+ Bewerken
+ Toevoegen
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Succesvol
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml
index b6244ec12..3fc9abfda 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml
@@ -1,37 +1,60 @@
-
-
-
- Usuń
- Edytuj
- Dodaj
- Lokalizacja
- Rozszerzenia indeksowanych plików
- Re-indeksuj
- Indeksowanie
- Indeksuj Menu Start
- Indeksuj rejestr
- Rozszerzenia
- Maksymalna głębokość
-
- Katalog:
- Przeglądaj
- Rozszerzenia plików:
- Maksymalna głębokość wyszukiwania (-1 to nieograniczona):
-
- Musisz wybrać katalog programu
-
- Aktualizuj
- Flow Launcher będzie indeksował tylko te pliki z podanymi rozszerzeniami:
- (Każde rozszerzenie musi być oddzielone ;)
- Pomyślnie zaktualizowano rozszerzenia plików
- Musisz podać rozszerzenia plików
-
- Uruchom jako administrator
- Otwórz folder zawierający
-
- Programy
- Szukaj i uruchamiaj programy z poziomu Flow Launchera
-
-
\ No newline at end of file
+
+
+
+
+ Usuń
+ Edytuj
+ Dodaj
+ Name
+ Aktywne
+ Disable
+ Lokalizacja
+ All Programs
+ Rozszerzenia indeksowanych plików
+ Re-indeksuj
+ Indeksowanie
+ Indeksuj Menu Start
+ When enabled, Flow will load programs from the start menu
+ Indeksuj rejestr
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Rozszerzenia
+ Maksymalna głębokość
+
+ Katalog:
+ Przeglądaj
+ Rozszerzenia plików:
+ Maksymalna głębokość wyszukiwania (-1 to nieograniczona):
+
+ Musisz wybrać katalog programu
+ Are you sure you want to delete the selected program sources?
+
+ Aktualizuj
+ Flow Launcher będzie indeksował tylko te pliki z podanymi rozszerzeniami:
+ Pomyślnie zaktualizowano rozszerzenia plików
+ Musisz podać rozszerzenia plików
+
+ Run As Different User
+ Uruchom jako administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Programy
+ Szukaj i uruchamiaj programy z poziomu Flow Launchera
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Sukces
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml
new file mode 100644
index 000000000..fefa5e823
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Apagar
+ Editar
+ Adicionar
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Sucesso
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml
index 9ff644472..22e063ea4 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml
@@ -5,6 +5,8 @@
EliminarEditarAdicionar
+ Nome
+ AtivarDesativarLocalizaçãoTodos os programas
@@ -16,7 +18,7 @@
Indexar registoSe ativada, Flow Launcher irá carregar os programas do registoOcultar caminho da aplicação
- Para ficheiros executásseis, tais como UWP ou lnk, ocultar o caminho do ficheiro
+ Para ficheiros executáveis, tais como UWP ou lnk, ocultar o caminho do ficheiroPesquisar na descrição dos programasSe ativada, Flow Launcher irá analisar também a descrição dos programasSufixos
@@ -31,7 +33,7 @@
Tem a certeza de que deseja remover as origens selecionadas?OK
- Flow Launcher apena irá indexar os ficheiros que possuam os seguintes sufixos (separe cada sufixo com ';')
+ Flow Launcher apenas irá indexar os ficheiros com os seguintes sufixos (separe cada sufixo com ';')Sufixos de ficheiros indexados com sucessoNão pode indicar sufixos vazios
@@ -40,7 +42,7 @@
Abrir pasta de destinoDesativar exibição deste programa
- Programa
+ ProgramasPesquisa de programas com o Flow LauncherCaminho inválido
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml
new file mode 100644
index 000000000..ac32dd726
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Удалить
+ Редактировать
+ Добавить
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Успешно
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml
index 6091c3f5c..6742d3bc8 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml
@@ -5,6 +5,8 @@
OdstrániťUpraviťPridať
+ Názov
+ PovoliťZakázaťUmiestnenieVšetky programy
@@ -18,11 +20,11 @@
Skryť cestu k aplikáciiPre spustiteľné súbory ako sú UWP alebo odkazy nezobrazovať cestu k súboromPovoliť popis programu
- Zakázaním tejto funkcie sa tiež zastaví vyhľadávanie popisu programu cez Flow
+ Zakázaním tejto funkcie sa tiež zastaví vyhľadávanie v popise programu cez FlowPríponyMax. hĺbka
- Priečinok:
+ PriečinokPrehliadaťPrípony súboru:Max. hĺbka hľadania (-1 je neobm.):
@@ -31,13 +33,13 @@
Naozaj chcete odstrániť vybrané zdroje programov?Aktualizovať
- Flow Launcher bude indexovať iba súbory s nasledujúcimi príponami:
+ Flow Launcher bude indexovať iba súbory s nasledujúcimi príponami. (Jednotlivé prípony oddeľujte znakom ";")Prípony boli úspešne aktualizované
- Súbor s príponami nemôže byť prázdny
+ Pole s príponami nemôže byť prázdneSpustiť ako iný používateľSpustiť ako správca
- Otvoriť umiestnenie súboru
+ Otvoriť umiestnenie priečinkaZakázať zobrazovanie tohto programuProgram
@@ -47,7 +49,7 @@
Vlastný správca súborovArg.
- Môžete si prispôsobiť otváranie umiestnenia priečinka vložením Premenných prostredia, ktoré chcete použiť. Dostupnosť premenných prostredia môžete vyskúšať cez príkazový riadok.
+ Môžete si prispôsobiť otváranie umiestnenia priečinka vložením premenných prostredia, ktoré chcete použiť. Dostupnosť premenných prostredia môžete vyskúšať cez príkazový riadok.Zadajte argumenty, ktoré chcete pridať pre správcu súborov. %s pre rodičovský priečinok, %f pre celú cestu (funguje iba pre win32). Pre podrobnosti pozrite webovú stránku správcu súborov.
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml
new file mode 100644
index 000000000..0e344b7f3
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Obriši
+ Izmeni
+ Dodaj
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Uspešno
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml
index 05bd8a3d8..8fed13874 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml
@@ -1,39 +1,60 @@
-
-
-
- Sil
- Düzenle
- Ekle
- Konum
- İndekslenecek Uzantılar
- Yeniden İndeksle
- İndeksleniyor
- Başlat Menüsünü İndeksle
- Registry'i İndeksle
- Uzantılar
- Derinlik
-
- Dizin:
- Gözat
- Dosya Uzantıları:
- Maksimum Arama Derinliği (Limitsiz için -1):
-
- İşlem yapmak istediğiniz klasörü seçin.
-
- Güncelle
- Flow Launcher yalnızca aşağıdaki uzantılara sahip dosyaları indeksleyecektir:
- (Her uzantıyı ; işareti ile ayırın)
- Dosya uzantıları başarıyla güncellendi
- Dosya uzantıları boş olamaz
-
- Yönetici Olarak Çalıştır
- İçeren Klasörü Aç
-
- Program
- Programları Flow Launcher'tan arayın
-
- Geçersiz Konum
-
-
\ No newline at end of file
+
+
+
+
+ Sil
+ Düzenle
+ Ekle
+ Name
+ Etkin
+ Disable
+ Konum
+ All Programs
+ İndekslenecek Uzantılar
+ Yeniden İndeksle
+ İndeksleniyor
+ Başlat Menüsünü İndeksle
+ When enabled, Flow will load programs from the start menu
+ Registry'i İndeksle
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Uzantılar
+ Derinlik
+
+ Dizin:
+ Gözat
+ Dosya Uzantıları:
+ Maksimum Arama Derinliği (Limitsiz için -1):
+
+ İşlem yapmak istediğiniz klasörü seçin.
+ Are you sure you want to delete the selected program sources?
+
+ Güncelle
+ Flow Launcher yalnızca aşağıdaki uzantılara sahip dosyaları indeksleyecektir:
+ Dosya uzantıları başarıyla güncellendi
+ Dosya uzantıları boş olamaz
+
+ Run As Different User
+ Yönetici Olarak Çalıştır
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Programları Flow Launcher'tan arayın
+
+ Geçersiz Konum
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Başarılı
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml
new file mode 100644
index 000000000..a05fe6da9
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+ Видалити
+ Редагувати
+ Додати
+ Name
+ Enable
+ Disable
+ Location
+ All Programs
+ File Suffixes
+ Reindex
+ Indexing
+ Index Start Menu
+ When enabled, Flow will load programs from the start menu
+ Index Registry
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ Suffixes
+ Max Depth
+
+ Directory
+ Browse
+ File Suffixes:
+ Maximum Search Depth (-1 is unlimited):
+
+ Please select a program source
+ Are you sure you want to delete the selected program sources?
+
+ OK
+ Flow Launcher will only index files that end with the following suffixes. (Each suffix should split by ';' )
+ Successfully updated file suffixes
+ File suffixes can't be empty
+
+ Run As Different User
+ Run As Administrator
+ Open containing folder
+ Disable this program from displaying
+
+ Program
+ Search programs in Flow Launcher
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ Успішно
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml
index 8632abb68..0eea6a690 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml
@@ -1,54 +1,60 @@
-
-
-
- 删除
- 编辑
- 增加
- 停用
- 位置
- 所有程序
- 索引文件后缀
- 重新索引
- 索引中
- 索引开始菜单
- 索引注册表
- 启用程序描述
- 后缀
- 最大深度
-
- 目录
- 浏览
- 文件后缀
- 最大搜索深度(-1是无限的):
-
- 请先选择一项
- 您确定要删除选定的程序源吗?
-
- 更新
- Flow Launcher仅索引下列后缀的文件:
- (每个后缀以英文状态下的分号分隔)
- 成功更新索引文件后缀
- 文件后缀不能为空
-
- 以其他用户身份运行
- 以管理员身份运行
- 打开所属文件夹
- 禁止显示该程序
-
- 程序
- 在Flow Launcher中搜索程序
-
- 无效路径
-
- 自定义资源管理器
- 参数
- 您可以通过输入要使用的资源管理器的环境变量来自定义用于打开容器文件夹的资源管理器。 使用CMD来测试环境变量是否可用。
- 输入要为自定义资源管理器添加的自定义参数。 %s代表父目录,%f代表完整路径(仅适用于win32)。 检查资源管理器的网站以获取详细信息。
-
-
- 完成
- 成功禁用了该程序以使其无法显示在查询中
-
-
\ No newline at end of file
+
+
+
+
+ 删除
+ 编辑
+ 增加
+ 名称
+ 启用
+ 禁用
+ 位置
+ 所有程序
+ 索引文件后缀
+ 重新索引
+ 索引中
+ 索引开始菜单
+ 启用时,Flow 将从开始菜单加载程序
+ 索引注册表
+ 启用时,Flow 将从注册表中加载程序
+ 隐藏应用路径
+ 对于诸如UWP 或 lnk 等可执行文件,搜索时隐藏文件路径
+ 启用程序描述
+ 禁用它也会同时阻止 Flow 通过程序描述搜索
+ 后缀
+ 最大深度
+
+ 目录
+ 浏览
+ 文件后缀:
+ 最大搜索深度(-1 为无限制):
+
+ 请先选择一项
+ 您确定要删除选定的程序源吗?
+
+ 更新
+ Flow Launcher仅索引下列后缀的文件:
+ 成功更新索引文件后缀
+ 文件后缀不能为空
+
+ 以其他用户身份运行
+ 以管理员身份运行
+ 打开文件所在文件夹
+ 禁止显示该程序
+
+ 程序
+ 在 Flow Launcher 中搜索程序
+
+ 无效路径
+
+ 自定义资源管理器
+ 参数
+ 您可以通过输入要使用的资源管理器的环境变量来自定义用于打开容器文件夹的资源管理器。 使用CMD来测试环境变量是否可用。
+ 输入要为自定义资源管理器添加的自定义参数。 %s代表父目录,%f代表完整路径(仅适用于win32)。 检查资源管理器的网站以获取详细信息。
+
+
+ 成功
+ 成功禁用了该程序以使其无法显示在查询中
+ 此应用程序不能作为管理员运行
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml
index eb339649f..a858db1f6 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml
@@ -1,37 +1,60 @@
-
-
-
- 刪除
- 編輯
- 新增
- 路徑
- 索引副檔名清單
- 重新建立索引
- 正在建立索引
- 替開始選單建立索引
- 替登錄檔建立索引
- 副檔名
- 最大深度
-
- 目錄
- 瀏覽
- 副檔名
- 最大搜尋深度(-1是無限的):
-
- 請先選擇一項
-
- 更新
- Flow Launcher 僅索引下列副檔名的檔案:
- (每個副檔名以英文的分號分隔)
- 成功更新索引副檔名清單
- 副檔名不能為空
-
- 以系統管理員身分執行
- 開啟檔案位置
-
- 程式
- 在 Flow Launcher 中搜尋程式
-
-
+
+
+
+
+ 刪除
+ 編輯
+ 新增
+ Name
+ 啟
+ Disable
+ 路徑
+ All Programs
+ 索引副檔名清單
+ 重新建立索引
+ 正在建立索引
+ 替開始選單建立索引
+ When enabled, Flow will load programs from the start menu
+ 替登錄檔建立索引
+ When enabled, Flow will load programs from the registry
+ Hide app path
+ For executable files such as UWP or lnk, hide the file path from being visible
+ Search in Program Description
+ Disabling this will also stop Flow from searching via the program desciption
+ 副檔名
+ 最大深度
+
+ 目錄
+ 瀏覽
+ 副檔名
+ 最大搜尋深度(-1是無限的):
+
+ 請先選擇一項
+ Are you sure you want to delete the selected program sources?
+
+ 更新
+ Flow Launcher 僅索引下列副檔名的檔案:
+ 成功更新索引副檔名清單
+ 副檔名不能為空
+
+ Run As Different User
+ 以系統管理員身分執行
+ Open containing folder
+ Disable this program from displaying
+
+ 程式
+ 在 Flow Launcher 中搜尋程式
+
+ Invalid Path
+
+ Customized Explorer
+ Args
+ You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is avaliable.
+ Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.
+
+
+ 成
+ Successfully disabled this program from displaying in your query
+ This app is not intended to be run as administrator
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml b/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml
index 5af43867b..470e9e2e7 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml
@@ -80,19 +80,20 @@
+ Content="{DynamicResource flowlauncher_plugin_program_update}"
+ Style="{DynamicResource AccentButtonStyle}" />
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml
index 87fd89ca9..f07879465 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml
@@ -22,7 +22,7 @@
-
+
-
+
diff --git a/Plugins/Flow.Launcher.Plugin.Program/plugin.json b/Plugins/Flow.Launcher.Plugin.Program/plugin.json
index d8e659e42..993b2adba 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.Program/plugin.json
@@ -4,7 +4,7 @@
"Name": "Program",
"Description": "Search programs in Flow.Launcher",
"Author": "qianlifeng",
- "Version": "1.8.0",
+ "Version": "1.8.2",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Program.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Flow.Launcher.Plugin.Shell.csproj b/Plugins/Flow.Launcher.Plugin.Shell/Flow.Launcher.Plugin.Shell.csproj
index 03b2d5a40..5ebfd6d54 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Flow.Launcher.Plugin.Shell.csproj
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Flow.Launcher.Plugin.Shell.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windows{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}PropertiesFlow.Launcher.Plugin.Shell
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Images/admin.png b/Plugins/Flow.Launcher.Plugin.Shell/Images/admin.png
index bc3fe8778..284e1d371 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Shell/Images/admin.png and b/Plugins/Flow.Launcher.Plugin.Shell/Images/admin.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png b/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png
index cc3bf4ea8..bf12c186e 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png and b/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Images/shell.png b/Plugins/Flow.Launcher.Plugin.Shell/Images/shell.png
index 686583653..0ec0122d4 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Shell/Images/shell.png and b/Plugins/Flow.Launcher.Plugin.Shell/Images/shell.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Images/user.png b/Plugins/Flow.Launcher.Plugin.Shell/Images/user.png
index 2d45c1ee9..03402d8e8 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Shell/Images/user.png and b/Plugins/Flow.Launcher.Plugin.Shell/Images/user.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml
index 83bf031f9..d305a348c 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml
@@ -1,12 +1,15 @@
-
-
- Ersetzt Win+R
- Schließe die Kommandozeilte nicht nachdem der Befehl ausgeführt wurde
- Kommandozeile
- Bereitstellung der Kommandozeile in Flow Launcher. Befehle müssem mit > starten
- Dieser Befehl wurde {0} mal ausgeführt
- Führe Befehle mittels Kommandozeile aus
- Als Administrator ausführen
-
\ No newline at end of file
+
+
+
+ Ersetzt Win+R
+ Schließe die Kommandozeilte nicht nachdem der Befehl ausgeführt wurde
+ Always run as administrator
+ Run as different user
+ Kommandozeile
+ Bereitstellung der Kommandozeile in Flow Launcher. Befehle müssem mit > starten
+ Dieser Befehl wurde {0} mal ausgeführt
+ Führe Befehle mittels Kommandozeile aus
+ Als Administrator ausführen
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml
new file mode 100644
index 000000000..7887efa8f
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Reemplazar Win+R
+ No cerrar Símbolo del Sistema tras ejecutar el comando
+ Siempre ejecutar como administrador
+ Ejecutar como otro usuario
+ Shell
+ Permite ejecutar comandos del sistema desde Flow Launcher. Los comandos deben comenzar con >
+ este comando ha sido ejecutado {0} veces
+ ejecutar comando a través del shell de comandos
+ Ejecutar como administrador
+ Copiar comando
+ Sólo mostrar el número de comandos más usados:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml
new file mode 100644
index 000000000..e9de9eebf
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Reemplazar Win+R
+ No cerrar la terminal después de la ejecución del comando
+ Ejecutar siempre como administrador
+ Ejecutar como usuario diferente
+ Terminal
+ Permite ejecutar comandos del sistema desde Flow Launcher. Los comandos deben comenzar con >
+ este comando ha sido ejecutado {0} veces
+ ejecutar comando en la terminal
+ Ejecutar como administrador
+ Copiar el comando
+ Mostrar sólo el número de comandos más usados:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml
new file mode 100644
index 000000000..f1d728620
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Remplacer Win+R
+ Ne pas fermer l'invite de commandes après l'execution de la commande
+ Toujours exécuter en tant qu'administrateur
+ Exécuter en tant qu'utilisateur différent
+ Shell
+ Permet d'exécuter des commandes système à partir de Flow Launcher. Les commandes doivent commencer par >
+ cette commande a été exécutée {0} fois
+ exécuter la commande via le shell de commande
+ Exécuter en tant qu'administrateur
+ Copier la commande
+ Afficher uniquement le nombre de commandes les plus utilisées :
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml
index d0610baa1..9e4c5de36 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml
@@ -1,12 +1,15 @@
-
-
- Zastąp Win+R
- Nie zamykaj wiersza poleceń po wykonaniu polecenia
- Wiersz poleceń
- Pozwala wykonywać komend wiersza polecania z Flow Launchera. Polecania zaczynają się od >
- to polecenie zostało wykonane {0} razy
- wykonaj to polecenie w wierszu poleceń
- Uruchom jako administrator
-
\ No newline at end of file
+
+
+
+ Zastąp Win+R
+ Nie zamykaj wiersza poleceń po wykonaniu polecenia
+ Always run as administrator
+ Run as different user
+ Wiersz poleceń
+ Pozwala wykonywać komend wiersza polecania z Flow Launchera. Polecania zaczynają się od >
+ to polecenie zostało wykonane {0} razy
+ wykonaj to polecenie w wierszu poleceń
+ Uruchom jako administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml
index d69c37192..fc0348e2e 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml
@@ -11,5 +11,5 @@
executar comando através de uma consolaExecutar como administradorCopiar comando
- Mostrar apenas o número dos comandos mais usados:
+ Mostrar este número dos comandos mais usados:
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml
index d564737bc..8e65a88a4 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml
@@ -8,7 +8,7 @@
ShellUmožňuje spúšťať systémové príkazy z Flow Launcheru. Príkazy začínajú znakom >tento príkaz bol vykonaný {0} krát
- vykonať príkaz cez command shell
+ vykonať príkaz cez príkazový riadokSpustiť ako správcaKopírovať príkazZobraziť iba počet najpoužívanejších príkazov:
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml
index acbddae8a..5e178b9dc 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml
@@ -1,12 +1,15 @@
-
-
- Win+R kısayolunu kullan
- Çalıştırma sona erdikten sonra komut istemini kapatma
- Kabuk
- Flow Launcher üzerinden komut istemini kullanmanızı sağlar. Komutlar > işareti ile başlamalıdır.
- Bu komut {0} kez çalıştırıldı
- Komut isteminde çalıştır
- Yönetici Olarak Çalıştır
-
\ No newline at end of file
+
+
+
+ Win+R kısayolunu kullan
+ Çalıştırma sona erdikten sonra komut istemini kapatma
+ Always run as administrator
+ Run as different user
+ Kabuk
+ Flow Launcher üzerinden komut istemini kullanmanızı sağlar. Komutlar > işareti ile başlamalıdır.
+ Bu komut {0} kez çalıştırıldı
+ Komut isteminde çalıştır
+ Yönetici Olarak Çalıştır
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml
new file mode 100644
index 000000000..87eb96609
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml
@@ -0,0 +1,15 @@
+
+
+
+ Replace Win+R
+ Do not close Command Prompt after command execution
+ Always run as administrator
+ Run as different user
+ Shell
+ Allows to execute system commands from Flow Launcher. Commands should start with >
+ this command has been executed {0} times
+ execute command through command shell
+ Run As Administrator
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml
index 076c93df7..dc29de71e 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml
@@ -6,10 +6,10 @@
始终以管理员身份运行以其他用户身份运行命令行
- 提供从Flow Launcher中执行命令行的能力,命令应该以 > 开头
+ 提供从 Flow Launcher 中执行命令行的能力,命令应该以 > 开头此命令已经被执行了 {0} 次执行此命令以管理员身份运行复制命令
- 显示最常用的命令个数
+ 显示最常用的命令个数:
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-tw.xaml
index 8c052edf4..0890e990f 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-tw.xaml
@@ -1,12 +1,15 @@
-
-
- 取代 Win+R
- 執行後不關閉命令提示字元視窗
- 命令提示字元
- 提供從 Flow Launcher 中執行命令提示字元的功能,指令應該以>開頭
- 此指令已執行了 {0} 次
- 執行指令
- 以系統管理員身分執行
-
+
+
+
+ 取代 Win+R
+ 執行後不關閉命令提示字元視窗
+ Always run as administrator
+ Run as different user
+ 命令提示字元
+ 提供從 Flow Launcher 中執行命令提示字元的功能,指令應該以>開頭
+ 此指令已執行了 {0} 次
+ 執行指令
+ 以系統管理員身分執行
+ Copy the command
+ Only show number of most used commands:
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Main.cs b/Plugins/Flow.Launcher.Plugin.Shell/Main.cs
index 0c539015e..dd8a05b0f 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Main.cs
@@ -61,24 +61,26 @@ namespace Flow.Launcher.Plugin.Shell
if (basedir != null)
{
- var autocomplete = Directory.GetFileSystemEntries(basedir).
- Select(o => dir + Path.GetFileName(o)).
- Where(o => o.StartsWith(cmd, StringComparison.OrdinalIgnoreCase) &&
- !results.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase)) &&
- !results.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase))).ToList();
+ var autocomplete =
+ Directory.GetFileSystemEntries(basedir)
+ .Select(o => dir + Path.GetFileName(o))
+ .Where(o => o.StartsWith(cmd, StringComparison.OrdinalIgnoreCase) &&
+ !results.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase)) &&
+ !results.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase))).ToList();
+
autocomplete.Sort();
+
results.AddRange(autocomplete.ConvertAll(m => new Result
{
Title = m,
IcoPath = Image,
Action = c =>
{
- var runAsAdministrator = (
+ var runAsAdministrator =
c.SpecialKeyState.CtrlPressed &&
c.SpecialKeyState.ShiftPressed &&
!c.SpecialKeyState.AltPressed &&
- !c.SpecialKeyState.WinPressed
- );
+ !c.SpecialKeyState.WinPressed;
Execute(Process.Start, PrepareProcessStartInfo(m, runAsAdministrator));
return true;
@@ -113,12 +115,11 @@ namespace Flow.Launcher.Plugin.Shell
IcoPath = Image,
Action = c =>
{
- var runAsAdministrator = (
+ var runAsAdministrator =
c.SpecialKeyState.CtrlPressed &&
c.SpecialKeyState.ShiftPressed &&
!c.SpecialKeyState.AltPressed &&
- !c.SpecialKeyState.WinPressed
- );
+ !c.SpecialKeyState.WinPressed;
Execute(Process.Start, PrepareProcessStartInfo(m.Key, runAsAdministrator));
return true;
@@ -143,12 +144,11 @@ namespace Flow.Launcher.Plugin.Shell
IcoPath = Image,
Action = c =>
{
- var runAsAdministrator = (
+ var runAsAdministrator =
c.SpecialKeyState.CtrlPressed &&
c.SpecialKeyState.ShiftPressed &&
!c.SpecialKeyState.AltPressed &&
- !c.SpecialKeyState.WinPressed
- );
+ !c.SpecialKeyState.WinPressed;
Execute(Process.Start, PrepareProcessStartInfo(cmd, runAsAdministrator));
return true;
@@ -168,12 +168,11 @@ namespace Flow.Launcher.Plugin.Shell
IcoPath = Image,
Action = c =>
{
- var runAsAdministrator = (
+ var runAsAdministrator =
c.SpecialKeyState.CtrlPressed &&
c.SpecialKeyState.ShiftPressed &&
!c.SpecialKeyState.AltPressed &&
- !c.SpecialKeyState.WinPressed
- );
+ !c.SpecialKeyState.WinPressed;
Execute(Process.Start, PrepareProcessStartInfo(m.Key, runAsAdministrator));
return true;
@@ -203,8 +202,21 @@ namespace Flow.Launcher.Plugin.Shell
case Shell.Cmd:
{
info.FileName = "cmd.exe";
- info.ArgumentList.Add(_settings.LeaveShellOpen ? "/k" : "/c");
- info.ArgumentList.Add(command);
+ info.Arguments = $"{(_settings.LeaveShellOpen ? "/k" : "/c")} {command}";
+
+ //// Use info.Arguments instead of info.ArgumentList to enable users better control over the arguments they are writing.
+ //// Previous code using ArgumentList, commands needed to be seperated correctly:
+ //// Incorrect:
+ // info.ArgumentList.Add(_settings.LeaveShellOpen ? "/k" : "/c");
+ // info.ArgumentList.Add(command); //<== info.ArgumentList.Add("mkdir \"c:\\test new\"");
+
+ //// Correct version should be:
+ //info.ArgumentList.Add(_settings.LeaveShellOpen ? "/k" : "/c");
+ //info.ArgumentList.Add("mkdir");
+ //info.ArgumentList.Add(@"c:\test new");
+
+ //https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.processstartinfo.argumentlist?view=net-6.0#remarks
+
break;
}
@@ -317,7 +329,7 @@ namespace Flow.Launcher.Plugin.Shell
bool API_GlobalKeyboardEvent(int keyevent, int vkcode, SpecialKeyState state)
{
- if (_settings.ReplaceWinR)
+ if (!context.CurrentPluginMetadata.Disabled && _settings.ReplaceWinR)
{
if (keyevent == (int)KeyEvent.WM_KEYDOWN && vkcode == (int)Keys.R && state.WinPressed)
{
@@ -366,7 +378,7 @@ namespace Flow.Launcher.Plugin.Shell
Title = context.API.GetTranslation("flowlauncher_plugin_cmd_run_as_different_user"),
Action = c =>
{
- Task.Run(() =>Execute(ShellCommand.RunAsDifferentUser, PrepareProcessStartInfo(selectedResult.Title)));
+ Task.Run(() => Execute(ShellCommand.RunAsDifferentUser, PrepareProcessStartInfo(selectedResult.Title)));
return true;
},
IcoPath = "Images/user.png"
@@ -396,4 +408,4 @@ namespace Flow.Launcher.Plugin.Shell
return resultlist;
}
}
-}
+}
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs b/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs
index 042fd0dd3..a3cac1cb8 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs
+++ b/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs
@@ -6,7 +6,7 @@ namespace Flow.Launcher.Plugin.Shell
{
public Shell Shell { get; set; } = Shell.Cmd;
- public bool ReplaceWinR { get; set; } = true;
+ public bool ReplaceWinR { get; set; } = false;
public bool LeaveShellOpen { get; set; }
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml b/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml
index d9b1942f1..39fb21c59 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml
@@ -1,28 +1,57 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
+
+
+
+ CMDPowerShellRunCommand
-
-
+
+
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Shell/plugin.json b/Plugins/Flow.Launcher.Plugin.Shell/plugin.json
index 2cfcbca2e..357e73f8c 100644
--- a/Plugins/Flow.Launcher.Plugin.Shell/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.Shell/plugin.json
@@ -4,9 +4,9 @@
"Name": "Shell",
"Description": "Provide executing commands from Flow Launcher",
"Author": "qianlifeng",
- "Version": "1.4.7",
+ "Version": "1.4.10",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Shell.dll",
"IcoPath": "Images\\shell.png"
-}
+}
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Flow.Launcher.Plugin.Sys.csproj b/Plugins/Flow.Launcher.Plugin.Sys/Flow.Launcher.Plugin.Sys.csproj
index 01827370a..55ab2780e 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Flow.Launcher.Plugin.Sys.csproj
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Flow.Launcher.Plugin.Sys.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windows{0B9DE348-9361-4940-ADB6-F5953BFFCCEC}PropertiesFlow.Launcher.Plugin.Sys
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/checkupdate.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/checkupdate.png
index 955f6fdbb..0eb06af18 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/checkupdate.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/checkupdate.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/close.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/close.png
index 17c4363ad..2fb501a40 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/close.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/close.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/hibernate.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/hibernate.png
index 703204fa7..668048e19 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/hibernate.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/hibernate.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/lock.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/lock.png
index 4aef7007b..daefde98e 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/lock.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/lock.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/logoff.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/logoff.png
index 0d1378830..4973b66d8 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/logoff.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/logoff.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/recyclebin.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/recyclebin.png
index 2cc3b0116..878a02189 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/recyclebin.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/recyclebin.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/restart.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/restart.png
index aaa2ee711..ffdb6745e 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/restart.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/restart.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/restart_advanced.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/restart_advanced.png
index feabbefa1..09257d2c0 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/restart_advanced.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/restart_advanced.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/shutdown.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/shutdown.png
index 7da7a528d..50d157efd 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/shutdown.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/shutdown.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/sleep.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/sleep.png
index 42426286d..3ca80f9fa 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/sleep.png and b/Plugins/Flow.Launcher.Plugin.Sys/Images/sleep.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/da.xaml
new file mode 100644
index 000000000..1258dfec7
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/da.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Fortsæt
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/de.xaml
index fce9c96e1..ee637009b 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/de.xaml
@@ -1,21 +1,37 @@
-
-
- Befehl
- Beschreibung
-
- Computer herunterfahren
- Computer neu starten
- Abmelden
- Computer sperren
- Flow Launcher schließen
- Flow Launcher neu starten
- Anwendung beschleunigen
- Computer in Schlafmodus versetzen
- Papierkorb leeren
-
- Systembefehle
- Stellt Systemrelevante Befehle bereit. z.B. herunterfahren, sperren, Einstellungen, usw.
-
-
\ No newline at end of file
+
+
+
+
+ Befehl
+ Beschreibung
+
+ Computer herunterfahren
+ Computer neu starten
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Abmelden
+ Computer sperren
+ Flow Launcher schließen
+ Flow Launcher neu starten
+ Anwendung beschleunigen
+ Computer in Schlafmodus versetzen
+ Papierkorb leeren
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Erfolgreich
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ Systembefehle
+ Stellt Systemrelevante Befehle bereit. z.B. herunterfahren, sperren, Einstellungen, usw.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/es-419.xaml
new file mode 100644
index 000000000..b110046d1
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/es-419.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Success
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/es.xaml
new file mode 100644
index 000000000..92b4274e7
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/es.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Comando
+ Descripción
+
+ Apagar el equipo
+ Reiniciar el equipo
+ Reiniciar el equipo con opciones avanzadas de arranque para el modo seguro y de depuración, entre otras opciones
+ Cerrar sesión
+ Bloquear este equipo
+ Cerrar Flow Launcher
+ Reiniciar Flow Launcher
+ Configurar esta app
+ Suspender el equipo
+ Vaciar papelera de reciclaje
+ Hibernar el equipo
+ Guardar todos los ajustes de Flow Launcher
+ Recarga los datos del complemento con nuevo contenido
+ Abrir ubicación de los logs de Flow Launcher
+ Buscar actualizaciones de Flow Launcher
+ Visita la documentación de Flow Launcher para más ayuda y consejos de uso
+ Abrir la ubicación donde se almacena la configuración de Flow Launcher
+
+
+ Éxito
+ Se guardaron todos los ajustes de Flow Launcher
+ Se recargaron todos los datos del complemento
+ ¿Está seguro de que desea apagar el equipo?
+ ¿Está seguro de que desea reiniciar el equipo?
+ ¿Está seguro de que desea reiniciar el equipo con opciones de arranque avanzadas?
+
+ Comandos del sistema
+ Ofrece comandos del sistema. Por ejemplo, apagar, bloquear, configuración, etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/fr.xaml
new file mode 100644
index 000000000..0317a04a0
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/fr.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Ajout
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml
new file mode 100644
index 000000000..9a5201767
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Successo
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ja.xaml
index 96cf1ff13..cd05fa34b 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ja.xaml
@@ -1,21 +1,37 @@
-
-
- コマンド
- 説明
-
- コンピュータをシャットダウンする
- コンピュータを再起動する
- ログオフ
- このコンピュータをロックする
- Flow Launcherを終了する
- Flow Launcherを再起動する
- このアプリの設定
- スリープ
- ゴミ箱を空にする
-
- システムコマンド
- システム関連のコマンドを提供します。例:シャットダウン、ロック、設定など
-
-
\ No newline at end of file
+
+
+
+
+ コマンド
+ 説明
+
+ コンピュータをシャットダウンする
+ コンピュータを再起動する
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ ログオフ
+ このコンピュータをロックする
+ Flow Launcherを終了する
+ Flow Launcherを再起動する
+ このアプリの設定
+ スリープ
+ ゴミ箱を空にする
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ 成功しまし
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ システムコマンド
+ システム関連のコマンドを提供します。例:シャットダウン、ロック、設定など
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/nb.xaml
new file mode 100644
index 000000000..b110046d1
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/nb.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Success
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/nl.xaml
new file mode 100644
index 000000000..8b5b091d0
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/nl.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Succesvol
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/pl.xaml
index 0b2922c47..f9bece07e 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/pl.xaml
@@ -1,21 +1,37 @@
-
-
- Komenda
- Opis
-
- Wyłącz komputer
- Uruchom ponownie komputer
- Wyloguj się
- Zablokuj ten komputer
- Wyłącz Flow Launchera
- Uruchom ponownie Flow Launchera
- Dostosuj ustawienia
- Przełącz komputer w tryb uśpienia
- Opróżnij kosz
-
- Komendy systemowe
- Wykonywanie komend systemowych, np. wyłącz, zablokuj komputer, otwórz ustawienia itp.
-
-
\ No newline at end of file
+
+
+
+
+ Komenda
+ Opis
+
+ Wyłącz komputer
+ Uruchom ponownie komputer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Wyloguj się
+ Zablokuj ten komputer
+ Wyłącz Flow Launchera
+ Uruchom ponownie Flow Launchera
+ Dostosuj ustawienia
+ Przełącz komputer w tryb uśpienia
+ Opróżnij kosz
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Sukces
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ Komendy systemowe
+ Wykonywanie komend systemowych, np. wyłącz, zablokuj komputer, otwórz ustawienia itp.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-br.xaml
new file mode 100644
index 000000000..7207e860f
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-br.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Sucesso
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-pt.xaml
index 94713bd4a..9d27b6fec 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/pt-pt.xaml
@@ -5,17 +5,17 @@
ComandoDescrição
- Desligar
- Reiniciar
- Reinicia o computador com as opções de arranque para os modos de segurança e de depuração assim como outras opções
- Sair
- Bloquear
+ Desligar computador
+ Reiniciar computador
+ Reinicia o computador com as opções avançadas de arranque para os modos de segurança e de depuração
+ Sair da sessão
+ Bloquear computadorFechar Flow LauncherReiniciar Flow LauncherAjustar esta aplicação
- Suspender
+ Suspender computadorEsvaziar reciclagem
- Hibernar
+ Hibernar computadorGuardar definições do Flow LauncherRecarrega os dados do plugin com o novo conteúdoAbrir localização dos registos do Flow Launcher
@@ -25,7 +25,7 @@
Sucesso
- Todas as definições guardadas
+ Definições guardadas com sucessoRecarregar todos os dados aplicáveis ao pluginTem certeza de que deseja desligar o computador?Tem a certeza que deseja reiniciar o computador?
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ru.xaml
new file mode 100644
index 000000000..b193b5940
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ru.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Успешно
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/sk.xaml
index ce8b4f487..8fb0b1f6a 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/sk.xaml
@@ -17,7 +17,7 @@
Vysypať kôšHibernovať počítačUložiť všetky nastavenia Flow Launchera
- Aktualizovať všetky dáta pluginov od spustenia Flow Launchera. Pluginy musia túto funkciu podporovať.
+ Aktualizovať všetky nové dáta pluginovOtvoriť umiestnenie denníka Flow LauncheraSkontrolovať aktualizácie Flow LauncheraV dokumentácii k aplikácii Flow Launcher nájdete ďalšiu pomoc a tipy na používanie
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/sr.xaml
new file mode 100644
index 000000000..00636d0f9
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/sr.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Uspešno
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/tr.xaml
index ba7e8c162..479735d06 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/tr.xaml
@@ -1,32 +1,37 @@
-
-
-
- Komut
- Açıklama
-
- Bilgisayarı Kapat
- Yeniden Başlat
- Oturumu Kapat
- Bilgisayarı Kilitle
- Flow Launcher'u Kapat
- Flow Launcher'u Yeniden Başlat
- Flow Launcher Ayarlarını Aç
- Bilgisayarı Uyku Moduna Al
- Geri Dönüşüm Kutusunu Boşalt
- Bilgisayarı Askıya Al
- Tüm Flow Launcher Ayarlarını Kaydet
- Eklentilerin verilerini Flow Launcher'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir.
-
-
- Başarılı
- Tüm Flow Launcher ayarları kaydedildi.
- Bilgisayarı kapatmak istediğinize emin misiniz?
- Bilgisayarı yeniden başlatmak istediğinize emin misiniz?
-
-
- Sistem Komutları
- Sistem ile ilgili komutlara erişim sağlar. ör. shutdown, lock, settings vb.
-
-
\ No newline at end of file
+
+
+
+
+ Komut
+ Açıklama
+
+ Bilgisayarı Kapat
+ Yeniden Başlat
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Oturumu Kapat
+ Bilgisayarı Kilitle
+ Flow Launcher'u Kapat
+ Flow Launcher'u Yeniden Başlat
+ Flow Launcher Ayarlarını Aç
+ Bilgisayarı Uyku Moduna Al
+ Geri Dönüşüm Kutusunu Boşalt
+ Bilgisayarı Askıya Al
+ Tüm Flow Launcher Ayarlarını Kaydet
+ Eklentilerin verilerini Flow Launcher'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir.
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Başarılı
+ Tüm Flow Launcher ayarları kaydedildi.
+ Reloaded all applicable plugin data
+ Bilgisayarı kapatmak istediğinize emin misiniz?
+ Bilgisayarı yeniden başlatmak istediğinize emin misiniz?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ Sistem Komutları
+ Sistem ile ilgili komutlara erişim sağlar. ör. shutdown, lock, settings vb.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/uk-UA.xaml
new file mode 100644
index 000000000..a6b96a7ef
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/uk-UA.xaml
@@ -0,0 +1,37 @@
+
+
+
+
+ Command
+ Description
+
+ Shutdown Computer
+ Restart Computer
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ Log off
+ Lock this computer
+ Close Flow Launcher
+ Restart Flow Launcher
+ Tweak this app
+ Put computer to sleep
+ Empty recycle bin
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ Успішно
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ System Commands
+ Provides System related commands. e.g. shutdown, lock, settings etc.
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-cn.xaml
index 7444048f6..4c3119215 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-cn.xaml
@@ -1,36 +1,37 @@
-
-
-
- 命令
- 描述
-
- 关闭电脑
- 重启这台电脑
- 注销
- 锁定这台电脑
- 退出Flow Launcher
- 重启Flow Launcher
- 设置
- 休眠这台电脑
- 清空回收站
- 休眠计算机
- 保存所有Flow Launcher设置
- 用新内容刷新插件数据
- 打开Flow Launcher的日志目录
- 检查新的Flow Launcher更新
- 访问Flow Launcher的文档以获取更多帮助以及使用技巧
- 打开存储Flow Launcher设置的位置
-
-
- 成功
- 所有Flow Launcher设置已保存
- 重新加载了所有插件数据
- 您确定要关闭计算机吗?
- 您确定要重新启动计算机吗?
-
- 系统命令
- 系统系统相关的命令。例如,关机,锁定,设置等
-
-
\ No newline at end of file
+
+
+
+
+ 命令
+ 描述
+
+ 关闭电脑
+ 重启这台电脑
+ 以高级启动选项重启计算机,用于安全和调试模式以及其他选项
+ 注销
+ 锁定这台电脑
+ 退出 Flow Launcher
+ 重启 Flow Launcher
+ 设置
+ 休眠这台电脑
+ 清空回收站
+ 休眠计算机
+ 保存所有 Flow Launcher 设置
+ 用新内容刷新插件数据
+ 打开 Flow Launcher 的日志目录
+ 检查新的 Flow Launcher 更新
+ 访问 Flow Launcher 的文档以获取更多帮助以及使用技巧
+ 打开存储 Flow Launcher 设置的位置
+
+
+ 成功
+ 所有 Flow Launcher 设置已保存
+ 重新加载了所有插件数据
+ 您确定要关机吗?
+ 您确定要重启吗
+ 您确定要以高级启动选项重启计算机吗?
+
+ 系统命令
+ 系统系统相关的命令。例如,关机,锁定,设置等
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-tw.xaml
index ba8a67c8a..8ee59d464 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/zh-tw.xaml
@@ -1,21 +1,37 @@
-
-
- 命令
- 描述
-
- 電腦關機
- 電腦重新啟動
- 登出
- 鎖定電腦
- 退出Flow Launcher
- 重新啟動 Flow Launcher
- 設定
- 睡眠
- 清空資源回收桶
-
- 系統命令
- 系統相關的命令。例如,關機,鎖定,設定等
-
-
+
+
+
+
+ 命令
+ 描述
+
+ 電腦關機
+ 電腦重新啟動
+ Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options
+ 登出
+ 鎖定電腦
+ 退出Flow Launcher
+ 重新啟動 Flow Launcher
+ 設定
+ 睡眠
+ 清空資源回收桶
+ Hibernate computer
+ Save all Flow Launcher settings
+ Refreshes plugin data with new content
+ Open Flow Launcher's log location
+ Check for new Flow Launcher update
+ Visit Flow Launcher's documentation for more help and how to use tips
+ Open the location where Flow Launcher's settings are stored
+
+
+ 成
+ All Flow Launcher settings saved
+ Reloaded all applicable plugin data
+ Are you sure you want to shut the computer down?
+ Are you sure you want to restart the computer?
+ Are you sure you want to restart the computer with Advanced Boot Options?
+
+ 系統命令
+ 系統相關的命令。例如,關機,鎖定,設定等
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Main.cs b/Plugins/Flow.Launcher.Plugin.Sys/Main.cs
index 7b5d85ae9..78e4893a5 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Main.cs
@@ -66,14 +66,9 @@ namespace Flow.Launcher.Plugin.Sys
if (score > 0)
{
c.Score = score;
+
if (score == titleMatch.Score)
- {
c.TitleHighlightData = titleMatch.MatchData;
- }
- else
- {
- c.SubTitleHighlightData = subTitleMatch.MatchData;
- }
results.Add(c);
}
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/plugin.json b/Plugins/Flow.Launcher.Plugin.Sys/plugin.json
index 4c381eec2..c9e9c1272 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.Sys/plugin.json
@@ -4,7 +4,7 @@
"Name": "System Commands",
"Description": "Provide System related commands. e.g. shutdown,lock, setting etc.",
"Author": "qianlifeng",
- "Version": "1.6.0",
+ "Version": "1.6.2",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Sys.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Flow.Launcher.Plugin.Url.csproj b/Plugins/Flow.Launcher.Plugin.Url/Flow.Launcher.Plugin.Url.csproj
index ea0b4b7d2..8d50a80e2 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Flow.Launcher.Plugin.Url.csproj
+++ b/Plugins/Flow.Launcher.Plugin.Url/Flow.Launcher.Plugin.Url.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windows{A3DCCBCA-ACC1-421D-B16E-210896234C26}trueProperties
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Images/url.png b/Plugins/Flow.Launcher.Plugin.Url/Images/url.png
index 619d1ad6a..5d475f82e 100644
Binary files a/Plugins/Flow.Launcher.Plugin.Url/Images/url.png and b/Plugins/Flow.Launcher.Plugin.Url/Images/url.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/da.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/da.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/de.xaml
index 1f8b219f8..437f2c016 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/de.xaml
@@ -1,11 +1,17 @@
-
-
- Öffne URL:{0}
- Kann URL nicht öffnen:{0}
-
- URL
- Öffne eine eingegebene URL mit Flow Launcher
-
-
\ No newline at end of file
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Öffne URL:{0}
+ Kann URL nicht öffnen:{0}
+
+ URL
+ Öffne eine eingegebene URL mit Flow Launcher
+
+ Please set your browser path:
+ Auswählen
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/es-419.xaml
new file mode 100644
index 000000000..d17ba7fa5
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/es-419.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Abrir búsqueda en:
+ Nueva Ventana
+ Nueva Pestaña
+
+ Abrir url:{0}
+ No se puede abrir la url:{0}
+
+ URL
+ Abre la URL escrita desde Flow Launcher
+
+ Por favor, establezca la ruta de su navegador:
+ Elija
+ Aplicación(*.exe)|*.exe|Todos los archivos|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/es.xaml
new file mode 100644
index 000000000..480e0c9fe
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/es.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Abrir búsqueda en:
+ Nueva ventana
+ Nueva pestaña
+
+ Abrir enlace:{0}
+ No se puede abrir el enlace:{0}
+
+ Enlace
+ Abre los enlaces web escritos desde Flow Launcher
+
+ Por favor, especifica la ruta de tu navegador:
+ Elige
+ Aplicación(*.exe)|*.exe|Todos los archivos|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/fr.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/fr.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/ja.xaml
index 8e262f9f7..6727d6f79 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/ja.xaml
@@ -1,11 +1,17 @@
-
-
- 次のURLを開く:{0}
- 次のURLを開くことができません:{0}
-
- URL
- 入力したURLをFlow Launcherから開くプラグインです。
-
-
\ No newline at end of file
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ 次のURLを開く:{0}
+ 次のURLを開くことができません:{0}
+
+ URL
+ 入力したURLをFlow Launcherから開くプラグインです。
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/ko.xaml
new file mode 100644
index 000000000..e7e22d9aa
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/ko.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Flow Launcher에 입력한 URL 열기
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/nb.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/nb.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/nl.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/nl.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/pl.xaml
index 4ee555ec1..ff8359df3 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/pl.xaml
@@ -1,11 +1,17 @@
-
-
- Otwórz adres URL: {0}
- Nie udało się otworzyć adresu: {0}
-
- URL
- Otwórz wpisany adres URL z poziomu Flow Launchera
-
-
\ No newline at end of file
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Otwórz adres URL: {0}
+ Nie udało się otworzyć adresu: {0}
+
+ URL
+ Otwórz wpisany adres URL z poziomu Flow Launchera
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/pt-br.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/pt-br.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/ru.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/ru.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/sk.xaml
index f201a65da..90151d44c 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/sk.xaml
@@ -5,13 +5,13 @@
Nové oknoNová karta
- Otvoriť url:{0}
- Adresa URL sa nedá otvoriť: {0}
+ Otvoriť URL:{0}
+ Adresa URL sa nedá otvoriť:{0}Adresa URLOtvoriť zadanú adresu URL z Flow LauncheraZadajte cestu k prehliadaču:
- Vybrať
+ PrehliadaťAplikácie (*.exe)|*.exe|Všetky súbory|*.*
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/sr.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/sr.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/tr.xaml
index 48df873f0..cd44325c6 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/tr.xaml
@@ -1,14 +1,17 @@
-
-
- URL'yi Aç: {0}
- URL Açılamıyor: {0}
-
- URL
- Flow Launcher'a yazılan URL'leri açar
-
- Tarayıcınızın konumunu ayarlayın:
- Seç
- Programlar (*.exe)|*.exe|Tüm Dosyalar|*.*
-
\ No newline at end of file
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ URL'yi Aç: {0}
+ URL Açılamıyor: {0}
+
+ URL
+ Flow Launcher'a yazılan URL'leri açar
+
+ Tarayıcınızın konumunu ayarlayın:
+ Seç
+ Programlar (*.exe)|*.exe|Tüm Dosyalar|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/uk-UA.xaml
new file mode 100644
index 000000000..9997fa841
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/uk-UA.xaml
@@ -0,0 +1,17 @@
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ Open url:{0}
+ Can't open url:{0}
+
+ URL
+ Open the typed URL from Flow Launcher
+
+ Please set your browser path:
+ Choose
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-cn.xaml
index d107c6410..103df5161 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-cn.xaml
@@ -1,7 +1,7 @@
- 使用以下位置打开
+ 在以下位置打开新窗户新标签
@@ -9,7 +9,7 @@
无法打开链接:{0}打开链接
- 从Flow Launcher打开链接
+ 从 Flow Launcher 打开链接请设置你的浏览器路径:选择
diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-tw.xaml
index 03f281f54..33a9264b7 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/zh-tw.xaml
@@ -1,11 +1,17 @@
-
-
- 開啟連結:{0}
- 無法開啟連結:{0}
-
- URL
- 從 Flow Launcher 開啟連結
-
-
+
+
+
+ Open search in:
+ New Window
+ New Tab
+
+ 開啟連結:{0}
+ 無法開啟連結:{0}
+
+ URL
+ 從 Flow Launcher 開啟連結
+
+ Please set your browser path:
+ 選擇
+ Application(*.exe)|*.exe|All files|*.*
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/plugin.json b/Plugins/Flow.Launcher.Plugin.Url/plugin.json
index df2771dec..0d71232d8e 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.Url/plugin.json
@@ -4,7 +4,7 @@
"Name": "URL",
"Description": "Open the typed URL from Flow Launcher",
"Author": "qianlifeng",
- "Version": "1.2.0",
+ "Version": "1.2.2",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Url.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Flow.Launcher.Plugin.WebSearch.csproj b/Plugins/Flow.Launcher.Plugin.WebSearch/Flow.Launcher.Plugin.WebSearch.csproj
index cd0bbdee3..f238c4e93 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Flow.Launcher.Plugin.WebSearch.csproj
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Flow.Launcher.Plugin.WebSearch.csproj
@@ -2,7 +2,7 @@
Library
- net5.0-windows
+ net6.0-windows{403B57F2-1856-4FC7-8A24-36AB346B763E}Propertiestrue
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Images/web_search.png b/Plugins/Flow.Launcher.Plugin.WebSearch/Images/web_search.png
index a3f0be1f5..017ebf5f2 100644
Binary files a/Plugins/Flow.Launcher.Plugin.WebSearch/Images/web_search.png and b/Plugins/Flow.Launcher.Plugin.WebSearch/Images/web_search.png differ
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml
new file mode 100644
index 000000000..ca14aa299
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Slet
+ Rediger
+ Tilføj
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Annuller
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Fortsæt
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml
index a11b1b24b..d06c30e64 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml
@@ -1,33 +1,43 @@
-
-
- Löschen
- Bearbeiten
- Hinzufügen
- Confirm
- Aktionsschlüsselwort
- URL
- Suche
- Aktiviere Suchvorschläge
- Bitte wähle einen Suchdienst
- Willst du wirklich {0} löschen?
-
-
-
- Titel
- Aktivieren
- Wähle Symbol
- Symbol
- Abbrechen
- Ungültige Internetsuche
- Bitte Titel eingeben
- Bitte Aktionsschlüsselwort eingeben
- Bitte URL eingeben
- Aktionsschlüsselwort existiert bereits. Bitte gebe ein anderes ein.
- Erfolgreich
-
- Internetsuche
- Stellt die Möglichkeit für Internetsuchen bereit
-
-
\ No newline at end of file
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Browser aus Pfad festlegen:
+ Auswählen
+ Löschen
+ Bearbeiten
+ Hinzufügen
+ Confirm
+ Aktionsschlüsselwort
+ URL
+ Suche
+ Aktiviere Suchvorschläge
+ Autocomplete Data from:
+ Bitte wähle einen Suchdienst
+ Bist du sicher {0} zu löschen?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Titel
+ Aktivieren
+ Wähle Symbol
+ Symbol
+ Abbrechen
+ Ungültige Internetsuche
+ Bitte Titel eingeben
+ Bitte Aktionsschlüsselwort eingeben
+ Bitte URL eingeben
+ Aktionsschlüsselwort existiert bereits. Bitte gebe ein anderes ein.
+ Erfolgreich
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Internetsuche
+ Stellt die Möglichkeit für Internetsuchen bereit
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml
new file mode 100644
index 000000000..2f240a10a
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Configuración de fuente de búsqueda
+ Abrir búsqueda en:
+ Nueva Ventana
+ Nueva Pestaña
+ Establecer navegador desde ruta:
+ Elegir
+ Eliminar
+ Editar
+ Añadir
+ Confirmar
+ Palabra clave
+ URL
+ Buscar
+ Autocompletar la búsqueda:
+ Autocompletar datos de:
+ Por favor, seleccione una búsqueda
+ ¿Seguro que desea eliminar {0}?
+ Si quiere utilizar un motor de búsqueda, puede añadirlo a Flow. Por ejemplo, puede seguir el formato de la url en la barra de direcciones si desea buscar 'casino' en Netflix: "https://www. etflix.com/search?q=Casino. Para ello, cambie el término de búsqueda 'Casino' de la siguiente manera.
+ https://www.netflix.com/search?q={q}
+ Agréguela al campo de URL. Ahora puede buscar en Netflix con Flow usando cualquier término de búsqueda.
+
+
+
+ Título
+ Habilitar
+ Seleccionar icono
+ Ícono
+ Cancelar
+ Búsqueda web inválida
+ Por favor ingrese un título
+ Por favor ingrese una palabra clave
+ Por favor, introduzca una URL
+ La palabra clave ya existe, por favor ingrese una diferente
+ Éxitoso
+ Sugerencia: No es necesario colocar imágenes personalizadas en este directorio, si la versión de Flow se actualiza se perderán. Flow copiará automáticamente cualquier imagen fuera de este directorio a la ubicación de imagen personalizada de WebSearch.
+
+ Búsqueda web
+ Permite realizar búsquedas en la web
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml
new file mode 100644
index 000000000..8b6f583f1
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Configuración de las fuentes de búsqueda
+ Abrir búsqueda en:
+ Nueva ventana
+ Nueva pestaña
+ Establecer navegador desde ruta:
+ Elige
+ Eliminar
+ Editar
+ Añadir
+ Confirmar
+ Palabra clave de acción
+ Enlace
+ Búsqueda
+ Usar autocompletado de búsqueda:
+ Autocompletar datos desde:
+ Por favor, seleccione una búsqueda web
+ ¿Estás seguro de que quieres eliminar {0}?
+ Si tienes un servicio de búsqueda web que quieres usar, puedes añadirlo a Flow. Por ejemplo, puedes usar el formato del enlace en la barra de direcciones si quieres buscar 'casino' en Netflix: "https://www.netflix.com/search?q=Casino.Para hacer esto, cambia el término de búsqueda 'Casino' de la siguiente forma.
+ https://www.netflix.com/search?q={q}
+ Agrégala a la sección del enlace debajo. Ahora puedes buscar en Netflix con Flow usando cualquier término de búsqueda.
+
+
+
+ Título
+ Activar
+ Seleccionar icono
+ Icono
+ Cancelar
+ Búsqueda web inválida
+ Por favor, introduzca un título
+ Por favor, introduzca una palabra clave de acción
+ Por favor, introduzca una URL
+ La palabra clave de acción ya está en uso, por favor, introduzca una diferente
+ Éxito
+ Sugerencia: No es necesitas copiar imágenes personalizadas en esta carpeta, si Flow es actualizado se perderán. Flow copiará automáticamente cualquier imagen fuera de esta carpeta a través de la ubicación de imagen personalizada de WebSearch.
+
+ Búsquedas Web
+ Permite realizar búsquedas web
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml
new file mode 100644
index 000000000..553db7167
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Supprimer
+ Modifier
+ Ajouter
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Annuler
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Ajout
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml
new file mode 100644
index 000000000..434036999
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Cancella
+ Modifica
+ Aggiungi
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Annulla
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Successo
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml
index 4554b9fc4..3bf51d734 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml
@@ -1,32 +1,43 @@
-
-
- 削除
- 編集
- 追加
- キーワード
- URL
- 検索
- 検索サジェスチョンを有効にする
- web検索を選択してください
- 本当に{0}を削除しますか?
-
-
-
- タイトル
- 有効
- アイコンを選択
- アイコン
- キャンセル
- web検索を無効にする
- タイトルを入力してください
- キーワードを入力してください
- URLを入力してください
- キーワードはすでに存在します。違うキーワードを入力してください
- 成功
-
- Web検索
- Web検索を提供
-
-
\ No newline at end of file
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ 削除
+ 編集
+ 追加
+ Confirm
+ キーワード
+ URL
+ 検索
+ 検索サジェスチョンを有効にする
+ Autocomplete Data from:
+ web検索を選択してください
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ タイトル
+ 有効
+ アイコンを選択
+ アイコン
+ キャンセル
+ web検索を無効にする
+ タイトルを入力してください
+ キーワードを入力してください
+ URLを入力してください
+ キーワードはすでに存在します。違うキーワードを入力してください
+ 成功しまし
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web検索
+ Web検索を提供
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml
new file mode 100644
index 000000000..c0d8d6a6a
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml
@@ -0,0 +1,43 @@
+
+
+
+ 검색 출처 설정
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ 삭제
+ 편집
+ 추
+ 확인
+ 액션 키워드
+ URL
+ 검색
+ 검색 쿼리 자동완성 사용:
+ 자동완성 데이터 출처:
+ 웹 검색을 선택하세요
+ Are you sure you want to delete {0}?
+ 사용하고자 하는 서비스에 웹검색이 있다면 Flow에 추가할 수 있습니다. 예를들어 넷플릭스에서 "Casino"를 검색하면 주소표시줄에서 "https://www.netflix.com/search?q=Casino"형태가 되는 것을 확인할 수 있습니다. 이 경우, "Casino" 부분을 다음과 같이 변경합니다.
+ https://www.netflix.com/search?q={q}
+ 변경한 주소를 아래 URL 항목에 추가합니다. 이제 원하는 검색어를 사용하여 Flow에서 넷플릭스를 검색할 수 있습니다.
+
+
+
+ 이름
+ 활성화
+ 아이콘 선택
+ 아이콘
+ 취소
+ 잘못된 웹 검색
+ 제목을 입력하세요.
+ 액션 키워드를 입력하세요
+ URL을 입력하세요
+ 액션 키워드가 이미 존재합니다. 다른 것을 입력해주세요.
+ 성공
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ 웹 검색
+ 웹 검색을 실행할 수 있습니다
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml
new file mode 100644
index 000000000..2faf8723f
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Delete
+ Edit
+ Add
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Cancel
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Success
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml
new file mode 100644
index 000000000..0d8977317
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Verwijder
+ Bewerken
+ Toevoegen
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Annuleer
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Succesvol
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml
index 749c50da5..214228dee 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml
@@ -1,32 +1,43 @@
-
-
- Usuń
- Edytuj
- Dodaj
- Confirm
- Wyzwalacz
- Adres URL
- Szukaj
- Pokazuj podpowiedzi wyszukiwania
- Musisz wybrać coś z listy
- Czy jesteś pewnie że chcesz usunąć {0}?
-
-
- Tytuł
- Aktywne
- Wybierz ikonę
- Ikona
- Anuluj
- Niepoprawne wyszukanie
- Musisz wpisać tytuł
- Musisz wpisać wyzwalacz
- Musisz wpisać adres URL
- Ten wyzwalacz jest już używany, musisz wybrać inny
- Sukces
-
- Wyszukiwarka WWW
- Szybkie wyszukiwanie na stronach WWW
-
-
\ No newline at end of file
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Usuń
+ Edytuj
+ Dodaj
+ Confirm
+ Wyzwalacz
+ Adres URL
+ Szukaj
+ Pokazuj podpowiedzi wyszukiwania
+ Autocomplete Data from:
+ Musisz wybrać coś z listy
+ Czy jesteś pewien że chcesz usunąć {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Tytuł
+ Aktywne
+ Wybierz ikonę
+ Ikona
+ Anuluj
+ Niepoprawne wyszukanie
+ Musisz wpisać tytuł
+ Musisz wpisać wyzwalacz
+ Musisz wpisać adres URL
+ Ten wyzwalacz jest już używany, musisz wybrać inny
+ Sukces
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Wyszukiwarka WWW
+ Szybkie wyszukiwanie na stronach WWW
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml
new file mode 100644
index 000000000..d1fd802ce
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Apagar
+ Editar
+ Adicionar
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Cancelar
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Sucesso
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml
index 16b1a89a1..63f2683e9 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml
@@ -11,13 +11,13 @@
EditarAdicionarConfirmar
- Palavra-chave da ação
+ Palavra-chave de açãoURLPesquisarUtilizar conclusão automática da consulta: Preencher dados a partir de: Selecione uma pesquisa web
- Tem a certeza de que deseja remover {0}?
+ Tem a certeza de que deseja eliminar {0}?Se quiser, também pode adicionar um serviço web personalizado ao Flow Launcher. Por exemplo, pode utilizar o seguinte formato URL para pesquisar por 'casino' no Netflix: "https://www.netflix.com/search?q=Casino". Para o fazer, altere o termo de pesquisa 'Casino' como indicado a seguir.https://www.netflix.com/search?q={q}Adicione o URL à secção abaixo. Agora, já pode utilizar o Flow Launcher para pesquisar no Netflix.
@@ -31,11 +31,11 @@
CancelarPesquisa web inválidaIntroduza um título
- Introduza a palavra-chave da ação
+ Introduza a palavra-chave de açãoIntroduza um URL
- A palavra-chave já existe. Por favor escolha outra
+ Esta palavra-chave já existe. Por favor escolha outra.Sucesso
- Dica: não é necessário colocar imagens personalizadas neste diretório pois se Flow Launcher for atualizado, estas serão perdidas. O Flow irá copiar todas as imagens que estejam fora deste diretório para em todas as pesquisas Web.
+ Dica: não é necessário colocar imagens personalizadas neste diretório porque se Flow Launcher for atualizado, estas serão perdidas. A aplicação irá copiar todas as imagens que estejam fora deste diretório para todas as pesquisas Web.Pesquisas webPermite pesquisar diretamente na web
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml
new file mode 100644
index 000000000..645446738
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Удалить
+ Редактировать
+ Добавить
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Отменить
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Успешно
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml
index 5bc034fa6..08c8cb464 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml
@@ -5,22 +5,22 @@
Otvoriť vyhľadávanie v:Nové oknoNová karta
- Cesta k prehliadaču:
- Vybrať
+ Nastaviť cestu k prehliadaču:
+ PrehliadaťOdstrániťUpraviťPridaťPotvrdiť
- Skratka akcie
+ Aktivačný príkazAdresa URLHľadať
- Povoliť návrhy vyhľadávania
- Automatické dopĺňanie údajov z:
+ Použiť automatické dokončovanie výrazov vyhľadávania:
+ Automatické dokončovanie údajov z: Vyberte webové vyhľadávanieNaozaj chcete odstrániť {0}?Ak máte službu vyhľadávania na webe, ktorú chcete použiť, môžete ju pridať do programu Flow. Ak napríklad chcete na Netflixe hľadať „cestovatelia“, môžete postupovať podľa formátu adresy URL v paneli s adresou: „https://www.netflix.com/search?q=cestovatelia“. Ak to chcete urobiť, zmeňte hľadaný výraz „cestovatelia“ takto.https://www.netflix.com/search?q={q}
- Pridajte ju do sekcie URL nižšie. Teraz môžete pomocou Flowu vyhľadávať na Netflixe pomocou ľubovoľných vyhľadávacích výrazov.
+ Pridajte ju do sekcie URL nižšie. Teraz môžete s Flowom vyhľadávať na Netflixe pomocou ľubovoľných vyhľadávacích výrazov.
@@ -31,13 +31,13 @@
ZrušiťNeplatné webové vyhľadávanieZadajte názov
- Zadajte skratku akcie
+ Zadajte aktivačný príkazZadajte URL
- Zadaná skratka akcie už existuje, zadajte inú
+ Zadaný aktivačný príkaz už existuje, zadajte iný aktivačný príkazÚspešnéPoznámka: Do tohto priečinka nemusíte vkladať obrázky, ak sa Flow Launcher aktualizuje, zmiznú. Flow Launcher bude automaticky kopírovať obrázky mimo tohto priečinka naprieč vlastnému umiestneniu obrázkov pluginu.Webové vyhľadávanie
- Umožňuje vyhľadávanie webov
+ Umožňuje vyhľadávanie na webe
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml
new file mode 100644
index 000000000..9dd6c34bb
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Obriši
+ Izmeni
+ Dodaj
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Otkaži
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Uspešno
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml
index a66007b44..701e78cd2 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml
@@ -1,32 +1,43 @@
-
-
- Sil
- Düzenle
- Ekle
- Onayla
- Anahtar Kelime
- URL
- Ara:
- Arama önerilerini etkinleştir
- Lütfen bir web araması seçin
- {0} aramasını silmek istediğinize emin misiniz?
-
-
- Başlık
- Etkin
- Simge Seç
- Simge
- İptal
- Geçersiz web araması
- Lütfen bir başlık giriniz
- Lütfen anahtar kelime giriniz
- Lütfen bir URL giriniz
- Anahtar kelime zaten mevcut. Lütfen yeni bir tane seçiniz.
- Başarılı
-
- Web Araması
- Web üzerinde arama yapmanızı sağlar
-
-
\ No newline at end of file
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Sil
+ Düzenle
+ Ekle
+ Onayla
+ Anahtar Kelime
+ URL
+ Ara:
+ Arama önerilerini etkinleştir
+ Autocomplete Data from:
+ Lütfen bir web araması seçin
+ {0} bağlantısını silmek istediğinize emin misiniz?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Başlık
+ Etkin
+ Simge Seç
+ Simge
+ İptal
+ Geçersiz web araması
+ Lütfen bir başlık giriniz
+ Lütfen anahtar kelime giriniz
+ Lütfen bir URL giriniz
+ Anahtar kelime zaten mevcut. Lütfen yeni bir tane seçiniz.
+ Başarılı
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Araması
+ Web üzerinde arama yapmanızı sağlar
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml
new file mode 100644
index 000000000..094468a5d
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml
@@ -0,0 +1,43 @@
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ Choose
+ Видалити
+ Редагувати
+ Додати
+ Confirm
+ Action Keyword
+ URL
+ Search
+ Use Search Query Autocomplete:
+ Autocomplete Data from:
+ Please select a web search
+ Are you sure you want to delete {0}?
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ Title
+ Enable
+ Select Icon
+ Icon
+ Скасувати
+ Invalid web search
+ Please enter a title
+ Please enter an action keyword
+ Please enter a URL
+ Action keyword already exists, please enter a different one
+ Успішно
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ Web Searches
+ Allows to perform web searches
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml
index 29c22cbb2..79c9b9018 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml
@@ -1,38 +1,43 @@
-
-
- 使用以下位置打开:
- 新窗口
- 新标签页
- 设置浏览器路径:
- 选择
- 删除
- 编辑
- 添加
- 确认
- 触发关键字
- URL
- 搜索
- 启用搜索建议
- 请选择一项
- 你确定要删除 {0} 吗?
-
-
- 标题
- 启用
- 图标
- 选择图标
- 取消
- 非法的网页搜索
- 请输入标题
- 请输入触发关键字
- 请输入URL
- 触发关键字已经存在,请选择一个新的关键字
- 操作成功
- 提示:您不需要在此目录中放置自定义图像,当Flow更新时,该目录下内容将会丢失。 Flow会自动将此目录之外的所有图像复制到网页搜索的自定义图像位置。
-
- 网页搜索
- 提供网页搜索能力
-
-
\ No newline at end of file
+
+
+
+ 搜索源设置
+ 在以下位置打开
+ 新窗户
+ 新标签页
+ 设置浏览器路径:
+ 选择
+ 删除
+ 编辑
+ 增加
+ 确认
+ 触发关键字
+ 打开链接
+ 搜索
+ 启用搜索建议
+ 自动补全数据:
+ 请选择一项
+ 您确定要删除 {0} 吗?
+ 如果您有您想要使用的网页搜索服务,您可以将其添加到 Flow。例如,如果您想要在 Netflix 上搜索“casino”,您可以遵循地址栏中的 URL 格式:"https://www.netflix.com/search?q=Casino"。要做到这一点,使用搜索词“Casino”。
+ https://www.netflix.com/search?q={q}
+ 将其添加到下面的 URL 部分。您现在可以使用任意的搜索词来从 Netflix 中搜索。
+
+
+
+ 标题
+ 启用
+ 选择图标
+ 图标
+ 取消
+ 非法的网页搜索
+ 请输入标题
+ 请输入触发关键字
+ 请输入URL
+ 触发关键字已经存在,请选择一个新的关键字
+ 操作成功
+ 提示:您不需要在此目录中放置自定义图像,当 Flow 更新时,该目录下内容将会丢失。Flow 会自动将此目录之外的所有图像复制到网页搜索的自定义图像位置。
+
+ 网页搜索
+ 提供网页搜索能力
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml
index 6465cf2ea..3abee1198 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml
@@ -1,33 +1,43 @@
-
-
- 刪除
- 編輯
- 新增
- 確定
- 觸發關鍵字
- URL
- 搜尋
- 啟用搜尋建議
- 請選擇一項
- 你確定要刪除 {0} 嗎?
-
-
-
- 標題
- 啟用
- 圖示
- 選擇圖示
- 取消
- 無效的網頁搜尋
- 請輸入標題
- 請輸入觸發關鍵字
- 請輸入 URL
- 觸發關鍵字已經存在,請選擇一個新的關鍵字
- 操作成功
-
- 網頁搜尋
- 提供網頁搜尋功能
-
-
+
+
+
+ Search Source Setting
+ Open search in:
+ New Window
+ New Tab
+ Set browser from path:
+ 選擇
+ 刪除
+ 編輯
+ 新增
+ 確定
+ 觸發關鍵字
+ URL
+ 搜尋
+ 啟用搜尋建議
+ Autocomplete Data from:
+ 請選擇一項
+ 你確認要刪除{0}嗎
+ If you have a web search service you want to use, you can add it to Flow. For example, you can follow the url format in the address bar if you want to search 'casino' on Netflix: "https://www.netflix.com/search?q=Casino". To do this, change the search term 'Casino' as follows.
+ https://www.netflix.com/search?q={q}
+ Add it to the URL section below. You can now search Netflix with Flow using any search terms.
+
+
+
+ 標題
+ 啟用
+ 選擇圖示
+ 圖示
+ 取消
+ 無效的網頁搜尋
+ 請輸入標題
+ 請輸入觸發關鍵字
+ 請輸入 URL
+ 觸發關鍵字已經存在,請選擇一個新的關鍵字
+ 操作成功
+ Hint: You do not need to place custom images in this directory, if Flow's version is updated they will be lost. Flow will automatically copy any images outside of this directory across to WebSearch's custom image location.
+
+ 網頁搜尋
+ 提供網頁搜尋功能
+
+
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Main.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/Main.cs
index 31d56c108..b136e3b8b 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Main.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Main.cs
@@ -41,17 +41,18 @@ namespace Flow.Launcher.Plugin.WebSearch
var results = new List();
foreach (SearchSource searchSource in _settings.SearchSources.Where(o => (o.ActionKeyword == query.ActionKeyword ||
- o.ActionKeyword == SearchSourceGlobalPluginWildCardSign)
- && o.Enabled))
+ o.ActionKeyword == SearchSourceGlobalPluginWildCardSign)
+ && o.Enabled))
{
string keyword = string.Empty;
keyword = searchSource.ActionKeyword == SearchSourceGlobalPluginWildCardSign ? query.ToString() : query.Search;
var title = keyword;
string subtitle = _context.API.GetTranslation("flowlauncher_plugin_websearch_search") + " " + searchSource.Title;
- //Action Keyword match apear on top
+ // Action Keyword match apear on top
var score = searchSource.ActionKeyword == SearchSourceGlobalPluginWildCardSign ? scoreStandard : scoreStandard + 1;
+ // This populates the associated action keyword search entry
if (string.IsNullOrEmpty(keyword))
{
var result = new Result
@@ -61,6 +62,7 @@ namespace Flow.Launcher.Plugin.WebSearch
IcoPath = searchSource.IconPath,
Score = score
};
+
results.Add(result);
}
else
@@ -93,7 +95,6 @@ namespace Flow.Launcher.Plugin.WebSearch
if (token.IsCancellationRequested)
return null;
-
}
return results;
@@ -105,11 +106,11 @@ namespace Flow.Launcher.Plugin.WebSearch
if (_settings.EnableSuggestion)
{
var suggestions = await SuggestionsAsync(keyword, subtitle, searchSource, token).ConfigureAwait(false);
- if (token.IsCancellationRequested || !suggestions.Any())
+ var enumerable = suggestions?.ToList();
+ if (token.IsCancellationRequested || enumerable is not { Count: > 0 })
return;
-
-
- results.AddRange(suggestions);
+
+ results.AddRange(enumerable);
token.ThrowIfCancellationRequested();
}
@@ -118,32 +119,32 @@ namespace Flow.Launcher.Plugin.WebSearch
private async Task> SuggestionsAsync(string keyword, string subtitle, SearchSource searchSource, CancellationToken token)
{
var source = _settings.SelectedSuggestion;
- if (source != null)
+ if (source == null)
{
- //Suggestions appear below actual result, and appear above global action keyword match if non-global;
- var score = searchSource.ActionKeyword == SearchSourceGlobalPluginWildCardSign ? scoreSuggestions : scoreSuggestions + 1;
-
- var suggestions = await source.Suggestions(keyword, token).ConfigureAwait(false);
-
- token.ThrowIfCancellationRequested();
-
- var resultsFromSuggestion = suggestions?.Select(o => new Result
- {
- Title = o,
- SubTitle = subtitle,
- Score = score,
- IcoPath = searchSource.IconPath,
- ActionKeywordAssigned = searchSource.ActionKeyword == SearchSourceGlobalPluginWildCardSign ? string.Empty : searchSource.ActionKeyword,
- Action = c =>
- {
- _context.API.OpenUrl(searchSource.Url.Replace("{q}", Uri.EscapeDataString(o)));
-
- return true;
- }
- });
- return resultsFromSuggestion;
+ return new List();
}
- return new List();
+ //Suggestions appear below actual result, and appear above global action keyword match if non-global;
+ var score = searchSource.ActionKeyword == SearchSourceGlobalPluginWildCardSign ? scoreSuggestions : scoreSuggestions + 1;
+
+ var suggestions = await source.SuggestionsAsync(keyword, token).ConfigureAwait(false);
+
+ token.ThrowIfCancellationRequested();
+
+ var resultsFromSuggestion = suggestions?.Select(o => new Result
+ {
+ Title = o,
+ SubTitle = subtitle,
+ Score = score,
+ IcoPath = searchSource.IconPath,
+ ActionKeywordAssigned = searchSource.ActionKeyword == SearchSourceGlobalPluginWildCardSign ? string.Empty : searchSource.ActionKeyword,
+ Action = c =>
+ {
+ _context.API.OpenUrl(searchSource.Url.Replace("{q}", Uri.EscapeDataString(o)));
+
+ return true;
+ }
+ });
+ return resultsFromSuggestion;
}
public Task InitAsync(PluginInitContext context)
@@ -191,4 +192,4 @@ namespace Flow.Launcher.Plugin.WebSearch
public event ResultUpdatedEventHandler ResultsUpdated;
}
-}
+}
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml
index 12228853d..f36db153d 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml
@@ -69,7 +69,7 @@
Text="{DynamicResource flowlauncher_plugin_websearch_window_title}"
TextAlignment="Left" />
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -192,15 +199,16 @@
BorderThickness="0,1,0,0">
+ Content="{DynamicResource flowlauncher_plugin_websearch_confirm}"
+ Style="{DynamicResource AccentButtonStyle}" />
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceViewModel.cs
index f54dbc13c..2495abe66 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceViewModel.cs
@@ -62,4 +62,4 @@ namespace Flow.Launcher.Plugin.WebSearch
return ImageLoader.Load(pathToPreviewIconImage);
}
}
-}
\ No newline at end of file
+}
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Settings.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/Settings.cs
index 33c304375..6cf1446af 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Settings.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Settings.cs
@@ -84,7 +84,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Duckduckgo",
+ Title = "DuckDuckGo",
ActionKeyword = "duckduckgo",
Icon = "duckduckgo.png",
Url = "https://duckduckgo.com/?q={q}",
@@ -92,7 +92,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Github",
+ Title = "GitHub",
ActionKeyword = "github",
Icon = "github.png",
Url = "https://github.com/search?q={q}",
@@ -100,7 +100,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Github Gist",
+ Title = "GitHub Gist",
ActionKeyword = "gist",
Icon = "gist.png",
Url = "https://gist.github.com/search?q={q}",
@@ -124,7 +124,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Wolframalpha",
+ Title = "WolframAlpha",
ActionKeyword = "wolframalpha",
Icon = "wolframalpha.png",
Url = "https://www.wolframalpha.com/input/?i={q}",
@@ -132,7 +132,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Stackoverflow",
+ Title = "Stack Overflow",
ActionKeyword = "stackoverflow",
Icon = "stackoverflow.png",
Url = "https://stackoverflow.com/search?q={q}",
@@ -148,7 +148,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Google Image",
+ Title = "Google Images",
ActionKeyword = "image",
Icon = "google.png",
Url = "https://www.google.com/search?q={q}&tbm=isch",
@@ -156,7 +156,7 @@ namespace Flow.Launcher.Plugin.WebSearch
},
new SearchSource
{
- Title = "Youtube",
+ Title = "YouTube",
ActionKeyword = "youtube",
Icon = "youtube.png",
Url = "https://www.youtube.com/results?search_query={q}",
@@ -225,4 +225,4 @@ namespace Flow.Launcher.Plugin.WebSearch
public bool OpenInNewBrowser { get; set; } = true;
}
-}
\ No newline at end of file
+}
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Baidu.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Baidu.cs
index ccb5b20d7..d1fbd4ac5 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Baidu.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Baidu.cs
@@ -16,7 +16,7 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
{
private readonly Regex _reg = new Regex("window.baidu.sug\\((.*)\\)");
- public override async Task> Suggestions(string query, CancellationToken token)
+ public override async Task> SuggestionsAsync(string query, CancellationToken token)
{
string result;
@@ -25,7 +25,7 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
const string api = "http://suggestion.baidu.com/su?json=1&wd=";
result = await Http.GetAsync(api + Uri.EscapeUriString(query), token).ConfigureAwait(false);
}
- catch (Exception e) when (e is HttpRequestException || e.InnerException is TimeoutException)
+ catch (Exception e) when (e is HttpRequestException or {InnerException: TimeoutException})
{
Log.Exception("|Baidu.Suggestions|Can't get suggestion from baidu", e);
return null;
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Bing.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Bing.cs
index 38c5fb4a0..971fc079c 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Bing.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Bing.cs
@@ -15,7 +15,7 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
{
class Bing : SuggestionSource
{
- public override async Task> Suggestions(string query, CancellationToken token)
+ public override async Task> SuggestionsAsync(string query, CancellationToken token)
{
try
@@ -40,7 +40,7 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
}
- catch (Exception e) when (e is HttpRequestException || e.InnerException is TimeoutException)
+ catch (Exception e) when (e is HttpRequestException or {InnerException: TimeoutException})
{
Log.Exception("|Baidu.Suggestions|Can't get suggestion from baidu", e);
return null;
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Google.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Google.cs
index c5f43d081..a6c18b1ef 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Google.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/Google.cs
@@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
{
public class Google : SuggestionSource
{
- public override async Task> Suggestions(string query, CancellationToken token)
+ public override async Task> SuggestionsAsync(string query, CancellationToken token)
{
try
{
@@ -32,7 +32,7 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
return results.EnumerateArray().Select(o => o.GetString()).ToList();
}
- catch (Exception e) when (e is HttpRequestException || e.InnerException is TimeoutException)
+ catch (Exception e) when (e is HttpRequestException or {InnerException: TimeoutException})
{
Log.Exception("|Baidu.Suggestions|Can't get suggestion from baidu", e);
return null;
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs
index c58e61141..e89addee9 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SuggestionSources/SuggestionSource.cs
@@ -6,6 +6,6 @@ namespace Flow.Launcher.Plugin.WebSearch.SuggestionSources
{
public abstract class SuggestionSource
{
- public abstract Task> Suggestions(string query, CancellationToken token);
+ public abstract Task> SuggestionsAsync(string query, CancellationToken token);
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json b/Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json
index b100137a4..9239e082c 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json
@@ -26,7 +26,7 @@
"Name": "Web Searches",
"Description": "Provide the web search ability",
"Author": "qianlifeng",
- "Version": "1.5.0",
+ "Version": "1.5.3",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.WebSearch.dll",
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/setting.json b/Plugins/Flow.Launcher.Plugin.WebSearch/setting.json
index c8f521653..533b894b8 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/setting.json
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/setting.json
@@ -8,7 +8,7 @@
"Enabled": true
},
{
- "Title": "Youtube",
+ "Title": "YouTube",
"ActionKeyword": "youtube",
"IconPath": "Images\\youtube.png",
"Url": "http://www.youtube.com/results?search_query={q}",
@@ -43,7 +43,7 @@
"Enabled": true
},
{
- "Title": "Youtube Music",
+ "Title": "YouTube Music",
"ActionKeyword": "ytmusic",
"IconPath": "Images\\youtubemusic.png",
"Url": "https://music.youtube.com/search?q={q}",
@@ -78,35 +78,35 @@
"Enabled": true
},
{
- "Title": "Duckduckgo",
+ "Title": "DuckDuckGo",
"ActionKeyword": "duckduckgo",
"IconPath": "Images\\duckduckgo.png",
"Url": "https://duckduckgo.com/?q={q}",
"Enabled": true
},
{
- "Title": "Github",
+ "Title": "GitHub",
"ActionKeyword": "github",
"IconPath": "Images\\github.png",
"Url": "https://github.com/search?q={q}",
"Enabled": true
},
{
- "Title": "Github Gist",
+ "Title": "GitHub Gist",
"ActionKeyword": "gist",
"IconPath": "Images\\gist.png",
"Url": "https://gist.github.com/search?q={q}",
"Enabled": true
},
{
- "Title": "Wolframalpha",
+ "Title": "WolframAlpha",
"ActionKeyword": "wolframalpha",
"IconPath": "Images\\wolframalpha.png",
"Url": "http://www.wolframalpha.com/input/?i={q}",
"Enabled": true
},
{
- "Title": "Stackoverflow",
+ "Title": "Stack Overflow",
"ActionKeyword": "stackoverflow",
"IconPath": "Images\\stackoverflow.png",
"Url": "http://stackoverflow.com/search?q={q}",
@@ -120,7 +120,7 @@
"Enabled": true
},
{
- "Title": "Google Image",
+ "Title": "Google Images",
"ActionKeyword": "image",
"IconPath": "Images\\google.png",
"Url": "https://www.google.com/search?q={q}&tbm=isch",
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 c30fbf997..81ea31c21 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Flow.Launcher.Plugin.WindowsSettings.csproj
@@ -1,7 +1,7 @@
-
+Library
- net5.0-windows
+ net6.0-windowstruetruefalse
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs
index ca3b06b8d..c693331e9 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ResultHelper.cs
@@ -34,8 +34,9 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
var resultList = new List();
foreach (var entry in list)
{
- const int highScore = 20;
- const int midScore = 10;
+ // 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");
@@ -44,7 +45,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
if (nameMatch.IsSearchPrecisionScoreMet())
{
- var settingResult = NewSettingResult(nameMatch.Score + highScore, entry.Type);
+ var settingResult = NewSettingResult(nameMatch.Score, entry.Type);
settingResult.TitleHighlightData = nameMatch.MatchData;
result = settingResult;
}
@@ -53,8 +54,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
var areaMatch = _api.FuzzySearch(query.Search, entry.Area);
if (areaMatch.IsSearchPrecisionScoreMet())
{
- var settingResult = NewSettingResult(areaMatch.Score + midScore, entry.Type);
- settingResult.SubTitleHighlightData = areaMatch.MatchData.Select(x => x + 6).ToList();
+ var settingResult = NewSettingResult(areaMatch.Score - nonNameMatchScoreAdj, entry.Type);
result = settingResult;
}
else
@@ -62,7 +62,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 + midScore, entry.Type))
+ .Select(altNameMatch => NewSettingResult(altNameMatch.Score - nonNameMatchScoreAdj, entry.Type))
.FirstOrDefault();
}
@@ -76,7 +76,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
.SelectMany(x => x)
.Contains(x, StringComparer.CurrentCultureIgnoreCase))
)
- result = NewSettingResult(midScore, entry.Type);
+ result = NewSettingResult(nonNameMatchScoreAdj, entry.Type);
}
}
@@ -116,7 +116,7 @@ namespace Flow.Launcher.Plugin.WindowsSettings.Helper
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}: {settingType}");
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.da-DK.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.da-DK.resx
new file mode 100644
index 000000000..551726cce
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.da-DK.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
+
+
+ Om
+ 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
+
+
+ Generelt
+ 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
+
+
+ Sprog
+ 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)
+
+
+ Adgangskode
+
+
+ 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/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx
index e32f439cd..c278bb9bf 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.de-DE.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -118,58 +118,79 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- Info
+ Über
+ Area System
-
- Zugriff auf Geschäft, Schule oder Uni
+
+ access.cpl
+ File name, Should not translatedBarrierefreiheitsoptionen
+ Area Control Panel (legacy settings)Zubehör-Apps
+ Area Privacy
+
+
+ Zugriff auf Geschäft, Schule oder Uni
+ Area UserAccountsKontoinfo
+ Area PrivacyKonten
+ Area SurfaceHubWartungscenter
+ Area Control Panel (legacy settings)Aktivierung
+ Area UpdateAndSecurityAktivitätsverlauf
+ Area PrivacyHardware hinzufügen
+ Area Control Panel (legacy settings)Programme hinzufügen/entfernen
+ Area Control Panel (legacy settings)Ihr Smartphone hinzufügen
+ Area PhoneVerwaltungstools
+ Area SystemErweiterte Anzeigeeinstellungen
+ Area System, only available on devices that support advanced display optionsErweiterte GrafikAnzeigen-ID
+ Area Privacy, Deprecated in Windows 10, version 1809 and laterFlugzeugmodus
+ Area NetworkAndInternetALT+TAB
+ Means the key combination "Tabulator+Alt" on the keyboardAlternative Namen
@@ -180,38 +201,48 @@
App-Farbe
-
- Systemsteuerung
-
App-Diagnose
+ Area PrivacyApp-Features
-
-
- Systemeinstellungen
-
-
- App-Volume und Geräteeinstellungen
+ Area AppsApp
+ Short/modern name for applicationApps und Features
+ Area Apps
+
+
+ Systemeinstellungen
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Apps für Websites
+ Area Apps
+
+
+ App-Volume und Geräteeinstellungen
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedBereich
+ Mean the settings area or settings categoryKontenVerwaltungstools
+ Area Control Panel (legacy settings)Darstellung und Personalisierung
@@ -222,6 +253,9 @@
Uhr und Region
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
Audio
+ Area EaseOfAccessAudiowarnungenAudio und Sprache
-
-
- Automatische Wiedergabe
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Automatische Dateidownloads
+ Area Privacy
+
+
+ Automatische Wiedergabe
+ Area DeviceHintergrund
+ Area PersonalizationHintergrund-Apps
+ Area PrivacySicherung
+ Area UpdateAndSecuritySichern und wiederherstellen
+ Area Control Panel (legacy settings)Akkusparmodus
+ Area System, only available on devices that have a battery, such as a tabletEinstellungen für den Akkusparmodus
+ Area System, only available on devices that have a battery, such as a tabletNutzungsdetails für den AkkusparmodusAkkunutzung
+ Area System, only available on devices that have a battery, such as a tabletBiometrische Geräte
+ Area Control Panel (legacy settings)BitLocker-Laufwerkverschlüsselung
+ Area Control Panel (legacy settings)Blau (hell)
-
- Blau-gelb
-
Bluetooth
+ Area DeviceBluetooth-Geräte
+ Area Control Panel (legacy settings)
+
+
+ Blau-gelbBopomofo-IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedÜbertragungen
+ Area GamingKalender
+ Area PrivacyAnrufliste
+ Area Privacy
+
+
+ AnrufeKamera
+ Area PrivacyCangjie-IME
+ Area TimeAndLanguageFESTSTELLTASTE
+ Mean the "Caps Lock" keyMobilfunknetz und SIM-Karte
+ Area NetworkAndInternetWählen Sie aus, welche Ordner im Startmenü angezeigt werden
+ Area PersonalizationClientdienst für NetWare
+ Area Control Panel (legacy settings)Zwischenablage
+ Area SystemUntertitel
+ Area EaseOfAccessFarbfilter
+ Area EaseOfAccessFarbverwaltung
+ Area Control Panel (legacy settings)Farben
+ Area PersonalizationBefehl
+ The command to direct start a settingVerbundene Geräte
+ Area DeviceKontaktpersonen
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"KopierbefehlKernisolation
+ Means the protection of the system coreCortana
+ Area CortanaCortana auf meinen Geräten
+ Area CortanaCortana – Sprache
+ Area CortanaAnmeldeinformations-Manager
+ Area Control Panel (legacy settings)Geräteübergreifend
@@ -417,9 +500,6 @@
Benutzerdefinierte Geräte
-
- DNS
-
Dunkle Farbe
@@ -428,171 +508,240 @@
Datennutzung
+ Area NetworkAndInternetDatum und Uhrzeit
+ Area TimeAndLanguageStandard-Apps
+ Area AppsStandardkamera
+ Area DeviceStandardspeicherort
+ Area Control Panel (legacy settings)Standardprogramme
+ Area Control Panel (legacy settings)Standardspeicherorte
+ Area SystemÜbermittlungsoptimierung
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedDesktopdesigns
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colorsGeräte-Manager
+ Area Control Panel (legacy settings)Geräte und Drucker
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedDFÜ
+ Area NetworkAndInternetDirekter Zugriff
+ Area NetworkAndInternet, only available if DirectAccess is enabledSmartphone direkt öffnen
+ Area EaseOfAccessAnzeige
+ Area EaseOfAccessAnzeigeeigenschaften
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedDokumente
+ Area PrivacyMeine Anzeige wird dupliziert
+ Area SystemWährend dieser Stunden
+ Area SystemErleichterte Bedienung Center
+ Area Control Panel (legacy settings)Edition
+ Means the "Windows Edition"E-Mail-Adresse
+ Area PrivacyE-Mail- und App-Konten
+ Area UserAccountsVerschlüsselung
+ Area SystemUmgebung
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Ethernet
+ Area NetworkAndInternetExploit-SchutzExtras
+ Area Extra, , only used for setting of 3rd-Party toolsEye-Steuerelement
+ Area EaseOfAccessEyetracker
+ Area Privacy, requires eyetracker hardwareFamilie und andere Personen
+ Area UserAccountsFeedback und Diagnose
+ Area PrivacyDateisystem
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedMein Gerät suchen.
+ Area UpdateAndSecurityFirewallBenachrichtigungsassistent – ruhige Stunden
+ Area SystemBenachrichtigungsassistent – ruhige Momente
+ Area SystemOrdneroptionen
+ Area Control Panel (legacy settings)Schriftarten
+ Area EaseOfAccessFür Entwickler
+ Area UpdateAndSecuritySpieleleiste
+ Area GamingGamecontroller
+ Area Control Panel (legacy settings)Game DVR
+ Area Gaming
- Spielmodus
+ Game Mode
+ Area GamingGateway
+ Should not translatedAllgemein
+ Area PrivacyProgramme abrufen
+ Area Control Panel (legacy settings)Erste Schritte
+ Area Control Panel (legacy settings)Ansicht "Schneller Blick"
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterGrafikeinstellungen
+ Area SystemGraustufeGrüne Woche
+ Mean you don't can see green colorsHeadset-Anzeige
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Hoher Kontrast
+ Area EaseOfAccessHolographische Audiodaten
@@ -608,42 +757,68 @@
Heimnetzgruppe
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"BildIndizierungsoptionen
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedInfrarot
+ Area Control Panel (legacy settings)Freihand und Eingabe
+ Area PrivacyInternetoptionen
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedInvertierte FarbenIP-Adresse
+ Should not translatedIsoliertes BrowsenJapanische IME-Einstellungen
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedJoystickeigenschaften
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedTastatur
+ Area EaseOfAccessKeypad
@@ -653,6 +828,7 @@
Sprache
+ Area TimeAndLanguageHelle Farbe
@@ -661,103 +837,156 @@
Lichtmodus
- Standort
+ Speicherort
+ Area PrivacySperrbildschirm
+ Area PersonalizationBildschirmlupe
+ Area EaseOfAccessE-Mail – Microsoft Exchange oder Windows-Nachrichten
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedBekannte Netzwerke verwalten
+ Area NetworkAndInternetOptionale Features verwalten
+ Area AppsMessaging
+ Area PrivacyGetaktete VerbindungMikrofon
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedMobile GeräteMobiler Hotspot
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoWeitere Details
+ Area CortanaBewegung
+ Area PrivacyMaus
+ Area EaseOfAccessMaus und Touchpad
+ Area DeviceEigenschaften für Maus, Schriftarten, Tastatur und Drucker
+ Area Control Panel (legacy settings)Mauszeiger
+ Area EaseOfAccessMultimediaeigenschaften
+ Area Control Panel (legacy settings)Multitasking
-
-
- NFC
-
-
- NFC-Transaktionen
+ Area SystemSprachausgabe
+ Area EaseOfAccessNavigationsleiste
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedNetzwerk
+ Area NetworkAndInternetNetzwerk- und Freigabecenter
+ Area Control Panel (legacy settings)Netzwerkverbindung
+ Area Control Panel (legacy settings)Netzwerkeigenschaften
+ Area Control Panel (legacy settings)Netzwerk-Setup-Assistent
+ Area Control Panel (legacy settings)Netzwerkstatus
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ NFC-Transaktionen
+ "NFC should not translated"NachtlichtEinstellungen für Nachtlicht
+ Area SystemHinweis
@@ -827,339 +1056,476 @@
Benachrichtigungen
+ Area PrivacyBenachrichtigungen und Aktionen
+ Area SystemNUM-Sperre
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedODBC-Datenquellenadministrator (32-Bit)
+ Area Control Panel (legacy settings)ODBC-Datenquellenadministrator (64-Bit)
+ Area Control Panel (legacy settings)Offlinedateien
+ Area Control Panel (legacy settings)Offline-Karten
+ Area AppsOffline Karten – Karten herunterladen
+ Area AppsAuf dem BildschirmBetriebssystem
+ Means the "Operating System"Andere Geräte
+ Area PrivacyWeitere Optionen
+ Area EaseOfAccessAndere BenutzerJugendschutz
+ Area Control Panel (legacy settings)
- Kennwort
+ Passwort
+
+
+ password.cpl
+ File name, Should not translatedKennworteigenschaften
+ Area Control Panel (legacy settings)Stift und Eingabegeräte
+ Area Control Panel (legacy settings)Stift und Toucheingabe
+ Area Control Panel (legacy settings)Stift und Windows Ink
+ Area DevicePersonen in meiner Umgebung
+ Area Control Panel (legacy settings)Leistungsdaten und Tools
+ Area Control Panel (legacy settings)Berechtigungen und Verlauf
+ Area CortanaPersonalisierung (Kategorie)
+ Area Personalization
- Telefon
+ Smartphone
+ Area PhoneTelefon und Modem
+ Area Control Panel (legacy settings)Telefon und Modem – Optionen
+ Area Control Panel (legacy settings)Telefonanrufe
+ Area PrivacyTelefon – Standard-Apps
+ Area SystemBildBilder
+ Area PrivacyPinyin IME-Einstellungen
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedPinyin IME-Einstellungen – Domänen-Lexikon
+ Area TimeAndLanguagePinyin IME-Einstellungen – Schlüsselkonfiguration
+ Area TimeAndLanguagePinyin IME-Einstellungen – UDP
+ Area TimeAndLanguageSpielen eines Spiels im Vollbildmodus
+ Area GamingPlug-In zum Suchen nach Windows-Einstellungen
- Windows-Einstellungen
+ Windows SettingsEnergieeinstellungen und Ruhemodus
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedEnergieoptionen
+ Area Control Panel (legacy settings)Präsentation
-
- Druckbildschirm
-
Drucker
+ Area Control Panel (legacy settings)Drucker und Scanner
+ Area Device
+
+
+ Druckbildschirm
+ Mean the "Print screen" keyProblemberichte und -lösungen
+ Area Control Panel (legacy settings)AuftragsverarbeiterProgramme und Features
+ Area Control Panel (legacy settings)Projektion auf diesen PC
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colorsBereitstellung
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageNäherung
+ Area NetworkAndInternetProxy
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageSpiel mit ruhigen MomentenRadios
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)ErkennungWiederherstellung
+ Area UpdateAndSecurityRote Augen
+ Mean red eye effect by over-the-night flightsRot-grün
+ Mean the weakness you can't differ between red and green colorsRote Woche
+ Mean you don't can see red colorsRegion
+ Area TimeAndLanguage
+
+
+ Regionale Sprache
+ Area TimeAndLanguage
+
+
+ Eigenschaften für regionale Einstellungen
+ Area Control Panel (legacy settings)Region und Sprache
+ Area Control Panel (legacy settings)Regionsformatierung
-
- Regionale Sprache
-
-
- Eigenschaften für regionale Einstellungen
-
RemoteApp- und Desktop-Verbindungen
+ Area Control Panel (legacy settings)Remotedesktop
+ Area SystemScanner und Kameras
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedGeplantGeplante Tasks
+ Area Control Panel (legacy settings)Automatische Ausrichtung
+ Area SystemScrollleistenScroll-Sperre
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedWindows wird durchsucht
+ Area CortanaSecureDNS
+ Should not translatedSecurity Center
+ Area Control Panel (legacy settings)SicherheitsauftragsverarbeiterSitzungsbereinigung
-
-
- Kiosk einrichten
+ Area SurfaceHubStartseite "Einstellungen"
+ Area Home, Overview-page for all areas of settings
+
+
+ Kiosk einrichten
+ Area UserAccountsFreigegebene Erfahrungen
-
-
- WLAN
+ Area SystemTastenkombinationen
+
+ WLAN
+ dont translate this, is a short term to find entries
+
Anmeldeoptionen
+ Area UserAccountsAnmeldeoptionen – dynamische Sperre
+ Area UserAccountsGröße
+ Size for text and symbolsSound
+ Area SystemSpeech
+ Area EaseOfAccessSpracherkennung
+ Area Control Panel (legacy settings)SpracheingabeStarten
+ Area PersonalizationStartorteStart-Apps
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedSpeicher
+ Area SystemSpeicherrichtlinien
+ Area SystemSpeicheroptimierung
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsSynchronisierungscenter
+ Area Control Panel (legacy settings)Einstellungen synchronisieren
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedSystem
+ Area Control Panel (legacy settings)Systemeigenschaften und Assistent zum Hinzufügen neuer Hardware
+ Area Control Panel (legacy settings)Registerkarte
+ Means the key "Tabulator" on the keyboardTablet-Modus
+ Area SystemTablet PC-Einstellungen
+ Area Control Panel (legacy settings)SprechenMit Cortana sprechen
+ Area CortanaTaskleiste
+ Area PersonalizationTaskleistenfarbeAufgaben
+ Area PrivacyTeamkonferenzen
+ Area SurfaceHubTeamgeräteverwaltung
+ Area SurfaceHubText-zu-Sprache
+ Area Control Panel (legacy settings)Designs
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedZeitachse
@@ -1172,51 +1538,68 @@
Touchpad
+ Area DeviceTransparenz
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
Problembehandlung
+ Area UpdateAndSecurityTruePlay
+ Area GamingEingabe
+ Area DeviceDeinstallieren
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceBenutzerkonten
+ Area Control Panel (legacy settings)Version
+ Means The "Windows Version"Videowiedergabe
+ Area AppsVideos
+ Area PrivacyVirtuelle DesktopsVirus
+ Means the virus in computers and softwareSprachaktivierung
+ Area PrivacyLautstärkeVPN
+ Area NetworkAndInternetHintergrundbild
@@ -1226,75 +1609,102 @@
Willkommenscenter
+ Area Control Panel (legacy settings)Willkommensseite
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedMausrad
+ Area DeviceWLAN
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWLAN-Anrufe
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWLAN-Einstellungen
+ "Wi-Fi" should not translatedFensterrahmenWindows Anytime-Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows-Firewall
+ Area Control Panel (legacy settings)Windows Hello-Setup – Gesichtserkennung
+ Area UserAccountsWindows Hello-Setup – Fingerabdruck
+ Area UserAccountsWindows-Insider-Programm
+ Area UpdateAndSecurityWindows-Mobilitätscenter
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaWindows-Sicherheit
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update – Erweiterte Optionen
+ Area UpdateAndSecurityWindows Update – nach Updates suchen
+ Area UpdateAndSecurityWindows Update – Neustartoptionen
+ Area UpdateAndSecurityWindows Update – optionale Updates anzeigen
+ Area UpdateAndSecurityWindows Update – Updateverlauf anzeigen
+ Area UpdateAndSecurityDrahtlos
@@ -1304,107 +1714,26 @@
Arbeitsplatzbereitstellung
+ Area UserAccountsWubi IME-Einstellungen
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedWubi IME-Einstellungen – UDP
+ Area TimeAndLanguageXbox Netzwerk
+ Area GamingIhre Informationen
+ Area UserAccountsZoom
-
-
-
-
-
-
-
-
- bpmf
-
-
- Anrufe
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-419.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-419.resx
new file mode 100644
index 000000000..cd0ce4745
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-419.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
+
+
+ Acerca de
+ 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
+
+
+ Modo de juego
+ 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
+
+
+ Idioma
+ 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/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-EM.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-EM.resx
new file mode 100644
index 000000000..ad82280fd
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.es-EM.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
+
+
+ Acerca de
+ Area System
+
+
+ access.cpl
+ File name, Should not translated
+
+
+ Opciones de accesibilidad
+ Area Control Panel (legacy settings)
+
+
+ Aplicaciones accesorio
+ Area Privacy
+
+
+ Acceso a trabajo o escuela
+ Area UserAccounts
+
+
+ Información de la cuenta
+ Area Privacy
+
+
+ Cuentas
+ Area SurfaceHub
+
+
+ Centro de actividades
+ Area Control Panel (legacy settings)
+
+
+ Activación
+ Area UpdateAndSecurity
+
+
+ Historial de actividades
+ Area Privacy
+
+
+ Añadir Hardware
+ Area Control Panel (legacy settings)
+
+
+ Añadir/Eliminar Programas
+ Area Control Panel (legacy settings)
+
+
+ Añade tu teléfono
+ Area Phone
+
+
+ Herramientas administrativas
+ Area System
+
+
+ Configuración de pantalla avanzada
+ Area System, only available on devices that support advanced display options
+
+
+ Configuración de gráficos
+
+
+ ID de publicidad
+ Area Privacy, Deprecated in Windows 10, version 1809 and later
+
+
+ Modo avión
+ Area NetworkAndInternet
+
+
+ Alt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboard
+
+
+ Nombres alternativos
+
+
+ Animaciones
+
+
+ Color de aplicación
+
+
+ Diagnóstico de aplicaciones
+ Area Privacy
+
+
+ Características de aplicación
+ Area Apps
+
+
+ Aplicación
+ Short/modern name for application
+
+
+ Aplicaciones y características
+ Area Apps
+
+
+ Configuración del sistema
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment.
+
+
+ Aplicaciones para sitios web
+ Area Apps
+
+
+ Preferencias de volumen de aplicación y dispositivo
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translated
+
+
+ Categoría
+ Mean the settings area or settings category
+
+
+ Cuentas
+
+
+ Herramientas administrativas
+ Area Control Panel (legacy settings)
+
+
+ Apariencia y Personalización
+
+
+ Aplicaciones
+
+
+ Hora y región
+
+
+ Panel de control
+
+
+ Cortana
+
+
+ Dispositivos
+
+
+ Accesibilidad
+
+
+ Extras
+
+
+ Juegos
+
+
+ Hardware y Sonido
+
+
+ Inicio
+
+
+ Realidad mixta
+
+
+ Red e Internet
+
+
+ Personalización
+
+
+ Tu teléfono
+
+
+ Privacidad
+
+
+ Aplicaciones
+
+
+ SurfaceHub
+
+
+ Sistema
+
+
+ Sistema y seguridad
+
+
+ Hora e idioma
+
+
+ Actualización y seguridad
+
+
+ Cuentas de usuario
+
+
+ Acceso asignado
+
+
+ Sonido
+ Area EaseOfAccess
+
+
+ Alertas de sonido
+
+
+ Audio y voz
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ Descargas automáticas de archivos
+ Area Privacy
+
+
+ Reproducción automática
+ Area Device
+
+
+ Fondo
+ Area Personalization
+
+
+ Aplicaciones en segundo plano
+ Area Privacy
+
+
+ Copia de seguridad
+ Area UpdateAndSecurity
+
+
+ Copia de seguridad y restauración
+ Area Control Panel (legacy settings)
+
+
+ Ahorro de batería
+ Area System, only available on devices that have a battery, such as a tablet
+
+
+ Ajustes de ahorro de batería
+ Area System, only available on devices that have a battery, such as a tablet
+
+
+ Detalles de uso del ahorro de batería
+
+
+ Uso de la batería
+ Area System, only available on devices that have a battery, such as a tablet
+
+
+ Dispositivos biométricos
+ Area Control Panel (legacy settings)
+
+
+ Cifrado de unidad con BitLocker
+ Area Control Panel (legacy settings)
+
+
+ Luz azul
+
+
+ Bluetooth
+ Area Device
+
+
+ Dispositivos Bluetooth
+ Area Control Panel (legacy settings)
+
+
+ Azul-amarillo
+
+
+ Bopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translated
+
+
+ Difusión
+ Area Gaming
+
+
+ Calendario
+ Area Privacy
+
+
+ Historial de llamadas
+ Area Privacy
+
+
+ llamando
+
+
+ Cámara
+ Area Privacy
+
+
+ Cangjie IME
+ Area TimeAndLanguage
+
+
+ Bloq Mayús
+ Mean the "Caps Lock" key
+
+
+ Móvil y SIM
+ Area NetworkAndInternet
+
+
+ Elegir qué carpetas aparecen en Inicio
+ Area Personalization
+
+
+ Servicio de cliente para NetWare
+ Area Control Panel (legacy settings)
+
+
+ Portapapeles
+ Area System
+
+
+ Subtítulos
+ Area EaseOfAccess
+
+
+ Filtros de color
+ Area EaseOfAccess
+
+
+ Administración de color
+ Area Control Panel (legacy settings)
+
+
+ Colores
+ Area Personalization
+
+
+ Comando
+ The command to direct start a setting
+
+
+ Dispositivos conectados
+ Area Device
+
+
+ Contactos
+ Area Privacy
+
+
+ Panel de control
+ Type of the setting is a "(legacy) Control Panel setting"
+
+
+ Copiar comando
+
+
+ Aislamiento del núcleo
+ Means the protection of the system core
+
+
+ Cortana
+ Area Cortana
+
+
+ Cortana en todos mis dispositivos
+ Area Cortana
+
+
+ Cortana - Idioma
+ Area Cortana
+
+
+ Administrador de credenciales
+ Area Control Panel (legacy settings)
+
+
+ Multi-dispositivo
+
+
+ Dispositivos personalizados
+
+
+ Color oscuro
+
+
+ Modo oscuro
+
+
+ Uso de datos
+ Area NetworkAndInternet
+
+
+ Fecha y hora
+ Area TimeAndLanguage
+
+
+ Aplicaciones predeterminadas
+ Area Apps
+
+
+ Cámara predeterminada
+ Area Device
+
+
+ Ubicación predeterminada
+ Area Control Panel (legacy settings)
+
+
+ Programas predeterminados
+ Area Control Panel (legacy settings)
+
+
+ Ubicaciones de guardado por defecto
+ Area System
+
+
+ Optimización de entrega
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translated
+
+
+ Temas de escritorio
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colors
+
+
+ Administrador de dispositivos
+ Area Control Panel (legacy settings)
+
+
+ Dispositivos e impresoras
+ Area Control Panel (legacy settings)
+
+
+ DHCP
+ Should not translated
+
+
+ Marcación
+ Area NetworkAndInternet
+
+
+ Acceso directo
+ Area NetworkAndInternet, only available if DirectAccess is enabled
+
+
+ Abrir directamente en el teléfono
+ Area EaseOfAccess
+
+
+ Pantalla
+ Area EaseOfAccess
+
+
+ Propiedades de pantalla
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translated
+
+
+ Documentos
+ Area Privacy
+
+
+ Duplicar mi pantalla
+ Area System
+
+
+ Durante estas horas
+ Area System
+
+
+ Centro de accesibilidad
+ Area Control Panel (legacy settings)
+
+
+ Edición
+ Means the "Windows Edition"
+
+
+ Correo
+ Area Privacy
+
+
+ Correo electrónico y cuentas
+ Area UserAccounts
+
+
+ Cifrado
+ Area System
+
+
+ Entorno
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ Ethernet
+ Area NetworkAndInternet
+
+
+ Protección contra exploits
+
+
+ Extras
+ Area Extra, , only used for setting of 3rd-Party tools
+
+
+ Control ocular
+ Area EaseOfAccess
+
+
+ Seguimiento ocular
+ Area Privacy, requires eyetracker hardware
+
+
+ Familia y otros usuarios
+ Area UserAccounts
+
+
+ Comentarios y diagnóstico
+ Area Privacy
+
+
+ Sistema de archivos
+ Area Privacy
+
+
+ FindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translated
+
+
+ Encontrar mi dispositivo
+ Area UpdateAndSecurity
+
+
+ Cortafuegos
+
+
+ Asistente de concentración - Horas tranquilas
+ Area System
+
+
+ Asistente de concentración - Momentos tranquilos
+ Area System
+
+
+ Opciones de carpeta
+ Area Control Panel (legacy settings)
+
+
+ Fuentes
+ Area EaseOfAccess
+
+
+ Para desarrolladores
+ Area UpdateAndSecurity
+
+
+ Barra de juego
+ Area Gaming
+
+
+ Mandos de juego
+ Area Control Panel (legacy settings)
+
+
+ Juego DVR
+ Area Gaming
+
+
+ Modo de juego
+ Area Gaming
+
+
+ Gateway
+ Should not translated
+
+
+ General
+ Area Privacy
+
+
+ Obtener programas
+ Area Control Panel (legacy settings)
+
+
+ Empezando
+ Area Control Panel (legacy settings)
+
+
+ Apariencia
+ Area Personalization, Deprecated in Windows 10, version 1809 and later
+
+
+ Configuración de gráficos
+ Area System
+
+
+ Escala de grises
+
+
+ Falta de receptores del color verde
+ Mean you don't can see green colors
+
+
+ Pantalla del casco
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ Contraste alto
+ Area EaseOfAccess
+
+
+ Audio Holográfico
+
+
+ Entorno Holográfico
+
+
+ Equipo holográfico
+
+
+ Administración Holográfica
+
+
+ Grupo local
+ Area Control Panel (legacy settings)
+
+
+ ID
+ MEans The "Windows Identifier"
+
+
+ Imagen
+
+
+ Opciones de indexación
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translated
+
+
+ Infrarrojos
+ Area Control Panel (legacy settings)
+
+
+ Entrada manuscrita y escritura
+ Area Privacy
+
+
+ Opciones de Internet
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translated
+
+
+ Colores invertidos
+
+
+ IP
+ Should not translated
+
+
+ Navegación aislada
+
+
+ Ajustes de entrada IME de Japonés
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translated
+
+
+ Propiedades del joystick
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translated
+
+
+ Teclado
+ Area EaseOfAccess
+
+
+ Keypad
+
+
+ Teclas
+
+
+ Idioma
+ Area TimeAndLanguage
+
+
+ Color claro
+
+
+ Modo claro
+
+
+ Ubicación
+ Area Privacy
+
+
+ Bloquear pantalla
+ Area Personalization
+
+
+ Lupa
+ Area EaseOfAccess
+
+
+ Correo - Mensajes de Microsoft Exchange o Windows
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translated
+
+
+ Administrar redes conocidas
+ Area NetworkAndInternet
+
+
+ Administrar características opcionales
+ Area Apps
+
+
+ Mensajería
+ Area Privacy
+
+
+ Conexión de uso medido
+
+
+ Micrófono
+ 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
+
+
+ Dispositivos móviles
+
+
+ Zona con cobertura inalámbrica móvil
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translated
+
+
+ Mono
+
+
+ Más detalles
+ Area Cortana
+
+
+ Movimiento
+ Area Privacy
+
+
+ Ratón
+ Area EaseOfAccess
+
+
+ Ratón y panel táctil
+ Area Device
+
+
+ Propiedades del ratón, fuentes, teclado e impresoras
+ Area Control Panel (legacy settings)
+
+
+ Puntero del ratón
+ Area EaseOfAccess
+
+
+ Propiedades multimedia
+ Area Control Panel (legacy settings)
+
+
+ Multitarea
+ Area System
+
+
+ Narrador
+ Area EaseOfAccess
+
+
+ Barra de navegación
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translated
+
+
+ Red
+ Area NetworkAndInternet
+
+
+ Centro de redes y recursos compartidos
+ Area Control Panel (legacy settings)
+
+
+ Conexión de red
+ Area Control Panel (legacy settings)
+
+
+ Propiedades de red
+ Area Control Panel (legacy settings)
+
+
+ Asistente de configuración de red
+ Area Control Panel (legacy settings)
+
+
+ Estado de red
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Transacciones NFC
+ "NFC should not translated"
+
+
+ Luz nocturna
+
+
+ Configuración de la luz nocturna
+ Area System
+
+
+ Nota
+
+
+ Sólo disponible cuando haya conectado un dispositivo móvil a su dispositivo.
+
+
+ Sólo disponible en dispositivos que soporten opciones de gráficos avanzados.
+
+
+ Sólo disponible en dispositivos que tienen batería, como una tableta.
+
+
+ Obsoleto en Windows 10, versión 1809 (build 17763) y posterior.
+
+
+ Sólo disponible si Dial está emparejado.
+
+
+ Sólo disponible si DirectAccess está habilitado.
+
+
+ Sólo disponible en dispositivos que soporten opciones de pantalla avanzada.
+
+
+ Sólo presente si el usuario está inscrito en el Programa de Windows Insider.
+
+
+ Requiere hardware de seguimiento ocular.
+
+
+ Disponible si se instala el editor de métodos de entrada de Japonés de Microsoft.
+
+
+ Disponible si el editor de métodos de entrada Pinyin de Microsoft está instalado.
+
+
+ Disponible si el editor de métodos de entrada Wubi de Microsoft está instalado.
+
+
+ Sólo disponible si la aplicación de Realidad Mixta está instalada.
+
+
+ Sólo disponible para móviles y si la empresa ha desplegado un paquete para ello.
+
+
+ Añadido en Windows 10, versión 1903 (build 18362).
+
+
+ Añadido en Windows 10, versión 2004 (build 19041).
+
+
+ Sólo disponible si las "aplicaciones de configuración" están instaladas, por ejemplo, por un tercero.
+
+
+ Sólo disponible si el hardware del touchpad está presente.
+
+
+ Sólo disponible si el dispositivo tiene un adaptador Wi-Fi.
+
+
+ El dispositivo debe ser compatible con Windows Anywhere.
+
+
+ Sólo disponible si la empresa ha desplegado un paquete para ello.
+
+
+ Notificaciones
+ Area Privacy
+
+
+ Notificaciones y acciones
+ Area System
+
+
+ Bloq Num
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translated
+
+
+ Administrador de fuentes de datos ODBC (32 bits)
+ Area Control Panel (legacy settings)
+
+
+ Administrador de fuentes de datos ODBC (64 bits)
+ Area Control Panel (legacy settings)
+
+
+ Archivos sin conexión
+ Area Control Panel (legacy settings)
+
+
+ Mapas sin conexión
+ Area Apps
+
+
+ Mapas sin conexión - Descargar mapas
+ Area Apps
+
+
+ En pantalla
+
+
+ SO
+ Means the "Operating System"
+
+
+ Otros dispositivos
+ Area Privacy
+
+
+ Otras opciones
+ Area EaseOfAccess
+
+
+ Otros usuarios
+
+
+ Control parental
+ Area Control Panel (legacy settings)
+
+
+ Contraseña
+
+
+ password.cpl
+ File name, Should not translated
+
+
+ Propiedades de contraseña
+ Area Control Panel (legacy settings)
+
+
+ Lápiz y dispositivos de entrada
+ Area Control Panel (legacy settings)
+
+
+ Lápiz y entrada táctil
+ Area Control Panel (legacy settings)
+
+
+ Lápiz y Windows Ink
+ Area Device
+
+
+ Personas cercanas
+ Area Control Panel (legacy settings)
+
+
+ Información y herramientas de rendimiento
+ Area Control Panel (legacy settings)
+
+
+ Permisos e historial
+ Area Cortana
+
+
+ Personalización (categoría)
+ Area Personalization
+
+
+ Tu teléfono
+ Area Phone
+
+
+ Teléfono y módem
+ Area Control Panel (legacy settings)
+
+
+ Teléfono y módem - Opciones
+ Area Control Panel (legacy settings)
+
+
+ Llamadas de teléfono
+ Area Privacy
+
+
+ Teléfono - Aplicaciones predeterminadas
+ Area System
+
+
+ Imagen
+
+
+ Imágenes
+ Area Privacy
+
+
+ Ajustes de entrada IME de Pinyin
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installed
+
+
+ Ajustes de entrada IME de Pinyin - Diccionario
+ Area TimeAndLanguage
+
+
+ Ajustes de entrada IME de Pinyin - Configuración de teclado
+ Area TimeAndLanguage
+
+
+ Ajustes de entrada IME de Pinyin - Frases de usuario
+ Area TimeAndLanguage
+
+
+ Jugando a pantalla completa
+ Area Gaming
+
+
+ Complemento para buscar ajustes de Windows
+
+
+ Configuración de Windows
+
+
+ Inicio/Apagado y suspensión
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translated
+
+
+ Opciones de energía
+ Area Control Panel (legacy settings)
+
+
+ Presentación
+
+
+ Impresoras
+ Area Control Panel (legacy settings)
+
+
+ Impresoras y escáneres
+ Area Device
+
+
+ Imprimir pantalla
+ Mean the "Print screen" key
+
+
+ Informes de problemas y soluciones
+ Area Control Panel (legacy settings)
+
+
+ Procesador
+
+
+ Programas y características
+ Area Control Panel (legacy settings)
+
+
+ Proyectando a este equipo
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colors
+
+
+ Aprovisionamiento
+ Area UserAccounts, only available if enterprise has deployed a provisioning package
+
+
+ Proximidad
+ Area NetworkAndInternet
+
+
+ Proxy
+ Area NetworkAndInternet
+
+
+ Idioma
+ Area TimeAndLanguage
+
+
+ Juego de momentos tranquilos
+
+
+ Radios
+ Area Privacy
+
+
+ RAM
+ Means the Read-Access-Memory (typical the used to inform about the size)
+
+
+ Reconocimiento
+
+
+ Recuperación
+ Area UpdateAndSecurity
+
+
+ Ojo rojo
+ Mean red eye effect by over-the-night flights
+
+
+ Rojo-verde
+ Mean the weakness you can't differ between red and green colors
+
+
+ Falta de receptores al color rojo
+ Mean you don't can see red colors
+
+
+ Región
+ Area TimeAndLanguage
+
+
+ Idioma Regional
+ Area TimeAndLanguage
+
+
+ Propiedades de configuración regional
+ Area Control Panel (legacy settings)
+
+
+ Región e idioma
+ Area Control Panel (legacy settings)
+
+
+ Formato regional
+
+
+ Conexiones de aplicación y escritorio remotos
+ Area Control Panel (legacy settings)
+
+
+ Escritorio remoto
+ Area System
+
+
+ Escáneres y cámaras
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translated
+
+
+ Programado
+
+
+ Tareas programadas
+ Area Control Panel (legacy settings)
+
+
+ Rotación de pantalla
+ Area System
+
+
+ Barras de desplazamiento
+
+
+ Bloqueo de desplazamiento
+ Mean the "Scroll Lock" key
+
+
+ SDNS
+ Should not translated
+
+
+ Buscando Windows
+ Area Cortana
+
+
+ SecureDNS
+ Should not translated
+
+
+ Centro de seguridad
+ Area Control Panel (legacy settings)
+
+
+ Procesador de seguridad
+
+
+ Limpieza de sesión
+ Area SurfaceHub
+
+
+ Página principal de configuración
+ Area Home, Overview-page for all areas of settings
+
+
+ Configurar kiosco
+ Area UserAccounts
+
+
+ Experiencias compartidas
+ Area System
+
+
+ Atajos
+
+
+ wifi
+ dont translate this, is a short term to find entries
+
+
+ Opciones de inicio de sesión
+ Area UserAccounts
+
+
+ Opciones de inicio de sesión - Bloqueo dinámico
+ Area UserAccounts
+
+
+ Tamaño
+ Size for text and symbols
+
+
+ Sonido
+ Area System
+
+
+ Voz
+ Area EaseOfAccess
+
+
+ Reconocimiento de voz
+ Area Control Panel (legacy settings)
+
+
+ Escritura de voz
+
+
+ Inicio
+ Area Personalization
+
+
+ Lugares de inicio
+
+
+ Aplicaciones que arrancan al inicio
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translated
+
+
+ Almacenamiento
+ Area System
+
+
+ Políticas de almacenamiento
+ Area System
+
+
+ Sensor de almacenamiento
+ Area System
+
+
+ en
+ Example: Area "System" in System settings
+
+
+ Centro de sincronización
+ Area Control Panel (legacy settings)
+
+
+ Sincroniza tu configuración
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translated
+
+
+ Sistema
+ Area Control Panel (legacy settings)
+
+
+ Propiedades del sistema y añadir nuevo asistente de hardware
+ Area Control Panel (legacy settings)
+
+
+ Tab
+ Means the key "Tabulator" on the keyboard
+
+
+ Modo tableta
+ Area System
+
+
+ Configuración de tableta
+ Area Control Panel (legacy settings)
+
+
+ Hablar
+
+
+ Habla con Cortana
+ Area Cortana
+
+
+ Barra de tareas
+ Area Personalization
+
+
+ Color de la barra de tareas
+
+
+ Tareas
+ Area Privacy
+
+
+ Conferencias de grupo
+ Area SurfaceHub
+
+
+ Administración de dispositivos de grupo
+ Area SurfaceHub
+
+
+ Texto a voz
+ Area Control Panel (legacy settings)
+
+
+ Temas
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translated
+
+
+ Línea de tiempo
+
+
+ Tocar
+
+
+ Respuesta al toque
+
+
+ Touchpad
+ Area Device
+
+
+ Transparencia
+
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
+
+ Solución de Problemas
+ Area UpdateAndSecurity
+
+
+ TruePlay
+ Area Gaming
+
+
+ Escritura
+ Area Device
+
+
+ Desinstalar
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ USB
+ Area Device
+
+
+ Cuentas de usuario
+ Area Control Panel (legacy settings)
+
+
+ Versión
+ Means The "Windows Version"
+
+
+ Reproducción de vídeo
+ Area Apps
+
+
+ Videos
+ Area Privacy
+
+
+ Escritorios virtuales
+
+
+ Virus
+ Means the virus in computers and software
+
+
+ Activación por voz
+ Area Privacy
+
+
+ Volumen
+
+
+ VPN
+ Area NetworkAndInternet
+
+
+ Fondo de pantalla
+
+
+ Color más cálido
+
+
+ Centro de bienvenida
+ Area Control Panel (legacy settings)
+
+
+ Pantalla de bienvenida
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translated
+
+
+ Rueda
+ Area Device
+
+
+ Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabled
+
+
+ Llamada por Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabled
+
+
+ Ajustes de Wi-Fi
+ "Wi-Fi" should not translated
+
+
+ Borde de ventana
+
+
+ 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)
+
+
+ Cortafuegos de Windows
+ Area Control Panel (legacy settings)
+
+
+ Configuración de Windows Hola - Cara
+ Area UserAccounts
+
+
+ Configuración de Windows Hola - Huella digital
+ Area UserAccounts
+
+
+ Programa Insider de Windows
+ Area UpdateAndSecurity
+
+
+ Centro de movilidad de Windows
+ Area Control Panel (legacy settings)
+
+
+ Búsqueda de Windows
+ Area Cortana
+
+
+ Seguridad de Windows
+ Area UpdateAndSecurity
+
+
+ Windows Update
+ Area UpdateAndSecurity
+
+
+ Windows Update - Opciones avanzadas
+ Area UpdateAndSecurity
+
+
+ Windows Update - Buscar actualizaciones
+ Area UpdateAndSecurity
+
+
+ Windows Update - Opciones de reinicio
+ Area UpdateAndSecurity
+
+
+ Windows Update - Ver actualizaciones opcionales
+ Area UpdateAndSecurity
+
+
+ Windows Update - Ver historial de actualizaciones
+ Area UpdateAndSecurity
+
+
+ Inalámbrico
+
+
+ Lugar de trabajo
+
+
+ Aprovisionamiento del lugar de trabajo
+ Area UserAccounts
+
+
+ Configuración de Wubi IME
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed
+
+
+ Configuración de Wubi IME - Frases de usuario
+ Area TimeAndLanguage
+
+
+ Red Xbox
+ Area Gaming
+
+
+ Tu información
+ Area UserAccounts
+
+
+ Zoom
+ Mean zooming of things via a magnifier
+
+
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx
index 8285e6889..4f5f1a3ea 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.fr-FR.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -118,58 +118,79 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- À propos de
+ À propos
+ Area System
-
- Accès professionnel ou scolaire
+
+ access.cpl
+ File name, Should not translatedOptions d’accessibilité
+ Area Control Panel (legacy settings)Applications d’accessoires
+ Area Privacy
+
+
+ Accès professionnel ou scolaire
+ Area UserAccountsInformations sur le compte
+ Area PrivacyComptes
+ Area SurfaceHubGestion des services
+ Area Control Panel (legacy settings)Activation
+ Area UpdateAndSecurityHistorique de l’activité
+ Area PrivacyAjouter du matériel
+ Area Control Panel (legacy settings)
- Ajout/Suppression de programmes
+ Ajouter/Supprimer des programmes
+ Area Control Panel (legacy settings)Ajouter votre téléphone
+ Area PhoneOutils d’administration
+ Area SystemParamètres d’affichage avancés
+ Area System, only available on devices that support advanced display optionsGraphismes avancésID de publicité
+ Area Privacy, Deprecated in Windows 10, version 1809 and laterMode Avion
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboardAutres noms
@@ -180,38 +201,48 @@
Couleur de l'application
-
- Panneau de configuration
-
Diagnostics de l’application
+ Area PrivacyFonctionnalités de l’application
-
-
- Paramètres système
-
-
- Volume des applications et préférences de l'appareil
+ Area AppsApplication
+ Short/modern name for applicationApplications et fonctionnalités
+ Area Apps
+
+
+ Paramètres système
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Applications pour les sites web
+ Area Apps
+
+
+ Volume des applications et préférences de l'appareil
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedAires
+ Mean the settings area or settings categoryComptesOutils d’administration
+ Area Control Panel (legacy settings)Apparence et personnalisation
@@ -222,6 +253,9 @@
Horloge et région
+
+ Panneau de configuration
+
Cortana
@@ -284,132 +318,181 @@
Audio
+ Area EaseOfAccessAlertes audioAudio et message
-
-
- Lecture automatique
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Téléchargements automatiques de fichiers
+ Area Privacy
+
+
+ Lecture automatique
+ Area DeviceArrière-plan
+ Area PersonalizationApplications en arrière-plan
+ Area PrivacySauvegarde
+ Area UpdateAndSecuritySauvegarder et restaurer
+ Area Control Panel (legacy settings)Économiseur de batterie
+ Area System, only available on devices that have a battery, such as a tabletParamètres de l’économiseur de batterie
+ Area System, only available on devices that have a battery, such as a tabletDétails de l’utilisation de l’économiseur de batterieUtilisation de la batterie
+ Area System, only available on devices that have a battery, such as a tabletAppareils biométriques
+ Area Control Panel (legacy settings)Chiffrement de lecteur BitLocker
+ Area Control Panel (legacy settings)Lumière bleue
-
- Blue-yellow
-
Bluetooth
+ Area DevicePériphériques Bluetooth
+ Area Control Panel (legacy settings)
+
+
+ Bleu-JauneBopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedDiffusion
+ Area GamingCalendrier
+ Area PrivacyHistorique des appels
+ Area Privacy
+
+
+ appel en coursAppareil photo
+ Area PrivacyCangjie IME
+ Area TimeAndLanguageVerr. maj
+ Mean the "Caps Lock" keyCellulaire et SIM
+ Area NetworkAndInternetChoisir les dossiers qui apparaissent sur l’écran d’accueil
+ Area PersonalizationService client pour NetWare
+ Area Control Panel (legacy settings)Presse-papiers
+ Area SystemSous-titres
+ Area EaseOfAccessFiltres de couleur
+ Area EaseOfAccessGestion des couleurs
+ Area Control Panel (legacy settings)Couleurs
+ Area PersonalizationCommande
+ The command to direct start a settingAppareils connectés
+ Area DeviceContacts
+ Area Privacy
+
+
+ Panneau de configuration
+ Type of the setting is a "(legacy) Control Panel setting"Commande de copieIsolation de mémoire à tores magnétiques
+ Means the protection of the system coreCortana
+ Area CortanaCortana sur mes appareils
+ Area CortanaCortana - Langue
+ Area CortanaGestionnaire d’informations d’identification
+ Area Control Panel (legacy settings)Crossdevice
@@ -417,9 +500,6 @@
Appareils personnalisés
-
- DNS
-
Couleur sombre
@@ -428,171 +508,240 @@
Utilisation des données
+ Area NetworkAndInternetDate et heure
+ Area TimeAndLanguageApplications par défaut
+ Area AppsAppareil photo par défaut
+ Area DeviceEmplacement par défaut
+ Area Control Panel (legacy settings)Programmes par défaut
+ Area Control Panel (legacy settings)Emplacement d'enregistrement par défaut
+ Area SystemOptimisation de la distribution
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedThèmes de bureau
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colorsGestionnaire de périphériques
+ Area Control Panel (legacy settings)Appareils et imprimantes
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedAccès à distance
+ Area NetworkAndInternetAccès direct
+ Area NetworkAndInternet, only available if DirectAccess is enabledOuvrir directement votre téléphone
+ Area EaseOfAccessAfficher
+ Area EaseOfAccessAfficher les propriétés
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedDocuments
+ Area PrivacyDuplication de mon affichage
+ Area SystemPendant ces heures
+ Area SystemCentre d’options d'ergonomie
+ Area Control Panel (legacy settings)Édition
+ Means the "Windows Edition"E-mail
+ Area PrivacyComptes d’applications et de messagerie
+ Area UserAccountsChiffrement
+ Area SystemEnvironnement
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Ethernet
+ Area NetworkAndInternetProtection ExploitBonus
+ Area Extra, , only used for setting of 3rd-Party toolsContrôle visuel
+ Area EaseOfAccessSuivi oculaire
+ Area Privacy, requires eyetracker hardwareFamille et autres personnes
+ Area UserAccountsCommentaires et diagnostics
+ Area PrivacySystème de fichiers
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedLocaliser mon appareil
+ Area UpdateAndSecurityPare-feuAssistant de concentration - heures de tranquillité
+ Area SystemAssistant de concentration - moments de tranquillité
+ Area SystemOptions de dossier
+ Area Control Panel (legacy settings)Polices
+ Area EaseOfAccessPour les développeurs
+ Area UpdateAndSecurityBarre de jeu
+ Area GamingContrôleurs de jeu
+ Area Control Panel (legacy settings)Jeux DVR
+ Area Gaming
- Mode jeu
+ Game Mode
+ Area GamingPasserelle
+ Should not translatedGénéral
+ Area PrivacyObtenir des programmes
+ Area Control Panel (legacy settings)Prise en main
+ Area Control Panel (legacy settings)Coup d’œil
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterParamètres graphiques
+ Area SystemNuances de grisSemaine verte
+ Mean you don't can see green colorsAffichage du casque
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Contraste élevé
+ Area EaseOfAccessAudio holographique
@@ -608,42 +757,68 @@
Groupe résidentiel
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"ImageOptions d’indexation
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedInfrarouge
+ Area Control Panel (legacy settings)Entrée manuscrite et saisie
+ Area PrivacyOptions Internet
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedCouleurs inverséesIP
+ Should not translatedNavigation isoléeParamètres d’éditeur de méthode d'entrée du Japon
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedPropriétés du joystick
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedClavier
+ Area EaseOfAccessPavé
@@ -653,6 +828,7 @@
Langue
+ Area TimeAndLanguageCouleur claire
@@ -661,103 +837,156 @@
Mode clair
- Emplacement
+ Location
+ Area PrivacyÉcran de verrouillage
+ Area PersonalizationLoupe
+ Area EaseOfAccessCourrier - Microsoft Exchange ou Messagerie Windows
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedGérer les réseaux connus
+ Area NetworkAndInternetGérer les fonctionnalités facultatives
+ Area AppsMessagerie
+ Area PrivacyConnexion limitéeMicrophone
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedAppareils mobilesPoint d’accès sans fil mobile
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoPlus de détails
+ Area CortanaMouvement
+ Area PrivacySouris
+ Area EaseOfAccessSouris et pavé tactile
+ Area DevicePropriétés de la souris, des polices, du clavier et des imprimantes
+ Area Control Panel (legacy settings)Pointeur de la souris
+ Area EaseOfAccessPropriétés multimédias
+ Area Control Panel (legacy settings)Multitâche
-
-
- NFC
-
-
- Transactions NFC
+ Area SystemNarrateur
+ Area EaseOfAccessBarre de navigation
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedRéseau
+ Area NetworkAndInternetCentre réseau et partage
+ Area Control Panel (legacy settings)Connexion réseau
+ Area Control Panel (legacy settings)Propriétés du réseau
+ Area Control Panel (legacy settings)Assistant Installation réseau
+ Area Control Panel (legacy settings)État du réseau
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Transactions NFC
+ "NFC should not translated"Lumière nocturneParamètres d’éclairage nocturne
+ Area SystemRemarque
@@ -827,339 +1056,476 @@
Notifications
+ Area PrivacyNotifications et actions
+ Area SystemVerrouillage numérique
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedAdministrateur de la source de données ODBC (32 bits)
+ Area Control Panel (legacy settings)Administrateur de la source de données ODBC (64 bits)
+ Area Control Panel (legacy settings)Fichiers hors connexion
+ Area Control Panel (legacy settings)Cartes hors connexion
+ Area AppsCartes hors connexion - télécharger les cartes
+ Area AppsÀ l’écranSystème d’exploitation
+ Means the "Operating System"Autres appareils
+ Area PrivacyAutres options
+ Area EaseOfAccessAutres utilisateursContrôle parental
+ Area Control Panel (legacy settings)Mot de passe
+
+ password.cpl
+ File name, Should not translated
+
Propriétés du mot de passe
+ Area Control Panel (legacy settings)Stylet et périphériques d’entrée
+ Area Control Panel (legacy settings)Stylet et fonction tactile
+ Area Control Panel (legacy settings)Stylet et Windows Ink
+ Area DeviceVoisinage immédiat
+ Area Control Panel (legacy settings)Informations et outils sur les performances
+ Area Control Panel (legacy settings)Autorisations et historique
+ Area CortanaPersonnalisation (catégorie)
+ Area PersonalizationTéléphone
+ Area PhoneTéléphone et modem
+ Area Control Panel (legacy settings)Téléphone et Modem - Options
+ Area Control Panel (legacy settings)Appels téléphoniques
+ Area PrivacyTéléphone - Applications par défaut
+ Area SystemPictureImages
+ Area PrivacyParamètres IME pinyin
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedParamètres IME Pinyin - lexique de domaine
+ Area TimeAndLanguageParamètres IME pinyin - configuration de la clé
+ Area TimeAndLanguageParamètres IME pinyin - UDP
+ Area TimeAndLanguageLecture d’un jeu en mode plein écran
+ Area GamingPlug-in de recherche de paramètres Windows
- Paramètres Windows
+ Windows SettingsAlimentation et mise en veille
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedOptions d’alimentation
+ Area Control Panel (legacy settings)Présentation
-
- Écran d’impression
-
Imprimantes
+ Area Control Panel (legacy settings)Imprimantes et scanneurs
+ Area Device
+
+
+ Écran d’impression
+ Mean the "Print screen" keyRapports et solutions aux problèmes
+ Area Control Panel (legacy settings)ProcesseurProgrammes et fonctionnalités
+ Area Control Panel (legacy settings)Projection sur ce PC
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colorsApprovisionnement
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageProximité
+ Area NetworkAndInternetProxy
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageJeu de moments calmeSignaux radio
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)ReconnaissanceRécupération
+ Area UpdateAndSecurityYeux rouges
+ Mean red eye effect by over-the-night flightsRouge-vert
+ Mean the weakness you can't differ between red and green colorsSemaine rouge
+ Mean you don't can see red colorsRégion
+ Area TimeAndLanguage
+
+
+ Langue régionale
+ Area TimeAndLanguage
+
+
+ Propriétés des paramètres régionaux
+ Area Control Panel (legacy settings)Région et langue
+ Area Control Panel (legacy settings)Mise en forme des régions
-
- Langue régionale
-
-
- Propriétés des paramètres régionaux
-
Connexions RemoteApp et ordinateur de bureau
+ Area Control Panel (legacy settings)Bureau à distance
+ Area SystemScanneurs et appareils photo
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedPlanifiéTâches planifiées
+ Area Control Panel (legacy settings)Rotation de l'écran
+ Area SystemBarres de défilementVerrouillage du défilement
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedRecherche dans Windows
+ Area CortanaSecureDNS
+ Should not translatedSecurity Center
+ Area Control Panel (legacy settings)Processeur de sécuritéNettoyage de session
-
-
- Configurer un kiosque
+ Area SurfaceHubPage d’accueil des paramètres
+ Area Home, Overview-page for all areas of settings
+
+
+ Configurer un kiosque
+ Area UserAccountsExpériences partagées
-
-
- Wi-Fi
+ Area SystemRaccourcis
+
+ Wi-Fi
+ dont translate this, is a short term to find entries
+
Options de connexion
+ Area UserAccountsOptions de connexion - Verrouillage dynamique
+ Area UserAccountsTaille
+ Size for text and symbolsSon
+ Area SystemSpeech
+ Area EaseOfAccessReconnaissance vocale
+ Area Control Panel (legacy settings)Saisie vocaleDémarrer
+ Area PersonalizationEmplacements de départApplications de démarrage
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedStockage
+ Area SystemStratégies de stockage
+ Area SystemAssistant Stockage
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsCentre de synchronisation
+ Area Control Panel (legacy settings)Synchroniser vos paramètres
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedSystème
+ Area Control Panel (legacy settings)Assistant Ajout de nouveau matériel et propriétés système
+ Area Control Panel (legacy settings)Onglet
+ Means the key "Tabulator" on the keyboardMode tablette
+ Area SystemParamètres du Tablet PC
+ Area Control Panel (legacy settings)ParlerParler à Cortana
+ Area CortanaBarre des tâches
+ Area PersonalizationCouleur de la barre des tâchesTâches
+ Area PrivacyConférence d’équipe
+ Area SurfaceHubGestion des appareils d’équipe
+ Area SurfaceHubSynthèse vocale
+ Area Control Panel (legacy settings)Thèmes
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedChronologie
@@ -1172,51 +1538,68 @@
Pavé tactile
+ Area DeviceTransparence
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
Résoudre les problèmes
+ Area UpdateAndSecurityTruePlay
+ Area GamingTyping
+ Area DeviceDésinstaller
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceComptes d'utilisateur
+ Area Control Panel (legacy settings)Version
+ Means The "Windows Version"Lecture de vidéo
+ Area AppsVidéos
+ Area PrivacyBureaux virtuelsVirus
+ Means the virus in computers and softwareActivation vocale
+ Area PrivacyVolumeVPN
+ Area NetworkAndInternetFond d'écran
@@ -1226,75 +1609,102 @@
Centre d’accueil
+ Area Control Panel (legacy settings)Écran d’accueil
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedRoulette
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledAppel Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledParamètres Wi-Fi
+ "Wi-Fi" should not translatedBordure de la fenêtreWindows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Pare-feu Windows
+ Area Control Panel (legacy settings)Installation de Windows Hello - Visage
+ Area UserAccountsconfiguration de Windows Hello - Empreinte digitale
+ Area UserAccountsProgramme Windows Insider
+ Area UpdateAndSecurityCentre de mobilité Windows
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaSécurité Windows
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update - Options avancées
+ Area UpdateAndSecurityWindows Update - Rechercher les mises à jour
+ Area UpdateAndSecurityWindows Update - Options de redémarrage
+ Area UpdateAndSecurityWindows Update - Afficher les mises à jour facultatives
+ Area UpdateAndSecurityWindows Update - Afficher l’historique des mises à jour
+ Area UpdateAndSecuritySans fil
@@ -1304,107 +1714,26 @@
Approvisionnement de l’espace de travail
+ Area UserAccountsParamètres IME Wubi
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedParamètres IME Wubi - UDP
+ Area TimeAndLanguageXbox Networking
+ Area GamingVos infos
+ Area UserAccountsZoom
-
-
-
-
-
-
-
-
- bpmf
-
-
- appel en cours
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx
index ba3d4a274..f44701c0a 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -118,58 +118,79 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- Informazioni
+ About
+ Area System
-
- Accesso aziendale o dell'istituto di istruzione
+
+ access.cpl
+ File name, Should not translatedOpzioni di accessibilità
+ Area Control Panel (legacy settings)App per accessori
+ Area Privacy
+
+
+ Accesso aziendale o dell'istituto di istruzione
+ Area UserAccountsInfo sull'account
+ Area PrivacyAccount
+ Area SurfaceHubCentro notifiche
+ Area Control Panel (legacy settings)Attivazione
+ Area UpdateAndSecurityCronologia attività
+ Area PrivacyAdd Hardware
+ Area Control Panel (legacy settings)Aggiungi/rimuovi programmi
+ Area Control Panel (legacy settings)Aggiungi telefono
+ Area PhoneStrumenti amministrativi
+ Area SystemImpostazioni di visualizzazione avanzate
+ Area System, only available on devices that support advanced display optionsGrafica avanzataID annunci
+ Area Privacy, Deprecated in Windows 10, version 1809 and laterModalità aereo
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboardNomi alternativi
@@ -180,38 +201,48 @@
Colore app
-
- Pannello di controllo
-
Diagnostica app
+ Area PrivacyFunzionalità app
-
-
- Impostazioni di sistema
-
-
- Preferenze del volume dell'app e del dispositivo
+ Area AppsApp
+ Short/modern name for applicationApp e funzionalità
+ Area Apps
+
+
+ Impostazioni di sistema
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. App per siti Web
+ Area Apps
+
+
+ Preferenze del volume dell'app e del dispositivo
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedArea
+ Mean the settings area or settings categoryAccountStrumenti amministrativi
+ Area Control Panel (legacy settings)Aspetto e personalizzazione
@@ -222,6 +253,9 @@
Orologio e area geografica
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
Audio
+ Area EaseOfAccessAvvisi audioAudio e voce
-
-
- AutoPlay
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Download di file automatici
+ Area Privacy
+
+
+ AutoPlay
+ Area DeviceBackground
+ Area PersonalizationApp in background
+ Area PrivacyBackup
+ Area UpdateAndSecurityBackup e ripristino
+ Area Control Panel (legacy settings)Risparmia batteria
+ Area System, only available on devices that have a battery, such as a tabletImpostazioni risparmia batteria
+ Area System, only available on devices that have a battery, such as a tabletDettagli utilizzo Risparmia batteriaUtilizzo batteria
+ Area System, only available on devices that have a battery, such as a tabletDispositivi biometrici
+ Area Control Panel (legacy settings)Crittografia unità BitLocker
+ Area Control Panel (legacy settings)Blu (chiaro)
-
- Blu-giallo
-
Bluetooth
+ Area DeviceDispositivi Bluetooth
+ Area Control Panel (legacy settings)
+
+
+ Blu-gialloBopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedTrasmissione
+ Area GamingCalendario
+ Area PrivacyRegistro chiamate
+ Area Privacy
+
+
+ chiamataFotocamera
+ Area PrivacyIME Cangjie
+ Area TimeAndLanguageBLOC MAIUSC
+ Mean the "Caps Lock" keyCellulare e SIM
+ Area NetworkAndInternetScegli le cartelle visualizzate in Start
+ Area PersonalizationServizio client per NetWare
+ Area Control Panel (legacy settings)Appunti
+ Area SystemSottotitoli in lingua originale
+ Area EaseOfAccessFiltri colore
+ Area EaseOfAccessGestione dei colori
+ Area Control Panel (legacy settings)Colori
+ Area Personalization
- Comando
+ Command
+ The command to direct start a settingDispositivi connessi
+ Area DeviceContatti
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"Comando COPYIsolamento memoria centrale
+ Means the protection of the system coreCortana
+ Area CortanaCortana nei dispositivi
+ Area CortanaCortana - Lingua
+ Area CortanaGestione credenziali
+ Area Control Panel (legacy settings)Crossdevice
@@ -417,9 +500,6 @@
Dispositivi personalizzati
-
- DNS
-
Colore scuro
@@ -428,171 +508,240 @@
Consumo dati
+ Area NetworkAndInternetData e ora
+ Area TimeAndLanguageApp predefinite
+ Area AppsVideocamera predefinita
+ Area DevicePosizione predefinita
+ Area Control Panel (legacy settings)Programmi predefiniti
+ Area Control Panel (legacy settings)Percorso di salvataggio predefinito
+ Area SystemOttimizzazione recapito
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedTemi desktop
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colorsGestione dispositivi
+ Area Control Panel (legacy settings)Dispositivi e stampanti
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedConnessione remota
+ Area NetworkAndInternetAccesso diretto
+ Area NetworkAndInternet, only available if DirectAccess is enabledApri direttamente il telefono
+ Area EaseOfAccessVisualizza
+ Area EaseOfAccessProprietà di visualizzazione
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedDocumenti
+ Area PrivacyDuplicazione del display
+ Area SystemIn queste ore
+ Area SystemCentro accessibilità
+ Area Control Panel (legacy settings)Edizione
+ Means the "Windows Edition"Indirizzo di posta elettronica
+ Area PrivacyAccount di posta elettronica e app
+ Area UserAccountsCrittografia
+ Area SystemAmbiente
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Ethernet
+ Area NetworkAndInternetProtezione dagli exploitFunzionalità aggiuntive
+ Area Extra, , only used for setting of 3rd-Party toolsControllo ottico
+ Area EaseOfAccessTracciatore oculare
+ Area Privacy, requires eyetracker hardwareFamiglia e altre persone
+ Area UserAccountsFeedback e diagnostica
+ Area PrivacyFile system
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedTrova il mio dispositivo
+ Area UpdateAndSecurityFirewallAssistente notifiche - Orari senza notifiche
+ Area SystemAssistente notifiche - Momenti senza notifiche
+ Area SystemOpzioni cartella
+ Area Control Panel (legacy settings)Tipi di carattere
+ Area EaseOfAccessPer sviluppatori
+ Area UpdateAndSecurityBarra dei giochi
+ Area GamingController di gioco
+ Area Control Panel (legacy settings)Game DVR
+ Area Gaming
- Modalità di gioco
+ Game Mode
+ Area GamingGateway
+ Should not translatedGenerale
+ Area PrivacyOttieni programmi
+ Area Control Panel (legacy settings)Attività iniziali
+ Area Control Panel (legacy settings)Sguardo
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterImpostazioni grafica
+ Area SystemGradazioni di grigioSettimana verde
+ Mean you don't can see green colorsDisplay visore VR
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Contrasto elevato
+ Area EaseOfAccessAudio olografico
@@ -608,42 +757,68 @@
Gruppo Home
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"ImmagineOpzioni di indicizzazione
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedInfrarossi
+ Area Control Panel (legacy settings)Input penna e digitazione
+ Area PrivacyOpzioni Internet
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedColori invertitiIP
+ Should not translatedEsplorazione isolataImpostazioni IME del Giappone
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedProprietà joystick
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedTastiera
+ Area EaseOfAccessTastierino
@@ -653,6 +828,7 @@
Lingua
+ Area TimeAndLanguageColore chiaro
@@ -661,103 +837,156 @@
Modalità chiara
- Posizione
+ Location
+ Area PrivacySchermata di blocco
+ Area PersonalizationLente di ingrandimento
+ Area EaseOfAccessPosta elettronica - Microsoft Exchange o Microsoft Messaggi
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedGestisci reti note
+ Area NetworkAndInternetGestisci funzionalità facoltative
+ Area AppsMessaggistica
+ Area PrivacyConnessione a consumoMicrofono
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedDispositivi mobiliHotspot mobile
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoUlteriori dettagli
+ Area CortanaMovimento
+ Area PrivacyMouse
+ Area EaseOfAccessMouse e touchpad
+ Area DeviceProprietà mouse, tipi di carattere, tastiera e stampanti
+ Area Control Panel (legacy settings)Puntatore del mouse
+ Area EaseOfAccessProprietà multimediali
+ Area Control Panel (legacy settings)Multitasking
-
-
- NFC
-
-
- Transazioni NFC
+ Area SystemAssistente vocale
+ Area EaseOfAccessBarra di spostamento
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedRete
+ Area NetworkAndInternetCentro connessioni di rete e condivisione
+ Area Control Panel (legacy settings)Connessione di rete
+ Area Control Panel (legacy settings)Proprietà di rete
+ Area Control Panel (legacy settings)Installazione guidata rete
+ Area Control Panel (legacy settings)Stato della rete
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Transazioni NFC
+ "NFC should not translated"Luce notturnaImpostazioni luce notturna
+ Area SystemNota
@@ -827,339 +1056,476 @@
Notifiche
+ Area PrivacyNotifiche e azioni
+ Area SystemBLOC NUM
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedAmministratore delle origini dati di ODBC (32 bit)
+ Area Control Panel (legacy settings)Amministratore delle origini dati di ODBC (64 bit)
+ Area Control Panel (legacy settings)File offline
+ Area Control Panel (legacy settings)Mappe offline
+ Area AppsMappe offline- Download mappe
+ Area AppsSu schermoSistema operativo
+ Means the "Operating System"Altri dispositivi
+ Area PrivacyAltre opzioni
+ Area EaseOfAccessAltri utentiParental control
+ Area Control Panel (legacy settings)Password
+
+ password.cpl
+ File name, Should not translated
+
Proprietà password
+ Area Control Panel (legacy settings)Penna e dispositivi di input
+ Area Control Panel (legacy settings)Penna e tocco
+ Area Control Panel (legacy settings)Penna e Windows Ink
+ Area DevicePersone nelle vicinanze
+ Area Control Panel (legacy settings)Informazioni e strumenti per le prestazioni
+ Area Control Panel (legacy settings)Autorizzazioni e cronologia
+ Area CortanaPersonalizzazione (categoria)
+ Area PersonalizationTelefono
+ Area PhoneTelefono e modem
+ Area Control Panel (legacy settings)Telefono e modem - Opzioni
+ Area Control Panel (legacy settings)Chiamate telefoniche
+ Area PrivacyTelefono - App predefinite
+ Area SystemImmagineImmagini
+ Area PrivacyImpostazioni IME Pinyin
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedImpostazioni IME Pinyin - Lessico del dominio
+ Area TimeAndLanguageImpostazioni IME Pinyin - Configurazione chiave
+ Area TimeAndLanguageImpostazioni IME Pinyin - UDP
+ Area TimeAndLanguageRiproduzione di un gioco a schermo intero
+ Area GamingPlug-in per cercare le impostazioni di Windows
- Impostazioni di Windows
+ Windows SettingsAlimentazione e sospensione
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedOpzioni alimentazione
+ Area Control Panel (legacy settings)Presentazione
-
- Stampa schermata
-
Stampanti
+ Area Control Panel (legacy settings)Stampanti e scanner
+ Area Device
+
+
+ Stampa schermata
+ Mean the "Print screen" keyReport e soluzioni dei problemi
+ Area Control Panel (legacy settings)ProcessoreProgrammi e funzionalità
+ Area Control Panel (legacy settings)Proiezione su questo computer
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colorsProvisioning
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageProssimità
+ Area NetworkAndInternetProxy
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageGioco momenti senza notificheRadio
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)RiconoscimentoRipristino
+ Area UpdateAndSecurityOcchio rosso
+ Mean red eye effect by over-the-night flightsRosso-Verde
+ Mean the weakness you can't differ between red and green colorsSettimana rossa
+ Mean you don't can see red colorsArea
+ Area TimeAndLanguage
+
+
+ Lingua locale
+ Area TimeAndLanguage
+
+
+ Proprietà impostazioni internazionali
+ Area Control Panel (legacy settings)Area e lingua
+ Area Control Panel (legacy settings)Formattazione area
-
- Lingua locale
-
-
- Proprietà impostazioni internazionali
-
Connessioni RemoteApp e desktop
+ Area Control Panel (legacy settings)Desktop remoto
+ Area SystemScanner e fotocamere
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedPianificatoAttività pianificate
+ Area Control Panel (legacy settings)Rotazione schermo
+ Area SystemBarre di scorrimentoBLOC SCORR
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedRicerca di Windows
+ Area CortanaSecureDNS
+ Should not translatedCentro sicurezza
+ Area Control Panel (legacy settings)Processore di sicurezzaPulizia della sessione
-
-
- Configura un chiosco
+ Area SurfaceHubHome page impostazioni
+ Area Home, Overview-page for all areas of settings
+
+
+ Configura un chiosco
+ Area UserAccountsEsperienze condivise
-
-
- wifi
+ Area SystemTasti di scelta rapida
+
+ wifi
+ dont translate this, is a short term to find entries
+
Opzioni di accesso
+ Area UserAccountsOpzioni di accesso - Blocco dinamico
+ Area UserAccountsDimensioni
+ Size for text and symbolsAudio
+ Area SystemVoce
+ Area EaseOfAccessRiconoscimento vocale
+ Area Control Panel (legacy settings)Digitazione vocaleStart
+ Area PersonalizationPosizioni StartApp di avvio
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedArchiviazione
+ Area SystemCriteri di archiviazione
+ Area SystemSensore memoria
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsCentro sincronizzazione
+ Area Control Panel (legacy settings)Sincronizza le impostazioni
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedSistema
+ Area Control Panel (legacy settings)Proprietà di sistema e aggiunta guidata nuovo hardware
+ Area Control Panel (legacy settings)Scheda
+ Means the key "Tabulator" on the keyboardModalità tablet
+ Area SystemImpostazioni del Tablet PC
+ Area Control Panel (legacy settings)ParlareParla con Cortana
+ Area CortanaBarra delle applicazioni
+ Area PersonalizationColore barra delle applicazioniAttività
+ Area PrivacyConferenza del team
+ Area SurfaceHubGestione dei dispositivi del team
+ Area SurfaceHubSintesi vocale
+ Area Control Panel (legacy settings)Temi
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedSequenza temporale
@@ -1172,51 +1538,68 @@
Touchpad
+ Area DeviceTrasparenza
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
Risoluzione dei problemi
+ Area UpdateAndSecurityTruePlay
+ Area GamingDigitazione
+ Area DeviceDisinstalla
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceAccount utente
+ Area Control Panel (legacy settings)Versione
+ Means The "Windows Version"Riproduzione video
+ Area AppsVideo
+ Area PrivacyDesktop virtualiVirus
+ Means the virus in computers and softwareAttivazione vocale
+ Area PrivacyVolumeVPN
+ Area NetworkAndInternetSfondo
@@ -1226,75 +1609,102 @@
Centro di benvenuto
+ Area Control Panel (legacy settings)Schermata di benvenuto
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedRotellina
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledChiamata Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledImpostazioni Wi-Fi
+ "Wi-Fi" should not translatedBordo finestraWindows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows Firewall
+ Area Control Panel (legacy settings)Installazione di Windows Hello - Viso
+ Area UserAccountsConfigurazione Windows Hello - Impronta digitale
+ Area UserAccountsProgramma Windows Insider
+ Area UpdateAndSecurityCentro PC portatile Windows
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaSicurezza di Windows
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update - Opzioni avanzate
+ Area UpdateAndSecurityWindows Update - Verifica della disponibilità di aggiornamenti
+ Area UpdateAndSecurityWindows Update - Opzioni di riavvio
+ Area UpdateAndSecurityWindows Update - Visualizza gli aggiornamenti facoltativi
+ Area UpdateAndSecurityWindows Update - Visualizzazione cronologia aggiornamenti
+ Area UpdateAndSecurityWireless
@@ -1304,107 +1714,26 @@
Provisioning del posto di lavoro
+ Area UserAccountsImpostazioni IME Wubi
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedImpostazioni IME Wubi - UDP
+ Area TimeAndLanguageRete Xbox
+ Area GamingInformazioni personali
+ Area UserAccountsZoom
-
-
-
-
-
-
-
-
- bpmf
-
-
- chiamata
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx
index 21bd9a06b..760b772f9 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ja-JP.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -118,58 +118,79 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- バージョン情報
+ Flow Launcherについて
+ Area System
-
- 職場または学校へのアクセス
+
+ access.cpl
+ File name, Should not translatedアクセシビリティ オプション
+ Area Control Panel (legacy settings)アクセサリ アプリ
+ Area Privacy
+
+
+ 職場または学校へのアクセス
+ Area UserAccountsアカウント情報
+ Area Privacyアカウント
+ Area SurfaceHubアクション センター
+ Area Control Panel (legacy settings)アクティブ化
+ Area UpdateAndSecurityアクティビティ履歴
+ Area Privacyハードウェアの追加
+ Area Control Panel (legacy settings)プログラムの追加と削除
+ Area Control Panel (legacy settings)電話を追加
+ Area Phone管理ツール
+ Area Systemディスプレイの詳細設定
+ Area System, only available on devices that support advanced display options高度なグラフィックス広告 ID
+ Area Privacy, Deprecated in Windows 10, version 1809 and later機内モード
+ Area NetworkAndInternetAlt + Tab キー
+ Means the key combination "Tabulator+Alt" on the keyboard別名
@@ -180,38 +201,48 @@
アプリの色
-
- コントロール パネル
-
アプリの診断
+ Area Privacyアプリの機能
-
-
- システム設定
-
-
- アプリのボリュームとデバイスの設定
+ Area Appsアプリ
+ Short/modern name for applicationアプリと機能
+ Area Apps
+
+
+ システム設定
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Web サイト用のアプリ
+ Area Apps
+
+
+ アプリのボリュームとデバイスの設定
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translated領域
+ Mean the settings area or settings categoryアカウント管理ツール
+ Area Control Panel (legacy settings)外観と個人用設定
@@ -222,6 +253,9 @@
クロックとリージョン
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
オーディオ
+ Area EaseOfAccessオーディオ アラートオーディオと音声
-
-
- 自動再生
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.ファイルの自動ダウンロード
+ Area Privacy
+
+
+ 自動再生
+ Area Deviceバックグラウンド
+ Area Personalizationバックグラウンド アプリ
+ Area Privacyバックアップ
+ Area UpdateAndSecurityバックアップと復元
+ Area Control Panel (legacy settings)バッテリー節約機能
+ Area System, only available on devices that have a battery, such as a tabletバッテリー節約機能の設定
+ Area System, only available on devices that have a battery, such as a tabletバッテリー節約機能の使用状況の詳細バッテリーの使用
+ Area System, only available on devices that have a battery, such as a tablet生体認証デバイス
+ Area Control Panel (legacy settings)BitLocker ドライブ暗号化
+ Area Control Panel (legacy settings)薄い青
-
- 青と黄
-
Bluetooth
+ Area DeviceBluetooth デバイス
+ Area Control Panel (legacy settings)
+
+
+ 青と黄Bopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translated配信中
+ Area Gamingカレンダー
+ Area Privacy通話履歴
+ Area Privacy
+
+
+ 通話カメラ
+ Area PrivacyCangjie IME
+ Area TimeAndLanguageCaps Lock
+ Mean the "Caps Lock" key携帯ネットワークと SIM
+ Area NetworkAndInternet開始時に表示するフォルダーを選択
+ Area PersonalizationNetWare 用クライアント サービス
+ Area Control Panel (legacy settings)クリップボード
+ Area Systemクローズド キャプション
+ Area EaseOfAccessカラー フィルター
+ Area EaseOfAccess色の管理
+ Area Control Panel (legacy settings)色
+ Area Personalization
- コマンド
+
+ The command to direct start a setting接続されているデバイス
+ Area Device連絡先
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"Copy コマンドコア分離
+ Means the protection of the system coreCortana
+ Area Cortanaデバイス間の Cortana
+ Area CortanaCortana - 言語
+ Area Cortana資格情報マネージャー
+ Area Control Panel (legacy settings)クロスデバイス
@@ -417,9 +500,6 @@
カスタム デバイス
-
- DNS
-
濃い色
@@ -428,171 +508,240 @@
データ利用状況
+ Area NetworkAndInternet日付と時刻
+ Area TimeAndLanguage既定のアプリ
+ Area Apps既定のカメラ
+ Area Device既定の場所
+ Area Control Panel (legacy settings)既定のプログラム
+ Area Control Panel (legacy settings)既定の保存場所
+ Area System配信の最適化
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedデスクトップのテーマ
+ Area Control Panel (legacy settings)
+
+
+ 第二色覚異常
+ Medical: Mean you don't can see red colorsデバイス マネージャー
+ Area Control Panel (legacy settings)デバイスとプリンター
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedダイヤルアップ
+ Area NetworkAndInternet直接アクセス
+ Area NetworkAndInternet, only available if DirectAccess is enabled電話を直接開く
+ Area EaseOfAccess表示
+ Area EaseOfAccess表示プロパティ
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedドキュメント
+ Area Privacyディスプレイの複製
+ Area Systemこれらの時間帯
+ Area SystemEase of Access Center
+ Area Control Panel (legacy settings)エディション
+ Means the "Windows Edition"メール
+ Area Privacyメールとアプリのアカウント
+ Area UserAccounts暗号化
+ Area System環境
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.イーサネット
+ Area NetworkAndInternetExploit Protection追加
+ Area Extra, , only used for setting of 3rd-Party tools視線制御
+ Area EaseOfAccessアイ トラッカー
+ Area Privacy, requires eyetracker hardware家族とその他のユーザー
+ Area UserAccountsフィードバックと診断
+ Area Privacyファイル システム
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedデバイスの検索
+ Area UpdateAndSecurityファイアウォール集中モード - 通知オフ時間
+ Area System集中モード - サイレント
+ Area Systemフォルダー オプション
+ Area Control Panel (legacy settings)フォント
+ Area EaseOfAccess開発者向け
+ Area UpdateAndSecurityゲーム バー
+ Area Gamingゲーム コントローラー
+ Area Control Panel (legacy settings)ゲーム録画
+ Area Gaming
- ゲーム モード
+ ゲームモード
+ Area Gamingゲートウェイ
+ Should not translated
- 全般
+ 一般
+ Area Privacyプログラムの取得
+ Area Control Panel (legacy settings)概要
+ Area Control Panel (legacy settings)グランス
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterグラフィックスの設定
+ Area Systemグレースケール緑の週
+ Mean you don't can see green colorsヘッドセットのディスプレイ
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.ハイ コントラスト
+ Area EaseOfAccessホログラフィック オーディオ
@@ -608,42 +757,68 @@
ホーム グループ
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"イメージインデックス作成オプション
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translated赤外線
+ Area Control Panel (legacy settings)手描き入力とタイピング
+ Area Privacyインターネット オプション
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translated反転色IP
+ Should not translated分離閲覧日本語入力システムの設定
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedジョイスティックのプロパティ
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedキーボード
+ Area EaseOfAccessキーパッド
@@ -653,6 +828,7 @@
言語
+ Area TimeAndLanguage明るい色
@@ -661,103 +837,156 @@
ライト モード
- 場所
+ Location
+ Area Privacyロック画面
+ Area Personalization拡大鏡
+ Area EaseOfAccessメール - Microsoft Exchange または Windows メッセージング
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translated既知のネットワークを管理
+ Area NetworkAndInternetオプション機能の管理
+ Area Appsメッセージング
+ Area Privacy従量制課金接続マイク
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedモバイル デバイスモバイル ホットスポット
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMono詳細
+ Area Cortanaモーション
+ Area Privacyマウス
+ Area EaseOfAccessマウスとタッチパッド
+ Area Deviceマウス、フォント、キーボード、プリンターのプロパティ
+ Area Control Panel (legacy settings)マウス ポインター
+ Area EaseOfAccessマルチメディアのプロパティ
+ Area Control Panel (legacy settings)マルチタスキング
-
-
- NFC
-
-
- NFC トランザクション
+ Area Systemナレーター
+ Area EaseOfAccessナビゲーション バー
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedネットワーク
+ Area NetworkAndInternetネットワークと共有センター
+ Area Control Panel (legacy settings)ネットワーク接続
+ Area Control Panel (legacy settings)ネットワークのプロパティ
+ Area Control Panel (legacy settings)ネットワーク セットアップ ウィザード
+ Area Control Panel (legacy settings)ネットワークの状態
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ NFC トランザクション
+ "NFC should not translated"夜間モード夜間モード設定
+ Area Systemメモ
@@ -827,339 +1056,476 @@
通知
+ Area Privacy通知とアクション
+ Area SystemNumLock
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedODBC データ ソース管理者 (32 ビット)
+ Area Control Panel (legacy settings)ODBC データ ソース管理者 (64 ビット)
+ Area Control Panel (legacy settings)オフライン ファイル
+ Area Control Panel (legacy settings)オフラインのマップ
+ Area Appsオフラインのマップ - マップのダウンロード
+ Area AppsオンスクリーンOS
+ Means the "Operating System"その他のデバイス
+ Area Privacyその他のオプション
+ Area EaseOfAccess他のユーザー保護者による制限
+ Area Control Panel (legacy settings)
- パスワード
+
+
+
+ password.cpl
+ File name, Should not translatedパスワードのプロパティ
+ Area Control Panel (legacy settings)ペンと入力デバイス
+ Area Control Panel (legacy settings)ペンとタッチ
+ Area Control Panel (legacy settings)ペンと Windows Ink
+ Area Device近くの人との接続
+ Area Control Panel (legacy settings)パフォーマンスの情報とツール
+ Area Control Panel (legacy settings)アクセス許可と履歴
+ Area Cortana個人用設定 (カテゴリ)
+ Area Personalization電話
+ Area Phone電話とモデム
+ Area Control Panel (legacy settings)電話とモデム - オプション
+ Area Control Panel (legacy settings)通話
+ Area Privacy電話 - 既定のアプリ
+ Area System画像画像
+ Area PrivacyPinyin IME 設定
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedPinyin IME 設定 - ドメイン辞書
+ Area TimeAndLanguagePinyin IME 設定 - キーの構成
+ Area TimeAndLanguagePinyin IME 設定 - UDP
+ Area TimeAndLanguageゲームをフルスクリーンでプレイしています
+ Area GamingWindows の設定を検索するためのプラグイン
- Windows の設定
+ Windows Settings電源とスリープ
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translated電源オプション
+ Area Control Panel (legacy settings)プレゼンテーション
-
- 画面の印刷
-
プリンター
+ Area Control Panel (legacy settings)プリンターとスキャナー
+ Area Device
+
+
+ 画面の印刷
+ Mean the "Print screen" key問題のレポートと解決策
+ Area Control Panel (legacy settings)プロセッサプログラムと機能
+ Area Control Panel (legacy settings)この PC へのプロジェクション
+ Area System
+
+
+ 第一色覚異常
+ Medical: Mean you don't can see green colorsプロビジョニング
+ Area UserAccounts, only available if enterprise has deployed a provisioning package近接通信
+ Area NetworkAndInternetプロキシ
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageサイレント ゲーム無線
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)認識復元
+ Area UpdateAndSecurity赤目
+ Mean red eye effect by over-the-night flights赤-緑
+ Mean the weakness you can't differ between red and green colors赤の週
+ Mean you don't can see red colorsリージョン
+ Area TimeAndLanguage
+
+
+ 地域の言語
+ Area TimeAndLanguage
+
+
+ 地域設定のプロパティ
+ Area Control Panel (legacy settings)地域と言語
+ Area Control Panel (legacy settings)地域の書式設定
-
- 地域の言語
-
-
- 地域設定のプロパティ
-
RemoteApp とデスクトップ接続
+ Area Control Panel (legacy settings)リモート デスクトップ
+ Area Systemスキャナーとカメラ
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedスケジュール済みスケジュールされたタスク
+ Area Control Panel (legacy settings)画面の回転
+ Area Systemスクロール バースクロール ロック
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedWindows の検索
+ Area CortanaSecureDNS
+ Should not translatedSecurity Center
+ Area Control Panel (legacy settings)セキュリティ プロセッサセッションのクリーンアップ
-
-
- キオスクの設定
+ Area SurfaceHubホーム ページの設定
+ Area Home, Overview-page for all areas of settings
+
+
+ キオスクの設定
+ Area UserAccounts共有エクスペリエンス
-
-
- WiFi
+ Area Systemショートカット
+
+ WiFi
+ dont translate this, is a short term to find entries
+
サインイン オプション
+ Area UserAccountsサインイン オプション - 動的ロック
+ Area UserAccountsサイズ
+ Size for text and symbolsサウンド
+ Area System音声
+ Area EaseOfAccess音声認識
+ Area Control Panel (legacy settings)音声入力開始
+ Area Personalization開始位置スタートアップ アプリ
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedストレージ
+ Area Systemストレージ ポリシー
+ Area Systemストレージ センサー
+ Area System
+
+
+ in
+ Example: Area "System" in System settings同期センター
+ Area Control Panel (legacy settings)設定の同期
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedシステム
+ Area Control Panel (legacy settings)システム プロパティと新しいハードウェアの追加ウィザード
+ Area Control Panel (legacy settings)タブ
+ Means the key "Tabulator" on the keyboardタブレット モード
+ Area Systemタブレット PC の設定
+ Area Control Panel (legacy settings)会話Cortana に話しかける
+ Area Cortanaタスク バー
+ Area Personalizationタスク バーの色タスク
+ Area Privacyチーム会議
+ Area SurfaceHubチーム デバイスの管理
+ Area SurfaceHubテキスト読み上げ
+ Area Control Panel (legacy settings)テーマ
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedタイムライン
@@ -1172,51 +1538,68 @@
タッチパッド
+ Area Device透明度
+
+ 第三色覚異常
+ Medical: Mean you don't can see yellow and blue colors
+
トラブルシューティング
+ Area UpdateAndSecurityTruePlay
+ Area Gaming入力
+ Area Deviceアンインストール
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area Deviceユーザー アカウント
+ Area Control Panel (legacy settings)
- バージョン
+
+ Means The "Windows Version"ビデオの再生
+ Area Appsビデオ
+ Area Privacy仮想デスクトップウイルス
+ Means the virus in computers and software音声のアクティブ化
+ Area Privacy音量VPN
+ Area NetworkAndInternet壁紙
@@ -1226,75 +1609,102 @@
ウェルカム センター
+ Area Control Panel (legacy settings)ようこそ画面
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedホイール
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi 通話
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi の設定
+ "Wi-Fi" should not translatedウィンドウの境界線Windows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows ファイアウォール
+ Area Control Panel (legacy settings)Windows Hello の設定 - Face
+ Area UserAccountsWindows Hello の設定 - 指紋
+ Area UserAccountsWindows Insider Program
+ Area UpdateAndSecurityWindows モビリティ センター
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaWindows セキュリティ
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update - 詳細オプション
+ Area UpdateAndSecurityWindows Update - 更新プログラムの確認
+ Area UpdateAndSecurityWindows Update - 再起動オプション
+ Area UpdateAndSecurityWindows Update - オプションの更新プログラムを表示
+ Area UpdateAndSecurityWindows Update - 更新履歴の表示
+ Area UpdateAndSecurityワイヤレス
@@ -1304,107 +1714,26 @@
ワークプレースのプロビジョニング
+ Area UserAccountsWubi IME 設定
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedWubi IME 設定 - UDP
+ Area TimeAndLanguageXbox ネットワーク
+ Area Gamingユーザー情報
+ Area UserAccountsZoom
-
-
-
-
-
-
-
-
- bpmf
-
-
- 通話
-
-
-
-
-
- 第二色覚異常
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 第一色覚異常
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 第三色覚異常
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx
index e5859a469..7ab4b8f3d 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ko-KR.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -119,57 +119,78 @@
정보
+ Area System
-
- 회사 또는 학교 액세스
+
+ access.cpl
+ File name, Should not translated접근성 옵션
+ Area Control Panel (legacy settings)액세서리 앱
+ Area Privacy
+
+
+ 회사 또는 학교 액세스
+ Area UserAccounts계정 정보
+ Area Privacy계정
+ Area SurfaceHub알림 센터
+ Area Control Panel (legacy settings)활성화
+ Area UpdateAndSecurity활동 기록
+ Area Privacy하드웨어 추가
+ Area Control Panel (legacy settings)프로그램 추가/제거
+ Area Control Panel (legacy settings)휴대폰 추가
+ Area Phone관리 도구
+ Area System고급 디스플레이 설정
+ Area System, only available on devices that support advanced display options고급 그래픽광고 ID
+ Area Privacy, Deprecated in Windows 10, version 1809 and later비행기 모드
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboard대체 이름
@@ -180,38 +201,48 @@
앱 색
-
- 제어판
-
앱 진단
+ Area Privacy앱 기능
-
-
- 시스템 설정
-
-
- 앱 볼륨 및 디바이스 기본 설정
+ Area Apps앱
+ Short/modern name for application앱 및 기능
+ Area Apps
+
+
+ 시스템 설정
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. 웹 사이트용 앱
+ Area Apps
+
+
+ 앱 볼륨 및 디바이스 기본 설정
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translated영역
+ Mean the settings area or settings category계정관리 도구
+ Area Control Panel (legacy settings)모양 및 개인 설정
@@ -222,6 +253,9 @@
시계 및 지역
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
오디오
+ Area EaseOfAccess오디오 경고오디오 및 음성
-
-
- 자동 재생
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.자동 파일 다운로드
+ Area Privacy
+
+
+ 자동 재생
+ Area Device배경
+ Area Personalization배경 앱
+ Area Privacy백업
+ Area UpdateAndSecurity백업 및 복원
+ Area Control Panel (legacy settings)배터리 절약 모드
+ Area System, only available on devices that have a battery, such as a tablet배터리 절약 모드 설정
+ Area System, only available on devices that have a battery, such as a tablet배터리 절약 모드 사용량 세부 정보배터리 사용
+ Area System, only available on devices that have a battery, such as a tablet생체 인식 디바이스
+ Area Control Panel (legacy settings)BitLocker 드라이브 암호화
+ Area Control Panel (legacy settings)블루 라이트
-
- 파란색-노란색
-
- Bluetooth
+ 블루투스
+ Area DeviceBluetooth 장치
+ Area Control Panel (legacy settings)
+
+
+ 파란색-노란색Bopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translated브로드캐스팅
+ Area Gaming일정
+ Area Privacy통화 기록
+ Area Privacy
+
+
+ 호출카메라
+ Area Privacy창힐 IME
+ Area TimeAndLanguageCaps lock
+ Mean the "Caps Lock" key셀룰러 및 SIM
+ Area NetworkAndInternet시작 화면에 표시되는 폴더 선택
+ Area PersonalizationNetWare용 클라이언트 서비스
+ Area Control Panel (legacy settings)클립보드
+ Area System닫은 캡션
+ Area EaseOfAccess색 필터
+ Area EaseOfAccess색 관리
+ Area Control Panel (legacy settings)색
+ Area Personalization
- 명령
+ 명령어
+ The command to direct start a setting연결된 디바이스
+ Area Device연락처
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"복사 명령코어 격리
+ Means the protection of the system coreCortana
+ Area Cortana내 장치에서 Cortana
+ Area CortanaCortana - 언어
+ Area Cortana자격 증명 관리자
+ Area Control Panel (legacy settings)장치 간
@@ -417,9 +500,6 @@
사용자 지정 디바이스
-
- DNS
-
어두운 색
@@ -428,171 +508,240 @@
데이터 사용량
+ Area NetworkAndInternet날짜 및 시간
+ Area TimeAndLanguage기본 앱
+ Area Apps기본 카메라
+ Area Device기본 위치
+ Area Control Panel (legacy settings)기본 프로그램
+ Area Control Panel (legacy settings)기본 저장 위치
+ Area System제공 최적화
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translated데스크톱 테마
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colors디바이스 관리자
+ Area Control Panel (legacy settings)장치 및 프린터
+ Area Control Panel (legacy settings)DHCP
+ Should not translated전화걸기
+ Area NetworkAndInternet직접 액세스
+ Area NetworkAndInternet, only available if DirectAccess is enabled휴대폰 직접 열기
+ Area EaseOfAccess표시
+ Area EaseOfAccess속성 표시
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translated문서
+ Area Privacy내 디스플레이 복제 중
+ Area System이 시간 동안
+ Area System접근성 센터
+ Area Control Panel (legacy settings)버전
+ Means the "Windows Edition"메일
+ Area Privacy전자 메일 및 앱 계정
+ Area UserAccounts암호화
+ Area System환경
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.이더넷
+ Area NetworkAndInternetExploit Protection추가
+ Area Extra, , only used for setting of 3rd-Party tools시선 제어
+ Area EaseOfAccess시선 추적기
+ Area Privacy, requires eyetracker hardware가족 및 기타 사용자
+ Area UserAccounts피드백 및 진단
+ Area Privacy파일 시스템
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translated내 장치 찾기
+ Area UpdateAndSecurity방화벽집중 지원 - 조용한 시간
+ Area System집중 지원 - 조용한 순간
+ Area System폴더 옵션
+ Area Control Panel (legacy settings)글꼴
+ Area EaseOfAccess개발자용
+ Area UpdateAndSecurity게임 바
+ Area Gaming게임 컨트롤러
+ Area Control Panel (legacy settings)게임 DVR
+ Area Gaming게임 모드
+ Area Gaming게이트웨이
+ Should not translated일반
+ Area Privacy프로그램 가져오기
+ Area Control Panel (legacy settings)시작
+ Area Control Panel (legacy settings)Glance
+ Area Personalization, Deprecated in Windows 10, version 1809 and later그래픽 설정
+ Area System회색조녹색 주
+ Mean you don't can see green colors헤드셋 디스플레이
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.고대비
+ Area EaseOfAccess홀로그램 오디오
@@ -608,42 +757,68 @@
홈 그룹
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"이미지인덱싱 옵션
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translated적외선
+ Area Control Panel (legacy settings)수동 입력 및 입력
+ Area Privacy인터넷 옵션
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translated반전된 색IP
+ Should not translated격리된 검색일본 IME 설정
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translated조이스틱 속성
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translated키보드
+ Area EaseOfAccess키패드
@@ -653,6 +828,7 @@
언어
+ Area TimeAndLanguage밝은 색
@@ -662,102 +838,155 @@
위치
+ Area Privacy화면 잠금
+ Area Personalization돋보기
+ Area EaseOfAccess메일 - Microsoft Exchange 또는 Windows 메시지
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translated알려진 네트워크 관리
+ Area NetworkAndInternet선택적 기능 관리
+ Area AppsMessaging
+ Area Privacy데이터 통신 연결마이크
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translated모바일 장치모바일 핫스팟
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMono자세한 내용
+ Area Cortana동작
+ Area Privacy마우스
+ Area EaseOfAccess마우스 및 터치 패드
+ Area Device마우스, 글꼴, 키보드 및 프린터 속성
+ Area Control Panel (legacy settings)마우스 포인터
+ Area EaseOfAccess멀티미디어 속성
+ Area Control Panel (legacy settings)멀티태스킹
-
-
- NFC
-
-
- NFC 트랜잭션
+ Area System내레이터
+ Area EaseOfAccess탐색 모음
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translated네트워크
+ Area NetworkAndInternet네트워크 및 공유 센터
+ Area Control Panel (legacy settings)네트워크 연결
+ Area Control Panel (legacy settings)네트워크 속성
+ Area Control Panel (legacy settings)네트워크 설치 마법사
+ Area Control Panel (legacy settings)네트워크 상태
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ NFC 트랜잭션
+ "NFC should not translated"야간 모드야간 모드 설정
+ Area System참고
@@ -827,339 +1056,476 @@
알림
+ Area Privacy알림 및 작업
+ Area System숫자 잠금
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedODBC 데이터 원본 관리자(32비트)
+ Area Control Panel (legacy settings)ODBC 데이터 원본 관리자(64비트)
+ Area Control Panel (legacy settings)오프라인 파일
+ Area Control Panel (legacy settings)오프라인 맵
+ Area Apps오프라인 지도 - 맵 다운로드
+ Area Apps화면에OS
+ Means the "Operating System"기타 장치
+ Area Privacy기타 옵션
+ Area EaseOfAccess다른 사용자자녀 보호
+ Area Control Panel (legacy settings)
- 암호
+ 패스워드
+
+
+ password.cpl
+ File name, Should not translated암호 속성
+ Area Control Panel (legacy settings)펜 및 입력 장치
+ Area Control Panel (legacy settings)펜 및 터치
+ Area Control Panel (legacy settings)펜 및 Windows Ink
+ Area Device주변 사용자 찾기
+ Area Control Panel (legacy settings)성능 정보 및 도구
+ Area Control Panel (legacy settings)사용 권한 및 기록
+ Area Cortana개인 설정(범주)
+ Area Personalization전화
+ Area Phone전화 및 모뎀
+ Area Control Panel (legacy settings)전화 및 모뎀 - 옵션
+ Area Control Panel (legacy settings)전화 통화
+ Area Privacy전화 - 기본 앱
+ Area System그림그림
+ Area PrivacyPinyin IME 설정
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedPinyin IME 설정 - 도메인 어휘집
+ Area TimeAndLanguagePinyin IME 설정 - 키 구성
+ Area TimeAndLanguagePinyin IME 설정 - UDP
+ Area TimeAndLanguage게임 전체 화면 재생
+ Area GamingWindows 설정을 검색하는 플러그 인
- Windows 설정
+ Windows Settings전원 및 절전 모드
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translated전원 옵션
+ Area Control Panel (legacy settings)프레젠테이션
-
- 인쇄 화면
-
프린터
+ Area Control Panel (legacy settings)프린터 및 스캐너
+ Area Device
+
+
+ 인쇄 화면
+ Mean the "Print screen" key문제 보고서 및 해결 방법
+ Area Control Panel (legacy settings)프로세서프로그램 및 기능
+ Area Control Panel (legacy settings)이 PC에 프로젝팅
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colors프로비전
+ Area UserAccounts, only available if enterprise has deployed a provisioning package근접 연결
+ Area NetworkAndInternet프록시
+ Area NetworkAndInternet빠른 입력
+ Area TimeAndLanguage조용한 순간 게임라디오
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)인식복구
+ Area UpdateAndSecurity적목 현상
+ Mean red eye effect by over-the-night flights빨간색-녹색
+ Mean the weakness you can't differ between red and green colors빨강 주
+ Mean you don't can see red colors영역
+ Area TimeAndLanguage
+
+
+ 지역 언어
+ Area TimeAndLanguage
+
+
+ 지역별 설정 속성
+ Area Control Panel (legacy settings)지역 및 언어
+ Area Control Panel (legacy settings)지역 서식 지정
-
- 지역 언어
-
-
- 지역별 설정 속성
-
RemoteApp 및 데스크톱 연결
+ Area Control Panel (legacy settings)원격 데스크톱
+ Area System스캐너 및 카메라
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translated일정예약된 작업
+ Area Control Panel (legacy settings)화면 회전
+ Area System스크롤 막대스크롤 잠금
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedWindows 검색 중
+ Area CortanaSecureDNS
+ Should not translatedSecurity Center
+ Area Control Panel (legacy settings)보안 프로세서세션 정리
-
-
- 키오스크 설정
+ Area SurfaceHub설정 홈페이지
+ Area Home, Overview-page for all areas of settings
+
+
+ 키오스크 설정
+ Area UserAccounts공유 환경
-
-
- Wi-Fi
+ Area System바로 가기
+
+ Wi-Fi
+ dont translate this, is a short term to find entries
+
로그인 옵션
+ Area UserAccounts로그인 옵션 - 동적 잠금
+ Area UserAccounts크기
+ Size for text and symbols사운드
+ Area System음성
+ Area EaseOfAccess음성 인식
+ Area Control Panel (legacy settings)음성 입력시작
+ Area Personalization시작 위치시작 앱
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translated저장소
+ Area System저장소 정책
+ Area System저장 공간 센스
+ Area System
+
+
+ in
+ Example: Area "System" in System settings동기화 센터
+ Area Control Panel (legacy settings)설정 동기화
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translated시스템
+ Area Control Panel (legacy settings)시스템 속성 및 새 하드웨어 추가 마법사
+ Area Control Panel (legacy settings)탭
+ Means the key "Tabulator" on the keyboard태블릿 모드
+ Area System태블릿 PC 설정
+ Area Control Panel (legacy settings)이야기Cortana에 말하기
+ Area Cortana작업 표시줄
+ Area Personalization작업 표시줄 색작업
+ Area Privacy팀 회의
+ Area SurfaceHub팀 장치 관리
+ Area SurfaceHub텍스트 음성 변환
+ Area Control Panel (legacy settings)테마
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translated타임라인
@@ -1172,51 +1538,68 @@
터치 패드
+ Area Device투명도
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
문제 해결
+ Area UpdateAndSecurityTruePlay
+ Area Gaming입력
+ Area Device제거
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area Device사용자 계정
+ Area Control Panel (legacy settings)
- 버전
+ 버
+ Means The "Windows Version"비디오 재생
+ Area Apps비디오
+ Area Privacy가상 데스크톱바이러스
+ Means the virus in computers and software음성 활성화
+ Area Privacy볼륨VPN
+ Area NetworkAndInternet배경 화면
@@ -1226,75 +1609,102 @@
시작 센터
+ Area Control Panel (legacy settings)시작 화면
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translated휠
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi 통화
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi 설정
+ "Wi-Fi" should not translated창 테두리Windows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows 방화벽
+ Area Control Panel (legacy settings)Windows Hello 설정 - Face
+ Area UserAccountsWindows Hello 설정 - 지문
+ Area UserAccountsWindows 참가자 프로그램
+ Area UpdateAndSecurityWindows 모바일 센터
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaWindows 보안
+ Area UpdateAndSecurityWindows 업데이트
+ Area UpdateAndSecurityWindows 업데이트 - 고급 옵션
+ Area UpdateAndSecurityWindows 업데이트 - 업데이트 확인
+ Area UpdateAndSecurityWindows 업데이트 - 다시 시작 옵션
+ Area UpdateAndSecurityWindows 업데이트 - 선택적 업데이트 보기
+ Area UpdateAndSecurityWindows 업데이트 - 업데이트 기록 보기
+ Area UpdateAndSecurity무선
@@ -1304,107 +1714,26 @@
작업 공간 프로비전
+ Area UserAccountsWubi IME 설정
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedWubi IME 설정 - UDP
+ Area TimeAndLanguageXbox 네트워킹
+ Area Gaming사용자 정보
+ Area UserAccounts확대/축소
-
-
-
-
-
-
-
-
- bpmf
-
-
- 호출
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.nb-NO.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.nb-NO.resx
new file mode 100644
index 000000000..1a13c5c73
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.nb-NO.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/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.nl-NL.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.nl-NL.resx
new file mode 100644
index 000000000..4ce84f215
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.nl-NL.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
+
+
+ Algemeen
+ 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
+
+
+ Taal
+ 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)
+
+
+ Wachtwoord
+
+
+ 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)
+
+
+ Versie
+ 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/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx
index 9bd9caf91..549d5f585 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pl-PL.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -118,58 +118,79 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- Informacje
+ O programie
+ Area System
-
- Dostęp do zasobów służbowych
+
+ access.cpl
+ File name, Should not translatedOpcje ułatwień dostępu
+ Area Control Panel (legacy settings)Aplikacje dla akcesoriów
+ Area Privacy
+
+
+ Dostęp do zasobów służbowych
+ Area UserAccountsInformacje o koncie
+ Area PrivacyKonta
+ Area SurfaceHubCentrum akcji
+ Area Control Panel (legacy settings)Aktywacja
+ Area UpdateAndSecurityHistoria działań
+ Area PrivacyDodaj sprzęt
+ Area Control Panel (legacy settings)Dodaj/Usuń programy
+ Area Control Panel (legacy settings)Dodaj swój telefon
+ Area PhoneNarzędzia administracyjne
+ Area SystemZaawansowane ustawienia wyświetlania
+ Area System, only available on devices that support advanced display optionsGrafika zaawansowanaIdentyfikator reklamy
+ Area Privacy, Deprecated in Windows 10, version 1809 and laterTryb samolotowy
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboardNazwy alternatywne
@@ -180,38 +201,48 @@
Kolor aplikacji
-
- Panel sterowania
-
Diagnostyka aplikacji
+ Area PrivacyFunkcje aplikacji
-
-
- Ustawienia systemowe
-
-
- Preferencje urządzeń i głośności aplikacji
+ Area AppsAplikacja
+ Short/modern name for applicationAplikacje i funkcje
+ Area Apps
+
+
+ Ustawienia systemowe
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Aplikacje dla witryn internetowych
+ Area Apps
+
+
+ Preferencje urządzeń i głośności aplikacji
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedObszar
+ Mean the settings area or settings categoryKontaNarzędzia administracyjne
+ Area Control Panel (legacy settings)Wygląd i personalizacja
@@ -222,6 +253,9 @@
Zegar i region
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
Dźwięk
+ Area EaseOfAccessAlerty dźwiękoweDźwięk i mowa
-
-
- Autoodtwarzanie
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Automatyczne pobieranie plików
+ Area Privacy
+
+
+ Autoodtwarzanie
+ Area DeviceTło
+ Area PersonalizationAplikacje w tle
+ Area PrivacyKopia zapasowa
+ Area UpdateAndSecurityKopia zapasowa i przywracanie
+ Area Control Panel (legacy settings)Oszczędzanie baterii
+ Area System, only available on devices that have a battery, such as a tabletUstawienia oszczędzania baterii
+ Area System, only available on devices that have a battery, such as a tabletSzczegóły używania oszczędzania bateriiUżycie baterii
+ Area System, only available on devices that have a battery, such as a tabletUrządzenia biometryczne
+ Area Control Panel (legacy settings)Szyfrowanie dysków funkcją BitLocker
+ Area Control Panel (legacy settings)Jasny niebieski
-
- Niebiesko-żółty
-
Bluetooth
+ Area DeviceUrządzenia Bluetooth
+ Area Control Panel (legacy settings)
+
+
+ Niebiesko-żółtyIME Bopomofo
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedEmisja
+ Area GamingKalendarz
+ Area PrivacyHistoria połączeń
+ Area Privacy
+
+
+ rozmowyAparat
+ Area PrivacyIME Cangjie
+ Area TimeAndLanguageCaps Lock
+ Mean the "Caps Lock" keySieć komórkowa i karta SIM
+ Area NetworkAndInternetWybierz foldery, które będą wyświetlane w menu Start
+ Area PersonalizationUsługa klienta dla systemu NetWare
+ Area Control Panel (legacy settings)Schowek
+ Area SystemNapisy
+ Area EaseOfAccessFiltry kolorów
+ Area EaseOfAccessZarządzanie kolorami
+ Area Control Panel (legacy settings)Kolory
+ Area Personalization
- Polecenie
+ Komenda
+ The command to direct start a settingPołączone urządzenia
+ Area DeviceKontakty
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"Polecenie kopiowaniaIzolacja rdzenia
+ Means the protection of the system coreCortana
+ Area CortanaCortana na moich urządzeniach
+ Area CortanaCortana — język
+ Area CortanaMenedżer poświadczeń
+ Area Control Panel (legacy settings)Różne urządzenia
@@ -417,9 +500,6 @@
Urządzenia niestandardowe
-
- DNS
-
Kolor ciemny
@@ -428,171 +508,240 @@
Użycie danych
+ Area NetworkAndInternetData i godzina
+ Area TimeAndLanguageAplikacje domyślne
+ Area AppsDomyślna kamera
+ Area DeviceDomyślna lokalizacja
+ Area Control Panel (legacy settings)Programy domyślne
+ Area Control Panel (legacy settings)Domyślne lokalizacje zapisywania
+ Area SystemOptymalizacja dostarczania
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedKompozycje pulpitu
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colorsMenedżer urządzeń
+ Area Control Panel (legacy settings)Urządzenia i drukarki
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedPołączenie telefoniczne
+ Area NetworkAndInternetDostęp bezpośredni
+ Area NetworkAndInternet, only available if DirectAccess is enabledOtwórz bezpośrednio telefon
+ Area EaseOfAccessWyświetl
+ Area EaseOfAccessWłaściwości wyświetlania
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedDokumenty
+ Area PrivacyDuplikowanie ekranu
+ Area SystemW tych godzinach
+ Area SystemCentrum ułatwień dostępu
+ Area Control Panel (legacy settings)Edycja
+ Means the "Windows Edition"Poczta e-mail
+ Area PrivacyKonta e-mail i aplikacji
+ Area UserAccountsSzyfrowanie
+ Area SystemŚrodowisko
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Sieć Ethernet
+ Area NetworkAndInternetExploit ProtectionDodatki
+ Area Extra, , only used for setting of 3rd-Party toolsSterowanie wzrokiem
+ Area EaseOfAccessModuł śledzący ruch gałek ocznych
+ Area Privacy, requires eyetracker hardwareRodzina i inne osoby
+ Area UserAccountsOpinie i diagnostyka
+ Area PrivacySystem plików
+ Area PrivacySzybkie znajdowanie
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedZnajdowanie mojego urządzenia
+ Area UpdateAndSecurityZaporaFunkcja koncentracji uwagi — godziny ciszy
+ Area SystemFunkcja koncentracji uwagi — momenty ciszy
+ Area SystemOpcje folderów
+ Area Control Panel (legacy settings)Czcionki
+ Area EaseOfAccessDla deweloperów
+ Area UpdateAndSecurityPasek gry
+ Area GamingKontrolery gier
+ Area Control Panel (legacy settings)DVR z gry
+ Area Gaming
- Tryb gry
+ Game Mode
+ Area GamingBrama
+ Should not translatedOgólne
+ Area PrivacyPobieranie programów
+ Area Control Panel (legacy settings)Wprowadzenie
+ Area Control Panel (legacy settings)Przegląd
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterUstawienia grafiki
+ Area SystemOdcienie szarościZielony tydzień
+ Mean you don't can see green colorsWyświetlanie zestawu słuchawkowego
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Wysoki kontrast
+ Area EaseOfAccessDźwięk holograficzny
@@ -608,42 +757,68 @@
Grupa domowa
+ Area Control Panel (legacy settings)Identyfikator
+ MEans The "Windows Identifier"ObrazOpcje indeksowania
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedPodczerwień
+ Area Control Panel (legacy settings)Pisanie odręczne i pisanie na klawiaturze
+ Area PrivacyOpcje internetowe
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedOdwrócone koloryAdres IP
+ Should not translatedPrzeglądanie izolowaneUstawienia edytora IME dla Japonii
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedWłaściwości joysticka
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedKlawiatura
+ Area EaseOfAccessKlawiatura numeryczna
@@ -653,6 +828,7 @@
Język
+ Area TimeAndLanguageJasny kolor
@@ -662,102 +838,155 @@
Lokalizacja
+ Area PrivacyEkran blokady
+ Area PersonalizationLupa
+ Area EaseOfAccessPoczta — Microsoft Exchange lub Windows Messaging
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedZarządzanie znanymi sieciami
+ Area NetworkAndInternetZarządzanie funkcjami opcjonalnymi
+ Area AppsObsługa wiadomości
+ Area PrivacyPołączenie taryfoweMikrofon
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedUrządzenia przenośneHotspot mobilny
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoWięcej szczegółów
+ Area CortanaRuch
+ Area PrivacyMysz
+ Area EaseOfAccessMysz i płytka dotykowa
+ Area DeviceWłaściwości myszy, czcionek, klawiatury i drukarek
+ Area Control Panel (legacy settings)Wskaźnik myszy
+ Area EaseOfAccessWłaściwości multimediów
+ Area Control Panel (legacy settings)Wielozadaniowość
-
-
- NFC
-
-
- Transakcje NFC
+ Area SystemNarrator
+ Area EaseOfAccessPasek nawigacyjny
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedSieć
+ Area NetworkAndInternetCentrum sieci i udostępniania
+ Area Control Panel (legacy settings)Połączenie sieciowe
+ Area Control Panel (legacy settings)Właściwości sieci
+ Area Control Panel (legacy settings)Kreator konfiguracji sieci
+ Area Control Panel (legacy settings)Stan sieci
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Transakcje NFC
+ "NFC should not translated"Wyświetlanie nocneUstawienia wyświetlania nocnego
+ Area SystemUwaga
@@ -827,339 +1056,476 @@
Powiadomienia
+ Area PrivacyPowiadomienia i akcje
+ Area SystemNum Lock
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedAdministrator źródła danych ODBC (32-bitowe)
+ Area Control Panel (legacy settings)Administrator źródła danych ODBC (64-bitowe)
+ Area Control Panel (legacy settings)Pliki trybu offline
+ Area Control Panel (legacy settings)Mapy offline
+ Area AppsMapy offline — pobieranie map
+ Area AppsEkranowaSystem operacyjny
+ Means the "Operating System"Inne urządzenia
+ Area PrivacyInne opcje
+ Area EaseOfAccessInni użytkownicyKontrola rodzicielska
+ Area Control Panel (legacy settings)Hasło
+
+ password.cpl
+ File name, Should not translated
+
Właściwości hasła
+ Area Control Panel (legacy settings)Pióro i urządzenia wejściowe
+ Area Control Panel (legacy settings)Pióro i dotyk
+ Area Control Panel (legacy settings)Pióro i funkcja Windows Ink
+ Area DeviceOsoby w pobliżu
+ Area Control Panel (legacy settings)Narzędzia i informacje o wydajności
+ Area Control Panel (legacy settings)Uprawnienia i historia
+ Area CortanaPersonalizacja (kategoria)
+ Area PersonalizationTelefon
+ Area PhoneTelefon i modem
+ Area Control Panel (legacy settings)Telefon i modem — opcje
+ Area Control Panel (legacy settings)Rozmowy telefoniczne
+ Area PrivacyTelefon — aplikacje domyślne
+ Area SystemObrazObrazy
+ Area PrivacyUstawienia edytora IME Pinyin
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedUstawienia edytora IME Pinyin — Leksykon domeny
+ Area TimeAndLanguageUstawienia edytora IME Pinyin — Konfiguracja klucza
+ Area TimeAndLanguageUstawienia edytora IME Pinyin — UDP
+ Area TimeAndLanguageGranie w grę na pełnym ekranie
+ Area GamingWtyczka do wyszukiwania ustawień systemu Windows
- Ustawienia systemu Windows
+ Windows SettingsZasilanie i uśpienie
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedOpcje zasilania
+ Area Control Panel (legacy settings)Prezentacja
-
- Print Screen
-
Drukarki
+ Area Control Panel (legacy settings)Drukarki i skanery
+ Area Device
+
+
+ Print Screen
+ Mean the "Print screen" keyRaporty i rozwiązania problemów
+ Area Control Panel (legacy settings)ProcesorProgramy i funkcje
+ Area Control Panel (legacy settings)Projekcja na tym komputerze
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colorsInicjowanie obsługi
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageBliskość
+ Area NetworkAndInternetSerwer proxy
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageGra w ciche chwileUrządzenia radiowe
+ Area PrivacyPamięć RAM
+ Means the Read-Access-Memory (typical the used to inform about the size)RozpoznawanieOdzyskiwanie
+ Area UpdateAndSecurityCzerwone oczy
+ Mean red eye effect by over-the-night flightsCzerwony-zielony
+ Mean the weakness you can't differ between red and green colorsCzerwony tydzień
+ Mean you don't can see red colorsRegion
+ Area TimeAndLanguage
+
+
+ Język regionalny
+ Area TimeAndLanguage
+
+
+ Właściwości ustawień regionalnych
+ Area Control Panel (legacy settings)Region i język
+ Area Control Panel (legacy settings)Formatowanie regionu
-
- Język regionalny
-
-
- Właściwości ustawień regionalnych
-
Połączenia funkcji RemoteApp usług terminalowych i pulpitu
+ Area Control Panel (legacy settings)Pulpit zdalny
+ Area SystemSkanery i aparaty fotograficzne
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedZaplanowanoZaplanowane zadania
+ Area Control Panel (legacy settings)Obrót ekranu
+ Area SystemPaski przewijaniaBlokada przewijania
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedWyszukiwanie w systemie Windows
+ Area CortanaSecureDNS
+ Should not translatedSecurity Center
+ Area Control Panel (legacy settings)Procesor zabezpieczeńCzyszczenie sesji
-
-
- Konfigurowanie kiosku
+ Area SurfaceHubStrona główna ustawień
+ Area Home, Overview-page for all areas of settings
+
+
+ Konfigurowanie kiosku
+ Area UserAccountsUdostępnione środowiska
-
-
- wifi
+ Area SystemSkróty
+
+ wifi
+ dont translate this, is a short term to find entries
+
Opcje logowania
+ Area UserAccountsOpcje logowania — blokada dynamiczna
+ Area UserAccountsRozmiar
+ Size for text and symbolsDźwięk
+ Area SystemMowa
+ Area EaseOfAccessRozpoznawanie mowy
+ Area Control Panel (legacy settings)DyktowanieUruchamianie
+ Area PersonalizationUruchamianie miejscAplikacje startowe
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedMagazyn
+ Area SystemZasady magazynu
+ Area SystemCzujnik pamięci
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsCentrum synchronizacji
+ Area Control Panel (legacy settings)Synchronizuj ustawienia
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedSystem
+ Area Control Panel (legacy settings)Kreator właściwości systemowych i dodawania nowego sprzętu
+ Area Control Panel (legacy settings)Karta
+ Means the key "Tabulator" on the keyboardTryb tabletu
+ Area SystemUstawienia komputera typu tablet
+ Area Control Panel (legacy settings)TalkPorozmawiaj z Cortaną
+ Area CortanaPasek zadań
+ Area PersonalizationKolor paska zadańZadania
+ Area PrivacyKonferencje zespołu
+ Area SurfaceHubZarządzanie urządzeniami zespołu
+ Area SurfaceHubZamiana tekstu na mowę
+ Area Control Panel (legacy settings)Motywy
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedOś czasu
@@ -1172,51 +1538,68 @@
Płytka dotykowa
+ Area DevicePrzezroczystość
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
Rozwiązywanie problemów
+ Area UpdateAndSecurityTruePlay
+ Area GamingWpisywanie
+ Area DeviceOdinstalowywanie
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceKonta użytkowników
+ Area Control Panel (legacy settings)Wersja
+ Means The "Windows Version"Odtwarzanie wideo
+ Area AppsFilmy
+ Area PrivacyPulpity wirtualneWirus
+ Means the virus in computers and softwareAktywacja głosowa
+ Area PrivacyGłośnośćVPN
+ Area NetworkAndInternetTapeta
@@ -1226,75 +1609,102 @@
Centrum powitalne
+ Area Control Panel (legacy settings)Ekran powitalny
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedKółko
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledPołączenie w sieci Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledUstawienia sieci Wi-Fi
+ "Wi-Fi" should not translatedObramowanie oknaWindows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Zapora systemu Windows
+ Area Control Panel (legacy settings)Instalator funkcji Windows Hello — rozpoznawanie twarzy
+ Area UserAccountsInstalator funkcji Windows Hello — odcisk palca
+ Area UserAccountsNiejawny program testów systemu Windows
+ Area UpdateAndSecurityCentrum mobilności w systemie Windows
+ Area Control Panel (legacy settings)Wyszukiwanie w systemie Windows
+ Area CortanaZabezpieczenia systemu Windows
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update — opcje zaawansowane
+ Area UpdateAndSecurityWindows Update — sprawdzanie aktualizacji
+ Area UpdateAndSecurityWindows Update - opcje ponownego uruchamiania
+ Area UpdateAndSecurityWindows Update — wyświetlanie aktualizacji opcjonalnych
+ Area UpdateAndSecurityWindows Update-wyświetlanie historii aktualizacji
+ Area UpdateAndSecuritySieć bezprzewodowa
@@ -1304,107 +1714,26 @@
Inicjowanie obsługi miejsca pracy
+ Area UserAccountsUstawienia Wubi edytora IME
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedUstawienia Wubi edytora IME — UDP
+ Area TimeAndLanguageSieć Xbox
+ Area GamingTwoje informacje
+ Area UserAccountsPowiększenie
-
-
-
-
-
-
-
-
- bpmf
-
-
- rozmowy
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx
index 7f2e49f44..739ed27db 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-BR.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -119,57 +119,78 @@
Sobre
+ Area System
-
- Acesse o trabalho ou a escola
+
+ access.cpl
+ File name, Should not translatedOpções de acessibilidade
+ Area Control Panel (legacy settings)Aplicativos para acessório
+ Area Privacy
+
+
+ Acesse o trabalho ou a escola
+ Area UserAccountsInformações da conta
+ Area PrivacyContas
+ Area SurfaceHubCentral de Ações
+ Area Control Panel (legacy settings)Ativação
+ Area UpdateAndSecurityHistórico de atividades
+ Area PrivacyAdicionar Hardware
+ Area Control Panel (legacy settings)Adicionar/Remover Programas
+ Area Control Panel (legacy settings)Adicionar seu telefone
+ Area PhoneFerramentas Administrativas
+ Area SystemConfigurações de vídeo avançadas
+ Area System, only available on devices that support advanced display optionsGráficos avançadosIdentificação do Anúncio
+ Area Privacy, Deprecated in Windows 10, version 1809 and laterModo avião
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboardNomes alternativos
@@ -180,38 +201,48 @@
Cor do aplicativo
-
- Painel de Controle
-
Diagnóstico do aplicativo
+ Area PrivacyRecursos do aplicativo
-
-
- Configurações do sistema
-
-
- Preferências do dispositivo e volume do aplicativo
+ Area AppsAplicativo
+ Short/modern name for applicationAplicativos e Recursos
+ Area Apps
+
+
+ Configurações do sistema
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Aplicativos para sites
+ Area Apps
+
+
+ Preferências do dispositivo e volume do aplicativo
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedÁrea
+ Mean the settings area or settings categoryContasFerramentas Administrativas
+ Area Control Panel (legacy settings)Aparência e Personalização
@@ -222,6 +253,9 @@
Relógio e Região
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
Áudio
+ Area EaseOfAccessAlertas de áudioÁudio e fala
-
-
- Reprodução Automática
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Downloads automáticos de arquivos
+ Area Privacy
+
+
+ Reprodução Automática
+ Area DevicePlano de fundo
+ Area PersonalizationAplicativos em Segundo Plano
+ Area PrivacyBackup
+ Area UpdateAndSecurityBackup e restauração
+ Area Control Panel (legacy settings)Economia de Bateria
+ Area System, only available on devices that have a battery, such as a tabletConfigurações de Economia de Bateria
+ Area System, only available on devices that have a battery, such as a tabletDetalhes de uso da economia de bateriaUso da bateria
+ Area System, only available on devices that have a battery, such as a tabletDispositivos biométricos
+ Area Control Panel (legacy settings)Criptografia de Unidade BitLocker
+ Area Control Panel (legacy settings)Luz azul
-
- Azul-amarelo
-
Bluetooth
+ Area DeviceDispositivos Bluetooth
+ Area Control Panel (legacy settings)
+
+
+ Azul-amareloIME Bopomofo
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedTransmissão
+ Area GamingCalendário
+ Area PrivacyHistórico de chamadas
+ Area Privacy
+
+
+ chamandoCâmera
+ Area PrivacyIME Cangjie
+ Area TimeAndLanguageCaps Lock
+ Mean the "Caps Lock" keyCelular e SIM
+ Area NetworkAndInternetEscolher quais pastas aparecem no Início
+ Area PersonalizationServiço de cliente para NetWare
+ Area Control Panel (legacy settings)Área de transferência
+ Area SystemLegendas ocultas
+ Area EaseOfAccessFiltros de cores
+ Area EaseOfAccessGerenciamento de cores
+ Area Control Panel (legacy settings)Cores
+ Area Personalization
- Comando
+ Command
+ The command to direct start a settingDispositivos Conectados
+ Area DeviceContatos
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"Copiar comandoIsolamento do Núcleo
+ Means the protection of the system coreCortana
+ Area CortanaCortana nos meus dispositivos
+ Area CortanaCortana - Idioma
+ Area CortanaGerenciador de credenciais
+ Area Control Panel (legacy settings)Dispositivo cruzado
@@ -417,9 +500,6 @@
Dispositivos personalizados
-
- DNS
-
Cor escura
@@ -428,171 +508,240 @@
Uso de dados
+ Area NetworkAndInternetData e hora
+ Area TimeAndLanguageAplicativos padrão
+ Area AppsCâmera padrão
+ Area DeviceLocal Padrão
+ Area Control Panel (legacy settings)Programas padrão
+ Area Control Panel (legacy settings)Local de salvamento padrão
+ Area SystemOtimização de Entrega
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedTemas da área de trabalho
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colorsGerenciador de dispositivos
+ Area Control Panel (legacy settings)Dispositivos e impressoras
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedDiscagem
+ Area NetworkAndInternetAcesso direto
+ Area NetworkAndInternet, only available if DirectAccess is enabledAbrir diretamente seu telefone
+ Area EaseOfAccessExibir
+ Area EaseOfAccessExibir propriedades
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedDocumentos
+ Area PrivacyComo duplicar minha exibição
+ Area SystemDurante essas horas
+ Area SystemCentro de facilidade de acesso
+ Area Control Panel (legacy settings)Edição
+ Means the "Windows Edition"Email
+ Area PrivacyContas de email e aplicativo
+ Area UserAccountsCriptografia
+ Area SystemAmbiente
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Ethernet
+ Area NetworkAndInternetExploit ProtectionExtras
+ Area Extra, , only used for setting of 3rd-Party toolsControle com os olhos
+ Area EaseOfAccessRastreador ocular
+ Area Privacy, requires eyetracker hardwareFamília e outras pessoas
+ Area UserAccountsComentários e diagnóstico
+ Area PrivacySistema de arquivos
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedLocalizar Meu Dispositivo
+ Area UpdateAndSecurityFirewallAssistente de concentração – Horas silenciosas
+ Area SystemAssistente de concentração – Momentos silenciosos
+ Area SystemOpções de pasta
+ Area Control Panel (legacy settings)Fontes
+ Area EaseOfAccessPara desenvolvedores
+ Area UpdateAndSecurityGame Bar
+ Area GamingControles de jogos
+ Area Control Panel (legacy settings)DVR de Jogo
+ Area Gaming
- Modo de Jogo
+ Game Mode
+ Area GamingGateway
+ Should not translatedGeral
+ Area PrivacyObter programas
+ Area Control Panel (legacy settings)Introdução
+ Area Control Panel (legacy settings)Resumo
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterConfigurações de gráficos
+ Area SystemEscala de cinzaSemana verde
+ Mean you don't can see green colorsExibição de fone de ouvido
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Alto contraste
+ Area EaseOfAccessÁudio do Holographic
@@ -608,42 +757,68 @@
Grupo doméstico
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"ImagemOpções de indexação
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedInfravermelho
+ Area Control Panel (legacy settings)Escrita à tinta e digitação
+ Area PrivacyOpções de Internet
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedCores invertidasIP
+ Should not translatedNavegação isoladaConfigurações do IME do Japão
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedPropriedades do joystick
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedTeclado
+ Area EaseOfAccessTeclado
@@ -652,7 +827,8 @@
Chaves
- Linguagem
+ Idioma
+ Area TimeAndLanguageCor clara
@@ -661,103 +837,156 @@
Modo claro
- Localização
+ Location
+ Area PrivacyTela de bloqueio
+ Area PersonalizationLupa
+ Area EaseOfAccessEmail – Microsoft Exchange ou Mensagens do Windows
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedGerenciar redes conhecidas
+ Area NetworkAndInternetGerenciar recursos opcionais
+ Area AppsMensagens
+ Area PrivacyConexão limitadaMicrofone
+ Area PrivacyCaixa Postal de Email da Microsoft
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedDispositivos móveisHotspot móvel
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoMais detalhes
+ Area CortanaMovimento
+ Area PrivacyMouse
+ Area EaseOfAccessMouse e touchpad
+ Area DevicePropriedades de Mouse, Fontes, Teclado e Impressoras
+ Area Control Panel (legacy settings)Ponteiro do mouse
+ Area EaseOfAccessPropriedades de multimídia
+ Area Control Panel (legacy settings)Multitarefa
-
-
- NFC
-
-
- Transações NFC
+ Area SystemNarrador
+ Area EaseOfAccessBarra de navegação
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedRede
+ Area NetworkAndInternetCentral de rede e compartilhamento
+ Area Control Panel (legacy settings)Conexão de rede
+ Area Control Panel (legacy settings)Propriedades de rede
+ Area Control Panel (legacy settings)Assistente de Instalação de Rede
+ Area Control Panel (legacy settings)Status da rede
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Transações NFC
+ "NFC should not translated"Luz noturnaConfigurações de luz noturna
+ Area SystemObservação
@@ -827,339 +1056,476 @@
Notificações
+ Area PrivacyNotificações e ações
+ Area SystemBloqueio Numérico
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedAdministrador da Fonte de Dados ODBC (32 bits)
+ Area Control Panel (legacy settings)Administrador da Fonte de Dados ODBC (64 bits)
+ Area Control Panel (legacy settings)Arquivos offline
+ Area Control Panel (legacy settings)Mapas Offline
+ Area AppsMapas Offline - Baixar mapas
+ Area AppsNa telaSO
+ Means the "Operating System"Outros dispositivos
+ Area PrivacyOutras opções
+ Area EaseOfAccessOutros usuáriosControles dos pais
+ Area Control Panel (legacy settings)Senha
+
+ password.cpl
+ File name, Should not translated
+
Propriedades da senha
+ Area Control Panel (legacy settings)Caneta e dispositivos de entrada
+ Area Control Panel (legacy settings)Caneta e toque
+ Area Control Panel (legacy settings)Caneta e Windows Ink
+ Area DevicePessoas ao meu Redor
+ Area Control Panel (legacy settings)Informações e ferramentas de desempenho
+ Area Control Panel (legacy settings)Permissões e histórico
+ Area CortanaPersonalização (categoria)
+ Area PersonalizationTelefone
+ Area PhoneTelefone e modem
+ Area Control Panel (legacy settings)Telefone e modem - Opções
+ Area Control Panel (legacy settings)Chamadas telefônicas
+ Area PrivacyTelefone - Aplicativos padrão
+ Area SystemImagemImagens
+ Area PrivacyConfigurações do IME Pinyin
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedConfigurações do IME pinyin – léxico de domínio
+ Area TimeAndLanguageConfigurações do IME Pinyin - Configuração das teclas
+ Area TimeAndLanguageConfigurações do IME Pinyin - UDP
+ Area TimeAndLanguageReproduzindo um jogo em tela inteira
+ Area GamingPlug-in para pesquisar as configurações do Windows
- Configurações do Windows
+ Windows SettingsEnergia e suspensão
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedOpções de energia
+ Area Control Panel (legacy settings)Apresentação
-
- Imprimir tela
-
Impressoras
+ Area Control Panel (legacy settings)Impressoras e scanners
+ Area Device
+
+
+ Imprimir tela
+ Mean the "Print screen" keySoluções e relatórios de problemas
+ Area Control Panel (legacy settings)ProcessadorProgramas e recursos
+ Area Control Panel (legacy settings)Projeção para este computador
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colorsProvisionamento
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageProximidade
+ Area NetworkAndInternetProxy
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageJogo em momentos silenciososRádios
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)ReconhecimentoRecuperação
+ Area UpdateAndSecurityOlho vermelho
+ Mean red eye effect by over-the-night flightsVermelho-Verde
+ Mean the weakness you can't differ between red and green colorsSemana vermelha
+ Mean you don't can see red colorsRegião
+ Area TimeAndLanguage
+
+
+ Idioma regional
+ Area TimeAndLanguage
+
+
+ Propriedades de configurações regionais
+ Area Control Panel (legacy settings)Região e idioma
+ Area Control Panel (legacy settings)Formatação de região
-
- Idioma regional
-
-
- Propriedades de configurações regionais
-
Conexões RemoteApp e área de trabalho
+ Area Control Panel (legacy settings)Área de Trabalho Remota
+ Area SystemScanners e câmeras
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedAgendadoTarefas agendadas
+ Area Control Panel (legacy settings)Rotação de Tela
+ Area SystemBarras de rolagemScroll Lock
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedPesquisando no Windows
+ Area CortanaSecureDNS
+ Should not translatedCentral de Segurança
+ Area Control Panel (legacy settings)Processador de SegurançaLimpeza da sessão
-
-
- Configurar um quiosque
+ Area SurfaceHubHome page das configurações
+ Area Home, Overview-page for all areas of settings
+
+
+ Configurar um quiosque
+ Area UserAccountsExperiências compartilhadas
-
-
- wifi
+ Area SystemAtalhos
+
+ wifi
+ dont translate this, is a short term to find entries
+
Opções de entrada
+ Area UserAccountsOpções de entrada - Bloqueio dinâmico
+ Area UserAccountsTamanho
+ Size for text and symbolsSom
+ Area SystemFala
+ Area EaseOfAccessReconhecimento de fala
+ Area Control Panel (legacy settings)Digitação de falaInício
+ Area PersonalizationLocais de inícioAplicativos de inicialização
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedArmazenamento
+ Area SystemPolíticas de armazenamento
+ Area SystemSensor de Armazenamento
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsCentral de sincronização
+ Area Control Panel (legacy settings)Sincronizar suas configurações
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedSistema
+ Area Control Panel (legacy settings)Propriedades do sistema e assistente para Adicionar Novo Hardware
+ Area Control Panel (legacy settings)Guia
+ Means the key "Tabulator" on the keyboardModo tablet
+ Area SystemConfigurações do Tablet PC
+ Area Control Panel (legacy settings)ConversaConverse com a Cortana
+ Area CortanaBarra de tarefas
+ Area PersonalizationCor da barra de tarefasTarefas
+ Area PrivacyConferência em Equipe
+ Area SurfaceHubGerenciamento de dispositivos da equipe
+ Area SurfaceHubConversão de texto em fala
+ Area Control Panel (legacy settings)Temas
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedLinha do Tempo
@@ -1172,51 +1538,68 @@
Touchpad
+ Area DeviceTransparência
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
Solução de problemas
+ Area UpdateAndSecurityTruePlay
+ Area GamingDigitação
+ Area DeviceDesinstalar
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceContas de usuário
+ Area Control Panel (legacy settings)Versão
+ Means The "Windows Version"Reprodução de vídeo
+ Area AppsVídeos
+ Area PrivacyÁreas de Trabalho VirtuaisVírus
+ Means the virus in computers and softwareAtivação por voz
+ Area PrivacyVolumeVPN
+ Area NetworkAndInternetPapel de parede
@@ -1226,75 +1609,102 @@
Centro de boas-vindas
+ Area Control Panel (legacy settings)Tela de boas-vindas
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedRoda
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledChamada de Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledConfigurações de Wi-Fi
+ "Wi-Fi" should not translatedBorda da janelaWindows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Firewall do Windows
+ Area Control Panel (legacy settings)Configuração do Windows Hello - Detecção Facial
+ Area UserAccountsConfiguração do Windows Hello - Impressão digital
+ Area UserAccountsPrograma Windows Insider
+ Area UpdateAndSecurityCentro de Mobilidade do Windows
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaSegurança do Windows
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update - Opções Avançadas
+ Area UpdateAndSecurityWindows Update - Verificar se há atualizações
+ Area UpdateAndSecurityWindows Update - Opções de Reinicialização
+ Area UpdateAndSecurityWindows Update - Exibir atualizações opcionais
+ Area UpdateAndSecurityWindows Update - Exibir histórico de atualizações
+ Area UpdateAndSecuritySem fio
@@ -1304,107 +1714,26 @@
Provisionamento do local de trabalho
+ Area UserAccountsDefinições IME Wubi
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedConfigurações do IME Wubi-UDP
+ Area TimeAndLanguageRede Xbox
+ Area GamingSuas informações
+ Area UserAccountsZoom
-
-
-
-
-
-
-
-
- bpmf
-
-
- chamando
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx
index b75011a81..1893558c7 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -118,58 +118,79 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- О программе
+ О Flow Launcher
+ Area System
-
- Доступ к рабочей или учебной учетной записи
+
+ access.cpl
+ File name, Should not translatedСпециальные возможности
+ Area Control Panel (legacy settings)Приложения-помощники
+ Area Privacy
+
+
+ Доступ к рабочей или учебной учетной записи
+ Area UserAccountsСведения об учетной записи
+ Area PrivacyУчетные записи
+ Area SurfaceHubЦентр поддержки
+ Area Control Panel (legacy settings)Активация
+ Area UpdateAndSecurityЖурнал действий
+ Area PrivacyДобавление оборудования
+ Area Control Panel (legacy settings)Установка и удаление программ
+ Area Control Panel (legacy settings)Добавление номера телефона
+ Area Phone
- Средства администрирования
+ Инструменты администрирования
+ Area SystemДополнительные параметры экрана
+ Area System, only available on devices that support advanced display optionsРасширенная графикаИдентификатор рекламы
+ Area Privacy, Deprecated in Windows 10, version 1809 and later
- Режим "в самолете"
+ Режим полёта
+ Area NetworkAndInternet
- ALT+TAB
+ Alt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboardАльтернативные имена
@@ -180,38 +201,48 @@
Цвет приложения
-
- Панель управления
-
Диагностика приложения
+ Area PrivacyФункции приложения
-
-
- Параметры системы
-
-
- Громкость приложения и настройки устройства
+ Area AppsПриложение
+ Short/modern name for applicationПриложения и компоненты
+ Area Apps
+
+
+ Параметры системы
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Приложения для веб-сайтов
+ Area Apps
+
+
+ Настройки громкости приложения и устройства
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedОбласть
+ Mean the settings area or settings categoryУчетные записи
- Средства администрирования
+ Инструменты администрирования
+ Area Control Panel (legacy settings)Оформление и персонализация
@@ -222,6 +253,9 @@
Часы и регион
+
+ Control Panel
+
Кортана
@@ -284,132 +318,181 @@
Звук
+ Area EaseOfAccessЗвуковые оповещенияЗвук и речь
-
-
- Автоматическое воспроизведение
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Автоматическая загрузка файлов
+ Area Privacy
+
+
+ Автоматическое воспроизведение
+ Area DeviceФон
+ Area PersonalizationФоновые приложения
+ Area PrivacyРезервное копирование
+ Area UpdateAndSecurityАрхивация и восстановление
+ Area Control Panel (legacy settings)Экономия заряда
+ Area System, only available on devices that have a battery, such as a tabletПараметры экономии заряда
+ Area System, only available on devices that have a battery, such as a tabletСведения об использовании экономии зарядаИспользование батареи
+ Area System, only available on devices that have a battery, such as a tabletБиометрические устройства
+ Area Control Panel (legacy settings)Шифрование диска BitLocker
+ Area Control Panel (legacy settings)
- Голубой
-
-
- Синие-желтый
+ Синий светBluetooth
+ Area DeviceУстройства Bluetooth
+ Area Control Panel (legacy settings)
+
+
+ Сине-желтыйIME Bopomofo
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedТрансляция
+ Area GamingКалендарь
+ Area PrivacyЖурнал вызовов
+ Area Privacy
+
+
+ вызываетКамера
+ Area PrivacyIME Cangjie
+ Area TimeAndLanguageCaps Lock
+ Mean the "Caps Lock" keyПередача данных и SIM
+ Area NetworkAndInternetВыберите, какие папки будут отображаться в меню "Пуск"
+ Area PersonalizationСлужба клиента для NetWare
+ Area Control Panel (legacy settings)Буфер обмена
+ Area SystemСубтитры
+ Area EaseOfAccessЦветовые фильтры
+ Area EaseOfAccessУправление цветом
+ Area Control Panel (legacy settings)Цвета
+ Area Personalization
- Команда
+ Command
+ The command to direct start a settingПодключенные устройства
+ Area DeviceКонтакты
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"
- Команда Copy
+ Скопировать командуИзоляция ядра
+ Means the protection of the system coreКортана
+ Area CortanaКортана на всех моих устройствах
+ Area CortanaКортана — язык
+ Area CortanaДиспетчер учетных данных
+ Area Control Panel (legacy settings)На нескольких устройствах
@@ -417,9 +500,6 @@
Пользовательские устройства
-
- Служба доменных имен (DNS)
-
Темный цвет
@@ -428,177 +508,246 @@
Использование данных
+ Area NetworkAndInternetДата и время
+ Area TimeAndLanguageПриложения по умолчанию
+ Area AppsКамера по умолчанию
+ Area DeviceМесто расположения по умолчанию
+ Area Control Panel (legacy settings)Программы по умолчанию
+ Area Control Panel (legacy settings)Расположения сохранения по умолчанию
+ Area SystemОптимизация доставки
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedТемы рабочего стола
+ Area Control Panel (legacy settings)
+
+
+ дейтеранопия
+ Medical: Mean you don't can see red colorsДиспетчер устройств
+ Area Control Panel (legacy settings)Устройства и принтеры
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedУдаленный доступ
+ Area NetworkAndInternetПрямой доступ
+ Area NetworkAndInternet, only available if DirectAccess is enabledПрямое открытие телефона
+ Area EaseOfAccessОтображение
+ Area EaseOfAccessСвойства экрана
+ Area Control Panel (legacy settings)
+
+
+ Служба доменных имен (DNS)
+ Should not translatedДокументы
+ Area PrivacyДублирование экрана
+ Area SystemВ эти часы
+ Area SystemЦентр специальных возможностей
+ Area Control Panel (legacy settings)Выпуск
+ Means the "Windows Edition"Адрес электронной почты
+ Area PrivacyАдрес электронной почты и учетные записи приложений
+ Area UserAccountsШифрование
+ Area System
- Среда
+ Окружение
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Ethernet
+ Area NetworkAndInternetЗащита от эксплойтов
- Дополнения
+ Дополнительно
+ Area Extra, , only used for setting of 3rd-Party toolsУправление глазами
+ Area EaseOfAccessОтслеживание глаз
+ Area Privacy, requires eyetracker hardwareСемья и другие люди
+ Area UserAccountsОбратная связь и диагностика
+ Area PrivacyФайловая система
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedПоиск устройства
+ Area UpdateAndSecurityБрандмауэрФокусировка внимания — не беспокоить
+ Area SystemФокусировка внимания — не беспокоить
+ Area SystemПараметры папки
+ Area Control Panel (legacy settings)Шрифты
+ Area EaseOfAccessДля разработчиков
+ Area UpdateAndSecurityМеню игры
+ Area GamingИгровые устройства управления
+ Area Control Panel (legacy settings)DVR для игр
+ Area Gaming
- Режим игры
+ Game Mode
+ Area GamingШлюз
+ Should not translatedОбщие
+ Area PrivacyПолучение программ
+ Area Control Panel (legacy settings)Начало работы
+ Area Control Panel (legacy settings)Заставка
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterПараметры графики
+ Area SystemОттенки серогоЗеленая неделя
+ Mean you don't can see green colorsОтображение гарнитуры
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Высокая контрастность
+ Area EaseOfAccessГолографический звук
- Голографическая среда
+ Голографическое окружениеГолографическая гарнитура
@@ -608,51 +757,78 @@
Домашняя группа
+ Area Control Panel (legacy settings)Идентификатор
+ MEans The "Windows Identifier"ИзображениеПараметры индексирования
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedИнфракрасное
+ Area Control Panel (legacy settings)Рукописный ввод и ввод с клавиатуры
+ Area PrivacyСвойства браузера
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedИнвертированные цветаIP-адрес
+ Should not translatedИзолированный просмотрПараметры IME для японского языка
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedСвойства джойстика
+ Area Control Panel (legacy settings)
+
+
+ JpnIME
+ Should not translatedКлавиатура
+ Area EaseOfAccessКлавиатура
- Ключи
+ КлавишиЯзык
+ Area TimeAndLanguageСветлый цвет
@@ -661,103 +837,156 @@
Светлый режим
- Расположение
+ Location
+ Area PrivacyЭкран блокировки
+ Area PersonalizationЛупа
+ Area EaseOfAccessЭлектронная почта — Microsoft Exchange или Сообщения Windows
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedУправление известными сетями
+ Area NetworkAndInternetУправление дополнительными компонентами
+ Area AppsОбмен сообщениями
+ Area PrivacyЛимитное подключениеМикрофон
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedМобильные устройства
- Мобильный хот-спот
+ Мобильная точка доступа
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoДополнительные сведения
+ Area CortanaДвижение
+ Area PrivacyМышь
+ Area EaseOfAccessМышь и сенсорная панель
+ Area DeviceСвойства мыши, шрифтов, клавиатуры и принтеров
+ Area Control Panel (legacy settings)Указатель мыши
+ Area EaseOfAccessСвойства мультимедиа
+ Area Control Panel (legacy settings)Многозадачность
-
-
- NFC
-
-
- Транзакции NFC
+ Area SystemДиктор
+ Area EaseOfAccessПанель навигации
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedСеть
+ Area NetworkAndInternetЦентр управления сетями и общим доступом
+ Area Control Panel (legacy settings)Сетевое подключение
+ Area Control Panel (legacy settings)Свойства сети
+ Area Control Panel (legacy settings)Мастер настройки сети
+ Area Control Panel (legacy settings)Состояние сети
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Транзакции NFC
+ "NFC should not translated"Ночной светПараметры ночного света
+ Area SystemПримечание
@@ -787,7 +1016,7 @@
Отображается, только если пользователь зарегистрирован в НЗП.
- Требуется оборудование для отслеживания взгляда.
+ Требуется оборудование для отслеживания глаз.Доступно, если установлен редактор метода ввода Майкрософт для японского языка.
@@ -827,339 +1056,476 @@
Уведомления
+ Area PrivacyУведомления и действия
+ Area SystemКлавиша NUM LOCK
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedАдминистратор источника данных ODBC (32-разрядный)
+ Area Control Panel (legacy settings)Администратор источника данных ODBC (64-разрядный)
+ Area Control Panel (legacy settings)Автономные файлы
+ Area Control Panel (legacy settings)Автономные карты
+ Area AppsАвтономные карты — скачивание карт
+ Area AppsНа экранеОС
+ Means the "Operating System"Другие устройства
+ Area PrivacyДругие параметры
+ Area EaseOfAccessДругие пользователиРодительский контроль
+ Area Control Panel (legacy settings)Пароль
+
+ password.cpl
+ File name, Should not translated
+
Свойства пароля
+ Area Control Panel (legacy settings)Перо и устройства ввода
+ Area Control Panel (legacy settings)Перо и сенсорный ввод
+ Area Control Panel (legacy settings)Перо и Windows Ink
+ Area DeviceПользователи рядом
+ Area Control Panel (legacy settings)Средства и сведения о производительности
+ Area Control Panel (legacy settings)Разрешения и журнал
+ Area CortanaПерсонализация (категория)
+ Area PersonalizationТелефон
+ Area PhoneТелефон и модем
+ Area Control Panel (legacy settings)Телефон и модем — параметры
+ Area Control Panel (legacy settings)Телефонные звонки
+ Area PrivacyТелефон — приложения по умолчанию
+ Area System
- Рисунок
+ Изображение
- Рисунки
+ Изображения
+ Area PrivacyПараметры IME для пиньиня
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedПараметры IME для пиньиня — лексикон домена
+ Area TimeAndLanguageПараметры IME для пиньиня — настройка клавиш
+ Area TimeAndLanguageПараметры IME для пиньиня — UDP
+ Area TimeAndLanguageВоспроизведение игры во весь экран
+ Area GamingПодключаемый модуль для поиска параметров Windows
- Параметры Windows
+ Windows SettingsЭлектропитание и спящий режим
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedПараметры электропитания
+ Area Control Panel (legacy settings)Представление
-
- Клавиша PRINT SCREEN
-
Принтеры
+ Area Control Panel (legacy settings)Принтеры и сканеры
+ Area Device
+
+
+ Клавиша PRINT SCREEN
+ Mean the "Print screen" keyОтчеты о проблемах и решения
+ Area Control Panel (legacy settings)ПроцессорПрограммы и компоненты
+ Area Control Panel (legacy settings)Проекция на этот компьютер
+ Area System
+
+
+ протанопия
+ Medical: Mean you don't can see green colorsПодготовка
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageБлизкое взаимодействие
+ Area NetworkAndInternetПрокси-сервер
+ Area NetworkAndInternet
- Куиккиме
+ Быстрый поиск
+ Area TimeAndLanguage
- Игра со спокойными моментами
+ Тихие моменты игрыРадио
+ Area PrivacyОЗУ
+ Means the Read-Access-Memory (typical the used to inform about the size)РаспознаваниеВосстановление
+ Area UpdateAndSecurityЭффект красных глаз
+ Mean red eye effect by over-the-night flights
- Красный-зеленый
+ Красно-зелёный
+ Mean the weakness you can't differ between red and green colorsКрасная неделя
+ Mean you don't can see red colorsРегион
+ Area TimeAndLanguage
+
+
+ Язык и региональные стандарты
+ Area TimeAndLanguage
+
+
+ Свойства региональных параметров
+ Area Control Panel (legacy settings)Регион и язык
+ Area Control Panel (legacy settings)Форматирование региона
-
- Язык и региональные стандарты
-
-
- Свойства региональных параметров
-
Подключения к рабочим столам и удаленным приложениям RemoteApp
+ Area Control Panel (legacy settings)Удаленный рабочий стол
+ Area SystemСканеры и камеры
+ Area Control Panel (legacy settings)
+
+
+ планировщик заданий
+ File name, Should not translatedЗапланированоЗапланированные задачи
+ Area Control Panel (legacy settings)Поворот экрана
+ Area SystemПолосы прокрутки
- SCROLL LOCK
+ Клавиша SCROLL LOCK
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedПоиск в Windows
+ Area CortanaSecureDNS
+ Should not translatedЦентр безопасности
+ Area Control Panel (legacy settings)Обработчик безопасностиОчистка сеанса
-
-
- Установка киоска
+ Area SurfaceHubДомашняя страница параметров
+ Area Home, Overview-page for all areas of settings
+
+
+ Установка киоска
+ Area UserAccountsОбщие возможности
-
-
- Wi-Fi
+ Area SystemСочетания клавиш
+
+ Wi-Fi
+ dont translate this, is a short term to find entries
+
Параметры входа
+ Area UserAccountsПараметры входа — динамическая блокировка
+ Area UserAccountsРазмер
+ Size for text and symbolsЗвук
+ Area SystemРечь
+ Area EaseOfAccessРаспознавание речи
+ Area Control Panel (legacy settings)Ввод с помощью голосаНачать
+ Area PersonalizationОтправные точкиЗапуск приложений
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedХранилище
+ Area SystemПолитики хранилища
+ Area SystemКонтроль памяти
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsЦентр синхронизации
+ Area Control Panel (legacy settings)Синхронизация параметров
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedСистема
+ Area Control Panel (legacy settings)Свойства системы и мастер добавления нового оборудования
+ Area Control Panel (legacy settings)Вкладка
+ Means the key "Tabulator" on the keyboardРежим планшета
+ Area SystemПараметры планшетного ПК
+ Area Control Panel (legacy settings)
- Разговор
+ Говорить
- Беседа с Кортаной
+ Поговорить с Кортаной
+ Area CortanaПанель задач
+ Area PersonalizationЦвет панели задачЗадачи
+ Area Privacy
- Конференц-связь в команде
+ Веб-конференции в команде
+ Area SurfaceHubУправление устройствами команды
+ Area SurfaceHubПреобразование текста в речь
+ Area Control Panel (legacy settings)Темы
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedВременная шкала
@@ -1172,51 +1538,68 @@
Сенсорная панель
+ Area DeviceПрозрачность
+
+ тританопия
+ Medical: Mean you don't can see yellow and blue colors
+
Устранение неполадок
+ Area UpdateAndSecurityTruePlay
+ Area GamingВвод с клавиатуры
+ Area DeviceУдалить
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceУчетные записи пользователей
+ Area Control Panel (legacy settings)Версия
+ Means The "Windows Version"Воспроизведение видео
+ Area AppsВидео
+ Area PrivacyВиртуальные рабочие столыВирус
+ Means the virus in computers and softwareАктивация голосовых функций
+ Area PrivacyГромкостьVPN
+ Area NetworkAndInternetОбои
@@ -1226,75 +1609,102 @@
Центр начальной настройки
+ Area Control Panel (legacy settings)Экран приветствия
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedКолесико
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledВызовы через Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledПараметры Wi-Fi
+ "Wi-Fi" should not translatedГраница окнаПрограмма обновления Windows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Защитник Windows
+ Area Control Panel (legacy settings)Брандмауэр Windows
+ Area Control Panel (legacy settings)Настройка Windows Hello — Распознавание лиц
+ Area UserAccounts
- Настройка Windows Hello — отпечаток
+ Настройка Windows Hello — Распознавание отпечатка
+ Area UserAccountsПрограмма предварительной оценки Windows
+ Area UpdateAndSecurityЦентр мобильности Windows
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaБезопасность Windows
+ Area UpdateAndSecurityЦентр обновления Windows
+ Area UpdateAndSecurityЦентр обновления Windows — дополнительные параметры
+ Area UpdateAndSecurityЦентр обновления Windows — проверка наличия обновлений
+ Area UpdateAndSecurityЦентр обновления Windows — параметры перезапуска
+ Area UpdateAndSecurityЦентр обновления Windows — просмотр необязательных обновлений
+ Area UpdateAndSecurityЦентр обновления Windows — просмотр журнала обновлений
+ Area UpdateAndSecurityБеспроводной
@@ -1304,107 +1714,26 @@
Подготовка рабочего места
+ Area UserAccounts
- Параметры редактора метода ввода Wubi
+ Параметры редактора метода ввода вуби
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed
- Параметры редактора метода ввода WuBi — UDP
+ Параметры редактора метода ввода вуби — UDP
+ Area TimeAndLanguageСеть Xbox
+ Area GamingВаши сведения
+ Area UserAccountsУвеличение
-
-
-
-
-
-
-
-
- чжуинь
-
-
- вызовы
-
-
-
-
-
- дейтеранопия
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- JpnIME
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- протанопия
-
-
- планировщик заданий
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- тританопия
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sk-SK.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sk-SK.resx
new file mode 100644
index 000000000..b757d6354
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sk-SK.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
+
+
+ O aplikácii
+ Area System
+
+
+ access.cpl
+ File name, Should not translated
+
+
+ Možnosti zjednodušeného ovládania
+ Area Control Panel (legacy settings)
+
+
+ Accessory apps
+ Area Privacy
+
+
+ Prístup k pracovisku alebo škole
+ Area UserAccounts
+
+
+ Informácie o konte
+ Area Privacy
+
+
+ Kontá
+ Area SurfaceHub
+
+
+ Centrum akcií
+ Area Control Panel (legacy settings)
+
+
+ Aktivácia
+ Area UpdateAndSecurity
+
+
+ História aktivít
+ Area Privacy
+
+
+ Pridať hardvér
+ Area Control Panel (legacy settings)
+
+
+ Pridať alebo odstrániť programy
+ Area Control Panel (legacy settings)
+
+
+ Pridať telefón
+ Area Phone
+
+
+ Nástroje na správu
+ Area System
+
+
+ Rozšírené nastavenia obrazovky
+ Area System, only available on devices that support advanced display options
+
+
+ Nastavenia grafiky
+
+
+ Reklamná identifikácia
+ Area Privacy, Deprecated in Windows 10, version 1809 and later
+
+
+ Režim v lietadle
+ Area NetworkAndInternet
+
+
+ Alt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboard
+
+
+ Alternatívny názvy
+
+
+ Animácie
+
+
+ Farba aplikácie
+
+
+ Diagnostika aplikácií
+ Area Privacy
+
+
+ Aplikácie a súčasti
+ Area Apps
+
+
+ Aplikácia
+ Short/modern name for application
+
+
+ Aplikácie a funkcie
+ Area Apps
+
+
+ Nastavenia systému
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment.
+
+
+ Aplikácie pre webové lokality
+ Area Apps
+
+
+ Predvoľby hlasitosti aplikácia a predvoľby zariadenia
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translated
+
+
+ Oblasť
+ Mean the settings area or settings category
+
+
+ Kontá
+
+
+ Nástroje na správu
+ Area Control Panel (legacy settings)
+
+
+ Vzhľad a prispôsobenie
+
+
+ Aplikácie
+
+
+ Hodiny a oblasť
+
+
+ Ovládací panel
+
+
+ Cortana
+
+
+ Zariadenia
+
+
+ Zjednodušenie prístupu
+
+
+ Extra
+
+
+ Hranie hier
+
+
+ Hardvér a zvuk
+
+
+ Domov
+
+
+ Zmiešaná realita
+
+
+ Sieť a internet
+
+
+ Prispôsobenie
+
+
+ Telefón
+
+
+ Ochrana osobných údajov
+
+
+ Programy
+
+
+ SurfaceHub
+
+
+ Systém
+
+
+ Systém a zabezpečenie
+
+
+ Čas a jazyk
+
+
+ Aktualizácia a zabezpečenie
+
+
+ Používateľské kontá
+
+
+ Priradený prístup
+
+
+ Zvuk
+ Area EaseOfAccess
+
+
+ Zvukové upozornenia
+
+
+ Zvuk a reč
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ Automatické sťahovanie súborov
+ Area Privacy
+
+
+ Automatické prehrávanie
+ Area Device
+
+
+ Pozadie
+ Area Personalization
+
+
+ Aplikácie na pozadí
+ Area Privacy
+
+
+ Zálohovanie
+ Area UpdateAndSecurity
+
+
+ Zálohovanie a obnovenie
+ Area Control Panel (legacy settings)
+
+
+ Šetrič batérie
+ Area System, only available on devices that have a battery, such as a tablet
+
+
+ Nastavenia šetriča batérie
+ Area System, only available on devices that have a battery, such as a tablet
+
+
+ Podrobnosti o používaní šetriča batérie
+
+
+ Použitie batérie
+ Area System, only available on devices that have a battery, such as a tablet
+
+
+ Biometrické zariadenia
+ Area Control Panel (legacy settings)
+
+
+ Šifrovanie jednotiek BitLocker
+ Area Control Panel (legacy settings)
+
+
+ Modré svetlo
+
+
+ Bluetooth
+ Area Device
+
+
+ Bluetooth zariadenia
+ Area Control Panel (legacy settings)
+
+
+ Modrá-žltá
+
+
+ Bopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translated
+
+
+ Vysielanie
+ Area Gaming
+
+
+ Kalendár
+ Area Privacy
+
+
+ História hovorov
+ Area Privacy
+
+
+ volá
+
+
+ Kamera
+ Area Privacy
+
+
+ Cangjie IME
+ Area TimeAndLanguage
+
+
+ Caps Lock
+ Mean the "Caps Lock" key
+
+
+ Mobilná sieť a SIM
+ Area NetworkAndInternet
+
+
+ Vybrať priečinky, ktoré sa majú zobrazovať v ponuke Štart
+ Area Personalization
+
+
+ Klientsky servis pre NetWare
+ Area Control Panel (legacy settings)
+
+
+ Schránka
+ Area System
+
+
+ Skryté titulky
+ Area EaseOfAccess
+
+
+ Farebné filtre
+ Area EaseOfAccess
+
+
+ Správa farieb
+ Area Control Panel (legacy settings)
+
+
+ Farby
+ Area Personalization
+
+
+ Príkaz
+ The command to direct start a setting
+
+
+ Pripojené zariadenia
+ Area Device
+
+
+ Kontakty
+ Area Privacy
+
+
+ Ovládací panel
+ Type of the setting is a "(legacy) Control Panel setting"
+
+
+ Kopírovať príkaz
+
+
+ Izolácia jadra
+ Means the protection of the system core
+
+
+ Cortana
+ Area Cortana
+
+
+ Cortana na mojich zariadeniach
+ Area Cortana
+
+
+ Cortana - Jazyk
+ Area Cortana
+
+
+ Správca poverení
+ Area Control Panel (legacy settings)
+
+
+ Viaceré zariadenia
+
+
+ Vlastné zariadenia
+
+
+ Tmavá farba
+
+
+ Tmavý režim
+
+
+ Spotreba dát
+ Area NetworkAndInternet
+
+
+ Dátum a čas
+ Area TimeAndLanguage
+
+
+ Predvolené aplikácie
+ Area Apps
+
+
+ Predvolený fotoaparát
+ Area Device
+
+
+ Predvolená poloha
+ Area Control Panel (legacy settings)
+
+
+ Predvolené programy
+ Area Control Panel (legacy settings)
+
+
+ Zmeniť miesto ukladania nového obsahu
+ Area System
+
+
+ Optimalizácia doručovania
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translated
+
+
+ Motívy
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colors
+
+
+ Správca zariadení
+ Area Control Panel (legacy settings)
+
+
+ Zariadenia a tlačiarne
+ Area Control Panel (legacy settings)
+
+
+ DHCP
+ Should not translated
+
+
+ Telefonické pripojenie
+ Area NetworkAndInternet
+
+
+ Priamy prístup
+ Area NetworkAndInternet, only available if DirectAccess is enabled
+
+
+ Priame otvorenie telefónu
+ Area EaseOfAccess
+
+
+ Obrazovka
+ Area EaseOfAccess
+
+
+ Vlastnosti zobrazenia
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translated
+
+
+ Dokumenty
+ Area Privacy
+
+
+ Duplikovanie obrazovky
+ Area System
+
+
+ Počas týchto hodín
+ Area System
+
+
+ Centrum zjednodušenia prístupu
+ Area Control Panel (legacy settings)
+
+
+ Vydanie
+ Means the "Windows Edition"
+
+
+ E-mail
+ Area Privacy
+
+
+ E-mail a kontá
+ Area UserAccounts
+
+
+ Šifrovanie
+ Area System
+
+
+ Prostredie
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ Ethernet
+ Area NetworkAndInternet
+
+
+ Ochrana pred zneužitím
+
+
+ Extra
+ Area Extra, , only used for setting of 3rd-Party tools
+
+
+ Ovládanie zrakom
+ Area EaseOfAccess
+
+
+ Eye tracker
+ Area Privacy, requires eyetracker hardware
+
+
+ Rodina a ostatní používatelia
+ Area UserAccounts
+
+
+ Diagnostika a pripomienky
+ Area Privacy
+
+
+ Systém súborov
+ Area Privacy
+
+
+ FindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translated
+
+
+ Nájsť moje zariadenie
+ Area UpdateAndSecurity
+
+
+ Firewall
+
+
+ Asistent na lepšie sústredenie
+ Area System
+
+
+ Asistent na lepšie sústredenie - Obdobie kľudu
+ Area System
+
+
+ Možnosti priečinka
+ Area Control Panel (legacy settings)
+
+
+ Písma
+ Area EaseOfAccess
+
+
+ Pre vývojárov
+ Area UpdateAndSecurity
+
+
+ Xbox Game Bar
+ Area Gaming
+
+
+ Hracie zariadenia
+ Area Control Panel (legacy settings)
+
+
+ Game DVR
+ Area Gaming
+
+
+ Herný režim
+ Area Gaming
+
+
+ Brána
+ Should not translated
+
+
+ Všeobecné
+ Area Privacy
+
+
+ Získať programy
+ Area Control Panel (legacy settings)
+
+
+ Začíname
+ Area Control Panel (legacy settings)
+
+
+ Pohľad
+ Area Personalization, Deprecated in Windows 10, version 1809 and later
+
+
+ Nastavenia grafiky
+ Area System
+
+
+ Odtiene sivej
+
+
+ Deuteranomália
+ Mean you don't can see green colors
+
+
+ Náhlavný displej
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ Vysoký kontrast
+ Area EaseOfAccess
+
+
+ Holografický zvuk
+
+
+ Holografické prostredie
+
+
+ Holografická náhlavná súprava
+
+
+ Holografická správa
+
+
+ Domáca skupina
+ Area Control Panel (legacy settings)
+
+
+ ID
+ MEans The "Windows Identifier"
+
+
+ Obrázok
+
+
+ Možnosti indexovania
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translated
+
+
+ Infračervené
+ Area Control Panel (legacy settings)
+
+
+ Prispôsobenie písania rukou a písania na klávesnici
+ Area Privacy
+
+
+ Možnosti internetu
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translated
+
+
+ Invertované farby
+
+
+ IP
+ Should not translated
+
+
+ Izolované prehliadanie
+
+
+ Nastavenia pre japonské IME
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translated
+
+
+ Nastavenia hracieho zariadenia
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translated
+
+
+ Klávesnica
+ Area EaseOfAccess
+
+
+ Klávesnica
+
+
+ Kláves
+
+
+ Jazyk
+ Area TimeAndLanguage
+
+
+ Light color
+
+
+ Svetlý režim
+
+
+ Umiestnenie
+ Area Privacy
+
+
+ Obrazovka uzamknutia
+ Area Personalization
+
+
+ Zväčšovacie sklo
+ Area EaseOfAccess
+
+
+ Mail - Microsoft Exchange alebo Windows Messaging
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translated
+
+
+ Spravovať známe siete
+ Area NetworkAndInternet
+
+
+ Spravovať voliteľné súčasti
+ Area Apps
+
+
+ Výmena správ
+ Area Privacy
+
+
+ Pripojenie účtované podľa objemu údajov
+
+
+ Mikrofón
+ 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
+
+
+ Mobilné zariadenia
+
+
+ Mobilný prístupový bod
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translated
+
+
+ Mono
+
+
+ Ďalšie podrobnosti
+ Area Cortana
+
+
+ Poloha
+ Area Privacy
+
+
+ Myš
+ Area EaseOfAccess
+
+
+ Myš a touchpad
+ Area Device
+
+
+ Vlastnosti myši, písiem, klávesnice a tlačiarní
+ Area Control Panel (legacy settings)
+
+
+ Textový kurzor
+ Area EaseOfAccess
+
+
+ Spravovať zvukové zariadenia
+ Area Control Panel (legacy settings)
+
+
+ Multitasking
+ Area System
+
+
+ Moderátor
+ Area EaseOfAccess
+
+
+ Navigačný panel
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translated
+
+
+ Sieť
+ Area NetworkAndInternet
+
+
+ Centrum sietí a zdieľania
+ Area Control Panel (legacy settings)
+
+
+ Sieťové pripojenia
+ Area Control Panel (legacy settings)
+
+
+ Vlastnosti siete
+ Area Control Panel (legacy settings)
+
+
+ Sprievodca nastavením siete
+ Area Control Panel (legacy settings)
+
+
+ Stav siete
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ Transakcia cez NFC
+ "NFC should not translated"
+
+
+ Night light
+
+
+ Nastavenia nočného osvetlenia
+ Area System
+
+
+ Poznámka
+
+
+ Dostupné iba vtedy, keď máte k zariadeniu pripojené mobilné zariadenie.
+
+
+ Dostupné iba na zariadeniach, ktoré podporujú pokročilé možnosti grafiky.
+
+
+ Dostupné iba na zariadeniach s batériou, ako je napríklad tablet.
+
+
+ Zastarané v systéme Windows 10, verzia 1809 (zostava 17763) a novších.
+
+
+ Only available if Dial is paired.
+
+
+ Dostupné iba vtedy, ak je povolený DirectAccess.
+
+
+ Dostupné iba na zariadeniach, ktoré podporujú rozšírené možnosti zobrazenia.
+
+
+ Prítomné iba vtedy, ak je používateľ zaregistrovaný vo WIP.
+
+
+ Vyžaduje si hardvér eyetracker.
+
+
+ Dostupné, ak je nainštalovaný editor vstupnej metódy Microsoft Japan.
+
+
+ Dostupné, ak je nainštalovaný editor vstupnej metódy Microsoft Pinyin.
+
+
+ Dostupné, ak je nainštalovaný editor vstupnej metódy Microsoft Wubi.
+
+
+ Dostupné iba v prípade, že je nainštalovaná aplikácia Mixed Reality Portal.
+
+
+ Only available on mobile and if the enterprise has deployed a provisioning package.
+
+
+ Pridané v systéme Windows 10, verzia 1903 (zostava 18362).
+
+
+ Pridané v systéme Windows 10, verzia 2004 (zostava 19041).
+
+
+ Dostupné iba ak sú nainštalované "nastavenia aplikácii", napr. treťou stranou.
+
+
+ Dostupné iba vtedy, ak je prítomný hardvér touchpadu.
+
+
+ Dostupné iba vtedy, ak má zariadenie adaptér Wi-Fi.
+
+
+ Zariadenie musí podporovať Windows Anywhere.
+
+
+ Only available if enterprise has deployed a provisioning package.
+
+
+ Oznámenia
+ Area Privacy
+
+
+ Oznámenia a akcie
+ Area System
+
+
+ Num Lock
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translated
+
+
+ Správca zdroja údajov ODBC (32-bit)
+ Area Control Panel (legacy settings)
+
+
+ Správca zdroja údajov ODBC (64-bit)
+ Area Control Panel (legacy settings)
+
+
+ Súbory offline
+ Area Control Panel (legacy settings)
+
+
+ Offline mapy
+ Area Apps
+
+
+ Offline mapy - Stiahnuť mapy
+ Area Apps
+
+
+ Na obrazovke
+
+
+ OS
+ Means the "Operating System"
+
+
+ Ostatné zariadenia
+ Area Privacy
+
+
+ Ďalšie možnosti
+ Area EaseOfAccess
+
+
+ Ostatní používatelia
+
+
+ Rodičovská kontrola
+ Area Control Panel (legacy settings)
+
+
+ Heslo
+
+
+ password.cpl
+ File name, Should not translated
+
+
+ Vlastnosti hesla
+ Area Control Panel (legacy settings)
+
+
+ Pero a vstupné zariadenia
+ Area Control Panel (legacy settings)
+
+
+ Pero a dotykové ovládanie
+ Area Control Panel (legacy settings)
+
+
+ Pero a Windows Ink
+ Area Device
+
+
+ Ľudia v okolí
+ Area Control Panel (legacy settings)
+
+
+ Informácie o výkone a nástroje
+ Area Control Panel (legacy settings)
+
+
+ Povolenia a história
+ Area Cortana
+
+
+ Prispôsobenie (kategória)
+ Area Personalization
+
+
+ Telefón
+ Area Phone
+
+
+ Telefón a modem
+ Area Control Panel (legacy settings)
+
+
+ Telefón a modem - Možnosti
+ Area Control Panel (legacy settings)
+
+
+ Telefonické hovory
+ Area Privacy
+
+
+ Telefón - Predvolené apky
+ Area System
+
+
+ Obrázok
+
+
+ Obrázky
+ Area Privacy
+
+
+ Nastavenia pre Pinyin IME
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installed
+
+
+ Nastavenia pre Pinyin IME - doménový lexikón
+ Area TimeAndLanguage
+
+
+ Nastavenia pre Pinyin IME – konfigurácia kľúča
+ Area TimeAndLanguage
+
+
+ Nastavenia pre Pinyin IME - UDP
+ Area TimeAndLanguage
+
+
+ Hranie hry na celú obrazovku
+ Area Gaming
+
+
+ Plugin na vyhľadávanie nastavení systému Windows
+
+
+ Nastavenia systému Windows
+
+
+ Napájanie a spánok
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translated
+
+
+ Možnosti napájania
+ Area Control Panel (legacy settings)
+
+
+ Prezentácia
+
+
+ Tlačiarne
+ Area Control Panel (legacy settings)
+
+
+ Tlačiarne a skenery
+ Area Device
+
+
+ Print screen
+ Mean the "Print screen" key
+
+
+ Hlásenie a riešenie problémov
+ Area Control Panel (legacy settings)
+
+
+ Procesor
+
+
+ Programy a súčasti
+ Area Control Panel (legacy settings)
+
+
+ Premietanie na toto 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
+
+
+ Vzdialenosť
+ Area NetworkAndInternet
+
+
+ Proxy
+ Area NetworkAndInternet
+
+
+ Quickime
+ Area TimeAndLanguage
+
+
+ Quiet moments game
+
+
+ Vysielače
+ Area Privacy
+
+
+ RAM
+ Means the Read-Access-Memory (typical the used to inform about the size)
+
+
+ Rozpoznávanie
+
+
+ Obnovenie
+ Area UpdateAndSecurity
+
+
+ Červené oči
+ Mean red eye effect by over-the-night flights
+
+
+ Červená-zelená
+ Mean the weakness you can't differ between red and green colors
+
+
+ Red week
+ Mean you don't can see red colors
+
+
+ Oblasť
+ Area TimeAndLanguage
+
+
+ Regionálny jazyk
+ Area TimeAndLanguage
+
+
+ Vlastnosti regionálnych nastavení
+ Area Control Panel (legacy settings)
+
+
+ Oblasť a jazyk
+ Area Control Panel (legacy settings)
+
+
+ Formáty dátumu a času
+
+
+ Pripojenia aplikácie RemoteApp a pracovnej plochy
+ Area Control Panel (legacy settings)
+
+
+ Vzdialená pracovná plocha
+ Area System
+
+
+ Skenery a fotoaparáty
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translated
+
+
+ Naplánované
+
+
+ Naplánované úlohy
+ Area Control Panel (legacy settings)
+
+
+ Orientácia obrazovky
+ Area System
+
+
+ Posúvače
+
+
+ Scroll Lock
+ Mean the "Scroll Lock" key
+
+
+ SDNS
+ Should not translated
+
+
+ Vyhľadávanie vo Windowse
+ Area Cortana
+
+
+ SecureDNS
+ Should not translated
+
+
+ Centrum zabezpečenia
+ Area Control Panel (legacy settings)
+
+
+ Procesor zabezpečenia
+
+
+ Vyčistiť reláciu
+ Area SurfaceHub
+
+
+ Domov
+ Area Home, Overview-page for all areas of settings
+
+
+ Nastaviť automatickú prezentáciu
+ Area UserAccounts
+
+
+ Zdieľané možnosti
+ Area System
+
+
+ Odkazy
+
+
+ wifi
+ dont translate this, is a short term to find entries
+
+
+ Možnosti prihlásenia
+ Area UserAccounts
+
+
+ Možnosti prihlásenia - Dynamický zámok
+ Area UserAccounts
+
+
+ Veľkosť
+ Size for text and symbols
+
+
+ Zvuk
+ Area System
+
+
+ Reč
+ Area EaseOfAccess
+
+
+ Rozpoznávanie reči
+ Area Control Panel (legacy settings)
+
+
+ Zadávanie textu hlasom
+
+
+ Štart
+ Area Personalization
+
+
+ Start places
+
+
+ Aplikácie pri spustení
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translated
+
+
+ Úložisko
+ Area System
+
+
+ Politiky úložiska
+ Area System
+
+
+ Senzor úložiska
+ Area System
+
+
+ v
+ Example: Area "System" in System settings
+
+
+ Centrum synchronizácie
+ Area Control Panel (legacy settings)
+
+
+ Synchronizácia nastavení
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translated
+
+
+ Systém
+ Area Control Panel (legacy settings)
+
+
+ Vlastnosti systému a Sprievodca pridaním nového hardvéru
+ Area Control Panel (legacy settings)
+
+
+ Tab
+ Means the key "Tabulator" on the keyboard
+
+
+ Režim tabletu
+ Area System
+
+
+ Centrum synchronizácie
+ Area Control Panel (legacy settings)
+
+
+ Hovoriť
+
+
+ Rozprávať sa s Cortanou
+ Area Cortana
+
+
+ Panel úloh
+ Area Personalization
+
+
+ Farba panela úloh
+
+
+ Úlohy
+ Area Privacy
+
+
+ Tímová konferencia
+ Area SurfaceHub
+
+
+ Tímová správa zariadení
+ Area SurfaceHub
+
+
+ Prevod textu na reč
+ Area Control Panel (legacy settings)
+
+
+ Motívy
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translated
+
+
+ Časová os
+
+
+ Dotykové ovládanie
+
+
+ Odozva na dotyk
+
+
+ Touchpad
+ Area Device
+
+
+ Priehľadnosť
+
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
+
+ Riešenie problémov
+ Area UpdateAndSecurity
+
+
+ TruePlay
+ Area Gaming
+
+
+ Písanie
+ Area Device
+
+
+ Odinštalovať
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+
+ USB
+ Area Device
+
+
+ Používateľské kontá
+ Area Control Panel (legacy settings)
+
+
+ Verzia
+ Means The "Windows Version"
+
+
+ Prehrávanie videa
+ Area Apps
+
+
+ Videá
+ Area Privacy
+
+
+ Virtuálne plochy
+
+
+ Vírus
+ Means the virus in computers and software
+
+
+ Aktivácia hlasom
+ Area Privacy
+
+
+ Volume
+
+
+ VPN
+ Area NetworkAndInternet
+
+
+ Pozadie
+
+
+ Teplejšia farba
+
+
+ Uvítacie centrum
+ Area Control Panel (legacy settings)
+
+
+ Uvítacia obrazovka
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translated
+
+
+ Koliesko
+ Area Device
+
+
+ Wi‑Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabled
+
+
+ Hovory cez Wi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabled
+
+
+ Nastavenia Wi-Fi
+ "Wi-Fi" should not translated
+
+
+ Okraj okna
+
+
+ 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)
+
+
+ Nastavenie Windows Hello - Tvár
+ Area UserAccounts
+
+
+ Nastavenie Windows Hello - Odtlačok prsta
+ Area UserAccounts
+
+
+ Windows Insider Program
+ Area UpdateAndSecurity
+
+
+ Centrum nastavenia mobilných zariadení
+ Area Control Panel (legacy settings)
+
+
+ Windows search
+ Area Cortana
+
+
+ Windows Zabezpečenie
+ Area UpdateAndSecurity
+
+
+ Windows Update
+ Area UpdateAndSecurity
+
+
+ Windows Update - Rozšírené možnosti
+ Area UpdateAndSecurity
+
+
+ Windows Update - Vyhľadať aktualizácie
+ Area UpdateAndSecurity
+
+
+ Windows Update - Možnosti reštartovania
+ Area UpdateAndSecurity
+
+
+ Windows Update - Zobraziť voliteľné aktualizácie
+ Area UpdateAndSecurity
+
+
+ Windows Update - Zobraziť históriu aktualizácií
+ Area UpdateAndSecurity
+
+
+ Bezdrôtové
+
+
+ Pracovisko
+
+
+ Zabezpečenie pracoviska
+ Area UserAccounts
+
+
+ Nastavenia pre Wubi IME
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed
+
+
+ Nastavenia pre Wubi IME - UDP
+ Area TimeAndLanguage
+
+
+ Sieť Xbox
+ Area Gaming
+
+
+ Vaše informácie
+ Area UserAccounts
+
+
+ Približovanie
+ Mean zooming of things via a magnifier
+
+
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sr-CS.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sr-CS.resx
new file mode 100644
index 000000000..3444315c7
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.sr-CS.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
+
+
+ O Flow Launcher-u
+ 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
+
+
+ Opšte
+ 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
+
+
+ Jezik
+ 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)
+
+
+ Šifra
+
+
+ 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)
+
+
+ Verzija
+ 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/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx
index fc6305011..555f97e39 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.tr-TR.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -119,57 +119,78 @@
Hakkında
+ Area System
-
- İş veya okula erişme
+
+ access.cpl
+ File name, Should not translatedErişilebilirlik Seçenekleri
+ Area Control Panel (legacy settings)Aksesuar uygulamaları
+ Area Privacy
+
+
+ İş veya okula erişme
+ Area UserAccountsHesap bilgileri
+ Area PrivacyHesaplar
+ Area SurfaceHubİşlem Merkezi
+ Area Control Panel (legacy settings)Etkinleştirme
+ Area UpdateAndSecurityEtkinlik geçmişi
+ Area PrivacyDonanım Ekle
+ Area Control Panel (legacy settings)Program Ekle/Kaldır
+ Area Control Panel (legacy settings)Telefonunuzu ekleyin
+ Area PhoneYönetim Araçları
+ Area SystemGelişmiş görüntü ayarları
+ Area System, only available on devices that support advanced display optionsGelişmiş grafiklerReklam Kimliği
+ Area Privacy, Deprecated in Windows 10, version 1809 and laterUçak modu
+ Area NetworkAndInternetAlt+Sekme
+ Means the key combination "Tabulator+Alt" on the keyboardAlternatif adlar
@@ -180,38 +201,48 @@
Uygulama rengi
-
- Denetim Masası
-
Uygulama tanılama
+ Area PrivacyUygulama özellikleri
-
-
- Sistem ayarları
-
-
- Uygulama ses ve cihaz tercihleri
+ Area AppsUygulama
+ Short/modern name for applicationUygulamalar ve Özellikler
+ Area Apps
+
+
+ Sistem ayarları
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. Web siteleri için uygulamalar
+ Area Apps
+
+
+ Uygulama ses ve cihaz tercihleri
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translatedAlan
+ Mean the settings area or settings categoryHesaplarYönetim Araçları
+ Area Control Panel (legacy settings)Görünüm ve Kişiselleştirme
@@ -222,6 +253,9 @@
Saat ve Bölge
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
Ses
+ Area EaseOfAccessSesli uyarılarSes ve konuşma
-
-
- Otomatik Yürüt
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Otomatik dosya indirme
+ Area Privacy
+
+
+ Otomatik Yürüt
+ Area DeviceArka plan
+ Area PersonalizationArka Plan Uygulamaları
+ Area PrivacyYedekleme
+ Area UpdateAndSecurityYedekleme ve Geri Yükleme
+ Area Control Panel (legacy settings)Pil Tasarrufu
+ Area System, only available on devices that have a battery, such as a tabletPil Tasarrufu ayarları
+ Area System, only available on devices that have a battery, such as a tabletPil tasarrufu kullanım ayrıntılarıPil kullanımı
+ Area System, only available on devices that have a battery, such as a tabletBiyometrik Cihazlar
+ Area Control Panel (legacy settings)BitLocker Sürücü Şifrelemesi
+ Area Control Panel (legacy settings)Mavi ışık
-
- Mavi sarı
-
Bluetooth
+ Area DeviceBluetooth cihazları
+ Area Control Panel (legacy settings)
+
+
+ Mavi sarıBopomofo IME
+ Area TimeAndLanguage
+
+
+ bpmf
+ Should not translatedYayın
+ Area GamingTakvim
+ Area PrivacyArama geçmişi
+ Area Privacy
+
+
+ aramaKamera
+ Area PrivacyCangjie IME
+ Area TimeAndLanguageCaps Lock
+ Mean the "Caps Lock" keyHücresel ve SIM
+ Area NetworkAndInternetBaşlangıç ekranında hangi klasörlerin görüneceğini seçin
+ Area PersonalizationNetWare istemci hizmeti
+ Area Control Panel (legacy settings)Pano
+ Area SystemKapalı açıklamalı alt yazı
+ Area EaseOfAccessRenk filtreleri
+ Area EaseOfAccessRenk yönetimi
+ Area Control Panel (legacy settings)Renkler
+ Area PersonalizationKomut
+ The command to direct start a settingBağlı Cihazlar
+ Area DeviceKişiler
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"Kopyalama komutuÇekirdek Yalıtımı
+ Means the protection of the system coreCortana
+ Area CortanaTüm cihazlarımda Cortana
+ Area CortanaCortana - Dil
+ Area CortanaKimlik bilgileri yöneticisi
+ Area Control Panel (legacy settings)Cihazlar arası
@@ -417,9 +500,6 @@
Özel cihazlar
-
- DNS
-
Koyu renk
@@ -428,171 +508,240 @@
Veri kullanımı
+ Area NetworkAndInternetTarih ve saat
+ Area TimeAndLanguageVarsayılan uygulamalar
+ Area AppsVarsayılan kamera
+ Area DeviceVarsayılan konum
+ Area Control Panel (legacy settings)Varsayılan programlar
+ Area Control Panel (legacy settings)Varsayılan Kaydetme Konumları
+ Area SystemTeslim İyileştirme
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translatedMasaüstü temaları
+ Area Control Panel (legacy settings)
+
+
+ deuteranopia
+ Medical: Mean you don't can see red colorsCihaz yöneticisi
+ Area Control Panel (legacy settings)Cihazlar ve yazıcılar
+ Area Control Panel (legacy settings)DHCP
+ Should not translatedÇevirmeli
+ Area NetworkAndInternetDoğrudan erişim
+ Area NetworkAndInternet, only available if DirectAccess is enabledTelefonunuzu doğrudan açın
+ Area EaseOfAccessGörüntü
+ Area EaseOfAccessGörüntü özellikleri
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translatedBelgeler
+ Area PrivacyEkranımı çoğaltma
+ Area SystemBu saatlerde
+ Area SystemErişim kolaylığı merkezi
+ Area Control Panel (legacy settings)Sürüm
+ Means the "Windows Edition"E-posta
+ Area PrivacyE-posta ve uygulama hesapları
+ Area UserAccountsŞifreleme
+ Area SystemOrtam
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Ethernet
+ Area NetworkAndInternetExploit ProtectionEk Özellikler
+ Area Extra, , only used for setting of 3rd-Party toolsGözle denetim
+ Area EaseOfAccessGöz izleyici
+ Area Privacy, requires eyetracker hardwareAile ve diğer kişiler
+ Area UserAccountsGeri bildirim ve tanılama
+ Area PrivacyDosya sistemi
+ Area PrivacyHızlı Bul
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translatedCihazımı Bul
+ Area UpdateAndSecurityGüvenlik DuvarıOdaklanma yardımı - Sessiz saatler
+ Area SystemOdaklanma yardımı - Sessiz anlar
+ Area SystemKlasör seçenekleri
+ Area Control Panel (legacy settings)Yazı tipleri
+ Area EaseOfAccessGeliştiriciler için
+ Area UpdateAndSecurityOyun çubuğu
+ Area GamingOyun kumandaları
+ Area Control Panel (legacy settings)Oyun DVR
+ Area Gaming
- Oyun Modu
+ Game Mode
+ Area GamingAğ geçidi
+ Should not translatedGenel
+ Area PrivacyProgramları al
+ Area Control Panel (legacy settings)Kullanmaya başlayın
+ Area Control Panel (legacy settings)Göz Atma
+ Area Personalization, Deprecated in Windows 10, version 1809 and laterGrafik ayarları
+ Area SystemGri tonlamaYeşil hafta
+ Mean you don't can see green colorsKulaklık ekranı
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.Yüksek karşıtlık
+ Area EaseOfAccessHolografik ses
@@ -608,42 +757,68 @@
Ev grubu
+ Area Control Panel (legacy settings)Kimlik
+ MEans The "Windows Identifier"ResimDizin oluşturma seçenekleri
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translatedKızılötesi
+ Area Control Panel (legacy settings)Mürekkep oluşturma ve yazma
+ Area Privacyİnternet seçenekleri
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translatedTers renklerIP
+ Should not translatedYalıtılmış GözatmaJaponya IME ayarları
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translatedOyun çubuğu özellikleri
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translatedKlavye
+ Area EaseOfAccessTuş takımı
@@ -653,6 +828,7 @@
Dil
+ Area TimeAndLanguageAçık renk
@@ -662,102 +838,155 @@
Konum
+ Area PrivacyKilit ekranı
+ Area PersonalizationBüyüteç
+ Area EaseOfAccessPosta - Microsoft Exchange veya Windows Mesajlaşma
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translatedBilinen ağları yönet
+ Area NetworkAndInternetİsteğe bağlı özellikleri yönet
+ Area AppsMesajlaşma
+ Area PrivacyTarifeli bağlantıMikrofon
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translatedMobil cihazlarMobil etkin nokta
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMonoDiğer ayrıntılar
+ Area CortanaHareket
+ Area PrivacyFare
+ Area EaseOfAccessFare ve dokunmatik yüzey
+ Area DeviceFare, Yazı tipleri, Klavye ve Yazıcı özellikleri
+ Area Control Panel (legacy settings)Fare işaretçisi
+ Area EaseOfAccessMedya özellikleri
+ Area Control Panel (legacy settings)Çoklu görev
-
-
- NFC
-
-
- NFC İşlemleri
+ Area SystemEkran okuyucusu
+ Area EaseOfAccessGezinti çubuğu
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translatedAğ
+ Area NetworkAndInternetAğ ve paylaşım merkezi
+ Area Control Panel (legacy settings)Ağ bağlantısı
+ Area Control Panel (legacy settings)Ağ özellikleri
+ Area Control Panel (legacy settings)Ağ Kurulum Sihirbazı
+ Area Control Panel (legacy settings)Ağ durumu
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ NFC İşlemleri
+ "NFC should not translated"Gece ışığıGece ışığı ayarları
+ Area SystemNot
@@ -827,339 +1056,476 @@
Bildirimler
+ Area PrivacyBildirimler ve eylemler
+ Area SystemNum Lock
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedODBC Veri Kaynağı Yöneticisi (32-bit)
+ Area Control Panel (legacy settings)ODBC Veri Kaynağı Yöneticisi (64-bit)
+ Area Control Panel (legacy settings)Çevrimdışı dosyalar
+ Area Control Panel (legacy settings)Çevrimdışı Haritalar
+ Area AppsÇevrimdışı Haritalar - Haritaları indirme
+ Area AppsEkrandaİşletim Sistemi
+ Means the "Operating System"Diğer cihazlar
+ Area PrivacyDiğer seçenekler
+ Area EaseOfAccessDiğer kullanıcılarEbeveyn denetimleri
+ Area Control Panel (legacy settings)Parola
+
+ password.cpl
+ File name, Should not translated
+
Parola özellikleri
+ Area Control Panel (legacy settings)Kalem ve giriş aygıtları
+ Area Control Panel (legacy settings)Kalem ve dokunmatik
+ Area Control Panel (legacy settings)Kalem ve Windows Ink
+ Area DeviceYakınımdaki Kişiler
+ Area Control Panel (legacy settings)Performans bilgileri ve araçları
+ Area Control Panel (legacy settings)İzinler ve geçmiş
+ Area CortanaKişiselleştirme (kategori)
+ Area PersonalizationTelefon
+ Area PhoneTelefon ve modem
+ Area Control Panel (legacy settings)Telefon ve modem - Seçenekler
+ Area Control Panel (legacy settings)Telefon çağrıları
+ Area PrivacyTelefon - Varsayılan uygulamalar
+ Area SystemResimResimler
+ Area PrivacyPinyin IME ayarları
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installedPinyin IME ayarları - etki alanı sözlüğü
+ Area TimeAndLanguagePinyin IME ayarları - Anahtar yapılandırması
+ Area TimeAndLanguagePinyin IME ayarları - UDP
+ Area TimeAndLanguageTam ekranda oyun oynama
+ Area GamingWindows ayarlarını aramak için eklenti
- Windows ayarları
+ Windows SettingsGüç ve uyku
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translatedGüç seçenekleri
+ Area Control Panel (legacy settings)Sunum
-
- Yazdırma ekranı
-
Yazıcılar
+ Area Control Panel (legacy settings)Yazıcılar ve tarayıcılar
+ Area Device
+
+
+ Yazdırma ekranı
+ Mean the "Print screen" keySorun raporları ve çözümleri
+ Area Control Panel (legacy settings)İşlemciProgramlar ve özellikler
+ Area Control Panel (legacy settings)Bu bilgisayara yansıtma
+ Area System
+
+
+ protanopia
+ Medical: Mean you don't can see green colorsSağlama
+ Area UserAccounts, only available if enterprise has deployed a provisioning packageYakınlık
+ Area NetworkAndInternetAra sunucu
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguageSessiz anlar oyunuRadyolar
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)TanımaKurtarma
+ Area UpdateAndSecurityKırmızı göz
+ Mean red eye effect by over-the-night flightsKırmızı-yeşil
+ Mean the weakness you can't differ between red and green colorsKırmızı hafta
+ Mean you don't can see red colorsBölge
+ Area TimeAndLanguage
+
+
+ Bölgesel dil
+ Area TimeAndLanguage
+
+
+ Bölgesel ayarlar özellikleri
+ Area Control Panel (legacy settings)Bölge ve dil
+ Area Control Panel (legacy settings)Bölge biçimlendirme
-
- Bölgesel dil
-
-
- Bölgesel ayarlar özellikleri
-
RemoteApp ve masaüstü bağlantıları
+ Area Control Panel (legacy settings)Uzak Masaüstü
+ Area SystemTarayıcılar ve kameralar
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translatedPlanlananZamanlanmış görevler
+ Area Control Panel (legacy settings)Ekran döndürme
+ Area SystemKaydırma çubuklarıKaydırma Kilidi
+ Mean the "Scroll Lock" keySDNS
+ Should not translatedWindows aranıyor
+ Area CortanaSecureDNS
+ Should not translatedGüvenlik Merkezi
+ Area Control Panel (legacy settings)Güvenlik İşlemcisiOturum temizleme
-
-
- Kiosk ayarlama
+ Area SurfaceHubAyarlar giriş sayfası
+ Area Home, Overview-page for all areas of settings
+
+
+ Kiosk ayarlama
+ Area UserAccountsPaylaşılan deneyimler
-
-
- wifi
+ Area SystemKısayollar
+
+ wifi
+ dont translate this, is a short term to find entries
+
Oturum açma seçenekleri
+ Area UserAccountsOturum açma seçenekleri - Dinamik kilit
+ Area UserAccountsBoyut
+ Size for text and symbolsSes
+ Area SystemKonuşma
+ Area EaseOfAccessKonuşma tanıma
+ Area Control Panel (legacy settings)Konuşma yazmaBaşlat
+ Area PersonalizationBaşlangıç yerleriBaşlangıç uygulamaları
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translatedDepolama
+ Area SystemDepolama ilkeleri
+ Area SystemAkıllı Depolama
+ Area System
+
+
+ in
+ Example: Area "System" in System settingsEşitleme merkezi
+ Area Control Panel (legacy settings)Ayarlarınızı eşitleyin
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translatedSistem
+ Area Control Panel (legacy settings)Sistem özellikleri ve Yeni Donanım Ekleme sihirbazı
+ Area Control Panel (legacy settings)Sekme
+ Means the key "Tabulator" on the keyboardTablet modu
+ Area SystemTablet PC ayarları
+ Area Control Panel (legacy settings)KonuşmaCortana ile konuşun
+ Area CortanaGörev çubuğu
+ Area PersonalizationGörev çubuğu rengiGörevler
+ Area PrivacyEkip Konferansı
+ Area SurfaceHubTakım cihazı yönetimi
+ Area SurfaceHubMetin okuma
+ Area Control Panel (legacy settings)Temalar
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translatedZaman çizelgesi
@@ -1172,51 +1538,68 @@
Dokunmatik yüzey
+ Area DeviceSaydamlık
+
+ tritanopia
+ Medical: Mean you don't can see yellow and blue colors
+
Sorun Giderme
+ Area UpdateAndSecurityTruePlay
+ Area GamingYazıyor
+ Area DeviceKaldır
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area DeviceKullanıcı hesapları
+ Area Control Panel (legacy settings)Sürüm
+ Means The "Windows Version"Video kayıttan yürütme
+ Area AppsVideolar
+ Area PrivacySanal MasaüstleriVirüs
+ Means the virus in computers and softwareSes etkinleştirme
+ Area PrivacySes düzeyiVPN
+ Area NetworkAndInternetDuvar kağıdı
@@ -1226,75 +1609,102 @@
Karşılama merkezi
+ Area Control Panel (legacy settings)Giriş Ekranı
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translatedTekerlek
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi Araması
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi ayarları
+ "Wi-Fi" should not translatedPencere kenarlığıWindows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows Anywhere
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows Güvenlik Duvarı
+ Area Control Panel (legacy settings)Windows Hello kurulumu - Yüz Tanıma
+ Area UserAccountsWindows Hello kurulumu - Parmak izi
+ Area UserAccountsWindows Insider Programı
+ Area UpdateAndSecurityWindows Mobility Center
+ Area Control Panel (legacy settings)Windows arama
+ Area CortanaWindows Güvenlik
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update - Gelişmiş Seçenekler
+ Area UpdateAndSecurityWindows Update - Güncelleştirmeleri denetle
+ Area UpdateAndSecurityWindows Update - Yeniden başlatma seçenekleri
+ Area UpdateAndSecurityWindows Update - isteğe bağlı güncelleştirmeleri görüntüle
+ Area UpdateAndSecurityWindows Update - Güncelleştirme geçmişini görüntüle
+ Area UpdateAndSecurityKablosuz
@@ -1304,107 +1714,26 @@
Çalışma alanı sağlama
+ Area UserAccountsWubi IME ayarları
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installedWubi IME ayarları - UDP
+ Area TimeAndLanguageXbox Ağı
+ Area GamingBilgileriniz
+ Area UserAccountsYakınlaştır
-
-
-
-
-
-
-
-
- bpmf
-
-
- arama
-
-
-
-
-
- deuteranopia
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- protanopia
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tritanopia
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.uk-UA.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.uk-UA.resx
new file mode 100644
index 000000000..b688d58d0
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.uk-UA.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
+
+
+ Про Flow Launcher
+ 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
+
+
+ Основні
+ 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
+
+
+ Мова
+ 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.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)
+
+
+ Версія
+ 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/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx
index 6d6b8082e..c7601a380 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-TW.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -119,57 +119,78 @@
關於
+ Area System
-
- 存取公司或學校
+
+ access.cpl
+ File name, Should not translated協助工具選項
+ Area Control Panel (legacy settings)配件專屬 App
+ Area Privacy
+
+
+ 存取公司或學校
+ Area UserAccounts帳戶資訊
+ Area Privacy帳戶
+ Area SurfaceHub重要訊息中心
+ Area Control Panel (legacy settings)啟用
+ Area UpdateAndSecurity活動歷程記錄
+ Area Privacy新增硬體
+ Area Control Panel (legacy settings)新增/移除程式
+ Area Control Panel (legacy settings)新增您的電話
+ Area Phone系統管理工具
+ Area System進階顯示設定
+ Area System, only available on devices that support advanced display options進階圖形廣告識別碼
+ Area Privacy, Deprecated in Windows 10, version 1809 and later飛航模式
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboard替代名稱
@@ -180,38 +201,48 @@
應用程式色彩
-
- 控制台
-
應用程式診斷
+ Area Privacy應用程式功能
-
-
- 系統設定
-
-
- 應用程式磁碟區與裝置喜好設定
+ Area Apps應用程式
+ Short/modern name for application應用程式與功能
+ Area Apps
+
+
+ 系統設定
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. 適用於網站的 App
+ Area Apps
+
+
+ 應用程式磁碟區與裝置喜好設定
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translated區域
+ Mean the settings area or settings category帳戶系統管理工具
+ Area Control Panel (legacy settings)外觀及個人化
@@ -222,6 +253,9 @@
時鐘與地區
+
+ Control Panel
+
Cortana
@@ -284,132 +318,181 @@
音訊
+ Area EaseOfAccess音訊警示音訊與語音
-
-
- 自動播放
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.自動下載檔案
+ Area Privacy
+
+
+ 自動播放
+ Area Device背景
+ Area Personalization背景應用程式
+ Area Privacy備份
+ Area UpdateAndSecurity備份與還原
+ Area Control Panel (legacy settings)省電模式
+ Area System, only available on devices that have a battery, such as a tablet省電模式設定
+ Area System, only available on devices that have a battery, such as a tablet省電模式使用情況詳細資料電池使用
+ Area System, only available on devices that have a battery, such as a tablet生物特徵辨識裝置
+ Area Control Panel (legacy settings)BitLocker 磁碟機加密
+ Area Control Panel (legacy settings)藍色光
-
- 黃藍色
-
藍牙
+ Area Device藍牙裝置
+ Area Control Panel (legacy settings)
+
+
+ 黃藍色注音輸入法
+ Area TimeAndLanguage
+
+
+ 注音符號
+ Should not translated廣播
+ Area Gaming行事曆
+ Area Privacy通話記錄
+ Area Privacy
+
+
+ 通話相機
+ Area Privacy倉頡輸入法
+ Area TimeAndLanguageCaps Lock
+ Mean the "Caps Lock" key行動數據與 SIM
+ Area NetworkAndInternet選擇要顯示在 [開始]5D; 上的資料夾
+ Area PersonalizationNetWare 的用戶端服務
+ Area Control Panel (legacy settings)剪貼簿
+ Area System隱藏式輔助字幕
+ Area EaseOfAccess色彩篩選
+ Area EaseOfAccess色彩管理
+ Area Control Panel (legacy settings)色彩
+ Area Personalization命令
+ The command to direct start a setting已連線的裝置
+ Area Device連絡人
+ Area Privacy
+
+
+ Control Panel
+ Type of the setting is a "(legacy) Control Panel setting"複製命令核心隔離
+ Means the protection of the system coreCortana
+ Area Cortana跨裝置使用 Cortana
+ Area CortanaCortana - 語言
+ Area Cortana認證管理員
+ Area Control Panel (legacy settings)跨裝置
@@ -417,9 +500,6 @@
自訂裝置
-
- DNS
-
深色
@@ -428,171 +508,240 @@
資料使用量
+ Area NetworkAndInternet日期和時間
+ Area TimeAndLanguage預設應用程式
+ Area Apps預設攝影機
+ Area Device預設位置
+ Area Control Panel (legacy settings)預設程式
+ Area Control Panel (legacy settings)預設儲存位置
+ Area System傳遞最佳化
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translated桌面主題
+ Area Control Panel (legacy settings)
+
+
+ 綠色盲
+ Medical: Mean you don't can see red colors裝置管理員
+ Area Control Panel (legacy settings)裝置與印表機
+ Area Control Panel (legacy settings)DHCP
+ Should not translated撥號
+ Area NetworkAndInternet直接存取
+ Area NetworkAndInternet, only available if DirectAccess is enabled直接開啟您的手機
+ Area EaseOfAccess顯示
+ Area EaseOfAccess顯示屬性
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translated文件
+ Area Privacy正在複製我的顯示器
+ Area System在這段時間內
+ Area System輕鬆存取中心
+ Area Control Panel (legacy settings)版本
+ Means the "Windows Edition"電子郵件
+ Area Privacy電子郵件和應用程式帳戶
+ Area UserAccounts加密
+ Area System環境
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.乙太網路
+ Area NetworkAndInternet惡意探索保護額外項目
+ Area Extra, , only used for setting of 3rd-Party tools眼球控制
+ Area EaseOfAccess眼動追蹤儀
+ Area Privacy, requires eyetracker hardware家庭與其他人員
+ Area UserAccounts意見反應與診斷
+ Area Privacy檔案系統
+ Area PrivacyFindFast
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translated尋找我的裝置
+ Area UpdateAndSecurity防火牆專注輔助 - 勿打擾時間
+ Area System專注輔助 - 安靜時刻
+ Area System資料夾選項
+ Area Control Panel (legacy settings)字型
+ Area EaseOfAccess適用於開發人員
+ Area UpdateAndSecurity遊戲列
+ Area Gaming遊戲遙控器
+ Area Control Panel (legacy settings)遊戲 DVR
+ Area Gaming遊戲模式
+ Area Gaming閘道
+ Should not translated一般
+ Area Privacy取得程式
+ Area Control Panel (legacy settings)開始使用
+ Area Control Panel (legacy settings)概覽
+ Area Personalization, Deprecated in Windows 10, version 1809 and later圖形設定
+ Area System灰階綠色弱視
+ Mean you don't can see green colors頭戴式裝置顯示器
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.高對比
+ Area EaseOfAccess全像攝影音訊
@@ -608,42 +757,68 @@
常用群組
+ Area Control Panel (legacy settings)識別碼
+ MEans The "Windows Identifier"影像索引選項
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translated紅外線
+ Area Control Panel (legacy settings)筆跡及輸入
+ Area Privacy網際網路選項
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translated反相色彩IP
+ Should not translated隔離瀏覽日本輸入法設定
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translated搖桿屬性
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translated鍵盤
+ Area EaseOfAccess鍵盤
@@ -652,7 +827,8 @@
金鑰
- 語言
+ 語
+ Area TimeAndLanguage淺色
@@ -661,103 +837,156 @@
淺色模式
- 位置
+ 路徑
+ Area Privacy鎖定螢幕
+ Area Personalization放大鏡
+ Area EaseOfAccess郵件 - Microsoft Exchange 或 Windows 訊息中心
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translated管理已知的網路
+ Area NetworkAndInternet管理選用功能
+ Area Apps訊息中心
+ Area Privacy計量付費連線麥克風
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translated行動裝置行動熱點
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translatedMono詳細資料
+ Area Cortana動作
+ Area Privacy滑鼠
+ Area EaseOfAccess滑鼠和觸控板
+ Area Device滑鼠、字型、鍵盤和印表機屬性
+ Area Control Panel (legacy settings)滑鼠指標
+ Area EaseOfAccess多媒體屬性
+ Area Control Panel (legacy settings)多工
-
-
- NFC
-
-
- NFC 交易
+ Area System朗讀程式
+ Area EaseOfAccess瀏覽列
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translated網路
+ Area NetworkAndInternet網路與共享中心
+ Area Control Panel (legacy settings)網路連線
+ Area Control Panel (legacy settings)網路屬性
+ Area Control Panel (legacy settings)網路設定精靈
+ Area Control Panel (legacy settings)網路狀態
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ NFC 交易
+ "NFC should not translated"夜間光線夜間光線設定
+ Area System注意
@@ -827,339 +1056,476 @@
通知
+ Area Privacy通知和動作
+ Area SystemNum Lock
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedODBC 資料來源系統管理員 (32 位元)
+ Area Control Panel (legacy settings)ODBC 資料來源系統管理員 (64 位元)
+ Area Control Panel (legacy settings)離線檔案
+ Area Control Panel (legacy settings)離線地圖
+ Area Apps離線地圖 - 下載地圖
+ Area Apps螢幕上作業系統
+ Means the "Operating System"其他裝置
+ Area Privacy其他選項
+ Area EaseOfAccess其他使用者家長監護
+ Area Control Panel (legacy settings)密碼
+
+ password.cpl
+ File name, Should not translated
+
密碼屬性
+ Area Control Panel (legacy settings)筆與輸入裝置
+ Area Control Panel (legacy settings)筆和觸控
+ Area Control Panel (legacy settings)筆和 Windows Ink
+ Area Device我附近的人員
+ Area Control Panel (legacy settings)效能資訊和工具
+ Area Control Panel (legacy settings)權限與歷程記錄
+ Area Cortana個人化 (類別)
+ Area Personalization
- 手機
+ 電話
+ Area Phone電話與數據機
+ Area Control Panel (legacy settings)電話與數據機 - 選項
+ Area Control Panel (legacy settings)手機通話
+ Area Privacy手機 - 預設應用程式
+ Area System圖片圖片
+ Area Privacy拼音 IME 設定
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installed拼音輸入法設定 - 網域辭典
+ Area TimeAndLanguage拼音輸入法設定 - 金鑰設定
+ Area TimeAndLanguage拼音 IME 設定 - UDP
+ Area TimeAndLanguage全螢幕玩遊戲
+ Area Gaming搜尋 Windows 設定外掛程式
- Windows 設定
+ Windows Settings電源與睡眠
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translated電源選項
+ Area Control Panel (legacy settings)簡報
-
- 列印螢幕
-
印表機
+ Area Control Panel (legacy settings)印表機和掃描器
+ Area Device
+
+
+ 列印螢幕
+ Mean the "Print screen" key問題報告及解決方案
+ Area Control Panel (legacy settings)處理器程式和功能
+ Area Control Panel (legacy settings)投影到此電腦
+ Area System
+
+
+ 紅色盲
+ Medical: Mean you don't can see green colors正在佈建
+ Area UserAccounts, only available if enterprise has deployed a provisioning package接近
+ Area NetworkAndInternetProxy
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguage安靜時刻遊戲無線電波
+ Area PrivacyRAM
+ Means the Read-Access-Memory (typical the used to inform about the size)辨識復原
+ Area UpdateAndSecurity紅眼
+ Mean red eye effect by over-the-night flights紅-綠
+ Mean the weakness you can't differ between red and green colors紅色弱視
+ Mean you don't can see red colors區域
+ Area TimeAndLanguage
+
+
+ 地區語言
+ Area TimeAndLanguage
+
+
+ 地區設定屬性
+ Area Control Panel (legacy settings)地區和語言
+ Area Control Panel (legacy settings)地區格式
-
- 地區語言
-
-
- 地區設定屬性
-
RemoteApp 和桌面連線
+ Area Control Panel (legacy settings)遠端桌面
+ Area System掃描器與數位相機
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translated已排程排定的工作
+ Area Control Panel (legacy settings)旋轉螢幕
+ Area System捲軸Scroll Lock
+ Mean the "Scroll Lock" keySDNS
+ Should not translated正在搜尋 Windows
+ Area CortanaSecureDNS
+ Should not translated資訊安全中心
+ Area Control Panel (legacy settings)安全性處理器工作階段清除
-
-
- 設定 Kiosk
+ Area SurfaceHub設定首頁
+ Area Home, Overview-page for all areas of settings
+
+
+ 設定 Kiosk
+ Area UserAccounts共用體驗
-
-
- wifi
+ Area System快速鍵
+
+ wifi
+ dont translate this, is a short term to find entries
+
登入選項
+ Area UserAccounts登入選項 - 動態鎖定
+ Area UserAccounts大小
+ Size for text and symbols音效
+ Area System語音
+ Area EaseOfAccess語音辨識
+ Area Control Panel (legacy settings)語音輸入開始
+ Area Personalization開始位置啟動應用程式
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translated儲存體
+ Area System存放原則
+ Area System儲存空間感知器
+ Area System
+
+
+ in
+ Example: Area "System" in System settings同步中心
+ Area Control Panel (legacy settings)同步您的設定
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translated系統
+ Area Control Panel (legacy settings)系統屬性與新增硬體精靈
+ Area Control Panel (legacy settings)Tab
+ Means the key "Tabulator" on the keyboard平板電腦模式
+ Area System平板電腦設定
+ Area Control Panel (legacy settings)交談與 Cortana 交談
+ Area Cortana工作列
+ Area Personalization工作列色彩工作
+ Area Privacy小組會議
+ Area SurfaceHub小組裝置管理
+ Area SurfaceHub文字轉換語音
+ Area Control Panel (legacy settings)主題
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translated時間軸
@@ -1172,51 +1538,68 @@
觸控板
+ Area Device透明度
+
+ 黃藍色盲
+ Medical: Mean you don't can see yellow and blue colors
+
疑難排解
+ Area UpdateAndSecurityTruePlay
+ Area Gaming輸入
+ Area Device解除安裝
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area Device使用者帳戶
+ Area Control Panel (legacy settings)版本
+ Means The "Windows Version"影片播放
+ Area Apps影片
+ Area Privacy虛擬桌面病毒
+ Means the virus in computers and software語音啟用
+ Area Privacy音量VPN
+ Area NetworkAndInternet桌布
@@ -1226,75 +1609,102 @@
歡迎中心
+ Area Control Panel (legacy settings)歡迎畫面
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translated滾輪
+ Area DeviceWi-Fi
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi 通話
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi 設定
+ "Wi-Fi" should not translated視窗框線Windows Anytime Upgrade
+ Area Control Panel (legacy settings)Windows 無所不在
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows 防火牆
+ Area Control Panel (legacy settings)Windows Hello 設定 - 臉部
+ Area UserAccountsWindows Hello 設定 - 指紋
+ Area UserAccountsWindows 測試人員計畫
+ Area UpdateAndSecurityWindows 行動中心
+ Area Control Panel (legacy settings)Windows Search
+ Area CortanaWindows 安全性
+ Area UpdateAndSecurityWindows Update
+ Area UpdateAndSecurityWindows Update - 進階選項
+ Area UpdateAndSecurityWindows Update - 檢查更新
+ Area UpdateAndSecurityWindows Update - 重新啟動選項
+ Area UpdateAndSecurityWindows Update - 檢視選用的更新
+ Area UpdateAndSecurityWindows Update - 檢視更新歷程記錄
+ Area UpdateAndSecurity無線
@@ -1304,107 +1714,26 @@
工作場所佈建
+ Area UserAccounts五筆輸入法設定
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed五筆 IME 設定 - UDP
+ Area TimeAndLanguageXbox 網路
+ Area Gaming您的資訊
+ Area UserAccounts縮放
-
-
-
-
-
-
-
-
- 注音符號
-
-
- 通話
-
-
-
-
-
- 綠色盲
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 紅色盲
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 黃藍色盲
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx
index 3cb3276eb..115493b3f 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx
@@ -1,4 +1,4 @@
-
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
@@ -119,57 +119,78 @@
关于
+ Area System
-
- 访问工作或学校
+
+ access.cpl
+ File name, Should not translated辅助功能选项
+ Area Control Panel (legacy settings)附件应用
+ Area Privacy
+
+
+ 访问工作或学校
+ Area UserAccounts帐户信息
+ Area Privacy帐户
+ Area SurfaceHub操作中心
+ Area Control Panel (legacy settings)激活
+ Area UpdateAndSecurity活动历史记录
+ Area Privacy添加硬件
+ Area Control Panel (legacy settings)添加/删除程序
+ Area Control Panel (legacy settings)添加手机
+ Area Phone管理工具
+ Area System高级显示设置
+ Area System, only available on devices that support advanced display options高级图形广告 ID
+ Area Privacy, Deprecated in Windows 10, version 1809 and later飞行模式
+ Area NetworkAndInternetAlt+Tab
+ Means the key combination "Tabulator+Alt" on the keyboard备用名称
@@ -180,38 +201,48 @@
应用颜色
-
- 控制面板
-
应用诊断
+ Area Privacy应用特征
-
-
- 系统设置
-
-
- 应用卷和设备首选项
+ Area Apps应用
+ Short/modern name for application应用和功能
+ Area Apps
+
+
+ 系统设置
+ Type of the setting is a "Modern Windows settings". We use the same term as used in start menu search at the moment. 网站应用
+ Area Apps
+
+
+ 应用卷和设备首选项
+ Area System, Added in Windows 10, version 1903
+
+
+ appwiz.cpl
+ File name, Should not translated区域
+ Mean the settings area or settings category帐户管理工具
+ Area Control Panel (legacy settings)外观和个性化
@@ -222,8 +253,11 @@
时钟和区域
+
+ 控制面板
+
- Cortana
+ 小娜设备
@@ -284,132 +318,181 @@
音频
+ Area EaseOfAccess音频警报音频和语音
-
-
- 自动播放
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.自动文件下载
+ Area Privacy
+
+
+ 自动播放
+ Area Device背景
+ Area Personalization背景应用
+ Area Privacy备份
+ Area UpdateAndSecurity备份和还原
+ Area Control Panel (legacy settings)
- 节电模式
+ 省电模式
+ Area System, only available on devices that have a battery, such as a tablet节电模式设置
+ Area System, only available on devices that have a battery, such as a tablet节电模式使用情况详细信息电池使用
+ Area System, only available on devices that have a battery, such as a tablet生物识别设备
+ Area Control Panel (legacy settings)BitLocker 驱动器加密
+ Area Control Panel (legacy settings)蓝光
-
- 蓝黄色
-
- 蓝牙
+ Bluetooth
+ Area Device蓝牙设备
+ Area Control Panel (legacy settings)
+
+
+ 蓝黄色注音输入法
+ Area TimeAndLanguage
+
+
+ 注音符号
+ Should not translated广播
+ Area Gaming日历
+ Area Privacy呼叫历史记录
+ Area Privacy
+
+
+ 通话照相机
+ Area Privacy仓颉输入法
+ Area TimeAndLanguage大写锁定
+ Mean the "Caps Lock" key手机网络和 SIM 卡
+ Area NetworkAndInternet选择“开始”菜单上显示的文件夹
+ Area PersonalizationNetWare 的客户端服务
+ Area Control Panel (legacy settings)剪贴板
+ Area System隐藏式字幕
+ Area EaseOfAccess颜色筛选器
+ Area EaseOfAccess颜色管理
+ Area Control Panel (legacy settings)颜色
+ Area Personalization命令
+ The command to direct start a setting已连接的设备
+ Area Device联系人
+ Area Privacy
+
+
+ 控制面板
+ Type of the setting is a "(legacy) Control Panel setting"复制命令核心隔离
+ Means the protection of the system core
- Cortana
+ 小娜
+ Area Cortana我的设备上的 Cortana
+ Area CortanaCortana - 语言
+ Area Cortana凭据管理器
+ Area Control Panel (legacy settings)跨设备
@@ -417,9 +500,6 @@
自定义设备
-
- DNS
-
深色
@@ -428,171 +508,240 @@
数据使用情况
+ Area NetworkAndInternet日期和时间
+ Area TimeAndLanguage默认应用
+ Area Apps默认照相机
+ Area Device默认位置
+ Area Control Panel (legacy settings)默认程序
+ Area Control Panel (legacy settings)默认保存位置
+ Area System传递优化
+ Area UpdateAndSecurity
+
+
+ desk.cpl
+ File name, Should not translated桌面主题
+ Area Control Panel (legacy settings)
+
+
+ 绿色盲
+ Medical: Mean you don't can see red colors设备管理器
+ Area Control Panel (legacy settings)设备和打印机
+ Area Control Panel (legacy settings)DHCP
+ Should not translated拨号
+ Area NetworkAndInternet直接访问
+ Area NetworkAndInternet, only available if DirectAccess is enabled直接打开手机
+ Area EaseOfAccess显示
+ Area EaseOfAccess显示属性
+ Area Control Panel (legacy settings)
+
+
+ DNS
+ Should not translated文档
+ Area Privacy复制我的显示器
+ Area System在这些时间
+ Area System轻松访问中心
+ Area Control Panel (legacy settings)版本
+ Means the "Windows Edition"电子邮件
+ Area Privacy电子邮件和应用帐户
+ Area UserAccounts加密
+ Area System环境
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.以太网
+ Area NetworkAndInternet
- Exploit Protection
+ 漏洞保护
- 附加程序
+ 附加内容
+ Area Extra, , only used for setting of 3rd-Party tools目视控制
+ Area EaseOfAccess眼动追踪仪
+ Area Privacy, requires eyetracker hardware家庭和其他人员
+ Area UserAccounts反馈和诊断
+ Area Privacy文件系统
+ Area Privacy
- FindFast
+ 快速查找
+ Area Control Panel (legacy settings)
+
+
+ findfast.cpl
+ File name, Should not translated查找我的设备
+ Area UpdateAndSecurity防火墙专注助手 - 免打扰时间
+ Area System专注助手 - 免扰时间
+ Area System文件夹选项
+ Area Control Panel (legacy settings)字体
+ Area EaseOfAccess适用于开发人员
+ Area UpdateAndSecurity游戏栏
+ Area Gaming游戏控制器
+ Area Control Panel (legacy settings)游戏 DVR
+ Area Gaming游戏模式
+ Area Gaming网关
+ Should not translated
- 常规
+ 通用
+ Area Privacy获取应用程序
+ Area Control Panel (legacy settings)入门
+ Area Control Panel (legacy settings)概览
+ Area Personalization, Deprecated in Windows 10, version 1809 and later图形设置
+ Area System灰度绿色周
+ Mean you don't can see green colors头戴显示设备
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.高对比度
+ Area EaseOfAccess全息音频
@@ -608,42 +757,68 @@
家庭组
+ Area Control Panel (legacy settings)ID
+ MEans The "Windows Identifier"图像索引选项
+ Area Control Panel (legacy settings)
+
+
+ inetcpl.cpl
+ File name, Should not translated红外线
+ Area Control Panel (legacy settings)墨迹书写和键入
+ Area PrivacyInternet 选项
+ Area Control Panel (legacy settings)
+
+
+ intl.cpl
+ File name, Should not translated倒色IP
+ Should not translated隔离浏览日语输入法设置
+ Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed
+
+
+ joy.cpl
+ File name, Should not translated游戏杆属性
+ Area Control Panel (legacy settings)
+
+
+ jpnime
+ Should not translated键盘
+ Area EaseOfAccess小键盘
@@ -653,6 +828,7 @@
语言
+ Area TimeAndLanguage浅色
@@ -662,102 +838,155 @@
位置
+ Area Privacy锁屏界面
+ Area Personalization放大镜
+ Area EaseOfAccess邮件 - Microsoft Exchange 或 Windows 消息
+ Area Control Panel (legacy settings)
+
+
+ main.cpl
+ File name, Should not translated管理已知网络
+ Area NetworkAndInternet管理可选功能
+ Area Apps消息传递
+ Area Privacy按流量计费的连接麦克风
+ Area PrivacyMicrosoft Mail Post Office
+ Area Control Panel (legacy settings)
+
+
+ mlcfg32.cpl
+ File name, Should not translated
+
+
+ mmsys.cpl
+ File name, Should not translated移动设备移动热点
+ Area NetworkAndInternet
+
+
+ modem.cpl
+ File name, Should not translated
- Mono
+ 单声道更多详细信息
+ Area Cortana运动
+ Area Privacy鼠标
+ Area EaseOfAccess鼠标和触摸板
+ Area Device鼠标、字体、键盘和打印机属性
+ Area Control Panel (legacy settings)鼠标指针
+ Area EaseOfAccess多媒体属性
+ Area Control Panel (legacy settings)多任务
-
-
- NFC
-
-
- NFC 交易
+ Area System讲述人
+ Area EaseOfAccess导航栏
+ Area Personalization
+
+
+ netcpl.cpl
+ File name, Should not translated
+
+
+ netsetup.cpl
+ File name, Should not translated网络
+ Area NetworkAndInternet网络与共享中心
+ Area Control Panel (legacy settings)网络连接
+ Area Control Panel (legacy settings)网络属性
+ Area Control Panel (legacy settings)网络安装向导
+ Area Control Panel (legacy settings)网络状态
+ Area NetworkAndInternet
+
+
+ NFC
+ Area NetworkAndInternet
+
+
+ NFC 交易
+ "NFC should not translated"夜灯夜灯设置
+ Area System注意
@@ -827,108 +1056,151 @@
通知
+ Area Privacy通知和操作
+ Area System
- Num Lock
+ 小键盘数字锁定
+ Mean the "Num Lock" key
+
+
+ nwc.cpl
+ File name, Should not translated
+
+
+ odbccp32.cpl
+ File name, Should not translatedODBC 数据源管理员 (32 位)
+ Area Control Panel (legacy settings)ODBC 数据源管理员 (64 位)
+ Area Control Panel (legacy settings)脱机文件
+ Area Control Panel (legacy settings)离线离线地图
+ Area Apps离线地图 - 下载地图
+ Area Apps屏上
- OS
+ 操作系统
+ Means the "Operating System"其他设备
+ Area Privacy其他选项
+ Area EaseOfAccess其他用户家长控制
+ Area Control Panel (legacy settings)密码
+
+ password.cpl
+ File name, Should not translated
+
密码属性
+ Area Control Panel (legacy settings)笔和输入设备
+ Area Control Panel (legacy settings)触笔和触控
+ Area Control Panel (legacy settings)笔和 Windows Ink
+ Area Device网络邻居
+ Area Control Panel (legacy settings)性能信息和工具
+ Area Control Panel (legacy settings)权限和历史记录
+ Area Cortana个性化(类别)
+ Area Personalization
- 电话
+ 手机
+ Area Phone电话和调制解调器
+ Area Control Panel (legacy settings)电话和调制解调器 - 选项
+ Area Control Panel (legacy settings)电话
+ Area Privacy手机 - 默认应用
+ Area System图片图片
+ Area Privacy拼音输入法设置
+ Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installed拼音输入法设置 - 专业词典
+ Area TimeAndLanguage拼音输入法设置 - 按键配置
+ Area TimeAndLanguage拼音输入法设置 - UDP
+ Area TimeAndLanguage全屏进行游戏
+ Area Gaming用于搜索 Windows 设置的插件
@@ -938,228 +1210,322 @@
电源和休眠
+ Area System
+
+
+ powercfg.cpl
+ File name, Should not translated电源选项
+ Area Control Panel (legacy settings)表示
-
- 打印屏幕
-
打印机
+ Area Control Panel (legacy settings)打印机和扫描仪
+ Area Device
+
+
+ 打印屏幕
+ Mean the "Print screen" key问题报告和解决方案
+ Area Control Panel (legacy settings)处理器程序与功能
+ Area Control Panel (legacy settings)投影到这台电脑
+ Area System
+
+
+ 红色盲
+ Medical: Mean you don't can see green colors正在预配
+ Area UserAccounts, only available if enterprise has deployed a provisioning package邻近
+ Area NetworkAndInternet代理
+ Area NetworkAndInternetQuickime
+ Area TimeAndLanguage免扰时间游戏无线电收发器
+ Area Privacy
- RAM
+ 内存
+ Means the Read-Access-Memory (typical the used to inform about the size)识别恢复
+ Area UpdateAndSecurity红眼
+ Mean red eye effect by over-the-night flights红-绿
+ Mean the weakness you can't differ between red and green colors红色周
+ Mean you don't can see red colors区域
+ Area TimeAndLanguage
+
+
+ 区域语言
+ Area TimeAndLanguage
+
+
+ 区域设置属性
+ Area Control Panel (legacy settings)区域与语言
+ Area Control Panel (legacy settings)区域格式设置
-
- 区域语言
-
-
- 区域设置属性
-
RemoteApp 和桌面连接
+ Area Control Panel (legacy settings)远程桌面
+ Area System扫描仪和照相机
+ Area Control Panel (legacy settings)
+
+
+ schedtasks
+ File name, Should not translated已计划计划任务
+ Area Control Panel (legacy settings)屏幕旋转
+ Area System滚动条滚动锁定
+ Mean the "Scroll Lock" keySDNS
+ Should not translated正在搜索 Windows
+ Area CortanaSecureDNS
+ Should not translated安全中心
+ Area Control Panel (legacy settings)安全处理器会话清理
-
-
- 设置展台
+ Area SurfaceHub设置主页
+ Area Home, Overview-page for all areas of settings
+
+
+ 设置展台
+ Area UserAccounts共享体验
-
-
- Wifi
+ Area System快捷方式
+
+ Wifi
+ dont translate this, is a short term to find entries
+
登录选项
+ Area UserAccounts登录选项 - 动态锁定
+ Area UserAccounts大小
+ Size for text and symbols声音
+ Area System语音
+ Area EaseOfAccess语音识别
+ Area Control Panel (legacy settings)语音键入开始
+ Area Personalization起始位置启动应用
+ Area Apps
+
+
+ sticpl.cpl
+ File name, Should not translated存储
+ Area System存储策略
+ Area System存储感知
+ Area System
+
+
+ 于
+ Example: Area "System" in System settings同步中心
+ Area Control Panel (legacy settings)同步设置
+ Area UserAccounts
+
+
+ sysdm.cpl
+ File name, Should not translated系统
+ Area Control Panel (legacy settings)系统属性和添加新硬件向导
+ Area Control Panel (legacy settings)制表符
+ Means the key "Tabulator" on the keyboard平板电脑模式
+ Area System平板电脑设置
+ Area Control Panel (legacy settings)说话与 Cortana 交谈
+ Area Cortana任务栏
+ Area Personalization任务栏颜色任务
+ Area Privacy团队会议
+ Area SurfaceHub团队设备管理
+ Area SurfaceHub文本转语音
+ Area Control Panel (legacy settings)主题
+ Area Personalization
+
+
+ themes.cpl
+ File name, Should not translated
+
+
+ timedate.cpl
+ File name, Should not translated时间线
@@ -1172,51 +1538,68 @@
触摸板
+ Area Device透明度
+
+ 蓝色盲
+ Medical: Mean you don't can see yellow and blue colors
+
排除故障
+ Area UpdateAndSecurityTruePlay
+ Area Gaming键入
+ Area Device卸载
+ Area MixedReality, only available if the Mixed Reality Portal app is installed.USB
+ Area Device用户帐户
+ Area Control Panel (legacy settings)版本
+ Means The "Windows Version"视频播放
+ Area Apps视频
+ Area Privacy虚拟桌面病毒
+ Means the virus in computers and software语音激活
+ Area Privacy音量VPN
+ Area NetworkAndInternet壁纸
@@ -1226,75 +1609,102 @@
欢迎中心
+ Area Control Panel (legacy settings)欢迎屏幕
+ Area SurfaceHub
+
+
+ wgpocpl.cpl
+ File name, Should not translated滚轮
+ Area DeviceWLAN
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWLAN 呼叫
+ Area NetworkAndInternet, only available if Wi-Fi calling is enabledWi-Fi 设置
+ "Wi-Fi" should not translated窗口边框ADMX Windows Anytime Upgrade
+ Area Control Panel (legacy settings)随处使用 Windows
+ Area UserAccounts, device must be Windows Anywhere-capableWindows CardSpace
+ Area Control Panel (legacy settings)Windows Defender
+ Area Control Panel (legacy settings)Windows 防火墙
+ Area Control Panel (legacy settings)Windows Hello 设置 - 人脸
+ Area UserAccountsWindows Hello 设置 - 指纹
+ Area UserAccountsWindows 预览体验计划
+ Area UpdateAndSecurityWindows 移动中心
+ Area Control Panel (legacy settings)Windows 搜索
+ Area CortanaWindows 安全中心
+ Area UpdateAndSecurityWindows 更新
+ Area UpdateAndSecurityWindows 更新 - 高级选项
+ Area UpdateAndSecurityWindows 更新 - 检查更新
+ Area UpdateAndSecurityWindows 更新 - 重启选项
+ Area UpdateAndSecurityWindows 更新 - 查看可选更新
+ Area UpdateAndSecurityWindows 更新 - 查看更新历史记录
+ Area UpdateAndSecurity无线
@@ -1304,107 +1714,26 @@
工作区预配
+ Area UserAccounts五笔输入法设置
+ Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed五笔输入法设置 - UDP
+ Area TimeAndLanguageXbox 网络
+ Area Gaming你的信息
+ Area UserAccounts缩放
-
-
-
-
-
-
-
-
- bpmf
-
-
- 通话
-
-
-
-
-
- 绿色盲
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jpnime
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 红色盲
-
-
- schedtasks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 蓝色盲
-
-
-
+ Mean zooming of things via a magnifier
\ No newline at end of file
diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json
index 5d2ad85e7..61336db67 100644
--- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json
+++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json
@@ -4,7 +4,7 @@
"Description": "Search settings inside Control Panel and Settings App",
"Name": "Windows Settings",
"Author": "TobiasSekan",
- "Version": "2.0.0",
+ "Version": "2.0.2",
"Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.WindowsSettings.dll",
diff --git a/README.md b/README.md
index 690c848f6..35e438864 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@