diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt index 3e2f24c72..e2c13e25f 100644 --- a/.github/actions/spelling/expect.txt +++ b/.github/actions/spelling/expect.txt @@ -96,3 +96,10 @@ keyevent KListener requery vkcode +čeština +Polski +Srpski +Português +Português (Brasil) +Italiano +Slovenský diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml index b1d289091..7040ee606 100644 --- a/.github/workflows/winget.yml +++ b/.github/workflows/winget.yml @@ -1,13 +1,11 @@ name: Publish to Winget on: - release: - types: [released] + workflow_dispatch: jobs: publish: - # Action can only be run on windows - runs-on: windows-latest + runs-on: ubuntu-latest steps: - uses: vedantmgoyal2009/winget-releaser@v2 with: diff --git a/Flow.Launcher.Core/ExternalPlugins/CommunityPluginSource.cs b/Flow.Launcher.Core/ExternalPlugins/CommunityPluginSource.cs new file mode 100644 index 000000000..d3ee4695c --- /dev/null +++ b/Flow.Launcher.Core/ExternalPlugins/CommunityPluginSource.cs @@ -0,0 +1,57 @@ +using Flow.Launcher.Infrastructure.Http; +using Flow.Launcher.Infrastructure.Logger; +using System; +using System.Collections.Generic; +using System.Net; +using System.Net.Http; +using System.Net.Http.Json; +using System.Threading; +using System.Threading.Tasks; + +namespace Flow.Launcher.Core.ExternalPlugins +{ + public record CommunityPluginSource(string ManifestFileUrl) + { + private string latestEtag = ""; + + private List plugins = new(); + + /// + /// Fetch and deserialize the contents of a plugins.json file found at . + /// We use conditional http requests to keep repeat requests fast. + /// + /// + /// This method will only return plugin details when the underlying http request is successful (200 or 304). + /// In any other case, an exception is raised + /// + public async Task> FetchAsync(CancellationToken token) + { + Log.Info(nameof(CommunityPluginSource), $"Loading plugins from {ManifestFileUrl}"); + + var request = new HttpRequestMessage(HttpMethod.Get, ManifestFileUrl); + + request.Headers.Add("If-None-Match", latestEtag); + + using var response = await Http.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, token).ConfigureAwait(false); + + if (response.StatusCode == HttpStatusCode.OK) + { + this.plugins = await response.Content.ReadFromJsonAsync>(cancellationToken: token).ConfigureAwait(false); + this.latestEtag = response.Headers.ETag.Tag; + + Log.Info(nameof(CommunityPluginSource), $"Loaded {this.plugins.Count} plugins from {ManifestFileUrl}"); + return this.plugins; + } + else if (response.StatusCode == HttpStatusCode.NotModified) + { + Log.Info(nameof(CommunityPluginSource), $"Resource {ManifestFileUrl} has not been modified."); + return this.plugins; + } + else + { + Log.Warn(nameof(CommunityPluginSource), $"Failed to load resource {ManifestFileUrl} with response {response.StatusCode}"); + throw new Exception($"Failed to load resource {ManifestFileUrl} with response {response.StatusCode}"); + } + } + } +} diff --git a/Flow.Launcher.Core/ExternalPlugins/CommunityPluginStore.cs b/Flow.Launcher.Core/ExternalPlugins/CommunityPluginStore.cs new file mode 100644 index 000000000..affd7c312 --- /dev/null +++ b/Flow.Launcher.Core/ExternalPlugins/CommunityPluginStore.cs @@ -0,0 +1,54 @@ +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; + +namespace Flow.Launcher.Core.ExternalPlugins +{ + /// + /// Describes a store of community-made plugins. + /// The provided URLs should point to a json file, whose content + /// is deserializable as a array. + /// + /// Primary URL to the manifest json file. + /// Secondary URLs to access the , for example CDN links + public record CommunityPluginStore(string primaryUrl, params string[] secondaryUrls) + { + private readonly List pluginSources = + secondaryUrls + .Append(primaryUrl) + .Select(url => new CommunityPluginSource(url)) + .ToList(); + + public async Task> FetchAsync(CancellationToken token, bool onlyFromPrimaryUrl = false) + { + // we create a new cancellation token source linked to the given token. + // Once any of the http requests completes successfully, we call cancel + // to stop the rest of the running http requests. + var cts = CancellationTokenSource.CreateLinkedTokenSource(token); + + var tasks = onlyFromPrimaryUrl + ? new() { pluginSources.Last().FetchAsync(cts.Token) } + : pluginSources.Select(pluginSource => pluginSource.FetchAsync(cts.Token)).ToList(); + + var pluginResults = new List(); + + // keep going until all tasks have completed + while (tasks.Any()) + { + var completedTask = await Task.WhenAny(tasks); + if (completedTask.IsCompletedSuccessfully) + { + // one of the requests completed successfully; keep its results + // and cancel the remaining http requests. + pluginResults = await completedTask; + cts.Cancel(); + } + tasks.Remove(completedTask); + } + + // all tasks have finished + return pluginResults; + } + } +} diff --git a/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs b/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs index 1e30895cc..63f21c1d6 100644 --- a/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs +++ b/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs @@ -1,10 +1,6 @@ -using Flow.Launcher.Infrastructure.Http; 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; @@ -12,38 +8,31 @@ namespace Flow.Launcher.Core.ExternalPlugins { public static class PluginsManifest { - private const string manifestFileUrl = "https://jsdelivr.bobocdn.tk/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json"; + private static readonly CommunityPluginStore mainPluginStore = + new("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json", + "https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json", + "https://gcore.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json", + "https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json"); private static readonly SemaphoreSlim manifestUpdateLock = new(1); - private static string latestEtag = ""; + private static DateTime lastFetchedAt = DateTime.MinValue; + private static TimeSpan fetchTimeout = TimeSpan.FromMinutes(2); - public static List UserPlugins { get; private set; } = new List(); + public static List UserPlugins { get; private set; } - public static async Task UpdateManifestAsync(CancellationToken token = default) + public static async Task UpdateManifestAsync(CancellationToken token = default, bool usePrimaryUrlOnly = false) { try { await manifestUpdateLock.WaitAsync(token).ConfigureAwait(false); - var request = new HttpRequestMessage(HttpMethod.Get, manifestFileUrl); - request.Headers.Add("If-None-Match", latestEtag); - - using var response = await Http.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, token).ConfigureAwait(false); - - if (response.StatusCode == HttpStatusCode.OK) + if (UserPlugins == null || usePrimaryUrlOnly || DateTime.Now.Subtract(lastFetchedAt) >= fetchTimeout) { - Log.Info($"|PluginsManifest.{nameof(UpdateManifestAsync)}|Fetched plugins from manifest repo"); + var results = await mainPluginStore.FetchAsync(token, usePrimaryUrlOnly).ConfigureAwait(false); - await using 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}"); + UserPlugins = results; + lastFetchedAt = DateTime.Now; } } catch (Exception e) diff --git a/Flow.Launcher.Core/Resource/AvailableLanguages.cs b/Flow.Launcher.Core/Resource/AvailableLanguages.cs index f541d3f35..b6d394d11 100644 --- a/Flow.Launcher.Core/Resource/AvailableLanguages.cs +++ b/Flow.Launcher.Core/Resource/AvailableLanguages.cs @@ -23,8 +23,10 @@ namespace Flow.Launcher.Core.Resource 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ý"); + public static Language Slovak = new Language("sk", "Slovenčina"); public static Language Turkish = new Language("tr", "Türkçe"); + public static Language Czech = new Language("cs", "čeština"); + public static Language Arabic = new Language("ar", "اللغة العربية"); public static List GetAvailableLanguages() { @@ -50,7 +52,9 @@ namespace Flow.Launcher.Core.Resource Italian, Norwegian_Bokmal, Slovak, - Turkish + Turkish, + Czech, + Arabic }; return languages; } diff --git a/Flow.Launcher.Plugin/EventHandler.cs b/Flow.Launcher.Plugin/EventHandler.cs index 009e1721c..893b0ba80 100644 --- a/Flow.Launcher.Plugin/EventHandler.cs +++ b/Flow.Launcher.Plugin/EventHandler.cs @@ -1,4 +1,5 @@ -using System.Windows; +using System; +using System.Windows; using System.Windows.Input; namespace Flow.Launcher.Plugin @@ -32,6 +33,24 @@ namespace Flow.Launcher.Plugin /// return true to continue handling, return false to intercept system handling public delegate bool FlowLauncherGlobalKeyboardEventHandler(int keyevent, int vkcode, SpecialKeyState state); + /// + /// A delegate for when the visibility is changed + /// + /// + /// + public delegate void VisibilityChangedEventHandler(object sender, VisibilityChangedEventArgs args); + + /// + /// The event args for + /// + public class VisibilityChangedEventArgs : EventArgs + { + /// + /// if the main window has become visible + /// + public bool IsVisible { get; init; } + } + /// /// Arguments container for the Key Down event /// diff --git a/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj b/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj index e72672a5b..b317cfdce 100644 --- a/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj +++ b/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj @@ -14,10 +14,10 @@ - 4.0.1 - 4.0.1 - 4.0.1 - 4.0.1 + 4.1.0 + 4.1.0 + 4.1.0 + 4.1.0 Flow.Launcher.Plugin Flow-Launcher MIT @@ -67,7 +67,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs index 9b9a9525d..474ad6f0a 100644 --- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs +++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs @@ -96,7 +96,12 @@ namespace Flow.Launcher.Plugin /// /// bool IsMainWindowVisible(); - + + /// + /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off. + /// + event VisibilityChangedEventHandler VisibilityChanged; + /// /// Show message box /// diff --git a/Flow.Launcher.Test/Flow.Launcher.Test.csproj b/Flow.Launcher.Test/Flow.Launcher.Test.csproj index d88becad0..99ae0a3b5 100644 --- a/Flow.Launcher.Test/Flow.Launcher.Test.csproj +++ b/Flow.Launcher.Test/Flow.Launcher.Test.csproj @@ -54,7 +54,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + \ No newline at end of file diff --git a/Flow.Launcher/Flow.Launcher.csproj b/Flow.Launcher/Flow.Launcher.csproj index 384df2e62..cc6290ab0 100644 --- a/Flow.Launcher/Flow.Launcher.csproj +++ b/Flow.Launcher/Flow.Launcher.csproj @@ -1,4 +1,4 @@ - + WinExe @@ -83,7 +83,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -93,7 +93,7 @@ - + diff --git a/Flow.Launcher/Languages/ar.xaml b/Flow.Launcher/Languages/ar.xaml new file mode 100644 index 000000000..73792b726 --- /dev/null +++ b/Flow.Launcher/Languages/ar.xaml @@ -0,0 +1,373 @@ + + + + Failed to register hotkey: {0} + Could not start {0} + Invalid Flow Launcher plugin file format + Set as topmost in this query + Cancel topmost in this query + Execute query: {0} + Last execution time: {0} + Open + Settings + About + Exit + Close + Copy + Cut + Paste + Undo + Select All + File + Folder + Text + Game Mode + Suspend the use of Hotkeys. + Position Reset + Reset search window position + + + Settings + General + Portable Mode + Store all settings and user data in one folder (Useful when used with removable drives or cloud services). + Start Flow Launcher on system startup + Error setting launch on startup + Hide Flow Launcher when focus is lost + Do not show new version notifications + Search Window Position + Remember Last Position + Monitor with Mouse Cursor + Monitor with Focused Window + Primary Monitor + Custom Monitor + Search Window Position on Monitor + Center + Center Top + Left Top + Right Top + Custom Position + Language + Last Query Style + Show/Hide previous results when Flow Launcher is reactivated. + Preserve Last Query + Select last Query + Empty last Query + Maximum results shown + You can also quickly adjust this by using CTRL+Plus and CTRL+Minus. + Ignore hotkeys in fullscreen mode + Disable Flow Launcher activation when a full screen application is active (Recommended for games). + Default File Manager + Select the file manager to use when opening the folder. + Default Web Browser + Setting for New Tab, New Window, Private Mode. + Python Path + Node.js Path + Please select the Node.js executable + Please select pythonw.exe + Always Start Typing in English Mode + Temporarily change your input method to English mode when activating Flow. + Auto Update + Select + Hide Flow Launcher on startup + Hide tray icon + When the icon is hidden from the tray, the Settings menu can be opened by right-clicking on the search window. + Query Search Precision + Changes minimum match score required for results. + Search with Pinyin + Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese. + Always Preview + Always open preview panel when Flow activates. Press {0} to toggle preview. + Shadow effect is not allowed while current theme has blur effect enabled + + + Search Plugin + Ctrl+F to search plugins + No results found + Please try a different search. + Plugin + Plugins + Find more plugins + On + Off + Action keyword Setting + Action keyword + Current action keyword + New action keyword + Change Action Keywords + Current Priority + New Priority + Priority + Change Plugin Results Priority + Plugin Directory + by + Init time: + Query time: + Version + Website + Uninstall + + + + Plugin Store + New Release + Recently Updated + Plugins + Installed + Refresh + Install + Uninstall + Update + Plugin already installed + New Version + This plugin has been updated within the last 7 days + New Update is Available + + + + + Theme + Appearance + Theme Gallery + How to create a theme + Hi There + Explorer + Search for files, folders and file contents + WebSearch + Search the web with different search engine support + Program + Launch programs as admin or a different user + ProcessKiller + Terminate unwanted processes + Query Box Font + Result Item Font + Window Mode + Opacity + Theme {0} not exists, fallback to default theme + Fail to load theme {0}, fallback to default theme + Theme Folder + Open Theme Folder + Color Scheme + System Default + Light + Dark + Sound Effect + Play a small sound when the search window opens + Animation + Use Animation in UI + Animation Speed + The speed of the UI animation + Slow + Medium + Fast + Custom + Clock + Date + + + Hotkey + Hotkeys + Flow Launcher Hotkey + Enter shortcut to show/hide Flow Launcher. + Preview Hotkey + Enter shortcut to show/hide preview in search window. + Open Result Modifier Key + Select a modifier key to open selected result via keyboard. + Show Hotkey + Show result selection hotkey with results. + Custom Query Hotkeys + Custom Query Shortcuts + Built-in Shortcuts + Query + Shortcut + Expansion + Description + Delete + Edit + Add + Please select an item + Are you sure you want to delete {0} plugin hotkey? + Are you sure you want to delete shortcut: {0} with expansion {1}? + Get text from clipboard. + Get path from active explorer. + Query window shadow effect + Shadow effect has a substantial usage of GPU. Not recommended if your computer performance is limited. + Window Width Size + You can also quickly adjust this by using Ctrl+[ and Ctrl+]. + Use Segoe Fluent Icons + Use Segoe Fluent Icons for query results where supported + Press Key + + + HTTP Proxy + Enable HTTP Proxy + HTTP Server + Port + User Name + Password + Test Proxy + Save + Server field can't be empty + Port field can't be empty + Invalid port format + Proxy configuration saved successfully + Proxy configured correctly + Proxy connection failed + + + About + Website + GitHub + Docs + Version + Icons + You have activated Flow Launcher {0} times + Check for Updates + Become A Sponsor + New version {0} is available, would you like to restart Flow Launcher to use the update? + Check updates failed, please check your connection and proxy settings to api.github.com. + + Download updates failed, please check your connection and proxy settings to github-cloud.s3.amazonaws.com, + or go to https://github.com/Flow-Launcher/Flow.Launcher/releases to download updates manually. + + Release Notes + Usage Tips + DevTools + Setting Folder + Log Folder + Clear Logs + Are you sure you want to delete all logs? + Wizard + + + Select File Manager + Please specify the file location of the file manager you using and add arguments if necessary. The default arguments are "%d", and a path is entered at that location. For example, If a command is required such as "totalcmd.exe /A c:\windows", argument is /A "%d". + "%f" is an argument that represent the file path. It is used to emphasize the file/folder name when opening a specific file location in 3rd party file manager. This argument is only available in the "Arg for File" item. If the file manager does not have that function, you can use "%d". + File Manager + Profile Name + File Manager Path + Arg For Folder + Arg For File + + + Default Web Browser + The default setting follows the OS default browser setting. If specified separately, flow uses that browser. + Browser + Browser Name + Browser Path + New Window + New Tab + Private Mode + + + Change Priority + Greater the number, the higher the result will be ranked. Try setting it as 5. If you want the results to be lower than any other plugin's, provide a negative number + Please provide an valid integer for Priority! + + + Old Action Keyword + New Action Keyword + Cancel + Done + Can't find specified plugin + New Action Keyword can't be empty + This new Action Keyword is already assigned to another plugin, please choose a different one + Success + Completed successfully + Enter the action keyword you like to use to start the plugin. Use * if you don't want to specify any, and the plugin will be triggered without any action keywords. + + + Custom Query Hotkey + Press a custom hotkey to open Flow Launcher and input the specified query automatically. + Preview + Hotkey is unavailable, please select a new hotkey + Invalid plugin hotkey + Update + + + Custom Query Shortcut + Enter a shortcut that automatically expands to the specified query. + Shortcut already exists, please enter a new Shortcut or edit the existing one. + Shortcut and/or its expansion is empty. + + + Hotkey Unavailable + + + Version + Time + Please tell us how application crashed so we can fix it + Send Report + Cancel + General + Exceptions + Exception Type + Source + Stack Trace + Sending + Report sent successfully + Failed to send report + Flow Launcher got an error + + + Please wait... + + + Checking for new update + You already have the latest Flow Launcher version + Update found + Updating... + + Flow Launcher was not able to move your user profile data to the new update version. + Please manually move your profile data folder from {0} to {1} + + New Update + New Flow Launcher release {0} is now available + An error occurred while trying to install software updates + Update + Cancel + Update Failed + Check your connection and try updating proxy settings to github-cloud.s3.amazonaws.com. + This upgrade will restart Flow Launcher + Following files will be updated + Update files + Update description + + + Skip + Welcome to Flow Launcher + Hello, this is the first time you are running Flow Launcher! + Before starting, this wizard will assist in setting up Flow Launcher. You can skip this if you wish. Please choose a language + Search and run all files and applications on your PC + Search everything from applications, files, bookmarks, YouTube, Twitter and more. All from the comfort of your keyboard without ever touching the mouse. + Flow Launcher starts with the hotkey below, go ahead and try it out now. To change it, click on the input and press the desired hotkey on the keyboard. + Hotkeys + Action Keyword and Commands + Search the web, launch applications or run various functions through Flow Launcher plugins. Certain functions start with an action keyword, and if necessary, they can be used without action keywords. Try the queries below in Flow Launcher. + Let's Start Flow Launcher + Finished. Enjoy Flow Launcher. Don't forget the hotkey to start :) + + + + Back / Context Menu + Item Navigation + Open Context Menu + Open Containing Folder + Run as Admin / Open Folder in Default File Manager + Query History + Back to Result in Context Menu + Autocomplete + Open / Run Selected Item + Open Setting Window + Reload Plugin Data + + Weather + Weather in Google Result + > ping 8.8.8.8 + Shell Command + s Bluetooth + Bluetooth in Windows Settings + sn + Sticky Notes + + diff --git a/Flow.Launcher/Languages/cs.xaml b/Flow.Launcher/Languages/cs.xaml new file mode 100644 index 000000000..5e6c66025 --- /dev/null +++ b/Flow.Launcher/Languages/cs.xaml @@ -0,0 +1,373 @@ + + + + Nepodařilo se zaregistrovat zkratku: {0} + Nepodařilo se spustit {0} + Neplatný typ souboru pluginu aplikace Flow Launcher + Připnout jako první výsledek tohoto hledání + Odepnout jako první výsledek tohoto hledání + Provést hledání: {0} + Poslední čas provedení: {0} + Otevřít + Nastavení + O aplikaci + Ukončit + Zavřít + Kopírovat + Vyjmout + Vložit + Vrátit zpět + Vybrat vše + Soubor + Složka + Text + Herní režim + Potlačit užívání klávesových zkratek. + Obnovit pozici + Obnovit pozici vyhledávacího okna + + + Nastavení + Obecné + Přenosný režim + Ukládat všechna nastavení a uživatelská data v jedné složce (Užitečné při užití s přenosnými zařízeními). + Spustit Flow Launcher při spuštění systému + Při nastavování spouštění došlo k chybě + Skrýt Flow Launcher při vykliknutí + Nezobrazovat oznámení o nové verzi + Pozice vyhledávacího okna + Zapamatovat poslední pozici + Obrazovka s kurzorem + Obrazovka s aktivním oknem + Primární obrazovka + Vlastní obrazovka + Pozice vyhledávacího okna na obrazovce + Uprostřed + Uprostřed nahoře + Vlevo nahoře + Vpravo nahoře + Vlastní umístění + Jazyk + Styl posledního vyhledávání + Zobrazit / skrýt předchozí výsledky po znovuzobrazení Flow Launcher. + Zachovat poslední dotaz + Vybrat poslední dotaz + Smazat poslední dotaz + Počet zobrazených výsledků + Toto nastavení můžete také rychle upravit pomocí CTRL + Plus a CTRL + Minus. + Ignorovat klávesové zkratky v režimu celé obrazovky + Zakázat zobrazení aplikace Flow Launcher při běhu jiné aplikace v režimu celé obrazovky (Doporučeno pro hry). + Výchozí správce souborů + Vyberte správce souborů, který bude použit při otevírání složky. + Výchozí prohlížeč + Nastavení pro novou záložku, nové okno, soukromý režim. + Cesta k Python + Cesta k Node.js + Prosím, vyberte spustitelný soubor Node.js + Prosím, vyberte pythonw.exe + Vždy spouštět psaní v anglickém rozvržení klávesnice + Dočasně změní metodu vstupu do angličtiny při zobrazení Flow Launcher. + Automatické aktualizace + Vybrat + Skrýt Flow Launcher při spuštění + Skrýt ikonu v systémové liště + Pokud je ikona v oznamovací oblasti skrytá, nastavení lze otevřít kliknutím pravým tlačítkem myši na okno vyhledávání. + Přesnost vyhledávání + Změní minimální skóre shody, které je nutné pro zobrazení výsledků. + Vyhledávání pomocí pchin-jin + Umožňuje vyhledávání pomocí pchin-jin. Pchin-jin je systém zápisu čínského jazyka pomocí písmen latinky. + Vždy zobrazit náhled + Při aktivaci služby Flow vždy otevřete panel náhledu. Stisknutím klávesy {0} přepnete náhled. + Stínový efekt není povolen, pokud je aktivní efekt rozostření + + + Vyhledat plugin + Ctrl+F pro hledání pluginů + Nenalezeny žádné výsledky + Zkuste prosím jiné vyhledávání. + Pluginy + Pluginy + Najít další pluginy + Zapnuto + Vypnuto + Nastavení akčního příkazu + Aktivační příkaz + Aktuální aktivační příkaz + Nový aktivační příkaz + Upravit aktivační příkaz + Aktuální priorita + Nová priorita + Priorita + Změnit prioritu výsledků pluginu + Adresář pluginu + od + Iniciace: + Čas dotazu: + Verze + Webová stránka + Odinstalovat + + + + Obchod s pluginy + Nová verze + Nedávno aktualizované + Pluginy + Nainstalovaný + Obnovit + Instalovat + Odinstalovat + Aktualizovat + Plugin je již nainstalován + Nová verze + Tento plugin byl aktualizován během posledních 7 dní + Nová aktualizace je k dispozici + + + + + Motiv + Vzhled + Galerie motivů + Jak vytvořit motiv + Vítejte + Průzkumník + Vyhledávání souborů, složek a obsahu souborů + Webové vyhledávání + Webové vyhledávání s podporou různých vyhledávačů + Program  + Spustit programy jako administrátor nebo jiný uživatel + ProcessKiller + Ukončit nežádoucí procesy + Písmo vyhledávacího pole + Písmo výsledků + Režim okna + Neprůhlednost + Motiv {0} neexistuje, použije se výchozí motiv + Nepodařilo se načíst motiv {0}, je použit výchozí motiv + Složka motivů + Otevřít složku motivů + Barevné schéma + Výchozí systémové nastavení + Světlý + Tmavý + Zvukový efekt + Přehrát krátký zvuk při otevření okna vyhledávání + Animace + Použít animaci v UI + Rychlost animace + Rychlost animace uživatelského rozhraní + Pomalu + Střední + Rychle + Vlastní + Hodiny + Datum + + + Klávesová zkratka + Klávesové zkratky + Klávesová zkratka pro Flow Launcher + Zadejte zkratku pro zobrazení/skrytí nástroje Flow Launcher. + Klávesová zkratka pro náhled + Zadejte klávesovou zkratku pro zobrazení/skrytí náhledu v okně vyhledávání. + Modifikační klávesa pro otevření výsledků + Výběrem modifikační klávesy otevřete vybraný výsledek pomocí klávesnice. + Zobrazit klávesovou zkratku + Zobrazí klávesovou zkratku spolu s výsledky. + Vlastní klávesové zkratky pro vyhledávání + Vlastní zkratky dotazů + Vestavěné zkratky + Dotaz + Zástupce + Rozšíření + Popis + Smazat + Editovat + Přidat + Vyberte prosím položku + Jste si jisti, že chcete odstranit klávesovou zkratku {0} pro plugin? + Opravdu chcete odstranit zástupce: {0} pro dotaz {1}? + Zkopírovat text do schránky. + Získat cestu z aktivního průzkumníka. + Efekt stínu ve vyhledávacím poli + GPU výrazně využívá stínový efekt. Nedoporučuje se, pokud je výkon počítače omezený. + Šířka okna + Tuto hodnotu můžete také rychle upravit pomocí kláves Ctrl + [ a Ctrl +]. + Použít ikony Segoe Fluent + Použití ikon Segoe Fluent, pokud jsou podporovány + Stiskněte klávesu + + + HTTP Proxy + Povolit HTTP proxy + HTTP Server + Port + Uživatelské jméno + Heslo + Test proxy serveru + Uložit + Pole Server nesmí být prázdné + Pole Port nesmí být prázdné + Nesprávný formát portu + Nastavení proxy úspěšně uloženo + Nastavení proxy je v pořádku + Připojení k serveru proxy se nezdařilo + + + O aplikaci + Webová stránka + GitHub + Dokumentace + Verze + Ikony + Flow Launcher byl aktivován {0} krát + Zkontrolovat Aktualizace + Staňte se sponzorem + Je k dispozici nová verze {0}, chcete Flow Launcher restartovat, aby se mohl aktualizovat? + Hledání aktualizací se nezdařilo, zkontrolujte prosím své internetové připojení a nastavení proxy serveru k api.github.com. + + Stažení aktualizací se nezdařilo, zkontrolujte nastavení internetového připojení a proxy serveru na github-cloud.s3.amazonaws.com, + nebo přejděte na stránku https://github.com/Flow-Launcher/Flow.Launcher/releases a stáhněte aktualizaci ručně. + + Poznámky k vydání + Tipy pro používání + Vývojářské nástroje + Složka s nastavením + Složka s logy + Vymazat logy + Opravdu chcete odstranit všechny logy? + Průvodce + + + Vybrat správce souborů + Zadejte umístění souboru správce souborů, který používáte, a v případě potřeby přidejte argumenty. Výchozí argumenty jsou "%d" a cesta se zadává v tomto umístění. Pokud je například požadován příkaz jako "totalcmd.exe /A c:\windows", argument je /A "%d". + "%f" je argument, který představuje cestu k souboru. Používá se ke zvýraznění názvu souboru/složky při otevření konkrétního umístění souboru ve správci souborů třetí strany. Tento argument je k dispozici pouze v položce "Arg. pro soubor". Pokud správce souborů tuto funkci nemá, můžete použít "%d". + Správce souborů + Jméno profilu + Cesta k správci souborů + Argumenty pro složku + Argumenty pro Soubor + + + Výchozí prohlížeč + Výchozí nastavení je podle nastavení v systému. Pokud je zadáno samostatně, bude Flow používat tento prohlížeč. + Prohlížeč + Název prohlížeče + Cesta k prohlížeči + Nové okno + Nová karta + Soukromý režim + + + Změnit prioritu + Větší číslo znamená, že výsledek bude vyšší. Zkuste například nastavit hodnotu 5. Pokud chcete, aby byl výsledek nižší než u ostatních zásuvných modulů, zadejte záporné číslo + Zadejte prosím platné číslo pro prioritu! + + + Starý aktivační příkaz + Nový aktivační příkaz + Zrušit + Hotovo + Nepodařilo se najít zadaný plugin + Nový aktivační příkaz nemůže být prázdný + Nový aktivační příkaz byl již přiřazen jinému pluginu, vyberte jiný aktivační příkaz + Úspěšné + Úspěšně dokončeno + Zadejte aktivační příkaz, který je nutný ke spuštění pluginu. Pokud nechcete zadávat aktivační příkaz, použijte * a plugin bude spuštěn bez aktivačního příkazu. + + + Vlastní klávesová zkratka pro vyhledávání + Stisknutím vlastní klávesové zkratky otevřete nástroj Flow Launcher a automaticky zadejte dotaz. + Náhled + Klávesová zkratka je nedostupná, zadejte prosím novou zkratku + Neplatná klávesová zkratka pluginu + Aktualizovat + + + Vlastní klávesová zkratka pro zadávání dotazů + Zadejte zkratku, která automaticky vloží konkrétní dotaz. + Zkratka již existuje, zadejte novou zkratku nebo upravte stávající. + Zkratka a/nebo její plné znění je prázdné. + + + Klávesová zkratka je nedostupná + + + Verze + Čas + Dejte nám prosím vědět, jak došlo k pádu aplikace, abychom to mohli opravit + Odeslat hlášení + Zrušit + Základní nastavení + Výjimky + Typ výjimky + Zdroj + Trasování zásobníku + Odesílám + Hlášení bylo úspěšně odesláno + Nepodařilo se odeslat hlášení + Flow Launcher zaznamenal chybu + + + Počkejte prosím... + + + Kontroluji nové aktualizace + Již máte nejnovější verzi Flow Launcheru + Byla nalezena aktualizace + Aktualizace... + + Aplikaci Flow Launcher se nepodařilo přesunout uživatelská data do aktualizované verze. + Přesuňte prosím složku s daty profilu z {0} do {1} + + Nová Aktualizace + Nová verze Flow Launcheru {0} je nyní dostupná + Při pokusu o aktualizaci došlo k chybě + Aktualizovat + Zrušit + Aktualizace selhala + Zkontrolujte připojení a zkuste aktualizovat nastavení proxy na github-cloud.s3.amazonaws.com. + Tato aktualizace restartuje Flow Launcher + Následující soubory budou aktualizovány + Aktualizovat soubory + Aktualizovat popis + + + Přeskočit + Vítejte v Flow Launcheru + Dobrý den, Flow Launcher spouštíte poprvé! + Tento průvodce vám pomůže nastavit Flow Launcher ještě předtím, než začnete. Pokud chcete, můžete ho přeskočit. Zvolte si jazyk + Vyhledávání a spouštění všech souborů a aplikací v počítači + Vyhledávejte v aplikacích, souborech, záložkách, YouTube, Twitteru a dalších. To vše z pohodlí klávesnice, aniž byste se museli dotknout myši. + Aplikace Flow Launcher se spouští pomocí níže uvedené klávesové zkratky, pojďte si ji vyzkoušet. Chcete-li ji změnit, klikněte na vstupní pole a stiskněte požadovanou klávesovou zkratku. + Klávesové zkratky + Klíčové slovo a příkazy + Pomocí doplňků Flow Launcher můžete vyhledávat na webu, spouštět aplikace nebo spouštět různé funkce. Některé funkce se spouštějí aktivačním příkazem a v případě potřeby je lze používat bez aktivačních příkazů. Vyzkoušejte si níže uvedené výrazy ve Flow Launcheru. + Spuštění aplikace Flow Launcher + Hotovo. Užijte si Flow Launcher. Nezapomeňte na klávesovou zkratku pro spuštění :) + + + + Zpět / Kontextové menu + Navigace mezi položkami + Otevřít kontextovou nabídku + Otevřít umístění složky + Spustit jako Admin / Otevřít složku ve výchozím správci souborů + Historie Dotazů + Zpět na výsledek v kontextové nabídce + Automatické dokončování + Otevřít / Spustit vybranou položku + Otevřít okno s nastavením + Znovu načíst data pluginů + + Počasí + Výsledky počasí Google + > ping 8.8.8 + Příkazový řádek + - Bluetooth + Bluetooth v nastavení Windows + sn + Označené poznámky + + diff --git a/Flow.Launcher/Languages/es.xaml b/Flow.Launcher/Languages/es.xaml index 6d9a720f3..01e0fbb4d 100644 --- a/Flow.Launcher/Languages/es.xaml +++ b/Flow.Launcher/Languages/es.xaml @@ -35,8 +35,8 @@ Error de configuración de arranque al iniciar Ocultar Flow Launcher cuando se pierde el foco No mostrar notificaciones de nuevas versiones - Posición de la ventana de búsqueda - Recordar última posición + Ubicación de la ventana de búsqueda + Recordar última ubicación Monitor con cursor del ratón Monitor con ventana enfocada Monitor principal diff --git a/Flow.Launcher/Languages/it.xaml b/Flow.Launcher/Languages/it.xaml index 78fdfb35d..03875f5ba 100644 --- a/Flow.Launcher/Languages/it.xaml +++ b/Flow.Launcher/Languages/it.xaml @@ -131,7 +131,7 @@ Sfoglia per altri temi Come creare un tema Ciao - Explorer + Esplora Risorse Search for files, folders and file contents WebSearch Search the web with different search engine support @@ -181,7 +181,7 @@ Ricerca Shortcut Expansion - Description + Descrizione Cancella Modifica Aggiungi @@ -255,8 +255,8 @@ Browser Nome del browser Percorso Browser - New Window - New Tab + Nuova Finestra + Nuova Scheda Modalità Privata diff --git a/Flow.Launcher/Properties/Resources.ar-SA.resx b/Flow.Launcher/Properties/Resources.ar-SA.resx new file mode 100644 index 000000000..b5e00e8a2 --- /dev/null +++ b/Flow.Launcher/Properties/Resources.ar-SA.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.cs-CZ.resx b/Flow.Launcher/Properties/Resources.cs-CZ.resx new file mode 100644 index 000000000..b5e00e8a2 --- /dev/null +++ b/Flow.Launcher/Properties/Resources.cs-CZ.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 4312df3c3..def54e04b 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -75,6 +75,8 @@ namespace Flow.Launcher public bool IsMainWindowVisible() => _mainVM.MainWindowVisibilityStatus; + public event VisibilityChangedEventHandler VisibilityChanged { add => _mainVM.VisibilityChanged += value; remove => _mainVM.VisibilityChanged -= value; } + public void CheckForNewUpdate() => _settingsVM.UpdateApp(); public void SaveAppAllSettings() diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index 0110a11d7..c832c258d 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -578,6 +578,8 @@ 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 event VisibilityChangedEventHandler VisibilityChanged; + public Visibility SearchIconVisibility { get; set; } public double MainWindowWidth @@ -1014,6 +1016,7 @@ namespace Flow.Launcher.ViewModel MainWindowOpacity = 1; MainWindowVisibilityStatus = true; + VisibilityChanged?.Invoke(this, new VisibilityChangedEventArgs { IsVisible = true }); }); } @@ -1048,6 +1051,7 @@ namespace Flow.Launcher.ViewModel MainWindowVisibilityStatus = false; MainWindowVisibility = Visibility.Collapsed; + VisibilityChanged?.Invoke(this, new VisibilityChangedEventArgs { IsVisible = false }); } /// 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 5af3457c5..6cd155ecc 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj @@ -1,4 +1,4 @@ - + Library @@ -56,7 +56,7 @@ - + diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ar.xaml new file mode 100644 index 000000000..90f4ea49b --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ar.xaml @@ -0,0 +1,28 @@ + + + + + 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 + Edit + Delete + Browse + Others + Browser Engine + If you are not using Chrome, Firefox or Edge, or you are using their portable version, you need to add bookmarks data directory and select correct browser engine to make this plugin work. + For example: Brave's engine is Chromium; and its default bookmarks data location is: "%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData". For Firefox engine, the bookmarks directory is the userdata folder contains the places.sqlite file. + diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/cs.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/cs.xaml new file mode 100644 index 000000000..7511b96f3 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/cs.xaml @@ -0,0 +1,28 @@ + + + + + Záložky prohlížeče + Hledat záložky v prohlížeči + + + Data záložek + Otevřít záložky v: + Nové okno + Nová záložka + Nastavte cestu k prohlížeči: + Vybrat + Kopírovat URL + Zkopírovat adresu URL záložky do schránky + Načíst prohlížeč z: + Název prohlížeče + Cesta ke složce dat + Přidat + Editovat + Smazat + Procházet + Jiné + Jádro webového prohlížeče + Pokud nepoužíváte prohlížeč Chrome, Firefox nebo Edge nebo používáte přenosnou verzi prohlížeče Chrome, Firefox nebo Edge, musíte přidat složku záložek a vybrat správné jádro prohlížeče, aby tento doplněk fungoval. + Například: prohlížeč Brave má jádro Chromium; výchozí umístění pro data záložek je: "%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData". V případě jádra Firefox je složkou záložek složka userdata, která obsahuje soubor places.sqlite. + diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml index 040a43378..0491ba973 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml @@ -20,9 +20,9 @@ Aggiungi Modifica Cancella - Browse - Others - Browser Engine - If you are not using Chrome, Firefox or Edge, or you are using their portable version, you need to add bookmarks data directory and select correct browser engine to make this plugin work. - For example: Brave's engine is Chromium; and its default bookmarks data location is: "%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData". For Firefox engine, the bookmarks directory is the userdata folder contains the places.sqlite file. + Sfoglia + Altri + Motore di Navigazione + Se non si utilizza Chrome, Firefox o Edge, o si utilizza la loro versione portatile, è necessario aggiungere la cartella dei segnalibri e selezionare il motore di navigazione corretto per far funzionare questo plugin. + Per esempio: il motore di Brave è Chromium, e la sua posizione predefinita dei segnalibri è: "%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData". Per il motore di Firefox, la directory dei segnalibri è la cartella dei dati utente che contiene il file places.sqlite. diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/plugin.json b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/plugin.json index 38334aa50..c1e7a3a33 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/plugin.json @@ -4,7 +4,7 @@ "Name": "Browser Bookmarks", "Description": "Search your browser bookmarks", "Author": "qianlifeng, Ioannis G.", - "Version": "3.1.1", + "Version": "3.1.2", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.BrowserBookmark.dll", diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/ar.xaml new file mode 100644 index 000000000..15598118c --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/ar.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/cs.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/cs.xaml new file mode 100644 index 000000000..ed8cb3fdb --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/cs.xaml @@ -0,0 +1,15 @@ + + + + Kalkulačka + Umožňuje provádět matematické výpočty.(Try 5*3-2 v průtokovém spouštěči) + Není číslo (NaN) + Nesprávný nebo neúplný výraz (Nezapomněli jste na závorky?) + Kopírování výsledku do schránky + Oddělovač desetinných míst + Oddělovač desetinných míst použitý ve výsledku. + Použít podle systému + Čárka (,) + Tečka (.) + Desetinná místa + diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/it.xaml index 7809bcfa1..fa4651a97 100644 --- a/Plugins/Flow.Launcher.Plugin.Calculator/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Calculator/Languages/it.xaml @@ -11,5 +11,5 @@ Usa il locale del sistema Virgola (,) Punto (.) - Max. decimal places + Max. cifre decimali diff --git a/Plugins/Flow.Launcher.Plugin.Calculator/plugin.json b/Plugins/Flow.Launcher.Plugin.Calculator/plugin.json index 1f022d6bb..2bba6341c 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": "3.0.2", + "Version": "3.0.3", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.Caculator.dll", diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ar.xaml new file mode 100644 index 000000000..52aed4b9a --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ar.xaml @@ -0,0 +1,143 @@ + + + + + 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 file? + Are you sure you want to permanently delete this file/folder? + Deletion successful + Successfully deleted {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 + Error occurred during search: {0} + Could not open folder + Could not open file + + + Delete + Edit + Add + General Setting + Customise Action Keywords + Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + Editor Path + Shell Path + Index Search Excluded Paths + Use search result's location as the working directory of the executable + Hit Enter to open folder in Default File Manager + Use Index Search For Path Search + 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 + Everything + Windows Index + Direct Enumeration + File Editor Path + Folder Editor Path + + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Windows Index Option + + + Explorer + Find and manage files and folders via Windows Search or Everything + + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + + Copy path + Copy path of current item to clipboard + Copy + Copy current file to clipboard + Copy current folder to clipboard + Delete + Permanently delete current file + Permanently delete current folder + Path: + Delete the selected + Run as different user + Run the selected using a different user account + Open containing folder + Open the location that contains current item + Open With Editor: + Failed to open file at {0} with Editor {1} at {2} + Open With Shell: + Failed to open folder {0} with Shell {1} at {2} + 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 current item 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 current item from Quick Access + Show Windows Context Menu + + + {0} free of {1} + Open in Default File Manager + Use '>' to search in this directory, '*' to search for file extensions or '>*' to combine both searches. + + + Failed to load Everything SDK + Warning: Everything service is not running + Error while querying Everything + Sort By + Name + Path + Size + Extension + Type Name + Date Created + Date Modified + Attributes + File List FileName + Run Count + Date Recently Changed + Date Accessed + Date Run + + + Warning: This is not a Fast Sort option, searches may be slow + + Search Full Path + + Click to launch or install Everything + Everything Installation + Installing Everything service. Please wait... + Successfully installed Everything service + Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com + Click here to start it + Unable to find an Everything installation, would you like to manually select a location?{0}{0}Click no and Everything will be automatically installed for you + Do you want to enable content search for Everything? + It can be very slow without index (which is only supported in Everything v1.5+) + + diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/cs.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/cs.xaml new file mode 100644 index 000000000..1ab9da4b7 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/cs.xaml @@ -0,0 +1,143 @@ + + + + + Nejprve vyberte položku + Vyberte odkaz na složku + Opravdu chcete odstranit {0}? + Opravdu chcete trvale odstranit tento soubor? + Opravdu chcete trvale smazat tento soubor/složku? + Úspěšně odstraněno + Úspěšně odstraněno {0} + Přiřazení globálního aktivačního příkazu může při vyhledávání poskytnout příliš mnoho výsledků. Zvolte konkrétní aktivační příkaz + Pokud je povolen rychlý přístup, nelze nastavit globální aktivační příkaz. Zvolte konkrétní aktivační příkaz + Nezdá se, že by požadovaná služba Windows Index Search byla spuštěna + Chcete-li to opravit, spusťte vyhledávání ve Windows. Chcete-li toto upozornění odstranit, klikněte zde + Upozornění bylo vypnuto. Chcete nainstalovat zásuvný modul Everything jako alternativu pro vyhledávání souborů a složek?{0}{0}Pro instalaci zásuvného modulu Everything vyberte "Ano", pro návrat vyberte "Ne" + Alternativa pro Průzkumníka + Při vyhledávání došlo k chybě: {0} + Adresář nelze otevřít + Nelze otevřít soubor + + + Smazat + Editovat + Přidat + Všeobecné nastavení + Upravit aktivační příkaz + Odkazy rychlého přístupu + Nastavení Everything + Možnosti řazení: + Umístění Everything: + Spustit skryté + Cesta k editoru + Cesta k příkazovému řádku + Vyloučená místa indexování + Použít umístění výsledků vyhledávání jako pracovní adresář spustitelného souboru + Klepnutím na Enter otevřete složku ve výchozím správci souborů + K vyhledání cesty použijte indexové vyhledávání + Možnosti indexování + Hledat: + Cesta vyhledávání: + Vyhledávání obsahu souborů: + Vyhledávání v indexu: + Rychlý přístup: + Aktuální aktivační příkaz + Hotovo + Povoleno + Pokud je tato možnost vypnuta, Flow tuto možnost vyhledávání neprovede a vrátí se zpět k "*", aby uvolnila akční zkratku + Everything + Index Windowsu + Seznam složek + Cesta k editoru souborů + Cesta k editoru složek + + Vyhledávač obsahu + Rekurzivní vyhledávač ve složce + Indexový vyhledávač + Otevření možností vyhledávání v systému Windows + + + Průzkumník + Vyhledává a spravuje soubory a složky pomocí funkce Windows Search nebo Everything + + + Ctrl + Enter pro otevření adresáře + Ctrl + Enter pro otevření umístění složky + + + Kopírovat cestu + Zkopírovat cestu k aktuální položce do schránky + Kopírovat + Kopírovat aktuální soubor do schránky + Kopírovat aktuální složku do schránky + Smazat + Trvale odstranit aktuální soubor + Trvale smazat aktuální složku + Cesta: + Odstranit vybraný + Spustit jako jiný uživatel + Spustí vybranou položku jako uživatel s jiným účtem + Otevřít umístění složky + Otevřít umístění aktuální položky + Otevřít v editoru: + Nepodařilo se otevřít soubor {0} v editoru {1} - {2} + Otevřete v příkazovém řádku: + Nepodařilo se otevřít složku {0} v {1} - {2} + Vyloučení položky a jejích podsložek z vyhledávacího indexu + Vyloučit z vyhledávacího indexu + Otevření možností vyhledávání v systému Windows + Správa indexovaných souborů a složek + Nepodařilo se otevřít možnosti indexu vyhledávání + Přidat k Rychlému přístupu + Přidat aktuální položku do Rychlého přístupu + Přidáno úspěšně + Úspěšně přidáno do Rychlého přístupu + Úspěšně odstraněno + Úspěšně odstraněno z Rychlého přístupu + Přidat do Rychlého přístupu, aby jej bylo možné otevřít pomocí příkazu pro aktivaci pluginu Průzkumník + Odstranit z Rychlého přístupu + Odstranit z Rychlého přístupu + Odstranit aktuální položku z rychlého přístupu + Zobrazit kontextové menu Windows + + + Volných {0} z {1} + Otevřít ve výchozím správci souborů + Použijte ">" pro vyhledávání v této složce, "*" pro vyhledávání přípon souborů nebo ">*" pro kombinaci obou vyhledávání. + + + Nepodařilo se načíst SDK Everything + Upozornění: Služba Everything není spuštěna + Chyba při dotazování Everything + Seřadit podle + Jméno + Cesta + Velikost + Rozšíření + Typ + Datum vytvoření + Datum změny + Atributy + Seznam názvů souborů + Počet spuštění + Poslední změna data + Datum přístupu + Datum spouštění + + + Poznámka: Toto není možnost Fast Sort, vyhledávání může být pomalé + + Hledat celou cestu + + Kliknutím spustíte nebo nainstalujete aplikaci Everything + Instalace Everything + Služba Everything se nainstaluje. Počkejte prosím... + Služba Everything bylo úspěšně nainstalována + Automatická instalace aplikace Everything se nezdařila. Nainstalujte ji prosím ručně ze stránek https://www.voidtools.com + Klikni zde pro spuštění + Nepodařilo se najít instalaci Everything, chcete ručně vybrat její umístění?{0}{0}Kliknutím na ne se Everything nainstaluje automaticky + Chcete povolit vyhledávání obsahu prostřednictvím služby Everything? + Bez indexu (který je podporován pouze ve verzi Everything v1.5+) může být velmi pomalý + + diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml index 30dfe71ed..79143d27d 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml @@ -2,19 +2,19 @@ - Please make a selection first - Please select a folder link - Are you sure you want to delete {0}? + Effettua prima una selezione + Si prega di selezionare un collegamento alla cartella + Sei sicuro di voler eliminare {0}? Are you sure you want to permanently delete this file? Are you sure you want to permanently delete this file/folder? - Deletion successful + Eliminato con successo Successfully deleted {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'assegnazione della parola chiave globale potrebbe portare a troppi risultati durante la ricerca. Scegli una parola chiave specifica per l'azione + L'accesso rapido non può essere impostato sulla parola chiave globale quando abilitata. Si prega di scegliere una parola chiave specifica + Il servizio richiesto per Windows Index Search non sembra essere in esecuzione + Per risolvere il problema, avvia il servizio Ricerca Windows. Seleziona qui per rimuovere questo avviso + Il messaggio di avviso è stato spento. In alternativa per la ricerca di file e cartelle, vuoi installare il plugin Everything?{0}{0} Seleziona 'Sì' per installare il plugin Everything, o 'No' per tornare + Alternativa all'Esplora Risorse Error occurred during search: {0} Could not open folder Could not open file @@ -24,28 +24,28 @@ Modifica Aggiungi General Setting - Customise Action Keywords - Quick Access Links + Personalizza Parola Chiave + Collegamenti ad Accesso Rapido Everything Setting Sort Option: Everything Path: Launch Hidden Tasto di accesso rapido alla finestra Shell Path - Index Search Excluded Paths + Percorsi Esclusi dall'Indice di Ricerca Utilizza il percorso ottenuto dalla ricerca come cartella di lavoro Hit Enter to open folder in Default File Manager Use Index Search For Path Search - Indexing Options - Search: - Path Search: - File Content Search: - Index Search: - Quick Access: - Current Action Keyword + Opzioni di Indicizzazione + Cerca: + Ricerca Percorso: + Ricerca Contenuto File: + Ricerca in Indice: + Accesso Rapido: + Parola Chiave Corrente Conferma - Enabled - When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword + Abilitato + Quando disabilitato Flow non eseguirà questa opzione di ricerca, e ripristinerà a "*" per liberare la parola chiave Tutto Windows Index Direct Enumeration @@ -58,7 +58,7 @@ Open Windows Index Option - Explorer + Esplora Risorse Find and manage files and folders via Windows Search or Everything @@ -66,38 +66,38 @@ Ctrl + Enter to open the containing folder - Copy path + Copia percorso Copy path of current item to clipboard - Copy + Copia Copy current file to clipboard Copy current folder to clipboard Cancella Permanently delete current file Permanently delete current folder - Path: - Delete the selected - Run as different user - Run the selected using a different user account - Open containing folder + Percorso: + Elimina il selezionato + Esegui come utente differente + Esegui la selezione utilizzando un altro account utente + Apri percorso file Open the location that contains current item - Open With Editor: + Apri nell'Editor: Failed to open file at {0} with Editor {1} at {2} Open With Shell: Failed to open folder {0} with Shell {1} at {2} - 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 + Escludi cartelle e sottocartelle dall'Indice di Ricerca + Escludi dall'Indice di Ricerca + Apri Opzioni di Indicizzazione di Windows + Gestisci file e cartelle indicizzati + Impossibile aprire le Opzioni di Indicizzazione di Windows + Aggiungi ad Accesso Rapido Add current item 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 + Aggiunto con successo + Aggiunto con successo ad Accesso Rapido + Rimosso con Successo + Rimosso con successo da Accesso Rapido + Aggiungi ad Accesso Rapido in modo che possa essere aperto con la parola chiave di ricerca dell'Esplora Risorse + Rimuovi da Accesso Rapido + Rimuovi da Accesso Rapido Remove current item from Quick Access Show Windows Context Menu @@ -134,7 +134,7 @@ Installazione di Everything Installazione di everything. Si prega di attendere... Everything è stato installato con successo - Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com + Impossibile installare automaticamente il servizio Everything. Si prega di installarlo manualmente da https://www.voidtools.com Premi per avviare Impossibile trovare l'installazione di Everything, vuoi inserire manualmente un percorso? {0} {0} Premi no per installare automaticamente Everything Do you want to enable content search for Everything? diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json b/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json index cd6a0986b..06acf6a54 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.Explorer/plugin.json @@ -10,7 +10,7 @@ "Name": "Explorer", "Description": "Find and manage files and folders via Windows Search or Everything", "Author": "Jeremy Wu", - "Version": "3.1.0", + "Version": "3.1.1", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.Explorer.dll", diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ar.xaml new file mode 100644 index 000000000..893948d3d --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/ar.xaml @@ -0,0 +1,9 @@ + + + + Activate {0} plugin action keyword + + Plugin Indicator + Provides plugins action words suggestions + + diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/cs.xaml b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/cs.xaml new file mode 100644 index 000000000..6bd0d4459 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.PluginIndicator/Languages/cs.xaml @@ -0,0 +1,9 @@ + + + + Aktivace pluginu {0} pomocí aktivačního příkazu + + Indikátor pluginu + Poskytuje návrhy akcí v pluginech + + diff --git a/Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json b/Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json index e8219c9d1..98aac405a 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": "Provides plugin action keyword suggestions", "Author": "qianlifeng", - "Version": "3.0.1", + "Version": "3.0.2", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.PluginIndicator.dll", diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ar.xaml new file mode 100644 index 000000000..2f31b62cd --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ar.xaml @@ -0,0 +1,49 @@ + + + + + Downloading plugin + Successfully downloaded {0} + 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 + Installing Plugin + Download and install {0} + Plugin Uninstall + Plugin {0} 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 occurred 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/cs.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/cs.xaml new file mode 100644 index 000000000..e2303c925 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/cs.xaml @@ -0,0 +1,49 @@ + + + + + Stahování pluginu + Úspěšně staženo {0} + Chyba: Nepodařilo se stáhnout plugin + {0} z {1} {2}{3}Chcete odinstalovat tento plugin? Flow se po odinstalování automaticky restartuje. + {0} z {1} {2}{3}Chcete nainstalovat tento plugin? Po instalaci se Flow automaticky restartuje. + Instalovat plugin + Instaluje se plugin + Stáhnout a nainstalovat {0} + Odinstalovat plugin + Plugin {0} byl úspěšně nainstalován. Restartuje se Flow, vyčkejte prosím... + Instalace se nezdařila: nepodařilo se najít metadata souboru plugin.json z rozbaleného souboru Zip. + Chyba: Zásuvný modul se stejnou nebo vyšší verzí než {0} již existuje. + Chyba instalace pluginu + Došlo k chybě při pokusu o instalaci {0} + Nejsou dostupné žádné aktualizace + Všechny pluginy jsou aktuální + {0} z {1} {2}{3}Chcete tento zásuvný modul aktualizovat? Flow se po aktualizaci automaticky restartuje. + Aktualizace Pluginu + Aktualizace tohoto pluginu je k dispozici, chcete ji zobrazit? + Tento plugin je již nainstalován + Stahování manifestu pluginu se nezdařilo + Zkontrolujte, zda se můžete připojit k webu github.com. Tato chyba pravděpodobně znamená, že nemůžete instalovat nebo aktualizovat zásuvné moduly. + Instalace z neznámého zdroje + Tento plugin instalujete z neznámého zdroje a může obsahovat potenciální rizika!{0}{0}Ujistěte se, že víte, odkud tento plugin pochází a že je bezpečný.{0}{0}Chcete pokračovat?{0}{0}(Toto varování můžete vypnout v nastavení) + + + + + Správce pluginů + Správa instalace, odinstalace nebo aktualizace pluginů Flow Launcheru + Neznámý autor + + + Otevřít webovou stránku + Navštivte webové stránky pluginu + Zobrazit zdrojový kód + Zobrazit zdrojový kód pluginu + Navrhněte zlepšení nebo nahlaste chybu + Navrhnout zlepšení nebo nahlásit chybu vývojáři pluginu + Přejít do repozitáře pluginů Flow + Přejděte do repozitáře pluginů Flow Launcher a prohlédněte si příspěvky komunity + + + Upozornění na instalaci z neznámého zdroje + diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml index 362fb41f3..ec7285142 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml @@ -8,42 +8,42 @@ {0} da {1} {2}{3}Vuoi disinstallare questo plugin? Dopo la disinstallazione, Flow si riavvierà automaticamente. {0} da {1} {2}{3}Vuoi installare questo plugin? Dopo l'installazione, Flow si riavvierà automaticamente. Installazione del plugin - Installing Plugin + Installazione del Plugin Scarica e installa {0} Disinstallazione del plugin Plugin installato con successo. Riavvio di Flow, attendere... Impossibile trovare il file dei metadati plugin.json dal file zip estratto. Errore: esiste già un plugin che ha la stessa o maggiore versione con {0}. Errore durante l'installazione del plugin - Error occurred while trying to install {0} + Errore durante il tentativo di installare {0} Nessun aggiornamento disponibile Tutti i plugin sono aggiornati {0} da {1} {2}{3}Vuoi aggiornare questo plugin? Dopo l'aggiornamento, Flow si riavvierà automaticamente. Aggiornamento del plugin Questo plugin ha un aggiornamento, vuoi vederlo? - 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) + Questo plugin è già stato installato + Download del manifesto del plugin fallito + Controlla se puoi connetterti a github.com. Questo errore significa che potresti non essere in grado di installare o aggiornare i plugin. + Installazione da una fonte sconosciuta + Stai installando questo plugin da una fonte sconosciuta e potrebbe contenere potenziali rischi!{0}{0}Si prega di assicurarsi di capire la provenienza di questo plugin e se sia sicuro.{0}{0}Vuoi comunque continuare?{0}{0}(Puoi disattivare questo avviso dalle impostazioni) - Plugins Manager - Management of installing, uninstalling or updating Flow Launcher plugins - Unknown Author + Gestore dei plugin + Gestione dell'installazione, disinstallazione o aggiornamento dei plugin di Flow Launcher + Autore Sconosciuto - 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 + Apri il sito + Visita il sito del plugin + Vedi il codice sorgente + Vedi il codice sorgente del plugin + Suggerisci un miglioramento o segnala un problema + Suggerisci un miglioramento o segnala un problema allo sviluppatore del plugin + Vai al repository dei plugin di Flow + Visita il repository PluginsManifest per vedere i plugin fatti dalla community - Install from unknown source warning + Avviso di installazione da sorgenti sconosciute diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs b/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs index cd554e4d0..bec84f484 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Main.cs @@ -1,4 +1,5 @@ -using Flow.Launcher.Plugin.PluginsManager.ViewModels; +using Flow.Launcher.Core.ExternalPlugins; +using Flow.Launcher.Plugin.PluginsManager.ViewModels; using Flow.Launcher.Plugin.PluginsManager.Views; using System.Collections.Generic; using System.Linq; @@ -34,7 +35,7 @@ namespace Flow.Launcher.Plugin.PluginsManager contextMenu = new ContextMenu(Context); pluginManager = new PluginsManager(Context, Settings); - _ = pluginManager.UpdateManifestAsync(); + await PluginsManifest.UpdateManifestAsync(); } public List LoadContextMenus(Result selectedResult) @@ -50,9 +51,9 @@ namespace Flow.Launcher.Plugin.PluginsManager return query.FirstSearch.ToLower() switch { //search could be url, no need ToLower() when passed in - Settings.InstallCommand => await pluginManager.RequestInstallOrUpdate(query.SecondToEndSearch, token), + Settings.InstallCommand => await pluginManager.RequestInstallOrUpdate(query.SecondToEndSearch, token, query.IsReQuery), Settings.UninstallCommand => pluginManager.RequestUninstall(query.SecondToEndSearch), - Settings.UpdateCommand => await pluginManager.RequestUpdateAsync(query.SecondToEndSearch, token), + Settings.UpdateCommand => await pluginManager.RequestUpdateAsync(query.SecondToEndSearch, token, query.IsReQuery), _ => pluginManager.GetDefaultHotKeys().Where(hotkey => { hotkey.Score = StringMatcher.FuzzySearch(query.Search, hotkey.Title).Score; diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs b/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs index d74ec70b5..0298a2aeb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs @@ -49,26 +49,6 @@ namespace Flow.Launcher.Plugin.PluginsManager Settings = settings; } - private Task _downloadManifestTask = Task.CompletedTask; - - internal Task UpdateManifestAsync(CancellationToken token = default, bool silent = false) - { - if (_downloadManifestTask.Status == TaskStatus.Running) - { - return _downloadManifestTask; - } - else - { - _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; - } - } - internal List GetDefaultHotKeys() { return new List() @@ -182,9 +162,9 @@ namespace Flow.Launcher.Plugin.PluginsManager Context.API.RestartApp(); } - internal async ValueTask> RequestUpdateAsync(string search, CancellationToken token) + internal async ValueTask> RequestUpdateAsync(string search, CancellationToken token, bool usePrimaryUrlOnly = false) { - await UpdateManifestAsync(token); + await PluginsManifest.UpdateManifestAsync(token, usePrimaryUrlOnly); var resultsForUpdate = from existingPlugin in Context.API.GetAllPlugins() @@ -357,9 +337,9 @@ namespace Flow.Launcher.Plugin.PluginsManager return url.StartsWith(acceptedSource) && Context.API.GetAllPlugins().Any(x => x.Metadata.Website.StartsWith(contructedUrlPart)); } - internal async ValueTask> RequestInstallOrUpdate(string search, CancellationToken token) + internal async ValueTask> RequestInstallOrUpdate(string search, CancellationToken token, bool usePrimaryUrlOnly = false) { - await UpdateManifestAsync(token); + await PluginsManifest.UpdateManifestAsync(token, usePrimaryUrlOnly); if (Uri.IsWellFormedUriString(search, UriKind.Absolute) && search.Split('.').Last() == zip) diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json b/Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json index ccc219c7e..c6f4b238a 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": "3.0.2", + "Version": "3.0.3", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.PluginsManager.dll", diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ar.xaml new file mode 100644 index 000000000..c4cc85463 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/ar.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/cs.xaml b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/cs.xaml new file mode 100644 index 000000000..4dc11fcec --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.ProcessKiller/Languages/cs.xaml @@ -0,0 +1,11 @@ + + + + Process Killer + Ukončí spuštěné procesy z Flow Launcheru + + ukončit všechny instance "{0}" + ukončit {0} procesů + ukončit všechny instance + + diff --git a/Plugins/Flow.Launcher.Plugin.ProcessKiller/plugin.json b/Plugins/Flow.Launcher.Plugin.ProcessKiller/plugin.json index 442724055..739b292b2 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":"3.0.1", + "Version":"3.0.2", "Language":"csharp", "Website":"https://github.com/Flow-Launcher/Flow.Launcher.Plugin.ProcessKiller", "IcoPath":"Images\\app.png", diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ar.xaml new file mode 100644 index 000000000..e62854305 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ar.xaml @@ -0,0 +1,92 @@ + + + + + Reset Default + Delete + Edit + Add + Name + Enable + Enabled + Disable + Status + Enabled + Disabled + Location + All Programs + File Type + Reindex + Indexing + Index Sources + Options + UWP Apps + When enabled, Flow will load UWP Applications + Start Menu + When enabled, Flow will load programs from the start menu + Registry + When enabled, Flow will load programs from the registry + PATH + When enabled, Flow will load programs from the PATH environment variable + Hide app path + For executable files such as UWP or lnk, hide the file path from being visible + Search in Program Description + Flow will search program's description + 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? + Another program source with the same location already exists. + + Program Source + Edit directory and status of this program source. + + Update + Program Plugin will only index files with selected suffixes and .url files with selected protocols. + Successfully updated file suffixes + File suffixes can't be empty + Protocols can't be empty + + File Suffixes + URL Protocols + Steam Games + Epic Games + Http/Https + Custom URL Protocols + Custom File Suffixes + + Insert file suffixes you want to index. Suffixes should be separated by ';'. (ex>bat;py) + + + Insert protocols of .url files you want to index. Protocols should be separated by ';', and should end with "://". (ex>ftp://;mailto://) + + + 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 available. + 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 + Error + Successfully disabled this program from displaying in your query + This app is not intended to be run as administrator + Unable to run {0} + + diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/cs.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/cs.xaml new file mode 100644 index 000000000..7be93ad14 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/cs.xaml @@ -0,0 +1,92 @@ + + + + + Obnovit výchozí + Smazat + Editovat + Přidat + Jméno + Povolit + Povoleno + Deaktivovat + Stav + Povoleno + Vypnuto + Lokalita + Všechny programy + Typ souboru + Přeindexovat + Indexování + Zdroje indexu + Možnosti + UWP aplikace + Pokud je povoleno, služba Flow načítá aplikace UWP + Nabídka Start + Pokud je povoleno, Flow načítá programy z nabídky Start + Registr + Pokud je tato možnost povolena, bude služba Flow načítat programy z databáze registru + PATH + Pokud je tato možnost povolena, Flow načte programy z proměnné prostředí PATH + Skrýt cestu k aplikaci + U spustitelných souborů, jako jsou UWP nebo odkazy, nezobrazujte cestu k souborům + Povolit popis programu + Flow bude vyhledávat v popisu programu + Přípony + Max. hloubka + + Adresář + Procházet + Přípony souboru: + Maximální hloubka vyhledávání (-1 není omezená): + + Prosím vyberte zdroj programu + Jste si jisti, že chcete odstranit vybrané zdroje programů? + Již existuje jiný zdroj programu se stejným umístěním. + + Zdroj programu + Upravit adresář a stav tohoto zdroje programu. + + Aktualizovat + Plugin programu bude indexovat pouze soubory s vybranými příponami a .url soubory s vybranými protokoly. + Přípony souboru byly úspěšně aktualizovány + Pole přípony nesmí být prázdné + Protokoly musí být vyplněny + + Přípony souborů + Protokoly URL + Hry ve službě Steam + Hry v službě Epic Games + Http/Https + Vlastní URL protokoly + Vlastní přípony souborů + + Vložte přípony souborů, které chcete indexovat. Přípony by měly být odděleny znakem ';'. (ex>bat;py) + + + Vložte protokoly souborů .url, které chcete indexovat. Protokoly by měly být odděleny ';' a měly by skončit "://". (ex>ftp://;mailto://) + + + Spustit jako jiný uživatel + Spustit jako správce + Otevřít umístění složky + Zakázat zobrazování tohoto programu + + Program  + Vyhledávání programů ve Flow Launcheru + + Neplatná cesta + + Vlastní Průzkumník + Arg + Umístění úvodní složky můžete upravit vložením proměnných prostředí, které chcete použít. Dostupnost proměnných prostředí můžete otestovat pomocí příkazového řádku. + Zadejte argumenty, které chcete přidat pro správce souborů. %s pro nadřazenou složku, %f pro úplnou cestu (funguje pouze pro win32). Podrobnosti naleznete na webové stránce správce souborů. + + + Úspěšné + Chyba + Tento program se již nebude zobrazovat ve výsledcích vyhledávání + Tato aplikace není určena ke spuštění jako administrátor + Nelze spustit {0} + + diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml index 46a28f00a..d13f926d6 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml @@ -8,10 +8,10 @@ Aggiungi Name Enable - Enabled + Abilitato Disable Status - Enabled + Abilitato Disabled Location All Programs @@ -69,7 +69,7 @@ Run As Different User Run As Administrator - Open containing folder + Apri percorso file Disable this program from displaying Program @@ -78,15 +78,15 @@ Invalid Path Customized Explorer - Args + Parametri 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 available. - 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. + Inserisci i parametri personalizzati che vuoi aggiungere per il tuo Esplora Risorse personalizzato. %s per la cartella superiore, %f per il percorso completo (che funziona solo per win32). Controlla il sito dell'Esplora Risorse per i dettagli. Successo Error - Successfully disabled this program from displaying in your query - This app is not intended to be run as administrator + Questo programma è stato disabilitato con successo dall'apparire nella tua ricerca + Questa applicazione non è destinata ad essere eseguita come amministratore Unable to run {0} diff --git a/Plugins/Flow.Launcher.Plugin.Program/plugin.json b/Plugins/Flow.Launcher.Plugin.Program/plugin.json index f407dba85..db467c4e6 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": "3.1.0", + "Version": "3.1.1", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.Program.dll", diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ar.xaml new file mode 100644 index 000000000..0ccfd8c9a --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ar.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 + 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/cs.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/cs.xaml new file mode 100644 index 000000000..2c764d845 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/cs.xaml @@ -0,0 +1,15 @@ + + + + Nahradit Win+R + Po dokončení příkazu příkazový řádek nezavírejte + Vždy spustit jako správce + Spustit jako jiný uživatel + Shell + Umožní spouštět systémové příkazy z Flow Launcheru + tento příkaz byl spuštěn {0} krát + spustit příkaz prostřednictvím příkazového řádku + Spustit jako správce + Kopírovat příkaz + Zobrazit pouze počet nejpoužívanějších příkazů: + diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/da.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml index cbe96b95c..3fa7c64fa 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/de.xaml @@ -6,7 +6,7 @@ Immer als Administrator ausführen Als anderer Benutzer ausführen Kommandozeile - Bereitstellung der Kommandozeile in Flow Launcher. Befehle müssem mit > starten + Allows to execute system commands from Flow Launcher Dieser Befehl wurde {0} mal ausgeführt Führe Befehle mittels Kommandozeile aus Als Administrator ausführen diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml index 8b312bc93..9a692cac3 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml @@ -1,4 +1,4 @@ - @@ -7,7 +7,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml index 7887efa8f..284a2a0e6 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es-419.xaml @@ -6,7 +6,7 @@ Siempre ejecutar como administrador Ejecutar como otro usuario Shell - Permite ejecutar comandos del sistema desde Flow Launcher. Los comandos deben comenzar con > + Allows to execute system commands from Flow Launcher este comando ha sido ejecutado {0} veces ejecutar comando a través del shell de comandos Ejecutar como administrador diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml index 7ecf197af..8bf1a2c11 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/es.xaml @@ -6,7 +6,7 @@ Ejecutar siempre como administrador Ejecutar como usuario diferente Terminal - Permite ejecutar comandos del sistema desde Flow Launcher. Los comandos deben comenzar con > + Permite ejecutar comandos del sistema desde Flow Launcher este comando ha sido ejecutado {0} veces ejecutar comando en la terminal Ejecutar como administrador diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml index f1d728620..1268c0189 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/fr.xaml @@ -6,7 +6,7 @@ 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 > + Allows to execute system commands from Flow Launcher cette commande a été exécutée {0} fois exécuter la commande via le shell de commande Exécuter en tant qu'administrateur diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml index 87eb96609..de40b0c47 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/it.xaml @@ -1,15 +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: + Sostituisci Win+R + Non chiudere il prompt dei comandi dopo l'esecuzione dei comandi + Esegui sempre come amministratore + Esegui come utente differente + Terminale + Allows to execute system commands from Flow Launcher + questo comando è stato eseguito {0} volte + esegui il comando attraverso riga di comando + Esegui Come Amministratore + Copia il comando + Mostra solo il numero di comandi più usati: diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ja.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ko.xaml index 4b29f6468..014a46dfc 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ko.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ko.xaml @@ -6,7 +6,7 @@ 항상 관리자 권한으로 실행 다른 유저 권한으로 실행 - Flow Launcher에서 시스템 명령을 실행할 수 있습니다. 명령은 >로 시작해야 합니다. + Allows to execute system commands from Flow Launcher 이 명령은 {0}회 실행되었습니다. 쉘을 통해 명령 실행 관리자 권한으로 실행 diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nb.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/nl.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml index 9e4c5de36..c851be93b 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pl.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Wiersz poleceń - Pozwala wykonywać komend wiersza polecania z Flow Launchera. Polecania zaczynają się od > + Allows to execute system commands from Flow Launcher to polecenie zostało wykonane {0} razy wykonaj to polecenie w wierszu poleceń Uruchom jako administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml index 44981ee2f..6a0a3c8fd 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-br.xaml @@ -6,7 +6,7 @@ Sempre executar como administrador Run as different user Console - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml index fc0348e2e..33d7f35a6 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/pt-pt.xaml @@ -6,7 +6,7 @@ Executar sempre como administrador Executar com outro utilizador Consola - Permite a execução de comandos do sistema no Flow Launcher. Deve iniciar o comando o '>' + Permite executar comandos do sistema via Flow Launcher este comando foi executado {0} vezes executar comando através de uma consola Executar como administrador diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/ru.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml index cc63d94ac..0b76303df 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sk.xaml @@ -6,7 +6,7 @@ Spustiť vždy ako správca Spustiť ako iný používateľ Shell - Umožňuje spúšťať systémové príkazy z Flow Launcheru. Príkazy začínajú znakom > + Umožňuje vykonávať systémové príkazy z Flow Launchera tento príkaz bol vykonaný {0}-krát vykonať príkaz cez príkazový riadok Spustiť ako správca diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/sr.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml index 5e178b9dc..c6433cef1 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/tr.xaml @@ -6,7 +6,7 @@ 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. + Allows to execute system commands from Flow Launcher Bu komut {0} kez çalıştırıldı Komut isteminde çalıştır Yönetici Olarak Çalıştır diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml index 87eb96609..0ccfd8c9a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/uk-UA.xaml @@ -6,7 +6,7 @@ Always run as administrator Run as different user Shell - Allows to execute system commands from Flow Launcher. Commands should start with > + Allows to execute system commands from Flow Launcher this command has been executed {0} times execute command through command shell Run As Administrator diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml index dc29de71e..916542c3a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-cn.xaml @@ -6,7 +6,7 @@ 始终以管理员身份运行 以其他用户身份运行 命令行 - 提供从 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 8ca3f6dc7..7ddc58918 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-tw.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/zh-tw.xaml @@ -6,7 +6,7 @@ 一律以系統管理員身分執行 Run as different user 命令提示字元 - 提供從 Flow Launcher 中執行命令提示字元的功能,指令應該以>開頭 + Allows to execute system commands from Flow Launcher 此指令已執行了 {0} 次 執行指令 以系統管理員身分執行 diff --git a/Plugins/Flow.Launcher.Plugin.Shell/plugin.json b/Plugins/Flow.Launcher.Plugin.Shell/plugin.json index 64f257d80..8edca3e2a 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/plugin.json +++ b/Plugins/Flow.Launcher.Plugin.Shell/plugin.json @@ -4,7 +4,7 @@ "Name": "Shell", "Description": "Provide executing commands from Flow Launcher", "Author": "qianlifeng", - "Version": "3.0.2", + "Version": "3.1.0", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.Shell.dll", diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ar.xaml new file mode 100644 index 000000000..9ada8533b --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ar.xaml @@ -0,0 +1,40 @@ + + + + + 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 Flow Launcher's settings + Put computer to sleep + Empty recycle bin + Open recycle bin + Indexing Options + 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? + Are you sure you want to log off? + + System Commands + Provides System related commands. e.g. shutdown, lock, settings etc. + + diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/cs.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/cs.xaml new file mode 100644 index 000000000..7ac077c77 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/cs.xaml @@ -0,0 +1,40 @@ + + + + + Příkaz + Popis + + Vypnout počítač + Restartovat počítač + Restartování počítače s pokročilými možnostmi spouštění v nouzovém režimu a režimu ladění a dalšími možnostmi + Odhlásit se + Zamknout počítač + Zavřít Flow Launcher + Restartovat Flow Launcher + Úprava nastavení Flow Launcheru + Uspat počítač + Vysypat Koš + Otevřít koš + Možnosti indexování + Uvést Počítač Do Hibernace + Uložení všech nastavení Flow Launcheru + Aktualizace všech nových dat pluginů + Otevřít umístění protokolu Flow Launcheru + Zkontrolovat aktualizace Flow Launcheru + Další nápovědu a tipy k jeho používání najdete v dokumentaci ke službě Flow Launcher + Otevře místo, kde jsou uložena nastavení Flow Launcher + + + Úspěšné + Uložení všech nastavení Flow Launcheru + Aktualizace všech dat pluginů + Opravdu chcete vypnout počítač? + Opravdu chcete počítač restartovat? + Opravdu chcete restartovat počítač s rozšířenými možnostmi spouštění? + Opravdu se chcete odhlásit? + + Systémové příkazy + Poskytuje příkazy související se systémem, jako je vypnutí, uzamčení počítače atd. + + diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml index fd1a23b9f..3451f4aa6 100644 --- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/it.xaml @@ -2,39 +2,39 @@ - Command - Description + Comando + Descrizione - 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 Flow Launcher's settings - Put computer to sleep - Empty recycle bin - Open recycle bin - Indexing Options - 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 + Spegni il computer + Riavvia il Computer + Riavvia il computer con le Opzioni di Avvio Avanzato per le Modalità di debug e Provvisoria, così come altre opzioni + Disconnetti + Blocca questo computer + Chiudi Flow Launcher + Riavvia Flow Launcher + Modifica le impostazioni di Flow Launcher + Metti il computer in modalità sospensione + Svuota il Cestino + Apri il Cestino + Opzioni di Indicizzazione + Iberna il computer + Salva tutte le impostazioni di Flow Launcher + Aggiorna i dati del plugin con nuovi contenuti + Apri la posizione del log di Flow Launcher + Controlla il nuovo aggiornamento di Flow Launcher + Visita la documentazione di Flow Launcher per maggiori informazioni e suggerimenti su come usarlo + Apri la posizione in cui vengono memorizzate le impostazioni di Flow Launcher 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? - Are you sure you want to log off? + Tutte le impostazioni di Flow Launcher sono state salvate + Ricaricato tutti i dati del plugin applicabili + Sei sicuro di voler spegnere il computer? + Sei sicuro di voler riavviare il computer? + Sei sicuro di voler riavviare il computer con le Opzioni di Avvio Avanzate? + Sei sicuro di volerti disconettere? - System Commands - Provides System related commands. e.g. shutdown, lock, settings etc. + Comandi di Sistema + Fornisce comandi relativi al sistema, ad esempio spegnimento, blocco, impostazioni ecc. diff --git a/Plugins/Flow.Launcher.Plugin.Sys/plugin.json b/Plugins/Flow.Launcher.Plugin.Sys/plugin.json index 2d91bfedf..a893c0ea2 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": "3.0.2", + "Version": "3.0.3", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.Sys.dll", diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/ar.xaml new file mode 100644 index 000000000..418731021 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/ar.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/cs.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/cs.xaml new file mode 100644 index 000000000..92974fd6d --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/cs.xaml @@ -0,0 +1,17 @@ + + + + Otevřít vyhledávání v: + Nové okno + Nová karta + + Otevřít URL:{0} + Nelze otevřít URL:{0} + + URL + Otevření zadané adresy URL z nástroje Flow Launcher + + Nastavte cestu k prohlížeči: + Vybrat + Aplikace(*.exe)|*.exe|Všechny soubory|*. * + diff --git a/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml index 1bed23b88..344c6fc1e 100644 --- a/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Url/Languages/it.xaml @@ -1,17 +1,17 @@  - Open search in: - New Window - New Tab + Apri ricerca in: + Nuova Finestra + Nuova Scheda - Open url:{0} - Can't open url:{0} + Apri url:{0} + Impossibile aprire l'url:{0} URL - Open the typed URL from Flow Launcher + Apri l'URL digitato da Flow Launcher - Please set your browser path: + Imposta il percorso del tuo browser: Scegli - Application(*.exe)|*.exe|All files|*.* + Applicazione(*.exe)|*.exe|Tutti i file|*.* diff --git a/Plugins/Flow.Launcher.Plugin.Url/plugin.json b/Plugins/Flow.Launcher.Plugin.Url/plugin.json index aad6cb0b7..da1a0bfd5 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": "3.0.2", + "Version": "3.0.3", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.Url.dll", diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ar.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ar.xaml new file mode 100644 index 000000000..62b2a7a4b --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ar.xaml @@ -0,0 +1,51 @@ + + + + Search Source Setting + Open search in: + New Window + New Tab + Set browser from path: + Choose + Delete + Edit + Add + Enabled + Enabled + Disabled + 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 want to add a search for a particular website to Flow, first enter a dummy text string in the search bar of that website, and launch the search. Now copy the contents of the browser's address bar, and paste it in the URL field below. Replace your test string with {q}. For example, if you search for casino on Netflix, its address bar reads + https://www.netflix.com/search?q=Casino + + Now copy this entire string and paste it in the URL field below. + Then replace casino with {q}. + Thus, the generic formula for a search on Netflix is https://www.netflix.com/search?q={q} + + + + + + Title + Status + 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/cs.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/cs.xaml new file mode 100644 index 000000000..e9f59929b --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/cs.xaml @@ -0,0 +1,51 @@ + + + + Nastavení zdroje vyhledávání + Otevřít vyhledávání v: + Nové okno + Nová karta + Nastavte cestu k prohlížeči: + Vybrat + Smazat + Editovat + Přidat + Povoleno + Povoleno + Deaktivován + Potvrdit + Aktivační příkaz + URL + Hledat + Používejte automatické dokončování vyhledávaných výrazů: + Automatické doplnění údajů z: + Vyberte webové vyhledávání + Opravdu chcete odstranit {0}? + Chcete-li do služby Flow přidat vyhledávání na konkrétní webové stránce, zadejte nejprve do vyhledávacího pole této webové stránky testovací textový řetězec a spusťte vyhledávání. Nyní zkopírujte obsah adresního řádku prohlížeče a vložte jej do níže uvedeného pole URL. Nahraďte svůj testovací řetězec tímto {q}. Pokud například hledáte kasino na Netflixu, bude adresa vypadat takto + https://www.netflix.com/search?q=Kasíno + + Nyní celý tento řetězec zkopírujte a vložte do pole URL níže. + Poté nahraďte řetězec casino řetězcem {q}. + Obecný vzorec pro vyhledávání Netflixu je tedy https://www.netflix.com/search?q={q} + + + + + + Název + Stav + Vybrat ikonu + Ikona + Zrušit + Neplatné webové vyhledávání + Zadejte název + Zadejte aktivační příkaz + Zadejte URL + Zadaný aktivační příkaz již existuje, zadejte jiný aktivační příkaz + Úspěšné + Poznámka: Obrázky do této složky vkládat nemusíte, po aktualizaci Flow Launcheru zmizí. Flow Launcher automaticky zkopíruje obrázky mimo tuto složku do vlastního umístění obrázků pluginu. + + Webové vyhledávání + Umožňuje vyhledávání na webu + + diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml index ef3acd0e5..6be89607d 100644 --- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml @@ -2,16 +2,16 @@ Search Source Setting - Open search in: - New Window - New Tab + Apri ricerca in: + Nuova Finestra + Nuova Scheda Imposta il browser dal percorso: Scegli Cancella Modifica Aggiungi - Enabled - Enabled + Abilitato + Abilitato Disabled Confirm Action Keyword @@ -20,7 +20,7 @@ Use Search Query Autocomplete: Autocomplete Data from: Please select a web search - Are you sure you want to delete {0}? + Sei sicuro di voler eliminare {0}? If you want to add a search for a particular website to Flow, first enter a dummy text string in the search bar of that website, and launch the search. Now copy the contents of the browser's address bar, and paste it in the URL field below. Replace your test string with {q}. For example, if you search for casino on Netflix, its address bar reads https://www.netflix.com/search?q=Casino diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json b/Plugins/Flow.Launcher.Plugin.WebSearch/plugin.json index ac477c501..d4100c050 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": "3.0.2", + "Version": "3.0.3", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.WebSearch.dll", diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ar-SA.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ar-SA.resx new file mode 100644 index 000000000..53715bf23 --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.ar-SA.resx @@ -0,0 +1,2514 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + Change device installation settings + + + Turn off background images + + + Navigation properties + + + Media streaming options + + + Make a file type always open in a specific program + + + Change the Narrator’s voice + + + Find and fix keyboard problems + + + Use screen reader + + + Show which workgroup this computer is on + + + Change mouse wheel settings + + + Manage computer certificates + + + Find and fix problems + + + Change settings for content received using Tap and send + + + Change default settings for media or devices + + + Print the speech reference card + + + Calibrate display colour + + + Manage file encryption certificates + + + View recent messages about your computer + + + Give other users access to this computer + + + Show hidden files and folders + + + Change Windows To Go start-up options + + + See which processes start up automatically when you start Windows + + + Tell if an RSS feed is available on a website + + + Add clocks for different time zones + + + Add a Bluetooth device + + + Customise the mouse buttons + + + Set tablet buttons to perform certain tasks + + + View installed fonts + + + Change the way currency is displayed + + + Edit group policy + + + Manage browser add-ons + + + Check processor speed + + + Check firewall status + + + Send or receive a file + + + Add or remove user accounts + + + Edit the system environment variables + + + Manage BitLocker + + + Auto-hide the taskbar + + + Change sound card settings + + + Make changes to accounts + + + Edit local users and groups + + + View network computers and devices + + + Install a program from the network + + + View scanners and cameras + + + Microsoft IME Register Word (Japanese) + + + Restore your files with File History + + + Turn On-Screen keyboard on or off + + + Block or allow third-party cookies + + + Find and fix audio recording problems + + + Create a recovery drive + + + Microsoft New Phonetic Settings + + + Generate a system health report + + + Fix problems with your computer + + + Back up and Restore (Windows 7) + + + Preview, delete, show or hide fonts + + + Microsoft Quick Settings + + + View reliability history + + + Access RemoteApp and desktops + + + Set up ODBC data sources + + + Reset Security Policies + + + Block or allow pop-ups + + + Turn autocomplete in Internet Explorer on or off + + + Microsoft Pinyin SimpleFast Options + + + Change what closing the lid does + + + Turn off unnecessary animations + + + Create a restore point + + + Turn off automatic window arrangement + + + Troubleshooting History + + + Diagnose your computer's memory problems + + + View recommended actions to keep Windows running smoothly + + + Change cursor blink rate + + + Add or remove programs + + + Create a password reset disk + + + Configure advanced user profile properties + + + Start or stop using AutoPlay for all media and devices + + + Change Automatic Maintenance settings + + + Specify single- or double-click to open + + + Select users who can use remote desktop + + + Show which programs are installed on your computer + + + Allow remote access to your computer + + + View advanced system settings + + + How to install a program + + + Change how your keyboard works + + + Automatically adjust for daylight saving time + + + Change the order of Windows SideShow gadgets + + + Check keyboard status + + + Control the computer without the mouse or keyboard + + + Change or remove a program + + + Change multi-touch gesture settings + + + Set up ODBC data sources (64-bit) + + + Configure proxy server + + + Change your homepage + + + Group similar windows on the taskbar + + + Change Windows SideShow settings + + + Use audio description for video + + + Change workgroup name + + + Find and fix printing problems + + + Change when the computer sleeps + + + Set up a virtual private network (VPN) connection + + + Accommodate learning abilities + + + Set up a dial-up connection + + + Set up a connection or network + + + How to change your Windows password + + + Make it easier to see the mouse pointer + + + Set up iSCSI initiator + + + Accommodate low vision + + + Manage offline files + + + Review your computer's status and resolve issues + + + Microsoft ChangJie Settings + + + Replace sounds with visual cues + + + Change temporary Internet file settings + + + Connect to the Internet + + + Find and fix audio playback problems + + + Change the mouse pointer display or speed + + + Back up your recovery key + + + Save backup copies of your files with File History + + + View current accessibility settings + + + Change tablet pen settings + + + Change how your mouse works + + + Show how much RAM is on this computer + + + Edit power plan + + + Adjust system volume + + + Defragment and optimise your drives + + + Set up ODBC data sources (32-bit) + + + Change Font Settings + + + Magnify portions of the screen using Magnifier + + + Change the file type associated with a file extension + + + View event logs + + + Manage Windows Credentials + + + Set up a microphone + + + Change how the mouse pointer looks + + + Change power-saving settings + + + Optimise for blindness + + + + + + + Turn Windows features on or off + + + Show which operating system your computer is running + + + View local services + + + Manage Work Folders + + + Encrypt your offline files + + + Train the computer to recognise your voice + + + Advanced printer setup + + + Change default printer + + + Edit environment variables for your account + + + Optimise visual display + + + Change mouse click settings + + + Change advanced colour management settings for displays, scanners and printers + + + Let Windows suggest Ease of Access settings + + + Clear disk space by deleting unnecessary files + + + View devices and printers + + + Private Character Editor + + + Record steps to reproduce a problem + + + Adjust the appearance and performance of Windows + + + Settings for Microsoft IME (Japanese) + + + Invite someone to connect to your PC and help you, or offer to help someone else + + + Run programs made for previous versions of Windows + + + Choose the order of how your screen rotates + + + Change how Windows searches + + + Set flicks to perform certain tasks + + + Change account type + + + Change screen saver + + + Change User Account Control settings + + + Turn on easy access keys + + + Identify and repair network problems + + + Find and fix networking and connection problems + + + Play CDs or other media automatically + + + View basic information about your computer + + + Choose how you open links + + + Allow Remote Assistance invitations to be sent from this computer + + + Task Manager + + + Turn flicks on or off + + + Add a language + + + View network status and tasks + + + Turn Magnifier on or off + + + See the name of this computer + + + View network connections + + + Perform recommended maintenance tasks automatically + + + Manage disk space used by your offline files + + + Turn High Contrast on or off + + + Change the way time is displayed + + + Change how web pages are displayed in tabs + + + Change the way dates and lists are displayed + + + Manage audio devices + + + Change security settings + + + Check security status + + + Delete cookies or temporary files + + + Specify which hand you write with + + + Change touch input settings + + + How to change the size of virtual memory + + + Hear text read aloud with Narrator + + + Set up USB game controllers + + + Show which domain your computer is on + + + View all problem reports + + + 16-Bit Application Support + + + Set up dialling rules + + + Enable or disable session cookies + + + Give administrative rights to a domain user + + + Choose when to turn off display + + + Move the pointer with the keypad using MouseKeys + + + Change Windows SideShow-compatible device settings + + + Adjust commonly used mobility settings + + + Change text-to-speech settings + + + Set the time and date + + + Change location settings + + + Change mouse settings + + + Manage Storage Spaces + + + Show or hide file extensions + + + Allow an app through Windows Firewall + + + Change system sounds + + + Adjust ClearType text + + + Turn screen saver on or off + + + Find and fix windows update problems + + + Change Bluetooth settings + + + Connect to a network + + + Change the search provider in Internet Explorer + + + Join a domain + + + Add a device + + + Find and fix problems with Windows Search + + + Choose a power plan + + + Change how the mouse pointer looks when it’s moving + + + Uninstall a program + + + Create and format hard disk partitions + + + Change date, time or number formats + + + Change PC wake-up settings + + + Manage network passwords + + + Change input methods + + + Manage advanced sharing settings + + + Change battery settings + + + Rename this computer + + + Lock or unlock the taskbar + + + Manage Web Credentials + + + Change the time zone + + + Start speech recognition + + + View installed updates + + + What's happened to the Quick Launch toolbar? + + + Change search options for files and folders + + + Adjust settings before giving a presentation + + + Scan a document or picture + + + Change the way measurements are displayed + + + Press key combinations one at a time + + + Restore data, files or computer from backup (Windows 7) + + + Set your default programs + + + Set up a broadband connection + + + Calibrate the screen for pen or touch input + + + Manage user certificates + + + Schedule tasks + + + Ignore repeated keystrokes using FilterKeys + + + Find and fix bluescreen problems + + + Hear a tone when keys are pressed + + + Delete browsing history + + + Change what the power buttons do + + + Create standard user account + + + Take speech tutorials + + + View system resource usage in Task Manager + + + Create an account + + + Get more features with a new edition of Windows + + + Control Panel + + + TaskLink + + + Unknown + + \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx new file mode 100644 index 000000000..c7a6a249f --- /dev/null +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.cs-CZ.resx @@ -0,0 +1,2514 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 aplikaci + Area System + + + access.cpl + File name, Should not translated + + + Zjednodušené možnosti ovládání + Area Control Panel (legacy settings) + + + Doplňkové aplikace + Area Privacy + + + Přístup na pracoviště či do školy + Area UserAccounts + + + Informace o účtu + Area Privacy + + + Účty + Area SurfaceHub + + + Centrum akcí + Area Control Panel (legacy settings) + + + Aktivace + Area UpdateAndSecurity + + + Historie aktivity + Area Privacy + + + Přidat hardware + Area Control Panel (legacy settings) + + + Přidat a odebrat programy + Area Control Panel (legacy settings) + + + Přidejte svůj telefon + Area Phone + + + Nástroje pro správu + Area System + + + Rozšířené nastavení obrazovky + Area System, only available on devices that support advanced display options + + + Pokročilé grafické nastavení + + + Reklamní identifikace + Area Privacy, Deprecated in Windows 10, version 1809 and later + + + Režim „V letadle“ + Area NetworkAndInternet + + + Alt+Tab + Means the key combination "Tabulator+Alt" on the keyboard + + + Alternativní názvy + + + Animace + + + Barva aplikace + + + Diagnostika aplikací + Area Privacy + + + Funkce aplikace + Area Apps + + + Aplikace + Short/modern name for application + + + Aplikace a funkce + Area Apps + + + Nastavení 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. + + + Aplikace pro weby + Area Apps + + + Hlasitost aplikací a předvolby zařízení + Area System, Added in Windows 10, version 1903 + + + appwiz.cpl + File name, Should not translated + + + Oblast + Mean the settings area or settings category + + + Účty + + + Nástroje pro správu + Area Control Panel (legacy settings) + + + Vzhled a přizpůsobení + + + Aplikace + + + Hodiny a oblast + + + Ovládací panel + + + Cortana + + + Zařízení + + + Snadný přístup + + + Extra + + + Hraní her + + + Hardware a zvuk + + + Hlavní stránka + + + Smíšená realita + + + Síť a internet + + + Přizpůsobení + + + Telefon + + + Soukromí + + + Programy + + + SurfaceHub + + + Systém + + + Systém a zabezpečení + + + Čas a jazyk + + + Aktualizace a zabezpečení + + + Uživatelské účty + + + Přiřazený přístup + + + Zvuk + Area EaseOfAccess + + + Zvuková upozornění + + + Zvuk a řeč + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + Automatické stahování souborů + Area Privacy + + + Automatické přehrávání + Area Device + + + Pozadí + Area Personalization + + + Aplikace na pozadí + Area Privacy + + + Záloha + Area UpdateAndSecurity + + + Záloha a obnovení + Area Control Panel (legacy settings) + + + Spořič baterie + Area System, only available on devices that have a battery, such as a tablet + + + Nastavení spořiče baterie + Area System, only available on devices that have a battery, such as a tablet + + + Podrobnosti o využití baterie + + + Využití baterie + Area System, only available on devices that have a battery, such as a tablet + + + Biometrická zařízení + Area Control Panel (legacy settings) + + + Šifrování BitLocker disku + Area Control Panel (legacy settings) + + + Modré světlo + + + Bluetooth + Area Device + + + Zařízení Bluetooth + Area Control Panel (legacy settings) + + + Modrá-žlutá + + + Bopomofo IME + Area TimeAndLanguage + + + bpmf + Should not translated + + + Vysílání + Area Gaming + + + Kalendář + Area Privacy + + + Historie hovorů + Area Privacy + + + volá + + + Fotoaparát + Area Privacy + + + Cangjie IME + Area TimeAndLanguage + + + Caps Lock + Mean the "Caps Lock" key + + + Mobilní síť a SIM karta + Area NetworkAndInternet + + + Výběr složek, které se mají zobrazit v nabídce Start + Area Personalization + + + Klientská služba pro NetWare + Area Control Panel (legacy settings) + + + Schránka + Area System + + + Skryté titulky + Area EaseOfAccess + + + Barevné filtry + Area EaseOfAccess + + + Správa barev + Area Control Panel (legacy settings) + + + Barvy + Area Personalization + + + Příkaz + The command to direct start a setting + + + Připojená zařízení + Area Device + + + Kontakty + Area Privacy + + + Ovládací panel + Type of the setting is a "(legacy) Control Panel setting" + + + Kopírovat příkaz + + + Izolace jádra + Means the protection of the system core + + + Cortana + Area Cortana + + + Cortana na mých zařízeních + Area Cortana + + + Cortana – jazyk + Area Cortana + + + Správce pověření + Area Control Panel (legacy settings) + + + Několik zařízení + + + Vlastní zařízení + + + Tmavá barva + + + Tmavý režim + + + Využití dat + Area NetworkAndInternet + + + Datum a čas + Area TimeAndLanguage + + + Výchozí aplikace + Area Apps + + + Výchozí fotoaparát + Area Device + + + Výchozí umístění + Area Control Panel (legacy settings) + + + Výchozí programy + Area Control Panel (legacy settings) + + + Výchozí místo uložení + Area System + + + Optimalizace doručení + Area UpdateAndSecurity + + + desk.cpl + File name, Should not translated + + + Motiv plochy + Area Control Panel (legacy settings) + + + deuteranopia + Medical: Mean you don't can see red colors + + + Správce zařízení + Area Control Panel (legacy settings) + + + Zařízení a tiskárny + Area Control Panel (legacy settings) + + + DHCP + Should not translated + + + Telefonní připojení + Area NetworkAndInternet + + + Přímý přístup + Area NetworkAndInternet, only available if DirectAccess is enabled + + + Přímé otevření telefonu + Area EaseOfAccess + + + Obrazovka + Area EaseOfAccess + + + Vlastnosti zobrazení + Area Control Panel (legacy settings) + + + DNS + Should not translated + + + Dokumenty + Area Privacy + + + Duplikování obrazovky + Area System + + + Během těchto hodin + Area System + + + Centrum pro zjednodušení přístupu + Area Control Panel (legacy settings) + + + Vydání + Means the "Windows Edition" + + + E-mail + Area Privacy + + + E-mail a účty + Area UserAccounts + + + Šifrování + Area System + + + Prostředí + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + Ethernet + Area NetworkAndInternet + + + Ochrana před zneužitím + + + Extra + Area Extra, , only used for setting of 3rd-Party tools + + + Ovládání zrakem + Area EaseOfAccess + + + Senzor očí + Area Privacy, requires eyetracker hardware + + + Rodina a další uživatelé + Area UserAccounts + + + Využití a diagnostika + Area Privacy + + + Souborový systém + Area Privacy + + + Rychlé vyhledávání + Area Control Panel (legacy settings) + + + findfast.cpl + File name, Should not translated + + + Najít moje zařízení + Area UpdateAndSecurity + + + Firewall + + + Asistent pro lepší soustředění + Area System + + + Asistent pro lepší soustředění + Area System + + + Možnosti složky + Area Control Panel (legacy settings) + + + Fonty + Area EaseOfAccess + + + Pro vývojáře + Area UpdateAndSecurity + + + Herní lišta + Area Gaming + + + Herní ovladače + Area Control Panel (legacy settings) + + + Game DVR + Area Gaming + + + Herní režim + Area Gaming + + + Brána + Should not translated + + + Základní nastavení + Area Privacy + + + Získat programy + Area Control Panel (legacy settings) + + + Začínáme + Area Control Panel (legacy settings) + + + Pohled + Area Personalization, Deprecated in Windows 10, version 1809 and later + + + Nastavení grafiky + Area System + + + Stupně šedé + + + Zelený týden + Mean you don't can see green colors + + + Displej sluchátek + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + Vysoký kontrast + Area EaseOfAccess + + + Holografický zvuk + + + Holografické prostředí + + + Holografické sluchátka + + + Správa holografů + + + Domácí skupina + Area Control Panel (legacy settings) + + + ID + MEans The "Windows Identifier" + + + Obrázek + + + Možnosti indexování + Area Control Panel (legacy settings) + + + inetcpl.cpl + File name, Should not translated + + + Infračervený + Area Control Panel (legacy settings) + + + Přizpůsobení rukopisu a psaní na klávesnici + Area Privacy + + + Možnosti Internetu + Area Control Panel (legacy settings) + + + intl.cpl + File name, Should not translated + + + Invertované barvy + + + IP + Should not translated + + + Izolované prohlížení + + + Nastavení japonského IME + Area TimeAndLanguage, available if the Microsoft Japan input method editor is installed + + + joy.cpl + File name, Should not translated + + + Vlastnosti joysticku + Area Control Panel (legacy settings) + + + jpnime + Should not translated + + + Klávesnice + Area EaseOfAccess + + + Klávesnice + + + Tlačítka + + + Jazyk + Area TimeAndLanguage + + + Světlá barva + + + Světlý režim + + + Poloha + Area Privacy + + + Zamykací obrazovka + Area Personalization + + + Lupa + Area EaseOfAccess + + + Mail - Microsoft Exchange alebo Windows Messaging + Area Control Panel (legacy settings) + + + main.cpl + File name, Should not translated + + + Spravovat známé sítě + Area NetworkAndInternet + + + Spravovat volitelné funkce + Area Apps + + + Zasílání zpráv + Area Privacy + + + Připojení zpoplatněné podle objemu dat + + + Mikrofon + 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í zařízení + + + Mobilní přístupový bod + Area NetworkAndInternet + + + modem.cpl + File name, Should not translated + + + Mono + + + Další podrobnosti + Area Cortana + + + Poloha + Area Privacy + + + Myš + Area EaseOfAccess + + + Myš a touchpad + Area Device + + + Vlastnosti myší, písma, klávesnice a tiskárny + Area Control Panel (legacy settings) + + + Textový kurzor + Area EaseOfAccess + + + Spravovat zvuková zařízení + 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 + + + Síť + Area NetworkAndInternet + + + Síť a centrum sdílení + Area Control Panel (legacy settings) + + + Připojení k síti + Area Control Panel (legacy settings) + + + Vlastnosti sítě + Area Control Panel (legacy settings) + + + Průvodce nastavení sítě + Area Control Panel (legacy settings) + + + Stav sítě + Area NetworkAndInternet + + + NFC + Area NetworkAndInternet + + + NFC transakce + "NFC should not translated" + + + Noční světlo + + + Nastavení nočního světla + Area System + + + Poznámka + + + K dispozici pouze v případě, že je k zařízení připojeno mobilní zařízení. + + + K dispozici pouze na zařízeních, která podporují pokročilé grafické možnosti. + + + K dispozici pouze v zařízeních s baterií, například v tabletu. + + + V systému Windows 10 verze 1809 (sestavení 17763) a novějším zastaralé. + + + K dispozici pouze v případě, že je spárováno zařízení Dial. + + + Dostupné pouze pokud je povolen DirectAccess. + + + Dostupné pouze na zařízeních, která podporují pokročilé možnosti zobrazení. + + + Zobrazí se pouze v případě, že je uživatel zaregistrován ve WIP. + + + Vyžaduje eyetracker hardware. + + + K dispozici, pokud je nainstalován editor vstupních metod Microsoft Japan. + + + K dispozici, pokud je nainstalován editor vstupních metod Microsoft Pinyin. + + + K dispozici, pokud je nainstalován editor vstupních metod Microsoft Wubi. + + + K dispozici pouze v případě, že je nainstalována aplikace Mixed Reality Portal. + + + K dispozici pouze v mobilních zařízeních a v případě, že podnik nasadil balíček provisioningu. + + + Přidáno ve Windows 10, verze 1903 (build 18362). + + + Přidáno ve Windows 10, verze 2004 (build 19041). + + + K dispozici pouze v případě, že jsou nainstalována "nastavení aplikace", např. třetí stranou. + + + K dispozici pouze v případě, že je nainstalován hardware na touchpad. + + + Dostupná pouze v případě, že zařízení má Wi-Fi adaptér. + + + Zařízení musí podporovat Windows Anywhere. + + + K dispozici pouze v případě, že podnik nasadil balíček provisioningu. + + + Oznámení + Area Privacy + + + Oznámení a akce + Area System + + + Num Lock + Mean the "Num Lock" key + + + nwc.cpl + File name, Should not translated + + + odbccp32.cpl + File name, Should not translated + + + Správce zdroje dat ODBC (32-bit) + Area Control Panel (legacy settings) + + + Správce zdroje dat ODBC (64-bit) + Area Control Panel (legacy settings) + + + Offline soubory + Area Control Panel (legacy settings) + + + Offline mapy + Area Apps + + + Offline mapy - Stáhnout mapy + Area Apps + + + Na obrazovce + + + OS + Means the "Operating System" + + + Ostatní zařízení + Area Privacy + + + Další možnosti + Area EaseOfAccess + + + Další uživatelé + + + 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í zařízení + Area Control Panel (legacy settings) + + + Pero a dotykové ovládání + Area Control Panel (legacy settings) + + + Pero a Windows Ink + Area Device + + + Lidé v okolí + Area Control Panel (legacy settings) + + + Informace o výkonnosti a nástroje + Area Control Panel (legacy settings) + + + Oprávnění a historie + Area Cortana + + + Přizpůsobení (kategorie) + Area Personalization + + + Telefon + Area Phone + + + Telefon a modem + Area Control Panel (legacy settings) + + + Telefon a modem - volby + Area Control Panel (legacy settings) + + + Telefonní hovory + Area Privacy + + + Telefon - Výchozí aplikace + Area System + + + Obrázek + + + Obrázky + Area Privacy + + + Nastavení Pinyin IME + Area TimeAndLanguage, available if the Microsoft Pinyin input method editor is installed + + + Nastavení IME Pinyin - slovník domény + Area TimeAndLanguage + + + Nastavení Pinyin IME - Konfigurace klíče + Area TimeAndLanguage + + + Nastavení IME Pinyin - UDP + Area TimeAndLanguage + + + Hraní hry na celé obrazovce + Area Gaming + + + Plugin pro hledání nastavení Windows + + + Nastavení systému Windows + + + Napájení a spánek + Area System + + + powercfg.cpl + File name, Should not translated + + + Možnosti napájení + Area Control Panel (legacy settings) + + + Prezentace + + + Tiskárny + Area Control Panel (legacy settings) + + + Tiskárny a skenery + Area Device + + + Print Screen + Mean the "Print screen" key + + + Hlášení problémů a řešení + Area Control Panel (legacy settings) + + + Procesor + + + Programy a funkce + Area Control Panel (legacy settings) + + + Promítání 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 + + + Vzdálenost + Area NetworkAndInternet + + + Proxy + Area NetworkAndInternet + + + Quickime + Area TimeAndLanguage + + + Hraní hry na celou obrazovku + + + Vysílače + Area Privacy + + + Paměť RAM + Means the Read-Access-Memory (typical the used to inform about the size) + + + Rozpoznání + + + Obnovení + 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 + + + Červený týden + Mean you don't can see red colors + + + Oblast + Area TimeAndLanguage + + + Regionální jazyk + Area TimeAndLanguage + + + Vlastnosti regionálního nastavení + Area Control Panel (legacy settings) + + + Oblast a jazyk + Area Control Panel (legacy settings) + + + Formáty datumu a času + + + Připojení aplikace RemoteApp a plochy + Area Control Panel (legacy settings) + + + Vzdálená pracovní plocha + Area System + + + Skenery a fotoaparáty + Area Control Panel (legacy settings) + + + úkoly + File name, Should not translated + + + Naplánované + + + Naplánované úkoly + Area Control Panel (legacy settings) + + + Orientace obrazovky + Area System + + + Posuvné lišty + + + Scroll Lock + Mean the "Scroll Lock" key + + + #SDNS + Should not translated + + + Vyhledávání ve Windows + Area Cortana + + + ZabezpečenáDNS + Should not translated + + + Bezpečnostní centrum + Area Control Panel (legacy settings) + + + Bezpečnostní procesor + + + Vyčistit relaci + Area SurfaceHub + + + Domovská stránka + Area Home, Overview-page for all areas of settings + + + Nastavení automatické prezentace + Area UserAccounts + + + Sdílené možnosti + Area System + + + Zástupci + + + WiFi + dont translate this, is a short term to find entries + + + Možnosti přihlášení + Area UserAccounts + + + Možnosti přihlášení - dynamický zámek + Area UserAccounts + + + Velikost + Size for text and symbols + + + Zvuk + Area System + + + Řeč + Area EaseOfAccess + + + Rozpoznávání řeči + Area Control Panel (legacy settings) + + + Zadávání textu hlasem + + + Start + Area Personalization + + + Složky v nabídce Start + + + Aplikace při spouštění + Area Apps + + + sticpl.cpl + File name, Should not translated + + + Úložiště + Area System + + + Zásady ukládání + Area System + + + Senzor úložiště + Area System + + + v + Example: Area "System" in System settings + + + Centrum synchronizace + Area Control Panel (legacy settings) + + + Synchronizace nastavení + Area UserAccounts + + + sysdm.cpl + File name, Should not translated + + + Systém + Area Control Panel (legacy settings) + + + Systémové vlastnosti a Průvodce přidáním nového hardwaru + Area Control Panel (legacy settings) + + + Karta + Means the key "Tabulator" on the keyboard + + + Režim tabletu + Area System + + + Centrum pro synchronizaci + Area Control Panel (legacy settings) + + + Mluvit + + + Mluvte s Cortanou + Area Cortana + + + Panel úloh + Area Personalization + + + Barva panelu úloh + + + Úlohy + Area Privacy + + + Týmová Konference + Area SurfaceHub + + + Týmová správa zařízení + Area SurfaceHub + + + Převod textu na řeč + Area Control Panel (legacy settings) + + + Motivy + Area Personalization + + + themes.cpl + File name, Should not translated + + + timedate.cpl + File name, Should not translated + + + Časová osa + + + Dotykové ovládání + + + Odezva při klepnutí + + + Touchpad + Area Device + + + Průhlednost + + + tritanopia + Medical: Mean you don't can see yellow and blue colors + + + Řešení problémů + Area UpdateAndSecurity + + + TruePlay + Area Gaming + + + Psaní + Area Device + + + Odinstalovat + Area MixedReality, only available if the Mixed Reality Portal app is installed. + + + USB + Area Device + + + Uživatelské účty + Area Control Panel (legacy settings) + + + Verze + Means The "Windows Version" + + + Přehrávání videa + Area Apps + + + Videa + Area Privacy + + + Virtuální plochy + + + Virus + Means the virus in computers and software + + + Aktivování hlasem + Area Privacy + + + Hlasitost + + + VPN + Area NetworkAndInternet + + + Tapeta + + + Teplější barva + + + Uvítací centrum + Area Control Panel (legacy settings) + + + Úvodní obrazovka + Area SurfaceHub + + + wgpocpl.cpl + File name, Should not translated + + + Kolo + Area Device + + + Wi-Fi + Area NetworkAndInternet, only available if Wi-Fi calling is enabled + + + Hovory přes Wi-Fi + Area NetworkAndInternet, only available if Wi-Fi calling is enabled + + + Nastavení Wi-Fi + "Wi-Fi" should not translated + + + Okraj okna + + + Windows kdykoliv aktualizovat + 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) + + + Nastavení Windows Hello - Tvář + Area UserAccounts + + + Nastavení Windows Hello - otisk prstu + Area UserAccounts + + + Windows Insider Program + Area UpdateAndSecurity + + + Centrum nastavení mobilních zařízení + Area Control Panel (legacy settings) + + + Vyhledávání Windows + Area Cortana + + + Zabezpečení Windows + Area UpdateAndSecurity + + + Aktualizace systému Windows + Area UpdateAndSecurity + + + Aktualizace Windows - Pokročilé možnosti + Area UpdateAndSecurity + + + Aktualizace Windows - Zkontrolovat aktualizace + Area UpdateAndSecurity + + + Aktualizace Windows - možnosti restartu + Area UpdateAndSecurity + + + Aktualizace systému Windows - Zobrazit volitelné aktualizace + Area UpdateAndSecurity + + + Aktualizace Windows - Zobrazit historii aktualizací + Area UpdateAndSecurity + + + Bezdrátové + + + Pracovní prostor + + + Zabezpečení pracoviště + Area UserAccounts + + + Nastavení Wubi IME + Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed + + + Nastavení Wubi IME - UDP + Area TimeAndLanguage + + + Xbox síť + Area Gaming + + + Vaše info + Area UserAccounts + + + Přibližování + Mean zooming of things via a magnifier + + + Změnit nastavení instalace zařízení + + + Vypnout obrázky pozadí + + + Vlastnosti navigace + + + Možnosti streamování médií + + + Nastavení typu souboru tak, aby se vždy otevíral v určitém programu + + + Změnit hlas moderátora + + + Najít a opravit problémy s klávesnicí + + + Použít čtečku obrazovky + + + Zobrazení pracovní skupiny, ke které je počítač přiřazen + + + Změnit nastavení kolečka myši + + + Spravovat certifikáty počítače + + + Najít a napravit problémy + + + Změna nastavení obsahu přijatého prostřednictvím funkce Přiblížit a odeslat + + + Změnit výchozí nastavení médií nebo zařízení + + + Tisk referenční karty pro hlasovou komunikaci s počítačem + + + Kalibrovat barvu obrazovky + + + Spravovat certifikáty šifrování souborů + + + Zobrazení nejnovějších hlášení na počítači + + + Povolit přístup k tomuto počítači jiným uživatelům + + + Zobrazit skryté soubory a složky + + + Možnosti spuštění služby Windows To Go + + + Nastavení procesů, které se mají automaticky spouštět při startu systému Windows + + + Zobrazit, zda je na webových stránkách k dispozici informační kanál + + + Přidat hodiny pro různá časová pásma + + + Přidat zařízení Bluetooth + + + Přizpůsobení tlačítek myši + + + Nastavit tlačítka tabletu pro provedení určitých úkolů + + + Zobrazit nainstalovaná písma + + + Změnit způsob zobrazení měny + + + Upravit zásady skupiny + + + Spravovat doplňky prohlížeče + + + Zkontrolovat rychlost procesoru + + + Zkontrolovat stav brány firewall + + + Odeslat nebo přijmout soubor + + + Přidat nebo odebrat uživatelské účty + + + Upravit systémové proměnné prostředí + + + Správa šifrování BitLocker + + + Automaticky skrýt panel úkolů + + + Změna nastavení zvukové karty + + + Změnit účty + + + Upravit místní uživatele a skupiny + + + Zobrazení počítačů a zařízení v síti + + + Nainstalovat program ze sítě + + + Zobrazení skenerů a fotoaparátů + + + Word registrovaný v editoru Microsoft IME (japonština) + + + Obnovit soubory z historie souborů + + + Zapnout nebo vypnout klávesnici na obrazovce + + + Blokovat nebo povolit cookies třetích stran + + + Najít a opravit problémy s nahráváním zvuku + + + Vytvořit obnovovací jednotku + + + Nastavení metody zadávání Microsoft (nové fonetické) + + + Vygenerovat zprávu o stavu systému + + + Oprava problémů s vaším počítačem + + + Záloha a obnovení (Windows 7) + + + Zobrazení náhledu, odebrání nebo zobrazení a skrytí písem nainstalovaných v počítači + + + Nastavení metody zadávání Microsoft (rychlé) + + + Zobrazit historii spolehlivosti + + + Přístup k aplikacím RemoteApp a vzdáleným plochám + + + Nastavit zdroje dat ODBC + + + Obnovit bezpečnostní pravidla + + + Blokovat nebo povolit vyskakovací okna + + + Zapnout nebo vypnout automatické dokončování v prohlížeči Internet Explorer + + + Možnosti Microsoft Pinyin SimpleFast + + + Změna nastavení chování počítače při zavřeném krytu + + + Vypnout zbytečné animace + + + Vytvořit bod obnovení + + + Vypnout automatické uspořádání oken + + + Historie řešení problémů + + + Diagnóza problémů s pamětí vašeho počítače + + + Zobrazit doporučené akce pro hladký běh Windows + + + Změnit rychlost blikání kurzoru + + + Přidat nebo odebrat programy + + + Vytvořte disk pro obnovení hesla + + + Nastavit pokročilé vlastnosti profilu uživatele + + + Spustit nebo zastavit používání automatického přehrávání pro všechna média a zařízení + + + Změnit nastavení automatické údržby + + + Určete jedno nebo dvojité kliknutí pro otevření + + + Vyberte uživatele, kteří mohou používat vzdálenou plochu + + + Zobrazit, které programy jsou nainstalovány na vašem počítači + + + Povolit vzdálený přístup k počítači + + + Zobrazit pokročilá nastavení systému + + + Jak nainstalovat program + + + Změna funkcí klávesnice + + + Provádět změnu na letní čas a zpět automaticky + + + Změna pořadí widgetů pro platformu Windows SideShow + + + Zkontrolovat stav klávesnice + + + Ovládat počítač bez myši nebo klávesnice + + + Změnit nebo odebrat program + + + Změna nastavení vícedotykových gest + + + Nastavit zdroje dat ODBC (64bit) + + + Nastavit proxy server + + + Změnit domovskou stránku + + + Seskupit podobná okna na hlavní liště + + + Změnit nastavení Side Show Windows + + + Použít zvukový popis pro videa + + + Změnit název pracovní skupiny + + + Najít a opravit tiskové problémy + + + Změna doby přechodu počítače do režimu spánku + + + Nastavení virtuálního soukromého připojení k síti (VPN) + + + Přizpůsobit dovednosti v učení + + + Nastavení telefonického připojení + + + Nastavit připojení nebo síť + + + Změna hesla systému Windows + + + Výraznější zobrazení ukazatele myši + + + Nastavit iniciátor iSCSI + + + Přizpůsobení počítače pro zrakově postižené uživatele + + + Spravovat offline soubory + + + Kontrola nejnovějších hlášení a řešení potíží + + + Nastavení vstupní metody Microsoft ChangJie + + + Nahrazení zvuků vizuálními pomůckami + + + Změna nastavení dočasných internetových souborů + + + Připojení k internetu + + + Najít a opravit problémy s přehráváním zvuku + + + Změnit zobrazení nebo rychlost ukazatele myši + + + Zálohovat obnovovací klíč + + + Uložit záložní kopie souborů z historie souborů + + + Zobrazení aktuálního nastavení zjednodušení ovládání + + + Změnit nastavení pera tabletu + + + Změna funkcí myši + + + Zobrazit množství paměti RAM v počítači + + + Upravit plán napájení + + + Upravit hlasitost systému + + + Defragmentace a optimalizace disků + + + Nastavit zdroje dat ODBC (32bit) + + + Změnit nastavení písma + + + Zvětšit části obrazovky pomocí lupy + + + Změnit typ souboru spojený s příponou souboru + + + Zobrazit deník událostí + + + Spravovat přihlašovací údaje systému Windows + + + Nastavit mikrofon + + + Změní vzhled ukazatele myši + + + Změnit nastavení úspory energie + + + Optimalizovat pro nevidomé + + + + + + + Zapnout nebo vypnout funkce Windows + + + Zobrazení informací o operačním systému v počítači + + + Zobrazit místní služby + + + Správa pracovních složek + + + Šifrovat offline soubory + + + Nastavení počítače pro rozpoznávání hlasu + + + Pokročilé nastavení tiskárny + + + Změnit výchozí tiskárnu + + + Upravit proměnné prostředí vašeho účtu + + + Optimalizovat vizuální zobrazení + + + Změnit nastavení kliknutí myší + + + Změnit pokročilé nastavení správy barev pro displeje, skenery a tiskárny + + + Systém Windows určí nastavení zjednodušení přístupu + + + Vyčistit místo na disku odstraněním zbytečných souborů + + + Zobrazit zařízení a tiskárny + + + Editor soukromých znaků + + + Zaznamenávat kroky k reprodukci problému + + + Upravit vzhled a výkon Windows + + + Nastavení pro Microsoft IME (japonština) + + + Požádat o pomoc jinou osobu a umožnit jí připojit se k počítači nebo nabídnout pomoc někomu jinému + + + Spustit programy vytvořené pro předchozí verze systému Windows + + + Vyberte pořadí otáčení obrazovky + + + Změnit způsob vyhledávání v systému Windows + + + Nastavení rychlých pohybů pro provádění určitých úkolů + + + Změnit typ účtu + + + Změnit spořič obrazovky + + + Změnit nastavení ovládání uživatelského účtu + + + Povolení kláves pro zjednodušení přístupu + + + Rozpoznat a opravit síťové problémy + + + Najít a opravit problémy se sítí a připojením + + + Automaticky přehrávat CD, nebo jiná média + + + Zobrazit základní informace o vašem počítači + + + Zvolte způsob otevírání odkazů + + + Povolit vzdálené odesílání požadavků na pomoc z tohoto počítače + + + Správce úloh + + + Zapnutí nebo vypnutí rychlých pohybů + + + Přidat jazyk + + + Zobrazit stav a úlohy sítě + + + Zapnout nebo vypnout Lupu + + + Zobrazit název tohoto počítače + + + Zobrazit síťová připojení + + + Automaticky provést doporučené úkoly údržby + + + Spravovat místo na disku využívané offline soubory + + + Zapnout nebo vypnout vysoký kontrast + + + Změnit způsob zobrazení času + + + Změní způsob zobrazení webových stránek v kartách + + + Změnit způsob zobrazení data a seznamů + + + Spravovat zvuková zařízení + + + Změnit bezpečnostní nastavení + + + Zkontrolovat stav zabezpečení + + + Odstranit soubory cookie nebo dočasné soubory + + + Určete, s jakou rukou píšete + + + Změna nastavení dotykového vstupu + + + Jak změnit velikost virtuální paměti + + + Hlasité čtení textu pomocí aplikace Moderátor + + + Nastavit ovladače her USB + + + Zobrazení informací o doméně, ve které se počítač nachází + + + Zobrazit všechna hlášení o problémech + + + Podpora 16-bitových aplikácí + + + Nastavit pravidla vytáčení + + + Povolit nebo zakázat cookies relací + + + Dát administrativní práva uživateli domény + + + Zvolte, kdy vypnout displej + + + Přesun ukazatele pomocí klávesnice s funkcí Klávesy myši + + + Změna nastavení zařízení kompatibilních se službou Windows SideShow + + + Úprava běžně používaných nastavení pro mobilní práci + + + Změnit nastavení převodu textu na řeč + + + Nastavte čas a datum + + + Změnit nastavení polohy + + + Změní nastavení myši + + + Spravovat úložiště + + + Zobrazit nebo skrýt přípony souborů + + + Povolit aplikaci přes Windows Firewall + + + Změnit systémové zvuky + + + Upravit text ClearType + + + Zapnout nebo vypnout spořič obrazovky + + + Vyhledání a oprava problémů se službou Windows Update + + + Změnit nastavení Bluetooth + + + Připojit k síti + + + Změnit poskytovatele vyhledávání v aplikaci Internet Explorer + + + Připojit se k doméně + + + Přidat zařízení + + + Najít a vyřešit problémy při hledání v systému Windows + + + Zvolte plán napájení + + + Změnit, jak ukazatel myši vypadá, když se pohybuje + + + Odinstalovat program + + + Vytvořit a formátovat oddíly pevného disku + + + Změnit formát data, času nebo čísel + + + Změnit nastavení pro buzení počítače + + + Správa síťových hesel + + + Změnit metody zadávání + + + Spravovat pokročilé nastavení sdílení + + + Změnit nastavení baterie + + + Přejmenovat tento počítač + + + Zamknutí nebo odemknutí panelu úloh + + + Spravovat přihlašovací údaje + + + Změnit časové pásmo + + + Spustit rozpoznávání řeči + + + Zobrazit nainstalované aktualizace + + + Co se stalo s nástrojovou lištou Rychlého spuštění? + + + Změnit možnosti vyhledávání souborů a složek + + + Úprava nastavení před prezentací + + + Skenovat dokument nebo obrázek + + + Změna způsobu zobrazení měrných jednotek + + + Stiskněte kombinaci tlačítek najednou + + + Obnovit data, soubory nebo počítač ze zálohy (Windows 7) + + + Nastavit výchozí programy + + + Nastavit širokopásmové připojení + + + Kalibrace obrazovky pro text zadávaný perem nebo pro dotykové vstupy + + + Spravovat uživatelské certifikáty + + + Naplánované úlohy + + + Ignorování opakovaných stisků kláves pomocí funkce Filtrovat klávesy + + + Hledání a oprava problémů s modrou obrazovkou + + + Přehrát tón při stisknutí klávesy + + + Smazat historii prohlížení + + + Změna funkce tlačítka napájení + + + Vytvořit standardní uživatelský účet + + + Absolvovat kurzy hlasové komunikace s počítačem + + + Zobrazení využití systémových prostředků ve Správci úloh + + + Vytvořit účet + + + Získejte více funkcí s novou verzí Windows + + + Ovládací panel + + + TaskLink + + + Neznámý + + \ 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 68597c289..c0319e5fd 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.it-IT.resx @@ -158,7 +158,7 @@ Area Privacy - Add Hardware + Aggiungi Hardware Area Control Panel (legacy settings) @@ -254,7 +254,7 @@ Orologio e area geografica - Control Panel + Pannello di Controllo Cortana @@ -275,7 +275,7 @@ Hardware e audio - Home page + Pagina iniziale Realtà mista @@ -336,7 +336,7 @@ Area Device - Background + Sfondo Area Personalization @@ -456,7 +456,7 @@ Area Personalization - Command + Comando The command to direct start a setting @@ -468,7 +468,7 @@ Area Privacy - Control Panel + Pannello di Controllo Type of the setting is a "(legacy) Control Panel setting" @@ -876,7 +876,7 @@ Area Privacy - Microsoft Mail Post Office + Ufficio Postale Microsoft Area Control Panel (legacy settings) @@ -1423,7 +1423,7 @@ Digitazione vocale - Start + Avvio Area Personalization @@ -1733,7 +1733,7 @@ Area UserAccounts - Zoom + Ingrandisci Mean zooming of things via a magnifier @@ -2503,7 +2503,7 @@ Get more features with a new edition of Windows - Control Panel + Pannello di Controllo TaskLink 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 c30c78009..f92dca9f1 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.zh-cn.resx @@ -1794,7 +1794,7 @@ Give other users access to this computer - Show hidden files and folders + 显示隐藏文件与文件夹 Change Windows To Go start-up options @@ -1809,7 +1809,7 @@ Add clocks for different time zones - Add a Bluetooth device + 添加蓝牙设备 Customise the mouse buttons @@ -1818,13 +1818,13 @@ Set tablet buttons to perform certain tasks - View installed fonts + 查看已安装的字体 Change the way currency is displayed - Edit group policy + 编辑群组政策 Manage browser add-ons @@ -1833,13 +1833,13 @@ Check processor speed - Check firewall status + 查看防火墙状态 - Send or receive a file + 发送或接受文件 - Add or remove user accounts + 添加或移除用户账号 Edit the system environment variables @@ -1980,7 +1980,7 @@ View advanced system settings - How to install a program + 如何安装程序 Change how your keyboard works @@ -1992,7 +1992,7 @@ Change the order of Windows SideShow gadgets - Check keyboard status + 检查键盘状态 Control the computer without the mouse or keyboard @@ -2070,7 +2070,7 @@ Change temporary Internet file settings - Connect to the Internet + 连接互联网 Find and fix audio playback problems @@ -2100,7 +2100,7 @@ 编辑电源计划 - Adjust system volume + 调整音量 Defragment and optimise your drives @@ -2109,7 +2109,7 @@ Set up ODBC data sources (32-bit) - Change Font Settings + 更改字体设置 Magnify portions of the screen using Magnifier @@ -2124,7 +2124,7 @@ Manage Windows Credentials - Set up a microphone + 设置麦克风 Change how the mouse pointer looks @@ -2248,7 +2248,7 @@ Turn flicks on or off - Add a language + 添加语言 View network status and tasks @@ -2341,13 +2341,13 @@ Change text-to-speech settings - Set the time and date + 设置时间和日期 - Change location settings + 更改位置设定 - Change mouse settings + 更改鼠标设置 Manage Storage Spaces @@ -2359,7 +2359,7 @@ Allow an app through Windows Firewall - Change system sounds + 更改系统声音 Adjust ClearType text @@ -2371,7 +2371,7 @@ Find and fix windows update problems - Change Bluetooth settings + 更改蓝牙设备 Connect to a network @@ -2383,7 +2383,7 @@ Join a domain - Add a device + 添加设备 Find and fix problems with Windows Search @@ -2395,13 +2395,13 @@ Change how the mouse pointer looks when it’s moving - Uninstall a program + 卸载程序 Create and format hard disk partitions - Change date, time or number formats + 更改日期、时间或数字格式 Change PC wake-up settings diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json b/Plugins/Flow.Launcher.Plugin.WindowsSettings/plugin.json index f1d3a9a34..b1106bc4c 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": "4.0.2", + "Version": "4.0.3", "Language": "csharp", "Website": "https://github.com/Flow-Launcher/Flow.Launcher", "ExecuteFileName": "Flow.Launcher.Plugin.WindowsSettings.dll", diff --git a/appveyor.yml b/appveyor.yml index 2068cd67b..e17e81aa9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '1.15.0.{build}' +version: '1.16.0.{build}' init: - ps: |