From ee9c53d2f9d1090724cd5181e08144137497b7d6 Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Sun, 4 Dec 2022 21:46:11 -0600 Subject: [PATCH 1/7] Add CopyText in Explorer Result --- .../Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs index e9cbfc2bd..8a12f1306 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs @@ -58,6 +58,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search SubTitle = Path.GetDirectoryName(path), AutoCompleteText = GetPathWithActionKeyword(path, ResultType.Folder), TitleHighlightData = StringMatcher.FuzzySearch(query.Search, title).MatchData, + CopyText = path, Action = c => { if (c.SpecialKeyState.CtrlPressed || (!Settings.PathSearchKeywordEnabled && !Settings.SearchActionKeywordEnabled)) @@ -174,7 +175,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search }, StringSplitOptions.None).Last(); var title = $"Open {folderName}"; - + var subtitleFolderName = folderName; // ie. max characters can be displayed without subtitle cutting off: "Program Files (x86)" @@ -189,6 +190,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search AutoCompleteText = GetPathWithActionKeyword(path, ResultType.Folder), IcoPath = path, Score = 500, + CopyText = path, Action = _ => { Context.API.OpenDirectory(path); @@ -213,6 +215,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search AutoCompleteText = GetPathWithActionKeyword(filePath, ResultType.File), TitleHighlightData = StringMatcher.FuzzySearch(query.Search, Path.GetFileName(filePath)).MatchData, Score = score, + CopyText = filePath, Action = c => { try From 5b6a18879c297b1f03b4e3f34695e8f55683c12b Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Sun, 4 Dec 2022 21:46:56 -0600 Subject: [PATCH 2/7] Fix Multiple Drag and drop causing NotReturn Method Call --- Flow.Launcher/ResultListBox.xaml.cs | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Flow.Launcher/ResultListBox.xaml.cs b/Flow.Launcher/ResultListBox.xaml.cs index 6bd1490c3..e85f2b3d7 100644 --- a/Flow.Launcher/ResultListBox.xaml.cs +++ b/Flow.Launcher/ResultListBox.xaml.cs @@ -92,6 +92,8 @@ namespace Flow.Launcher private Point start; private string path; private string query; + // this method is called by the UI thread, which is single threaded, so we can be sloppy with locking + private bool isDragging; private void ResultList_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { @@ -101,15 +103,16 @@ namespace Flow.Launcher path = result.Result.CopyText; query = result.Result.OriginQuery.RawQuery; start = e.GetPosition(null); + isDragging = true; } - private void ResultList_MouseMove(object sender, MouseEventArgs e) { - if (e.LeftButton != MouseButtonState.Pressed) + if (e.LeftButton != MouseButtonState.Pressed|| !isDragging) { start = default; path = string.Empty; query = string.Empty; + isDragging = false; return; } @@ -123,15 +126,16 @@ namespace Flow.Launcher || Math.Abs(diff.Y) < SystemParameters.MinimumVerticalDragDistance) return; + isDragging = false; + var data = new DataObject(DataFormats.FileDrop, new[] { path }); - DragDrop.DoDragDrop((DependencyObject)sender, data, DragDropEffects.Move | DragDropEffects.Copy); - - App.API.ChangeQuery(query, true); - - e.Handled = true; + + var effect = DragDrop.DoDragDrop((DependencyObject)sender, data, DragDropEffects.Move | DragDropEffects.Copy); + if (effect == DragDropEffects.Move) + App.API.ChangeQuery(query, true); } private void ResultListBox_OnPreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e) { From 3415656d5bb1d327a343e318befd3591496ee607 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 5 Dec 2022 21:26:41 +1100 Subject: [PATCH 3/7] fix query becoming empty string after DoDragDrop call --- Flow.Launcher/ResultListBox.xaml.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/ResultListBox.xaml.cs b/Flow.Launcher/ResultListBox.xaml.cs index e85f2b3d7..bc784ab09 100644 --- a/Flow.Launcher/ResultListBox.xaml.cs +++ b/Flow.Launcher/ResultListBox.xaml.cs @@ -132,10 +132,13 @@ namespace Flow.Launcher { path }); - + + // Reassigning query to a new variable because for some reason + // after DragDrop.DoDragDrop call, 'query' loses its content, i.e. becomes empty string + var rawQuery = query; var effect = DragDrop.DoDragDrop((DependencyObject)sender, data, DragDropEffects.Move | DragDropEffects.Copy); if (effect == DragDropEffects.Move) - App.API.ChangeQuery(query, true); + App.API.ChangeQuery(rawQuery, true); } private void ResultListBox_OnPreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e) { From 51595ad7b94e70b6da6b8ed5f3624154151bdfb8 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Tue, 6 Dec 2022 05:05:17 +1100 Subject: [PATCH 4/7] New Crowdin updates (#1578) * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (French) [ci skip] * New translations en.xaml (Danish) [ci skip] * New translations en.xaml (Ukrainian) [ci skip] * New translations en.xaml (German) [ci skip] * New translations en.xaml (Italian) [ci skip] * New translations en.xaml (Japanese) [ci skip] * New translations en.xaml (Korean) [ci skip] * New translations en.xaml (Dutch) [ci skip] * New translations en.xaml (Polish) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Russian) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Turkish) [ci skip] * New translations en.xaml (Chinese Simplified) [ci skip] * New translations en.xaml (Chinese Traditional) [ci skip] * New translations en.xaml (Portuguese, Brazilian) [ci skip] * New translations en.xaml (Norwegian Bokmal) [ci skip] * New translations en.xaml (Serbian (Latin)) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Spanish, Latin America) [ci skip] * New translations en.xaml (French) [ci skip] * New translations en.xaml (Turkish) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Serbian (Latin)) [ci skip] * New translations en.xaml (Norwegian Bokmal) [ci skip] * New translations en.xaml (Portuguese, Brazilian) [ci skip] * New translations en.xaml (Chinese Traditional) [ci skip] * New translations en.xaml (Chinese Simplified) [ci skip] * New translations en.xaml (Ukrainian) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Danish) [ci skip] * New translations en.xaml (Russian) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Polish) [ci skip] * New translations en.xaml (Dutch) [ci skip] * New translations en.xaml (Korean) [ci skip] * New translations en.xaml (Japanese) [ci skip] * New translations en.xaml (Italian) [ci skip] * New translations en.xaml (German) [ci skip] * New translations en.xaml (Spanish, Latin America) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Danish) [ci skip] * New translations en.xaml (Turkish) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Serbian (Latin)) [ci skip] * New translations en.xaml (Norwegian Bokmal) [ci skip] * New translations en.xaml (Portuguese, Brazilian) [ci skip] * New translations en.xaml (Chinese Traditional) [ci skip] * New translations en.xaml (Chinese Simplified) [ci skip] * New translations en.xaml (Ukrainian) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (German) [ci skip] * New translations en.xaml (Russian) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Polish) [ci skip] * New translations en.xaml (Dutch) [ci skip] * New translations en.xaml (Korean) [ci skip] * New translations en.xaml (Japanese) [ci skip] * New translations en.xaml (French) [ci skip] * New translations en.xaml (Italian) [ci skip] * New translations en.xaml (Spanish, Latin America) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations Resources.resx (Portuguese) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (French) [ci skip] * New translations en.xaml (Turkish) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Serbian (Latin)) [ci skip] * New translations en.xaml (Norwegian Bokmal) [ci skip] * New translations en.xaml (Portuguese, Brazilian) [ci skip] * New translations en.xaml (Chinese Traditional) [ci skip] * New translations en.xaml (Chinese Simplified) [ci skip] * New translations en.xaml (Ukrainian) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Danish) [ci skip] * New translations en.xaml (Russian) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Polish) [ci skip] * New translations en.xaml (Dutch) [ci skip] * New translations en.xaml (Korean) [ci skip] * New translations en.xaml (Japanese) [ci skip] * New translations en.xaml (Italian) [ci skip] * New translations en.xaml (German) [ci skip] * New translations en.xaml (Spanish, Latin America) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (French) [ci skip] * New translations en.xaml (Turkish) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Serbian (Latin)) [ci skip] * New translations en.xaml (Norwegian Bokmal) [ci skip] * New translations en.xaml (Portuguese, Brazilian) [ci skip] * New translations en.xaml (Chinese Traditional) [ci skip] * New translations en.xaml (Chinese Simplified) [ci skip] * New translations en.xaml (Ukrainian) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Danish) [ci skip] * New translations en.xaml (Russian) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Polish) [ci skip] * New translations en.xaml (Dutch) [ci skip] * New translations en.xaml (Korean) [ci skip] * New translations en.xaml (Japanese) [ci skip] * New translations en.xaml (Italian) [ci skip] * New translations en.xaml (German) [ci skip] * New translations en.xaml (Spanish, Latin America) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Slovak) [ci skip] * New translations en.xaml (Portuguese) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] * New translations en.xaml (Spanish (Modern)) [ci skip] Co-authored-by: Kevin Zhang <45326534+taooceros@users.noreply.github.com> Co-authored-by: Hongtao Zhang --- Flow.Launcher/Languages/da.xaml | 8 +++ Flow.Launcher/Languages/de.xaml | 8 +++ Flow.Launcher/Languages/es-419.xaml | 8 +++ Flow.Launcher/Languages/es.xaml | 8 +++ Flow.Launcher/Languages/fr.xaml | 8 +++ Flow.Launcher/Languages/it.xaml | 8 +++ Flow.Launcher/Languages/ja.xaml | 8 +++ Flow.Launcher/Languages/ko.xaml | 8 +++ Flow.Launcher/Languages/nb.xaml | 8 +++ Flow.Launcher/Languages/nl.xaml | 8 +++ Flow.Launcher/Languages/pl.xaml | 8 +++ Flow.Launcher/Languages/pt-br.xaml | 8 +++ Flow.Launcher/Languages/pt-pt.xaml | 8 +++ Flow.Launcher/Languages/ru.xaml | 8 +++ Flow.Launcher/Languages/sk.xaml | 8 +++ Flow.Launcher/Languages/sr.xaml | 8 +++ Flow.Launcher/Languages/tr.xaml | 8 +++ Flow.Launcher/Languages/uk-UA.xaml | 8 +++ Flow.Launcher/Languages/zh-cn.xaml | 8 +++ Flow.Launcher/Languages/zh-tw.xaml | 8 +++ .../Languages/da.xaml | 1 + .../Languages/de.xaml | 1 + .../Languages/es-419.xaml | 1 + .../Languages/es.xaml | 1 + .../Languages/fr.xaml | 1 + .../Languages/it.xaml | 1 + .../Languages/ja.xaml | 1 + .../Languages/ko.xaml | 1 + .../Languages/nb.xaml | 1 + .../Languages/nl.xaml | 1 + .../Languages/pl.xaml | 1 + .../Languages/pt-br.xaml | 1 + .../Languages/pt-pt.xaml | 1 + .../Languages/ru.xaml | 1 + .../Languages/sk.xaml | 1 + .../Languages/sr.xaml | 1 + .../Languages/tr.xaml | 1 + .../Languages/uk-UA.xaml | 1 + .../Languages/zh-cn.xaml | 1 + .../Languages/zh-tw.xaml | 1 + .../Languages/da.xaml | 61 +++++++++++++++++-- .../Languages/de.xaml | 61 +++++++++++++++++-- .../Languages/es-419.xaml | 61 +++++++++++++++++-- .../Languages/es.xaml | 61 +++++++++++++++++-- .../Languages/fr.xaml | 61 +++++++++++++++++-- .../Languages/it.xaml | 61 +++++++++++++++++-- .../Languages/ja.xaml | 61 +++++++++++++++++-- .../Languages/ko.xaml | 61 +++++++++++++++++-- .../Languages/nb.xaml | 61 +++++++++++++++++-- .../Languages/nl.xaml | 61 +++++++++++++++++-- .../Languages/pl.xaml | 61 +++++++++++++++++-- .../Languages/pt-br.xaml | 61 +++++++++++++++++-- .../Languages/pt-pt.xaml | 61 +++++++++++++++++-- .../Languages/ru.xaml | 61 +++++++++++++++++-- .../Languages/sk.xaml | 61 +++++++++++++++++-- .../Languages/sr.xaml | 61 +++++++++++++++++-- .../Languages/tr.xaml | 61 +++++++++++++++++-- .../Languages/uk-UA.xaml | 61 +++++++++++++++++-- .../Languages/zh-cn.xaml | 61 +++++++++++++++++-- .../Languages/zh-tw.xaml | 61 +++++++++++++++++-- .../Languages/da.xaml | 13 ++-- .../Languages/de.xaml | 13 ++-- .../Languages/es-419.xaml | 13 ++-- .../Languages/es.xaml | 13 ++-- .../Languages/fr.xaml | 13 ++-- .../Languages/it.xaml | 13 ++-- .../Languages/ja.xaml | 13 ++-- .../Languages/ko.xaml | 13 ++-- .../Languages/nb.xaml | 13 ++-- .../Languages/nl.xaml | 13 ++-- .../Languages/pl.xaml | 13 ++-- .../Languages/pt-br.xaml | 13 ++-- .../Languages/pt-pt.xaml | 13 ++-- .../Languages/ru.xaml | 13 ++-- .../Languages/sk.xaml | 13 ++-- .../Languages/sr.xaml | 13 ++-- .../Languages/tr.xaml | 13 ++-- .../Languages/uk-UA.xaml | 13 ++-- .../Languages/zh-cn.xaml | 13 ++-- .../Languages/zh-tw.xaml | 13 ++-- .../Languages/da.xaml | 2 + .../Languages/de.xaml | 2 + .../Languages/es-419.xaml | 2 + .../Languages/es.xaml | 2 + .../Languages/fr.xaml | 2 + .../Languages/it.xaml | 2 + .../Languages/ja.xaml | 2 + .../Languages/ko.xaml | 2 + .../Languages/nb.xaml | 2 + .../Languages/nl.xaml | 2 + .../Languages/pl.xaml | 2 + .../Languages/pt-br.xaml | 2 + .../Languages/pt-pt.xaml | 2 + .../Languages/ru.xaml | 2 + .../Languages/sk.xaml | 2 + .../Languages/sr.xaml | 2 + .../Languages/tr.xaml | 2 + .../Languages/uk-UA.xaml | 2 + .../Languages/zh-cn.xaml | 2 + .../Languages/zh-tw.xaml | 2 + .../Languages/es.xaml | 2 +- .../Languages/es.xaml | 2 +- .../Properties/Resources.pt-PT.resx | 6 +- 103 files changed, 1485 insertions(+), 225 deletions(-) diff --git a/Flow.Launcher/Languages/da.xaml b/Flow.Launcher/Languages/da.xaml index e393ebf36..f196412d3 100644 --- a/Flow.Launcher/Languages/da.xaml +++ b/Flow.Launcher/Languages/da.xaml @@ -114,6 +114,14 @@ Søg efter flere temaer 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 Søgefelt skrifttype Resultat skrifttype Vindue mode diff --git a/Flow.Launcher/Languages/de.xaml b/Flow.Launcher/Languages/de.xaml index 299a6d640..9a84fce69 100644 --- a/Flow.Launcher/Languages/de.xaml +++ b/Flow.Launcher/Languages/de.xaml @@ -114,6 +114,14 @@ Suche nach weiteren Themes Wie man ein Design erstellt Hallo! + Explorer + Search for files, folders and file contents + WebSearch + Search the web with different search engine support + Programm + Launch programs as admin or a different user + ProcessKiller + Terminate unwanted processes Abfragebox Schriftart Ergebnis Schriftart Fenstermodus diff --git a/Flow.Launcher/Languages/es-419.xaml b/Flow.Launcher/Languages/es-419.xaml index bfa160e65..c87841693 100644 --- a/Flow.Launcher/Languages/es-419.xaml +++ b/Flow.Launcher/Languages/es-419.xaml @@ -114,6 +114,14 @@ Galería de Temas Cómo crear un tema Hola + 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 Fuente del cuadro de consulta Fuente de los resultados Modo Ventana diff --git a/Flow.Launcher/Languages/es.xaml b/Flow.Launcher/Languages/es.xaml index 563096b1c..537152663 100644 --- a/Flow.Launcher/Languages/es.xaml +++ b/Flow.Launcher/Languages/es.xaml @@ -114,6 +114,14 @@ Galería de temas Cómo crear un tema Hola + Explorador + Buscar archivos, carpetas y contenido de archivos + Búsqueda Web + Buscar en la web con el apoyo de diferentes motores de búsqueda + Programa + Iniciar programas como administrador o como usuario diferente + Eliminar Procesos + Terminar procesos no deseados Fuente del texto del cuadro de consulta Fuente del texto de los resultados Modo Ventana diff --git a/Flow.Launcher/Languages/fr.xaml b/Flow.Launcher/Languages/fr.xaml index 65edb6fe3..08ea382ae 100644 --- a/Flow.Launcher/Languages/fr.xaml +++ b/Flow.Launcher/Languages/fr.xaml @@ -114,6 +114,14 @@ Trouver plus de thèmes 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 Police (barre de recherche) Police (liste des résultats) Mode fenêtré diff --git a/Flow.Launcher/Languages/it.xaml b/Flow.Launcher/Languages/it.xaml index 46ec19fa0..0518c0da3 100644 --- a/Flow.Launcher/Languages/it.xaml +++ b/Flow.Launcher/Languages/it.xaml @@ -114,6 +114,14 @@ Sfoglia per altri temi Come creare un tema Ciao + 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 Font campo di ricerca Font campo risultati Modalità finestra diff --git a/Flow.Launcher/Languages/ja.xaml b/Flow.Launcher/Languages/ja.xaml index 467531f76..a05d3681b 100644 --- a/Flow.Launcher/Languages/ja.xaml +++ b/Flow.Launcher/Languages/ja.xaml @@ -114,6 +114,14 @@ テーマを探す 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 検索ボックスのフォント 検索結果一覧のフォント ウィンドウモード diff --git a/Flow.Launcher/Languages/ko.xaml b/Flow.Launcher/Languages/ko.xaml index aa683d177..071a1fc44 100644 --- a/Flow.Launcher/Languages/ko.xaml +++ b/Flow.Launcher/Languages/ko.xaml @@ -114,6 +114,14 @@ 테마 갤러리 테마 제작 안내 안녕하세요! + 탐색기 + Search for files, folders and file contents + WebSearch + Search the web with different search engine support + 프로그램 + Launch programs as admin or a different user + ProcessKiller + Terminate unwanted processes 쿼리 상자 글꼴 결과 항목 글꼴 윈도우 모드 diff --git a/Flow.Launcher/Languages/nb.xaml b/Flow.Launcher/Languages/nb.xaml index b432e031f..0a45549eb 100644 --- a/Flow.Launcher/Languages/nb.xaml +++ b/Flow.Launcher/Languages/nb.xaml @@ -114,6 +114,14 @@ 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 diff --git a/Flow.Launcher/Languages/nl.xaml b/Flow.Launcher/Languages/nl.xaml index 81df3a0ff..4f817e15f 100644 --- a/Flow.Launcher/Languages/nl.xaml +++ b/Flow.Launcher/Languages/nl.xaml @@ -114,6 +114,14 @@ Zoek meer thema´s Hoe maak je een thema Hallo daar + 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 lettertype Resultaat Item lettertype Venster Modus diff --git a/Flow.Launcher/Languages/pl.xaml b/Flow.Launcher/Languages/pl.xaml index d44468423..dc24b5fe1 100644 --- a/Flow.Launcher/Languages/pl.xaml +++ b/Flow.Launcher/Languages/pl.xaml @@ -114,6 +114,14 @@ Znajdź więcej skórek How to create a theme Hi There + Explorer + Search for files, folders and file contents + WebSearch + Search the web with different search engine support + Programy + Launch programs as admin or a different user + ProcessKiller + Terminate unwanted processes Czcionka okna zapytania Czcionka okna wyników Tryb w oknie diff --git a/Flow.Launcher/Languages/pt-br.xaml b/Flow.Launcher/Languages/pt-br.xaml index 80cd51bbb..1042b5d99 100644 --- a/Flow.Launcher/Languages/pt-br.xaml +++ b/Flow.Launcher/Languages/pt-br.xaml @@ -114,6 +114,14 @@ Ver mais temas 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 Fonte da caixa de Consulta Fonte do Resultado Modo Janela diff --git a/Flow.Launcher/Languages/pt-pt.xaml b/Flow.Launcher/Languages/pt-pt.xaml index 9cdda0b71..62e0cdcb9 100644 --- a/Flow.Launcher/Languages/pt-pt.xaml +++ b/Flow.Launcher/Languages/pt-pt.xaml @@ -114,6 +114,14 @@ Galeria de temas Como criar um tema Olá + Explorador + Pesquisar por ficheiros, pastas e conteúdo dos ficheiros + Pesquisa Web + Pesquisa na web com suporte a diversos motores de pesquisa + Programas + Iniciar programas como administrador ou utilizador + Terminador de processos + Terminar processos indesejados Tipo de letra da consulta Tipo de letra dos resultados Modo da janela diff --git a/Flow.Launcher/Languages/ru.xaml b/Flow.Launcher/Languages/ru.xaml index 2a64abddd..fedf7e57a 100644 --- a/Flow.Launcher/Languages/ru.xaml +++ b/Flow.Launcher/Languages/ru.xaml @@ -114,6 +114,14 @@ Найти больше тем 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 Шрифт запросов Шрифт результатов Оконный режим diff --git a/Flow.Launcher/Languages/sk.xaml b/Flow.Launcher/Languages/sk.xaml index 3e13c24fb..1990c5ee2 100644 --- a/Flow.Launcher/Languages/sk.xaml +++ b/Flow.Launcher/Languages/sk.xaml @@ -114,6 +114,14 @@ Galéria motívov Ako vytvoriť motív Ahojte + Prieskumník + Vyhľadávanie súborov, priečinkov a obsahu súborov + Webové vyhľadávanie + Vyhľadávanie na webe s podporou rôznych vyhľadávačov + Program + Spúšťanie programov ako správca alebo iný používateľ + ProcessKiller + Ukončenie nežiaducich procesov Písmo vyhľadávacieho poľa Písmo výsledkov Režim okno diff --git a/Flow.Launcher/Languages/sr.xaml b/Flow.Launcher/Languages/sr.xaml index ba7bff97c..471be8040 100644 --- a/Flow.Launcher/Languages/sr.xaml +++ b/Flow.Launcher/Languages/sr.xaml @@ -114,6 +114,14 @@ Pretražite još tema 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 Font upita Font rezultata Režim prozora diff --git a/Flow.Launcher/Languages/tr.xaml b/Flow.Launcher/Languages/tr.xaml index be5272e92..3748d2772 100644 --- a/Flow.Launcher/Languages/tr.xaml +++ b/Flow.Launcher/Languages/tr.xaml @@ -114,6 +114,14 @@ Daha fazla tema bul Nasıl bir tema yaratılır Merhaba + 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 Pencere Yazı Tipi Sonuç Yazı Tipi Pencere Modu diff --git a/Flow.Launcher/Languages/uk-UA.xaml b/Flow.Launcher/Languages/uk-UA.xaml index 3555c9fda..366a7ccbc 100644 --- a/Flow.Launcher/Languages/uk-UA.xaml +++ b/Flow.Launcher/Languages/uk-UA.xaml @@ -114,6 +114,14 @@ Знайти більше тем Як створити тему Привіт усім + 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 Шрифт запитів Шрифт результатів Віконний режим diff --git a/Flow.Launcher/Languages/zh-cn.xaml b/Flow.Launcher/Languages/zh-cn.xaml index 26e305988..0cf95ec4e 100644 --- a/Flow.Launcher/Languages/zh-cn.xaml +++ b/Flow.Launcher/Languages/zh-cn.xaml @@ -114,6 +114,14 @@ 浏览更多主题 如何创建一个主题 你好! + 文件管理器 + Search for files, folders and file contents + WebSearch + Search the web with different search engine support + 程序 + Launch programs as admin or a different user + ProcessKiller + Terminate unwanted processes 查询框字体 结果项字体 窗口模式 diff --git a/Flow.Launcher/Languages/zh-tw.xaml b/Flow.Launcher/Languages/zh-tw.xaml index e8f59c597..7f4a40929 100644 --- a/Flow.Launcher/Languages/zh-tw.xaml +++ b/Flow.Launcher/Languages/zh-tw.xaml @@ -114,6 +114,14 @@ 瀏覽更多主題 如何創建一個主題 你好呀 + 檔案總管 + Search for files, folders and file contents + WebSearch + Search the web with different search engine support + 程式 + Launch programs as admin or a different user + ProcessKiller + Terminate unwanted processes 查詢框字體 結果項字體 視窗模式 diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml index 86c09730c..e85688988 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/da.xaml @@ -19,4 +19,5 @@ Data Directory Path Tilføj Slet + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml index 0f8227530..7c9b6bc97 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/de.xaml @@ -19,4 +19,5 @@ Pfad zum Datenverzeichnis Hinzufügen Löschen + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml index b22481631..37c1707d3 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es-419.xaml @@ -19,4 +19,5 @@ Ruta del Directorio de Datos Añadir Eliminar + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml index fcb2beef5..9c375cebf 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/es.xaml @@ -19,4 +19,5 @@ Ruta del directorio de datos Añadir Eliminar + Otros diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml index 485092912..d42c0c6c1 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/fr.xaml @@ -19,4 +19,5 @@ Data Directory Path Ajouter Supprimer + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml index 789738016..07be31f63 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/it.xaml @@ -19,4 +19,5 @@ Percorso cartella Data Aggiungi Cancella + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml index 232007a4d..63e759299 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ja.xaml @@ -19,4 +19,5 @@ Data Directory Path 削除 + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml index a5e20a930..694167efb 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ko.xaml @@ -19,4 +19,5 @@ 데이터 디렉토리 위치 추가 삭제 + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml index c5d6f77a0..6d6f30884 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nb.xaml @@ -19,4 +19,5 @@ Data Directory Path Add Delete + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml index d1cbaa001..4c45242da 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/nl.xaml @@ -19,4 +19,5 @@ Data Directory Path Toevoegen Verwijder + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml index 024232350..e0076a376 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pl.xaml @@ -19,4 +19,5 @@ Data Directory Path Dodaj Usu + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml index db29166a0..0131d2a73 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-br.xaml @@ -19,4 +19,5 @@ Data Directory Path Adicionar Apagar + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml index eefcc1d2e..9b10c6d47 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/pt-pt.xaml @@ -19,4 +19,5 @@ Caminho do diretório de dados Adicionar Eliminar + Outros diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml index 545ddbf9a..a631f3ca4 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/ru.xaml @@ -19,4 +19,5 @@ Data Directory Path Добавить Удалить + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml index b45b437a8..aa65967a9 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sk.xaml @@ -19,4 +19,5 @@ Umiestnenie priečinku s dátami Pridať Odstrániť + Iné diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml index d898a834c..b6a367798 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/sr.xaml @@ -19,4 +19,5 @@ Data Directory Path Dodaj Obriši + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml index 3e18a245e..bf4a59e65 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/tr.xaml @@ -19,4 +19,5 @@ Data Directory Path Ekle Sil + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml index f8701ed49..52b9f0b12 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/uk-UA.xaml @@ -19,4 +19,5 @@ Data Directory Path Додати Видалити + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml index 81fa84b44..2cb76582c 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml @@ -19,4 +19,5 @@ 数据文件路径 增加 删除 + Others diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml index a847b8704..0a237d6a0 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-tw.xaml @@ -19,4 +19,5 @@ 檔案目錄路徑 新增 刪除 + Others diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml index d4b3afb9d..acb261bfa 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Slet Rediger Tilføj + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Færdig 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Slet @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml index b462a7b92..fdaf25781 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Bitte wähle eine Ordnerverknüpfung Bist du sicher {0} zu löschen? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Löschen Bearbeiten Hinzufügen + General Setting Customise Action Keywords Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + Editor pad + Shell Path Index Search Excluded Paths + Verwenden Suchergebnis Standort als ausführbare Arbeitsverzeichnis Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Fertig 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Löschen @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Everything Service läuft nicht + Everything Plugin hat einen Fehler (drücke Enter zum kopieren der Fehlernachricht) + Sort By + Name + Path + Größe + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml index b44ffdce6..ff63baca2 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml @@ -1,7 +1,7 @@  - + Por favor, seleccione primero Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Eliminar Editar Añadir + General Setting Customise Action Keywords Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + Ruta del editor + Shell Path Index Search Excluded Paths + Usar la ubicación de los resultados de búsqueda como directorio de trabajo ejecutable Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Hecho 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Eliminar @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Advertencia: El servicio de Everything no se está ejecutando + Error al consultar Everything + Ordenar por + Name + Ruta + Size + Extensión + Tipo de nombre + Fecha de creación + Fecha de modificación + Atributos + Lista de archivos Nombre del Archivo + Ejecutar cuenta + Fecha de cambio reciente + Fecha de acceso + Fecha de ejecución + + + Advertencia: No es una opción de orden rápido, las búsquedas pueden ser lentas + + Click to Launch or Install Everything + Instalación de Everything + Instalando el servicio de Everything. Por favor, espere... + Servicio de Everything instalado correctamente + Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com + Haga clic aquí para iniciarlo + No se ha podido encontrar una instalación de Everything, ¿quieres seleccionar manualmente una ubicación?{0}{0}Click no y todo se instalará automáticamente para usted diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml index abc97f573..bfb2b0642 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml @@ -1,7 +1,7 @@  - + Por favor haga una selección primero Por favor, seleccione un enlace de carpeta ¿Está seguro que desea eliminar {0}? @@ -16,15 +16,22 @@ Explorador alternativo Se ha producido un error durante la búsqueda: {0} - + Eliminar Editar Añadir + Configuración general Personalizar palabras clave de acción Enlaces de acceso rápido + Configuración Everything + Ordenar por: + Ruta de Everything: + Iniciar oculto + Ruta del editor + Ruta del Shell Rutas excluídas del índice de búsqueda + Usar la ubicación de los resultados de búsqueda como directorio de trabajo ejecutable Usar búsqueda indexada para buscar rutas - Al activar esta opción, los directorios/archivos indexados se mostrarán más rápidamente, pero si un directorio/archivo no está indexado, no se mostrará. Si se ha agregado un directorio/archivo a la ruta de exclusión del índice de búsqueda se seguirá mostrando incluso si la opción está activada Opciones de indexación Buscar: Ruta de búsqueda: @@ -35,12 +42,24 @@ Aceptar Activado Cuando esté desactivado, Flow no ejecutará esta opción de búsqueda, y además volverá a '*' para liberar la palabra clave de acción + Everything + Índice de Windows + Enumeración directa - + Motor de búsqueda de contenido + Motor de búsqueda recursivo de directorio + Motor de búsqueda del Índice + Abrir ventana de opciones de indexación + + Explorador Busca y gestiona archivos y carpetas. El explorador utiliza el índice de búsqueda de Windows - + + Ctrl + Entrar para abrir el directorio + Ctrl + Entrar para abrir la carpeta contenedora + + Copiar ruta Copiar Eliminar @@ -51,6 +70,7 @@ Abrir carpeta contenedora Abre la ubicación que contiene el archivo o carpeta Abrir con el editor: + Abrir con Shell: Excluir la carpeta actual y sus subcarpetas del índice de búsqueda Excluido del índice de búsqueda Abrir opciones de indexación de Windows @@ -66,5 +86,36 @@ Eliminar del acceso rápido Eliminar del acceso rápido Elimina {0} actual del acceso rápido + Mostrar menú contextual de Windows + + + Fallo al cargar Everything SDK + Advertencia: El servicio de Everything no se está ejecutando + Error al consultar Everything + Ordenar por + Nombre + Ruta + Tamaño + Extensión + Tipo + Fecha de creación + Fecha de modificación + Atributos + Nombre de la lista de archivos + Número de ejecuciones + Fecha de cambios recientes + Fecha de último acceso + Fecha de ejecución + + + Advertencia: Esta no es una opción de clasificación rápida, las búsquedas pueden ser lentas + + Hacer clic para lanzar o instalar Everything + Instalación de Everything + Instalando el servicio de Everything. Por favor, espere... + Servicio de Everything instalado correctamente + No se ha podido instalar automáticamente el servicio de Everything. Por favor, instálelo manualmente desde https://www.voidtools.com + Hacer clic aquí para iniciarlo + No se ha podido encontrar una instalación de Everything, ¿desea seleccionar manualmente una ubicación?{0}{0}Si hace click en no, Everything se instalará automáticamente para usted diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml index b128d8d56..4844c5bdc 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Supprimer Modifier Ajouter + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Termin 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Supprimer @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Warning: Everything service is not running + Error while querying Everything + Sort By + Name + Path + Taille + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml index 5335d025e..aad9f2612 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Cancella Modifica Aggiungi + General Setting Customise Action Keywords Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + Tasto di accesso rapido alla finestra + Shell Path Index Search Excluded Paths + Utilizza il percorso ottenuto dalla ricerca come cartella di lavoro Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Conferma Enabled When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword + Tutto + Windows Index + Direct Enumeration - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Cancella @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Attenzione: Il servizio "Everything" non è in esecuzione + Errore nell'interrogazione di Everything + Ordina per + Name + Percorso + Dimensioni + Estensione + Tipo + Data di creazione + Data della modifica + Attributi + Nome File Lista + Esegui Conteggio + Data di recente della modifica + Data di accesso + Data di esecuzione + + + Attenzione: Questa non è un'opzione di ordinamento rapido, le ricerche potrebbero essere lente + + Click to Launch or Install Everything + 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 + Premi per avviare + Impossibile trovare l'installazione di Everything, vuoi inserire manualmente un percorso? {0} {0} Premi no per installare automaticamente Everything diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml index 9d0c00d25..50439308e 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + 削除 + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy 削除 @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Warning: Everything service is not running + Error while querying Everything + Sort By + Name + Path + サイズ + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml index 15d6ca4a7..5ff2caa54 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml @@ -1,7 +1,7 @@  - + Please make a selection first 폴더 링크를 선택하세요 Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + 삭제 편집 + General Setting 사용자 지정 액션 키워드 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on 색인 옵션 검색: 경로 검색: @@ -35,12 +42,24 @@ 완료 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + 탐색기 Window Index Search를 사용하여 파일과 폴더를 검색 및 관리합니다 - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + 경로 복사 복사하기 삭제 @@ -51,6 +70,7 @@ 포함된 폴더 열기 Opens the location that contains the file or folder 편집기에서 열기: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search 윈도우 인덱싱 옵션 열기 @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Warning: Everything service is not running + Error while querying Everything + Sort By + Name + Path + 크기 + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml index 4fb93acb6..e20853e5b 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Delete @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml index 774ba0e32..217a63b79 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Verwijder Bewerken Toevoegen + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Klaar 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Verwijder @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml index 21b11e73f..177161be0 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Musisz wybrać któryś folder z listy Czy jesteś pewien że chcesz usunąć {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Usuń Edytuj Dodaj + General Setting Customise Action Keywords Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + Ścieżka edytora + Shell Path Index Search Excluded Paths + Use search result's location as executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Zapisz 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Usu @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Everything Service nie jest uruchomiony + Wystąpił błąd podczas pobierania wyników z Everything + Sort By + Name + Path + Rozmiar + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml index 450dd647d..6ced1ce62 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Apagar Editar Adicionar + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Finalizado 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Apagar @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Warning: Everything service is not running + Error while querying Everything + Sort By + Name + Path + Tamanho + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml index 2f09d7f6d..37de2b5b4 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml @@ -1,7 +1,7 @@  - + Tem que efetuar uma seleção Selecione a ligação para a pasta Tem a certeza de que deseja eliminar {0}? @@ -16,15 +16,22 @@ Alternativa Ocorreu um erro ao pesquisar: {0} - + Eliminar Editar Adicionar + Definições gerais Personalizar palavras-chave Ligações de acesso rápido + Definições Everything + Ordenação: + Caminho para Everything: + Iniciar oculto + Caminho do editor + Caminho da consola Caminhos excluídos do índice de pesquisa + Utilizar local dos resultados como diretório de trabalho executável Utilizar índice de pesquisa para o caminho - Se ativar esta opção, os ficheiros e/ou diretórios indexados serão mostrados mais rapidamente mas, se um ficheiro ou diretório não estiver indexado não será mostrado. Se existirem ficheiros e/ou diretórios que tenham sido adicionados à exclusão do índice de pesquisa, serão mostrados. Opções de indexação Pesquisar: Pesquisa de caminho: @@ -35,12 +42,24 @@ Feito Ativo Se desativar a opção, Flow Launcher não irá executar esta opção de pesquisa e utilizará '*' para libertar a palavra-chave + Everything + Índice do Windows + Enumeração direta - + Mecanismo de pesquisa para conteúdo + Mecanismo de pesquisa recursiva de diretórios + Mecanismo de pesquisa do índice + Abrir opções do índice Windows + + Explorador Pesquisar e gerir ficheiros e pastas. O explorador utiliza o índice de pesquisa Windows. - + + Ctrl+Enter para abrir o diretório + Ctrl+Enter para abrir a pasta de destino + + Copiar caminho Copiar Eliminar @@ -51,6 +70,7 @@ Abrir pasta de destino Abre a localização que contém o ficheiro ou a pasta Abrir com o editor: + Abrir com a consola: Excluir diretório atual do índice de pesquisas Excluído do índice de pesquisas Abrir opções de indexação do Windows @@ -66,5 +86,36 @@ Remover do acesso rápido Remover do acesso rápido Remover {0} do acesso rápido + Mostrar menu de contexto do Windows + + + Falha ao carregar SDK Everything + Aviso: o serviço Everything não está em execução + Erro ao consultar Everything + Ordenar por + Nome + Caminho + Tamanho + Extensão + Nome do tipo + Data de criação + Data de modificação + Atributos + Por nome na lista de ficheiros + Número de execuções + Data alterada recentemente + Data de acesso + Data de execução + + + Aviso: esta não é uma opção de ordenação rápida e as pesquisas podem ser demoradas + + Clique para iniciar ou instalar Everything + Instalação Everything + A instalar o serviço Everything. Por favor aguarde... + Serviço Everything instalado com sucesso + Não foi possível instalar o serviço Everything. Descarregue a aplicação em https://www.voidtools.com e instale-a manualmente. + Clique aqui para iniciar + Não foi possível encontrar a instalação de Everything. Deseja especificar manualmente a localização?{0}{0}Clique Não e Everything será instalado automaticamente. diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml index aaa25d324..5e0786c62 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Удалить Редактировать Добавить + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Подтвердить 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Удалить @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Warning: Everything service is not running + Error while querying Everything + Sort By + Name + Path + Размер + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml index 5842974e2..098070a1e 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sk.xaml @@ -1,7 +1,7 @@  - + Najprv vyberte položku Vyberte odkaz na priečinok Naozaj chcete odstrániť {0}? @@ -16,15 +16,22 @@ Alternatíva pre Preskumníka Počas vyhľadávania došlo k chybe: {0} - + Odstrániť Upraviť Pridať + Všeobecné nastavenia Upraviť aktivačný príkaz Odkazy Rýchleho prístupu + Nastavenia Everything + Zoradenie: + Umiestnenie Everything: + Spustiť skryté + Cesta k editoru + Cesta k príkazovému riadku Vylúčené umiestnenia indexovania + Použiť cestu výsledku vyhľadávania ako pracovný priečinok spustiteľného súboru Na vyhľadanie cesty použiť vyhľadávanie v indexe - Zapnutím tejto funkcie sa zrýchli odozva indexovaných priečinkov/súborov, ale ak priečinok/súbor nie je indexovaný, nezobrazí sa. Ak bol priečinok/súbor pridaný do Vylúčené umiestnenia indexovania, zobrazí sa, aj keď je táto možnosť zapnutá Možnosti indexovania Vyhľadávanie: Cesta vyhľadávania: @@ -35,12 +42,24 @@ Hotovo Povolené Ak je vypnuté, Flow túto možnosť vyhľadávania nevykoná a následne sa vráti späť na "*", aby sa uvoľnila skratka akcie + Everything + Index Windowsu + Zoznam priečinkov - + Vyhľadávač obsahu + Priečinkový rekurzívny vyhľadávač + Indexový vyhľadávač + Otvoriť možnosti vyhľadávania vo Windowse + + Prieskumník Vyhľadáva a spravuje súbory a priečinky. Prieskumník používa indexovanie vyhľadávania vo Windowse - + + Ctrl + Enter na otvorenie priečinka + Ctrl + Enter na otvorenie umiestnenia priečinka + + Kopírovať cestu Kopírovať Odstrániť @@ -51,6 +70,7 @@ Otvoriť umiestnenie priečinka Otvorí umiestnenie, ktoré obsahuje súbor alebo priečinok Otvoriť v editore: + Otvori v príkazovom riadku: Vylúčiť položku a jej podpriečinky z indexu vyhľadávania Vylúčiť z indexu vyhľadávania Otvoriť možnosti vyhľadávania vo Windowse @@ -66,5 +86,36 @@ Odstráni z Rýchleho prístupu Odstráni z Rýchleho prístupu Odstráni {0} z Rýchleho prístupu + Zobraziť kontextovú ponuku Windowsu + + + Nepodarilo sa načítať Everything SDK + Upozornenie: Služba Everything nie je spustená + Chyba pri dopytovaní Everything + Zoradiť podľa + Názov + Cesta + Veľkosť + Prípona + Typ + Dátum vytvorenia + Dátum úpravy + Atribúty + Zoznam názvov súborov + Počet spustení + Nedávno zmenený dátum + Dátum prístupu + Dátum spustenia + + + Upozornenie: Toto nie je voľba Fast Sort, vyhľadávanie môže byť pomalé + + Kliknutím spustíte alebo nainštalujete Everything + Inštalácia Everything + Inštaluje sa služba Everything. Čakajte, prosím… + Služba Everything bola úspešne nainštalovaná + Automatická inštalácia služby Everything zlyhala. Prosím, nainštalujte ju manuálne z https://www.voidtools.com + Kliknutím sem ju spustíte + Nepodarilo sa nájsť inštaláciu Everything, chcete manuálne vybrať jej umiestnenie?{0}{0}Kliknutím na nie sa Everything automaticky nainštaluje diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml index 8a09b8834..66098dbba 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Obriši Izmeni Dodaj + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Gotovo 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Obriši @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml index 5a982e19f..757b98e7c 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Lütfen bir klasör bağlantısı seçin {0} bağlantısını silmek istediğinize emin misiniz? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Sil Düzenle Ekle + General Setting Customise Action Keywords Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + Düzenleyici Konumu + Shell Path Index Search Excluded Paths + Programın çalışma klasörü olarak sonuç klasörünü kullan Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Tamam 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Sil @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Everything Servisi çalışmıyor + Sorgu Everything üzerinde çalıştırılırken hata oluştu + Sort By + Name + Path + Boyut + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml index d19c4b33a..0765550f7 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml @@ -1,7 +1,7 @@  - + Please make a selection first Please select a folder link Are you sure you want to delete {0}? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + Видалити Редагувати Додати + 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 executable working directory Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on Indexing Options Search: Path Search: @@ -35,12 +42,24 @@ Готово 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + Explorer Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + Copy path Copy Видалити @@ -51,6 +70,7 @@ Open containing folder Opens the location that contains the file or folder Open With Editor: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + 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 + + 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 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml index dd32d0ec4..c1d25614b 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml @@ -1,7 +1,7 @@  - + 请先进行选择 请选择一个文件夹链接 您确定要删除 {0} 吗? @@ -16,15 +16,22 @@ 资源管理器选项 搜索时发生错误:{0} - + 删除 编辑 增加 + General Setting 自定义动作关键字 快速访问链接 + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + 编辑器路径 + Shell Path 索引搜索排除的路径 + 使用搜索结果的位置作为应用程序的工作目录 使用索引进行路径搜索 - 启用该选项会更快速地找到已索引的文件夹和文件,但未索引的项目不会出现在结果中。在“索引搜索排除的路径”中文件夹和文件仍会出现在结果中。 索引选项 搜索激活: 路径搜索激活: @@ -35,12 +42,24 @@ 确认 启用 当禁用时,Flow Launcher 将不会执行此搜索选项,并且还会恢复到“*”以释放动作关键字 + Everything + Windows Index + Direct Enumeration - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + 文件管理器 利用Windows索引来搜索和管理文件和文件夹。 - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + 复制路径 复制 删除 @@ -51,6 +70,7 @@ 打开文件所在文件夹 打开文件或文件夹所在目录 使用编辑器打开: + Open With Shell: 从索引搜索中排除当前目录和子目录 从索引搜索中排除 打开Windows索引选项 @@ -66,5 +86,36 @@ 从快速访问中删除 从快速访问中删除 从快速访问中删除 {0} + Show Windows Context Menu + + + Everything SDK Loaded Fail + 警告:Everything 服务未运行 + Everything 插件发生了一个错误(回车拷贝具体错误信息) + 排序依据 + 名称 + 路径 + 大小 + 扩展名 + 类型名称 + 创建日期 + 修改日期 + 属性 + 文件列表名 + 运行次数 + 最近更改日期 + 访问日期 + 运行日期 + + + 警告:这不是一个快速排序选项,搜索可能较慢。 + + Click to Launch or Install Everything + Everything 安装 + 正在安装 Everything 服务。请稍后... + 成功安装了 Everything 服务 + 自动安装 Everything 服务失败。请从 https://www.voidtools.com 手动下载并安装。 + 单击此处开始 + 无法找到任何 Everything 安装,您想手动选择一个位置吗?{0}{0} 单击 不 将自动为您安装 Everything。 diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml index e399f6ebf..708c946d7 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml @@ -1,7 +1,7 @@  - + Please make a selection first 請選擇一個資料夾 你確認要刪除{0}嗎? @@ -16,15 +16,22 @@ Explorer Alternative Error occurred during search: {0} - + 刪除 編輯 新增 + General Setting Customise Action Keywords Quick Access Links + Everything Setting + Sort Option: + Everything Path: + Launch Hidden + 編輯器路 + Shell Path Index Search Excluded Paths + 使用程式所在目錄作為工作目錄 Use Index Search For Path Search - Turning this on will return indexed directories/files faster, but if a directory/file is not indexed it will not show up. If a directory/file has been added to Index Search Excluded Path then it will still show up even if this option is on 索引選項 搜尋: Path Search: @@ -35,12 +42,24 @@ 已啟用 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 - + Content Search Engine + Directory Recursive Search Engine + Index Search Engine + Open Window Index Option + + 檔案總管 Search and manage files and folders. Explorer utilises Windows Index Search - + + Ctrl + Enter to open the directory + Ctrl + Enter to open the containing folder + + 複製路徑 複製 刪除 @@ -51,6 +70,7 @@ 開啟檔案位置 Opens the location that contains the file or folder 在編輯器中開啟: + Open With Shell: Exclude current and sub-directories from Index Search Excluded from Index Search Open Windows Indexing Options @@ -66,5 +86,36 @@ Remove from Quick Access Remove from Quick Access Remove the current {0} from Quick Access + Show Windows Context Menu + + + Everything SDK Loaded Fail + Everything Service 尚未啟動 + Everything 套件發生錯誤(Enter 複製具體錯誤訊息) + 排序依據 + 名稱 + 路徑 + 大小 + 擴展程序 + 類型 + 創建日期 + 修改日期 + 屬性 + File List FileName + 執行次數 + 近期變更 + 存取日期 + Date Run + + + Warning: This is not a Fast Sort option, searches may be slow + + Click to Launch or Install Everything + Everything 安裝程序 + 正在安裝 Everything 服務,請稍後... + 成功安裝 Everything 服務 + Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com + 點此開始 + 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 diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/da.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/de.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es-419.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml index 99b90fc50..c56a08ec7 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/es.xaml @@ -1,13 +1,14 @@  - + Descargando complemento Descargado correctamente Error: No se puede descargar el complemento {0} por {1} {2}{3}¿Desea desinstalar este complemento? Después de la desinstalación Flow se reiniciará automáticamente. {0} por {1} {2}{3}¿Desea instalar este complemento? Después de la instalación Flow se reiniciará automáticamente. Instalar complemento + Instalando complemento Descargar e instalar {0} Desinstalar complemento Complemento instalado correctamente. Reiniciando Flow, por favor espere... @@ -26,14 +27,14 @@ Instalando desde una fuente desconocida ¡Está instalando este complemento desde una fuente desconocida y puede contener riesgos potenciales!{0}{0}Por favor, asegúrese de saber de dónde procede este complemento y de que es seguro.{0}{0}¿Aún así desea continuar?{0}{0}(Puede desactivar esta advertencia en la configuración) - - - + + + Administrador de complementos Administración de instalación, desinstalación o actualización de los complementos de Flow Launcher Autor desconocido - + Abrir sitio web Visite el sitio web del complemento Ver código fuente @@ -43,6 +44,6 @@ Ir al repositorio de complementos de Flow Visite el repositorio PluginsManifest para ver complementos hechos por la comunidad - + Aviso de instalación desde fuentes desconocidas diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/fr.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml index 2eaa6331b..27e5918c7 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/it.xaml @@ -1,13 +1,14 @@  - + Download del plugin Download completato Errore: non è possibile scaricare il plugin {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 Scarica e installa {0} Disinstallazione del plugin Plugin installato con successo. Riavvio di Flow, attendere... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ja.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml index bab436966..f74e6bed3 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ko.xaml @@ -1,13 +1,14 @@  - + 플러그인 다운로드 중 다운로드 성공 오류: 플러그인을 받을 수 없습니다 {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. 플러그인 설치 + Installing Plugin 다운로드 및 설치 {0} 플러그인 제거 플러그인 설치 성공. Flow를 재시작합니다, 잠시 기다려주세요... @@ -26,14 +27,14 @@ 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) - - - + + + 플러그인 관리자 플러그인의 설치/삭제/업데이트를 관리하는 플러그인 알수없는 제작자 - + 웹사이트 열기 Visit the plugin's website See source code @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nb.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/nl.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pl.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-br.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml index a5cc8866b..880000acf 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/pt-pt.xaml @@ -1,13 +1,14 @@  - + Descarregar plugin Descarregado com sucesso Não foi possível descarregar o plugin {0} de {1} {2}{3}Tem a certeza de que pretende desinstalar este plugin? Após a desinstalação, Flow Launcher será reiniciado. {0} de {1} {2}{3}Tem a certeza de que pretende instalar este plugin? Após a instalação, Flow Launcher será reiniciado. Instalador de plugins + Instalando plugin... Descarregar e instalar {0} Desinstalador de plugins Plugin instalado com sucesso. Por favor aguarde, estamos a reiniciar Flow launcher... @@ -26,14 +27,14 @@ Instalar a partir de fontes desconhecidas Está a instalar este plugin a partir de uma fonte desconhecida o que pode ser perigoso!{0}{0}Certifique-se de que este plugin é seguro.{0}{0}Ainda assim, pretende continuar com a instalação?{0}{0}(Pode desativar este aviso nas definições da aplicação) - - - + + + Gestor de plugins Módulo para instalar, desinstalar e atualizar os plugins do Flow Launcher Autor desconhecido - + Abrir site Aceder ao site do plugin Ver código fonte @@ -43,6 +44,6 @@ Ir para o repositório de plugins Aceda ao repositório para ver os plugins submetidos pela comunidade - + Aviso ao instalar de fontes desconhecidas diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/ru.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml index b0abdd468..66334d15e 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sk.xaml @@ -1,13 +1,14 @@  - + Sťahovanie pluginu Úspešne stiahnuté Chyba: Nepodarilo sa stiahnuť plugin {0} od {1} {2}{3}Chcete odinštalovať tento plugin? Po odinštalovaní sa Flow automaticky reštartuje. {0} od {1} {2}{3}Chcete nainštalovať tento plugin? Po nainštalovaní sa Flow automaticky reštartuje. Inštalovať plugin + Inštaluje sa plugin Stiahnuť a nainštalovať {0} Odinštalovať plugin Plugin bol úspešne nainštalovaný. Reštartuje sa Flow, čakajte, prosím... @@ -26,14 +27,14 @@ Inštalácia z neznámeho zdroja Tento plugin inštalujete z neznámeho zdroja a môže obsahovať potenciálne riziká!{0}{0}Uistite sa, že rozumiete, odkiaľ tento plugin pochádza, a že je bezpečný.{0}{0}Chcete pokračovať?{0}{0}(Toto upozornenie môžete vypnúť v nastaveniach) - - - + + + Správca pluginov Správa inštalácie, odinštalácie alebo aktualizácie pluginov programu Flow Launcher Neznámy autor - + Prejsť na webovú stránku Prejsť na webovú stránku pluginu Zobraziť zdrojový kód @@ -43,6 +44,6 @@ Prejsť na repozitár pluginov spúšťača Flow Prejsť na repozitár pluginov spúšťača Flow a zobraziť príspevky komunity - + Upozornenie na inštaláciu z neznámeho zdroja diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/sr.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/tr.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml index 23fb6aa1e..ca8077bcb 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/uk-UA.xaml @@ -1,13 +1,14 @@  - + Downloading plugin Successfully downloaded Error: Unable to download the plugin {0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart. {0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart. Plugin Install + Installing Plugin Download and install {0} Plugin Uninstall Plugin successfully installed. Restarting Flow, please wait... @@ -26,14 +27,14 @@ 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 @@ -43,6 +44,6 @@ Go to Flow's plugins repository Visit the PluginsManifest repository to see community-made plugin submissions - + Install from unknown source warning diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml index 757bf2bf0..068b114e5 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml @@ -1,13 +1,14 @@  - + 下载插件 下载完成 错误:无法下载该插件 {0} by {1} {2}{3} 您要卸载此插件吗? 卸载后,Flow Launcher 将自动重启。 {0} by {1} {2}{3} 您要安装此插件吗? 安装后,Flow Launcher 将自动重启 插件安装 + Installing Plugin 下载与安装 {0} 插件卸载 插件安装成功。正在重新启动 Flow Launcher,请稍候... @@ -26,14 +27,14 @@ 从未知源安装 您正在从未知源安装此插件,它可能包含潜在风险!{0}{0}请确保您了解来源以及安全性。{0}{0}您想要继续吗?{0}{0}(您可以通过设置关闭此警告) - - - + + + 插件管理 安装,卸载或更新 Flow Launcher 插件 未知作者 - + 打开网站 访问插件的网站 查看源代码 @@ -43,6 +44,6 @@ 转到 Flow Launcher 的插件存储库 访问 PluginsManifest 存储库以查看社区提供的插件 - + 未知源安装警告 diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml index 7d1ff6782..dd636ecef 100644 --- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml +++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-tw.xaml @@ -1,13 +1,14 @@  - + 正在下載外掛 下載完成 錯誤:無法下載外掛 {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. 安裝外掛 + Installing Plugin 下載並安裝 {0} 移除外掛 外掛安裝成功。正在重啟 Flow,請稍後... @@ -26,14 +27,14 @@ Installing from an unknown source You are installing this plugin from an unknown source and it may contain potential risks!{0}{0}Please ensure you understand where this plugin is from and that it is safe.{0}{0}Would you like to continue still?{0}{0}(You can switch off this warning via settings) - - - + + + 外掛管理 Management of installing, uninstalling or updating Flow Launcher plugins 未知的作者 - + 打開網頁 查看外掛的網站 查看原始碼 @@ -43,6 +44,6 @@ 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.Program/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml index f6d6b6f7f..c520b25cd 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml @@ -79,7 +79,9 @@ Fortsæt + 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/de.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml index c54d6b785..d0489e1f6 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml @@ -79,7 +79,9 @@ Erfolgreich + 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/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml index 2b99b9e18..931e5681b 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml @@ -79,7 +79,9 @@ 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/es.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml index 52912ab6e..b04c92ff0 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml @@ -79,7 +79,9 @@ Correcto + Error Programa desactivado correctamente en las búsquedas Esta aplicación no fue diseñada para ser ejecutada como administrador + No se puede ejecutar {0} diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml index d2dc91859..904cb8cb8 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml @@ -79,7 +79,9 @@ Ajout + 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/it.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml index bd7e8baec..36d432378 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml @@ -79,7 +79,9 @@ Successo + 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/ja.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml index 02a7903da..fb25a40a4 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml @@ -79,7 +79,9 @@ 成功しまし + 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/ko.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml index 7248e18c4..0b5998f42 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml @@ -79,7 +79,9 @@ 성공 + Error 쿼리 결과에 이 프로그램이 표시되지 않도록 비활성화 했습니다. 이 앱은 관리자로 실행되지 않습니다 + Unable to run {0} diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml index 92cb56f34..a6f947a7a 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml @@ -79,7 +79,9 @@ 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/nl.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml index 1a2f0ca49..3a56ed975 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml @@ -79,7 +79,9 @@ Succesvol + 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/pl.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml index fd2335447..d8c0344a4 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml @@ -79,7 +79,9 @@ Sukces + 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/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml index 8b7ea5b3e..7b1486668 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml @@ -79,7 +79,9 @@ Sucesso + 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/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml index 2ee916ca3..dda5bf72e 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml @@ -79,7 +79,9 @@ Sucesso + Erro Desativou com sucesso a exibição deste programa nas suas consultas Não é suposto que esta aplicação seja executada como administrador + Não foi possível executar {0} diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml index aff871015..ff39b9277 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml @@ -79,7 +79,9 @@ Успешно + 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/sk.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml index 3b663906f..82e8a0f30 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml @@ -79,7 +79,9 @@ Úspešné + Chyba Úspešne zakázané zobrazovanie tohto programu vo výsledkoch vyhľadávania Táto aplikácia nie je určená na spustenie ako správca + Nie je možné spustiť {0} diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml index c842bc363..d05106b4c 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml @@ -79,7 +79,9 @@ Uspešno + 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/tr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml index 12034dfb9..1f6d776f6 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml @@ -79,7 +79,9 @@ Başarılı + 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/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml index 621724511..f7f824c61 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml @@ -79,7 +79,9 @@ Успішно + 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/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml index b4a0f266d..ec5b7c10f 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml @@ -79,7 +79,9 @@ 成功 + Error 成功禁止该程序在搜索结果中显示 此应用程序不能作为管理员运行 + Unable to run {0} diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml index b88633037..a086ce3bb 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml @@ -79,7 +79,9 @@ + 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.Sys/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/es.xaml index e379fb14c..4a7910df7 100644 --- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/es.xaml @@ -22,7 +22,7 @@ Refresca los datos del complemento con nuevo contenido Abre la ubicación de los archivos de registro de Flow Launcher Busca actualizaciones de Flow Launcher - Visite la documentación de Flow Launcher para más ayuda y consejos de uso + Accede a la documentación de Flow Launcher para más ayuda y consejos de uso Abre la ubicación donde se almacena la configuración de Flow Launcher diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml index d9b0c0e32..1c0d66f05 100644 --- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml +++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml @@ -40,7 +40,7 @@ Por favor, introduzca una URL La palabra clave de acción ya está en uso, por favor, introduzca una diferente Correcto - Sugerencia: No es necesario copiar imágenes personalizadas en esta carpeta, cuando Flow sea actualizado se perderán. Flow copiará automáticamente cualquier imagen externa a esta carpeta en la ubicación de imágenes personalizada de WebSearch. + Sugerencia: No es necesario colocar imágenes personalizadas en esta carpeta, al actualizar Flow se perderán. Flow copiará automáticamente cualquier imagen externa a esta carpeta en la ubicación de imágenes personalizada de WebSearch. Búsquedas Web Permite realizar búsquedas web diff --git a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx index 7cd57d6b1..af912181c 100644 --- a/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx +++ b/Plugins/Flow.Launcher.Plugin.WindowsSettings/Properties/Resources.pt-PT.resx @@ -2031,7 +2031,7 @@ Change when the computer sleeps - Set up a virtual private network (VPN) connection + Configurar uma rede privada (VPN) Accommodate learning abilities @@ -2055,7 +2055,7 @@ Accommodate low vision - Manage offline files + Gerenciar ficheiros offline Review your computer's status and resolve issues @@ -2091,7 +2091,7 @@ Change tablet pen settings - Change how your mouse works + Alterar modo de funcionamento do rato Show how much RAM is on this computer From 89b5242d18e73c54f6608576c11477b50a349e93 Mon Sep 17 00:00:00 2001 From: DB p Date: Tue, 6 Dec 2022 07:46:03 +0900 Subject: [PATCH 5/7] Adjust Preview Area Heights --- Flow.Launcher/MainWindow.xaml | 20 ++++++++++++++++---- Flow.Launcher/Themes/Base.xaml | 7 ++++++- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/Flow.Launcher/MainWindow.xaml b/Flow.Launcher/MainWindow.xaml index 24bfb1a1b..7b009afae 100644 --- a/Flow.Launcher/MainWindow.xaml +++ b/Flow.Launcher/MainWindow.xaml @@ -392,20 +392,22 @@ - + - + + + + - + + + + + +