Merge branch 'dev' into github-action

This commit is contained in:
Kevin Zhang 2024-12-02 07:49:45 -08:00 committed by GitHub
commit 2b03193b9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
111 changed files with 3143 additions and 3044 deletions

View file

@ -10,7 +10,7 @@ triggers:
branch: branch:
- l10n_dev - l10n_dev
- dev - dev
- r/(?i)(Dependabot|Renovate)/ - r/([Dd]ependabot|[Rr]enovate)/
automations: automations:

View file

@ -54,7 +54,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Droplex" Version="1.7.0" /> <PackageReference Include="Droplex" Version="1.7.0" />
<PackageReference Include="FSharp.Core" Version="8.0.301" /> <PackageReference Include="FSharp.Core" Version="9.0.100" />
<PackageReference Include="Meziantou.Framework.Win32.Jobs" Version="3.4.0" /> <PackageReference Include="Meziantou.Framework.Win32.Jobs" Version="3.4.0" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" /> <PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
<PackageReference Include="squirrel.windows" Version="1.5.2" NoWarn="NU1701" /> <PackageReference Include="squirrel.windows" Version="1.5.2" NoWarn="NU1701" />

View file

@ -4,8 +4,15 @@ using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Documents; using System.Windows.Documents;
using System.Windows.Forms;
using Flow.Launcher.Infrastructure.Storage; using Flow.Launcher.Infrastructure.Storage;
using Flow.Launcher.Plugin; using Flow.Launcher.Plugin;
using CheckBox = System.Windows.Controls.CheckBox;
using ComboBox = System.Windows.Controls.ComboBox;
using Control = System.Windows.Controls.Control;
using Orientation = System.Windows.Controls.Orientation;
using TextBox = System.Windows.Controls.TextBox;
using UserControl = System.Windows.Controls.UserControl;
namespace Flow.Launcher.Core.Plugin namespace Flow.Launcher.Core.Plugin
{ {
@ -224,6 +231,7 @@ namespace Flow.Launcher.Core.Plugin
break; break;
} }
case "inputWithFileBtn": case "inputWithFileBtn":
case "inputWithFolderBtn":
{ {
var textBox = new TextBox() var textBox = new TextBox()
{ {
@ -243,6 +251,24 @@ namespace Flow.Launcher.Core.Plugin
Margin = new Thickness(10, 0, 0, 0), Content = "Browse" Margin = new Thickness(10, 0, 0, 0), Content = "Browse"
}; };
Btn.Click += (_, _) =>
{
using CommonDialog dialog = type switch
{
"inputWithFolderBtn" => new FolderBrowserDialog(),
_ => new OpenFileDialog(),
};
if (dialog.ShowDialog() != DialogResult.OK) return;
var path = dialog switch
{
FolderBrowserDialog folderDialog => folderDialog.SelectedPath,
OpenFileDialog fileDialog => fileDialog.FileName,
};
textBox.Text = path;
Settings[attribute.Name] = path;
};
var dockPanel = new DockPanel() { Margin = settingControlMargin }; var dockPanel = new DockPanel() { Margin = settingControlMargin };
DockPanel.SetDock(Btn, Dock.Right); DockPanel.SetDock(Btn, Dock.Right);

View file

@ -54,8 +54,8 @@
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="MemoryPack" Version="1.21.1" /> <PackageReference Include="MemoryPack" Version="1.21.3" />
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.10.48" /> <PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.12.19" />
<PackageReference Include="NLog" Version="4.7.10" /> <PackageReference Include="NLog" Version="4.7.10" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" /> <PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" /> <PackageReference Include="System.Drawing.Common" Version="7.0.0" />

View file

@ -67,7 +67,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" /> <PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" /> <PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
</ItemGroup> </ItemGroup>

View file

@ -54,7 +54,7 @@
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -20,6 +20,11 @@
<ResourceDictionary Source="pack://application:,,,/Resources/Dark.xaml" /> <ResourceDictionary Source="pack://application:,,,/Resources/Dark.xaml" />
</ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries>
</ResourceDictionary> </ResourceDictionary>
<ResourceDictionary x:Key="HighContrast">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/Resources/Dark.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</ui:ThemeResources.ThemeDictionaries> </ui:ThemeResources.ThemeDictionaries>
</ui:ThemeResources> </ui:ThemeResources>
<ui:XamlControlsResources /> <ui:XamlControlsResources />

View file

@ -83,7 +83,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.1" /> <PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="Fody" Version="6.5.4"> <PackageReference Include="Fody" Version="6.5.4">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@ -96,7 +96,7 @@
<PackageReference Include="NHotkey.Wpf" Version="3.0.0" /> <PackageReference Include="NHotkey.Wpf" Version="3.0.0" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" /> <PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
<PackageReference Include="SemanticVersioning" Version="3.0.0-beta2" /> <PackageReference Include="SemanticVersioning" Version="3.0.0-beta2" />
<PackageReference Include="VirtualizingWrapPanel" Version="2.0.10" /> <PackageReference Include="VirtualizingWrapPanel" Version="2.1.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

@ -6,6 +6,6 @@ internal static class WindowsMediaPlayerHelper
internal static bool IsWindowsMediaPlayerInstalled() internal static bool IsWindowsMediaPlayerInstalled()
{ {
using var key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\MediaPlayer"); using var key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\MediaPlayer");
return key.GetValue("Installation Directory") != null; return key?.GetValue("Installation Directory") != null;
} }
} }

View file

@ -2,28 +2,28 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Startup --> <!-- Startup -->
<system:String x:Key="runtimePluginInstalledChooseRuntimePrompt"> <system:String x:Key="runtimePluginInstalledChooseRuntimePrompt">
Flow detected you have installed {0} plugins, which will require {1} to run. Would you like to download {1}? Flow hat festgestellt, dass Sie {0} Plug-ins installiert haben, welche {1} zum Ausführen erfordern. Möchten Sie {1} herunterladen?
{2}{2} {2}{2}
Click no if it's already installed, and you will be prompted to select the folder that contains the {1} executable Klicken Sie auf „Nein“, wenn es bereits installiert ist, und Sie werden aufgefordert, den Ordner auszuwählen, der die ausführbare Datei {1} enthält
</system:String> </system:String>
<system:String x:Key="runtimePluginChooseRuntimeExecutable">Bitte wählen Sie das Programm {0} aus</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">Bitte wählen Sie die ausführbare Datei {0} aus</system:String>
<system:String x:Key="runtimePluginUnableToSetExecutablePath">Unable to set {0} executable path, please try from Flow's settings (scroll down to the bottom).</system:String> <system:String x:Key="runtimePluginUnableToSetExecutablePath">Der Pfad zur ausführbaren Datei {0} kann nicht festgelegt werden. Bitte versuchen Sie es in den Einstellungen von Flow (scrollen Sie nach unten).</system:String>
<system:String x:Key="failedToInitializePluginsTitle">Fehler beim Initialisieren der Plugins</system:String> <system:String x:Key="failedToInitializePluginsTitle">Plug-ins können nicht initialisiert werden</system:String>
<system:String x:Key="failedToInitializePluginsMessage">Plugins: {0} - fail to load and would be disabled, please contact plugin creator for help</system:String> <system:String x:Key="failedToInitializePluginsMessage">Plug-ins: {0} - nicht geladen werden und wird deaktiviert, bitte kontaktiere Sie den Ersteller des Plug-ins für Hilfe</system:String>
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Fehler beim Registrieren des Hotkeys &quot;{0}&quot;. Der Hotkey wird möglicherweise von einem anderen Programm verwendet. Wechseln Sie zu einem anderen Hotkey oder beenden Sie das andere Programm.</system:String> <system:String x:Key="registerHotkeyFailed">Hotkey &quot;{0}&quot; konnte nicht registriert werden. Der Hotkey ist möglicherweise von einem anderen Programm in Verwendung. Wechseln Sie zu einem anderen Hotkey oder beenden Sie das andere Programm.</system:String>
<system:String x:Key="MessageBoxTitle">Flow Launcher</system:String> <system:String x:Key="MessageBoxTitle">Flow Launcher</system:String>
<system:String x:Key="couldnotStartCmd">Kann {0} nicht starten</system:String> <system:String x:Key="couldnotStartCmd">Konnte nicht gestartet werden {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Fehlerhaftes Flow Launcher-Plugin Dateiformat</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcher Plug-in-Dateiformat ungültig</system:String>
<system:String x:Key="setAsTopMostInThisQuery">In dieser Abfrage als oberstes setzen</system:String> <system:String x:Key="setAsTopMostInThisQuery">In dieser Abfrage als oberstes festlegen</system:String>
<system:String x:Key="cancelTopMostInThisQuery">In dieser Abfrage oberstes abbrechen</system:String> <system:String x:Key="cancelTopMostInThisQuery">In dieser Abfrage oberstes abbrechen</system:String>
<system:String x:Key="executeQuery">Abfrage ausführen:{0}</system:String> <system:String x:Key="executeQuery">Abfrage ausführen: {0}</system:String>
<system:String x:Key="lastExecuteTime">Letzte Ausführungszeit:{0}</system:String> <system:String x:Key="lastExecuteTime">Letzte Ausführungszeit: {0}</system:String>
<system:String x:Key="iconTrayOpen">Öffnen</system:String> <system:String x:Key="iconTrayOpen">Öffnen</system:String>
<system:String x:Key="iconTraySettings">Einstellungen</system:String> <system:String x:Key="iconTraySettings">Einstellungen</system:String>
<system:String x:Key="iconTrayAbout">Über</system:String> <system:String x:Key="iconTrayAbout">Über</system:String>
<system:String x:Key="iconTrayExit">Schließen</system:String> <system:String x:Key="iconTrayExit">Beenden</system:String>
<system:String x:Key="closeWindow">Schließen</system:String> <system:String x:Key="closeWindow">Schließen</system:String>
<system:String x:Key="copy">Kopieren</system:String> <system:String x:Key="copy">Kopieren</system:String>
<system:String x:Key="cut">Ausschneiden</system:String> <system:String x:Key="cut">Ausschneiden</system:String>
@ -34,327 +34,327 @@
<system:String x:Key="folderTitle">Ordner</system:String> <system:String x:Key="folderTitle">Ordner</system:String>
<system:String x:Key="textTitle">Text</system:String> <system:String x:Key="textTitle">Text</system:String>
<system:String x:Key="GameMode">Spielmodus</system:String> <system:String x:Key="GameMode">Spielmodus</system:String>
<system:String x:Key="GameModeToolTip">Hotkeys deaktivieren.</system:String> <system:String x:Key="GameModeToolTip">Aussetzen der Verwendung von Hotkeys.</system:String>
<system:String x:Key="PositionReset">Position zurücksetzen</system:String> <system:String x:Key="PositionReset">Position zurücksetzen</system:String>
<system:String x:Key="PositionResetToolTip">Position des Suchfensters zurücksetzen</system:String> <system:String x:Key="PositionResetToolTip">Position des Suchfensters zurücksetze</system:String>
<!-- Setting General --> <!-- Setting General -->
<system:String x:Key="flowlauncher_settings">Einstellungen</system:String> <system:String x:Key="flowlauncher_settings">Einstellungen</system:String>
<system:String x:Key="general">Allgemein</system:String> <system:String x:Key="general">Allgemein</system:String>
<system:String x:Key="portableMode">Portabler Modus</system:String> <system:String x:Key="portableMode">Portabler Modus</system:String>
<system:String x:Key="portableModeToolTIp">Speichern Sie alle Einstellungen und Benutzerdaten in einem Ordner (nützlich bei Verwendung mit Wechseldatenträgern oder Clouddiensten).</system:String> <system:String x:Key="portableModeToolTIp">Speichern Sie alle Einstellungen und Benutzerdaten in einem Ordner (nützlich bei Verwendung von Wechsellaufwerken oder Cloud-Diensten).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Starte Flow Launcher bei Systemstart</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Flow Launcher bei Systemstart starten</system:String>
<system:String x:Key="setAutoStartFailed">Fehler beim Speichern von Autostart bei Systemstart</system:String> <system:String x:Key="setAutoStartFailed">Fehler bei Einstellungsstart bei Start</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Verstecke Flow Launcher wenn der Fokus verloren geht</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Flow Launcher ausblenden, wenn Fokus verloren geht</system:String>
<system:String x:Key="dontPromptUpdateMsg">Zeige keine Nachricht wenn eine neue Version vorhanden ist</system:String> <system:String x:Key="dontPromptUpdateMsg">Versionsbenachrichtigungen nicht zeigen</system:String>
<system:String x:Key="SearchWindowPosition">Suchfenster Position</system:String> <system:String x:Key="SearchWindowPosition">Position des Suchfensters</system:String>
<system:String x:Key="SearchWindowScreenRememberLastLaunchLocation">Letzte Position merken</system:String> <system:String x:Key="SearchWindowScreenRememberLastLaunchLocation">Letzte Position merken</system:String>
<system:String x:Key="SearchWindowScreenCursor">Bildschirm mit Mauszeiger</system:String> <system:String x:Key="SearchWindowScreenCursor">Monitor mit Mauscursor</system:String>
<system:String x:Key="SearchWindowScreenFocus">Bildschirm mit fokussiertem Fenster</system:String> <system:String x:Key="SearchWindowScreenFocus">Monitor mit fokussiertem Fenster</system:String>
<system:String x:Key="SearchWindowScreenPrimary">Primärer Bildschirm</system:String> <system:String x:Key="SearchWindowScreenPrimary">Primärer Monitor</system:String>
<system:String x:Key="SearchWindowScreenCustom">Benutzerdefinierter Bildschirm</system:String> <system:String x:Key="SearchWindowScreenCustom">Benutzerdefinierter Monitor</system:String>
<system:String x:Key="SearchWindowAlign">Suchfenster Position auf Bildschirm</system:String> <system:String x:Key="SearchWindowAlign">Position des Suchfensters auf Monitor</system:String>
<system:String x:Key="SearchWindowAlignCenter">Mittig</system:String> <system:String x:Key="SearchWindowAlignCenter">Zentriert</system:String>
<system:String x:Key="SearchWindowAlignCenterTop">Oben mittig</system:String> <system:String x:Key="SearchWindowAlignCenterTop">Oben zentriert</system:String>
<system:String x:Key="SearchWindowAlignLeftTop">Links oben</system:String> <system:String x:Key="SearchWindowAlignLeftTop">Links oben</system:String>
<system:String x:Key="SearchWindowAlignRightTop">Rechts oben</system:String> <system:String x:Key="SearchWindowAlignRightTop">Rechts oben</system:String>
<system:String x:Key="SearchWindowAlignCustom">Benutzerdefinierte Position</system:String> <system:String x:Key="SearchWindowAlignCustom">Benutzerdefinierte Position</system:String>
<system:String x:Key="language">Sprache</system:String> <system:String x:Key="language">Sprache</system:String>
<system:String x:Key="lastQueryMode">Abfragestil auswählen</system:String> <system:String x:Key="lastQueryMode">Letzter Abfragestil</system:String>
<system:String x:Key="lastQueryModeToolTip">Vorherige Ergebnisse ein-/ausblenden, wenn Flow Launcher wieder aktiviert wird.</system:String> <system:String x:Key="lastQueryModeToolTip">Vorherige Ergebnisse zeigen/ausblenden, wenn Flow Launcher reaktiviert wird.</system:String>
<system:String x:Key="LastQueryPreserved">Letzte Abfrage beibehalten</system:String> <system:String x:Key="LastQueryPreserved">Letzte Abfrage beibehalten</system:String>
<system:String x:Key="LastQuerySelected">Letzte Abfrage auswählen</system:String> <system:String x:Key="LastQuerySelected">Letzte Abfrage auswählen</system:String>
<system:String x:Key="LastQueryEmpty">Letzte Abfrage leeren</system:String> <system:String x:Key="LastQueryEmpty">Letzte Abfrage leeren</system:String>
<system:String x:Key="KeepMaxResults">Feste Fensterhöhe</system:String> <system:String x:Key="KeepMaxResults">Feste Fensterhöhe</system:String>
<system:String x:Key="KeepMaxResultsToolTip">Die Fensterhöhe lässt sich durch Ziehen nicht einstellen.</system:String> <system:String x:Key="KeepMaxResultsToolTip">Die Fensterhöhe ist durch Ziehen nicht anpassbar.</system:String>
<system:String x:Key="maxShowResults">Maximale Anzahl Ergebnissen</system:String> <system:String x:Key="maxShowResults">Maximal gezeigte Ergebnisse</system:String>
<system:String x:Key="maxShowResultsToolTip">Kann mit CTRL+Plus und CTRL+Minus schnell festgelegt werden.</system:String> <system:String x:Key="maxShowResultsToolTip">Sie können dies auch unter Verwendung von STRG+Plus und STRG+Minus schnell anpassen.</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreen">Ignoriere Tastenkombination wenn Fenster im Vollbildmodus ist</system:String> <system:String x:Key="ignoreHotkeysOnFullscreen">Hotkeys im Vollbildmodus ignorieren</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Deaktiviere Flow Launcher, wenn eine Vollbildanwendung aktiv ist (Empfohlen für Spiele).</system:String> <system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Aktivierung von Flow Launcher deaktivieren, wenn eine Vollbildanwendung aktiv ist (empfohlen für Spiele).</system:String>
<system:String x:Key="defaultFileManager">Standard-Dateimanager</system:String> <system:String x:Key="defaultFileManager">Dateimanager per Default</system:String>
<system:String x:Key="defaultFileManagerToolTip">Wählen Sie den Dateimanager, der beim Öffnen des Ordners verwendet werden soll.</system:String> <system:String x:Key="defaultFileManagerToolTip">Wählen Sie den Dateimanager aus, der beim Öffnen des Ordners verwendet werden soll.</system:String>
<system:String x:Key="defaultBrowser">Standardbrowser</system:String> <system:String x:Key="defaultBrowser">Webbrowser per Default</system:String>
<system:String x:Key="defaultBrowserToolTip">Einstellung für neuen Tab, neues Fenster und dem Privatmodus.</system:String> <system:String x:Key="defaultBrowserToolTip">Einstellung für Neuer Tab, Neues Fenster, Privater Modus.</system:String>
<system:String x:Key="pythonFilePath">Python-Pfad</system:String> <system:String x:Key="pythonFilePath">Python-Pfad</system:String>
<system:String x:Key="nodeFilePath">Node.js-Pfad</system:String> <system:String x:Key="nodeFilePath">Node.js-Pfad</system:String>
<system:String x:Key="selectNodeExecutable">Bitte wählen Sie das Programm Node.js aus</system:String> <system:String x:Key="selectNodeExecutable">Bitte wählen Sie das Programm Node.js aus</system:String>
<system:String x:Key="selectPythonExecutable">Bitte wählen Sie pythonw.exe aus</system:String> <system:String x:Key="selectPythonExecutable">Bitte wählen Sie pythonw.exe aus</system:String>
<system:String x:Key="typingStartEn">Starte Eingabe immer im englischen Modus</system:String> <system:String x:Key="typingStartEn">Tippen immer im englischen Modus starten</system:String>
<system:String x:Key="typingStartEnTooltip">Eingabemethode temporär auf Englisch wechseln beim Aktivieren von Flow.</system:String> <system:String x:Key="typingStartEnTooltip">Ändern Sie Ihre Eingabemethode temporär in den englischen Modus, wenn Sie Flow aktivieren.</system:String>
<system:String x:Key="autoUpdates">Automatische Aktualisierung</system:String> <system:String x:Key="autoUpdates">Auto-Update</system:String>
<system:String x:Key="select">Auswählen</system:String> <system:String x:Key="select">Auswählen</system:String>
<system:String x:Key="hideOnStartup">Verstecke Flow Launcher bei Systemstart</system:String> <system:String x:Key="hideOnStartup">Flow Launcher beim Start ausblenden</system:String>
<system:String x:Key="hideOnStartupToolTip">Das Flow-Launcher-Suchfenster wird nach dem Start in der Taskleiste versteckt.</system:String> <system:String x:Key="hideOnStartupToolTip">Flow Launcher-Suchfenster wird nach dem Start in der Taskleiste ausgeblendet.</system:String>
<system:String x:Key="hideNotifyIcon">Statusleistensymbol ausblenden</system:String> <system:String x:Key="hideNotifyIcon">Tray-Icon ausblenden</system:String>
<system:String x:Key="hideNotifyIconToolTip">Wenn das Icon in der Taskleiste nicht sichtbar ist, kann das Einstellungen-Menü durch Rechtsklick auf das Suchfenster geöffnet werden.</system:String> <system:String x:Key="hideNotifyIconToolTip">Wenn das Icon in der Taskleiste ausgeblendet ist, kann das Menü Einstellungen durch einen Rechtsklick auf das Suchfenster geöffnet werden.</system:String>
<system:String x:Key="querySearchPrecision">Suchgenauigkeit abfragen</system:String> <system:String x:Key="querySearchPrecision">Suchgenauigkeit abfragen</system:String>
<system:String x:Key="querySearchPrecisionToolTip">Erforderliche Suchergebnisse.</system:String> <system:String x:Key="querySearchPrecisionToolTip">Ändert den für Ergebnisse erforderlichen Mindestübereinstimmungswert.</system:String>
<system:String x:Key="SearchPrecisionNone">Keine</system:String> <system:String x:Key="SearchPrecisionNone">Keine</system:String>
<system:String x:Key="SearchPrecisionLow">Gering</system:String> <system:String x:Key="SearchPrecisionLow">Gering</system:String>
<system:String x:Key="SearchPrecisionRegular">Normal</system:String> <system:String x:Key="SearchPrecisionRegular">Regelmäßig</system:String>
<system:String x:Key="ShouldUsePinyin">Pinyin aktivieren</system:String> <system:String x:Key="ShouldUsePinyin">Suche mit Pinyin</system:String>
<system:String x:Key="ShouldUsePinyinToolTip">Ermöglicht die Verwendung von Pinyin für die Suche. Pinyin ist das Standardsystem der romanisierten Schreibweise für die Übersetzung von chinesischen Texten.</system:String> <system:String x:Key="ShouldUsePinyinToolTip">Ermöglicht die Verwendung von Pinyin für die Suche. Pinyin ist das Standardsystem der romanisierten Schreibweise für die Übersetzung von chinesischen Texten.</system:String>
<system:String x:Key="AlwaysPreview">Immer Vorschau anzeigen</system:String> <system:String x:Key="AlwaysPreview">Immer Vorschau</system:String>
<system:String x:Key="AlwaysPreviewToolTip">Öffne immer das Vorschaufenster, wenn Flow aktiviert wird. Drücke {0} zum Umschalten.</system:String> <system:String x:Key="AlwaysPreviewToolTip">Vorschau-Panel immer öffnen, wenn Flow aktiviert ist. Drücken Sie {0}, um Vorschau umzuschalten.</system:String>
<system:String x:Key="shadowEffectNotAllowed">Der Schatteneffekt ist nicht zulässig, wenn das aktuelle Thema den Weichzeichneffekt aktiviert hat</system:String> <system:String x:Key="shadowEffectNotAllowed">Schatteneffekt ist nicht erlaubt, während das aktuelle Theme den Unschärfe-Effekt aktiviert hat</system:String>
<!-- Setting Plugin --> <!-- Setting Plugin -->
<system:String x:Key="searchplugin">Plugins durchsuchen</system:String> <system:String x:Key="searchplugin">Plug-in suchen</system:String>
<system:String x:Key="searchpluginToolTip">Strg+F um Plugins zu suchen</system:String> <system:String x:Key="searchpluginToolTip">Strg+F, um Plug-ins zu suchen</system:String>
<system:String x:Key="searchplugin_Noresult_Title">Keine Ergebnisse</system:String> <system:String x:Key="searchplugin_Noresult_Title">Keine Ergebnisse gefunden</system:String>
<system:String x:Key="searchplugin_Noresult_Subtitle">Probiere eine andere Suchanfrage.</system:String> <system:String x:Key="searchplugin_Noresult_Subtitle">Bitte versuchen Sie eine andere Suche.</system:String>
<system:String x:Key="plugin">Erweiterung</system:String> <system:String x:Key="plugin">Plug-in</system:String>
<system:String x:Key="plugins">Erweiterung</system:String> <system:String x:Key="plugins">Plug-ins</system:String>
<system:String x:Key="browserMorePlugins">Suche nach weiteren Plugins</system:String> <system:String x:Key="browserMorePlugins">Mehr Plug-ins finden</system:String>
<system:String x:Key="enable">Aktivieren</system:String> <system:String x:Key="enable">Ein</system:String>
<system:String x:Key="disable">Deaktivieren</system:String> <system:String x:Key="disable">Aus</system:String>
<system:String x:Key="actionKeywordsTitle">Aktionswort Einstellung</system:String> <system:String x:Key="actionKeywordsTitle">Aktions-Schlüsselwort-Einstellung</system:String>
<system:String x:Key="actionKeywords">Aktionsschlüsselwörter</system:String> <system:String x:Key="actionKeywords">Aktions-Schlüsselwort</system:String>
<system:String x:Key="currentActionKeywords">Aktuelles Aktionswort</system:String> <system:String x:Key="currentActionKeywords">Aktuelles Action-Schlüsselwort</system:String>
<system:String x:Key="newActionKeyword">Neues Aktionswort</system:String> <system:String x:Key="newActionKeyword">Neues Aktions-Schlüsselwort</system:String>
<system:String x:Key="actionKeywordsTooltip">Aktionswörter ändern</system:String> <system:String x:Key="actionKeywordsTooltip">Aktions-Schlüsselwörter ändern</system:String>
<system:String x:Key="currentPriority">Aktuelle Priorität</system:String> <system:String x:Key="currentPriority">Aktuelle Priorität</system:String>
<system:String x:Key="newPriority">Neue Priorität</system:String> <system:String x:Key="newPriority">Neue Priorität</system:String>
<system:String x:Key="priority">Priorität</system:String> <system:String x:Key="priority">Priorität</system:String>
<system:String x:Key="priorityToolTip">Ändere die Priorität der Plugin-Ergebnisse</system:String> <system:String x:Key="priorityToolTip">Priorität der Plug-in-Ergebnisse ändern</system:String>
<system:String x:Key="pluginDirectory">Pluginordner</system:String> <system:String x:Key="pluginDirectory">Plug-in-Verzeichnis</system:String>
<system:String x:Key="author">von</system:String> <system:String x:Key="author">von</system:String>
<system:String x:Key="plugin_init_time">Initialisierungszeit:</system:String> <system:String x:Key="plugin_init_time">Init-Zeit:</system:String>
<system:String x:Key="plugin_query_time">Abfragezeit:</system:String> <system:String x:Key="plugin_query_time">Abfragezeit:</system:String>
<system:String x:Key="plugin_query_version">Version</system:String> <system:String x:Key="plugin_query_version">Version</system:String>
<system:String x:Key="plugin_query_web">Webseite</system:String> <system:String x:Key="plugin_query_web">Website</system:String>
<system:String x:Key="plugin_uninstall">Deinstallieren</system:String> <system:String x:Key="plugin_uninstall">Deinstallieren</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Erweiterungen laden</system:String> <system:String x:Key="pluginStore">Plug-in-Store</system:String>
<system:String x:Key="pluginStore_NewRelease">Neue Version</system:String> <system:String x:Key="pluginStore_NewRelease">Neues Release</system:String>
<system:String x:Key="pluginStore_RecentlyUpdated">Vor kurzem aktualisiert</system:String> <system:String x:Key="pluginStore_RecentlyUpdated">Kürzlich aktualisiert</system:String>
<system:String x:Key="pluginStore_None">Erweiterungen</system:String> <system:String x:Key="pluginStore_None">Plug-ins</system:String>
<system:String x:Key="pluginStore_Installed">Installiert</system:String> <system:String x:Key="pluginStore_Installed">Installiert</system:String>
<system:String x:Key="refresh">Aktualisieren</system:String> <system:String x:Key="refresh">Refresh</system:String>
<system:String x:Key="installbtn">Installieren</system:String> <system:String x:Key="installbtn">Installieren</system:String>
<system:String x:Key="uninstallbtn">Deinstallieren</system:String> <system:String x:Key="uninstallbtn">Deinstallieren</system:String>
<system:String x:Key="updatebtn">Aktualisieren</system:String> <system:String x:Key="updatebtn">Aktualisieren</system:String>
<system:String x:Key="LabelInstalledToolTip">Plugin ist bereits installiert</system:String> <system:String x:Key="LabelInstalledToolTip">Plug-in bereits installiert</system:String>
<system:String x:Key="LabelNew">Neue Version</system:String> <system:String x:Key="LabelNew">Neue Version</system:String>
<system:String x:Key="LabelNewToolTip">Dieses Plugin wurde innerhalb der letzten 7 Tage aktualisiert</system:String> <system:String x:Key="LabelNewToolTip">Dieses Plug-in ist innerhalb der letzten 7 Tage aktualisiert worden</system:String>
<system:String x:Key="LabelUpdateToolTip">Neue Aktualisierung verfügbar</system:String> <system:String x:Key="LabelUpdateToolTip">Neues Update ist verfügbar</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Design</system:String> <system:String x:Key="theme">Theme</system:String>
<system:String x:Key="appearance">Aussehen</system:String> <system:String x:Key="appearance">Erscheinungsbild</system:String>
<system:String x:Key="browserMoreThemes">Suche nach weiteren Themes</system:String> <system:String x:Key="browserMoreThemes">Theme-Galerie</system:String>
<system:String x:Key="howToCreateTheme">Wie man ein Design erstellt</system:String> <system:String x:Key="howToCreateTheme">Wie man ein Theme erstellt</system:String>
<system:String x:Key="hiThere">Hallo!</system:String> <system:String x:Key="hiThere">Hallo zusammen</system:String>
<system:String x:Key="SampleTitleExplorer">Explorer</system:String> <system:String x:Key="SampleTitleExplorer">Explorer</system:String>
<system:String x:Key="SampleSubTitleExplorer">Suche nach Dateien, Ordnern und Dateiinhalten</system:String> <system:String x:Key="SampleSubTitleExplorer">Suche nach Dateien, Ordnern und Dateiinhalten</system:String>
<system:String x:Key="SampleTitleWebSearch">Web-Suche</system:String> <system:String x:Key="SampleTitleWebSearch">Websuche</system:String>
<system:String x:Key="SampleSubTitleWebSearch">Suche im Web mit verschiedenen Suchmaschinen</system:String> <system:String x:Key="SampleSubTitleWebSearch">Suche im Web mit Unterstützung verschiedener Suchmaschinen</system:String>
<system:String x:Key="SampleTitleProgram">Programm</system:String> <system:String x:Key="SampleTitleProgram">Programm</system:String>
<system:String x:Key="SampleSubTitleProgram">Starte Programme als Admin oder anderer Benutzer</system:String> <system:String x:Key="SampleSubTitleProgram">Programme als Admin oder ein anderer Benutzer starten</system:String>
<system:String x:Key="SampleTitleProcessKiller">Prozess-Killer</system:String> <system:String x:Key="SampleTitleProcessKiller">ProcessKiller</system:String>
<system:String x:Key="SampleSubTitleProcessKiller">Terminate unwanted processes</system:String> <system:String x:Key="SampleSubTitleProcessKiller">Unerwünschte Prozesse beenden</system:String>
<system:String x:Key="SearchBarHeight">Suchleistenhöhe</system:String> <system:String x:Key="SearchBarHeight">Suchleistenhöhe</system:String>
<system:String x:Key="ItemHeight">Elementhöhe</system:String> <system:String x:Key="ItemHeight">Elementhöhe</system:String>
<system:String x:Key="queryBoxFont">Abfragebox Schriftart</system:String> <system:String x:Key="queryBoxFont">Schriftart der Abfragebox</system:String>
<system:String x:Key="resultItemFont">Schriftart des Ergebnistitels</system:String> <system:String x:Key="resultItemFont">Schriftart des Ergebnistitels</system:String>
<system:String x:Key="resultSubItemFont">Schriftart der Ergebnisunterschrift</system:String> <system:String x:Key="resultSubItemFont">Schriftart des Ergebnis-Untertitels</system:String>
<system:String x:Key="resetCustomize">Zurücksetzen</system:String> <system:String x:Key="resetCustomize">Zurücksetzen</system:String>
<system:String x:Key="CustomizeToolTip">Anpassen</system:String> <system:String x:Key="CustomizeToolTip">Individuell anpassen</system:String>
<system:String x:Key="windowMode">Fenstermodus</system:String> <system:String x:Key="windowMode">Fenstermodus</system:String>
<system:String x:Key="opacity">Transparenz</system:String> <system:String x:Key="opacity">Opazität</system:String>
<system:String x:Key="theme_load_failure_path_not_exists">Das Design {0} existiert nicht, deshalb wird das Standard-Template aktiviert</system:String> <system:String x:Key="theme_load_failure_path_not_exists">Theme {0} ist nicht vorhanden, Fallback auf Standard-Theme</system:String>
<system:String x:Key="theme_load_failure_parse_error">Laden des Designs {0} fehlgeschlagen, das Standard-Template wird aktiviert</system:String> <system:String x:Key="theme_load_failure_parse_error">Theme {0} konnte nicht geladen werden, Fallback auf Standard-Theme</system:String>
<system:String x:Key="ThemeFolder">Themenordner öffnen</system:String> <system:String x:Key="ThemeFolder">Theme-Ordner</system:String>
<system:String x:Key="OpenThemeFolder">Themenordner öffnen</system:String> <system:String x:Key="OpenThemeFolder">Theme-Ordner öffnen</system:String>
<system:String x:Key="ColorScheme">Farbschema</system:String> <system:String x:Key="ColorScheme">Farbschema</system:String>
<system:String x:Key="ColorSchemeSystem">Systemvorgabe</system:String> <system:String x:Key="ColorSchemeSystem">Systemvorgabe</system:String>
<system:String x:Key="ColorSchemeLight">Hell</system:String> <system:String x:Key="ColorSchemeLight">Hell</system:String>
<system:String x:Key="ColorSchemeDark">Dunkel</system:String> <system:String x:Key="ColorSchemeDark">Dunkel</system:String>
<system:String x:Key="SoundEffect">Soundeffekt</system:String> <system:String x:Key="SoundEffect">Soundeffekt</system:String>
<system:String x:Key="SoundEffectTip">Ton abspielen, wenn das Suchfenster geöffnet wird</system:String> <system:String x:Key="SoundEffectTip">Einen kleinen Sound abspielen, wenn das Suchfenster geöffnet wird</system:String>
<system:String x:Key="SoundEffectVolume">Lautstärke der Soundeffekte</system:String> <system:String x:Key="SoundEffectVolume">Lautstärke der Soundeffekte</system:String>
<system:String x:Key="SoundEffectVolumeTip">Lautstärke des Soundeffekts anpassen</system:String> <system:String x:Key="SoundEffectVolumeTip">Lautstärke des Soundeffekts anpassen</system:String>
<system:String x:Key="SoundEffectWarning">Windows Media Player ist nicht verfügbar und wird für die Lautstärkeregelung von Flow benötigt. Bitte überprüfen Sie Ihre Installation, wenn Sie die Lautstärke anpassen möchten.</system:String> <system:String x:Key="SoundEffectWarning">Windows Media Player ist nicht verfügbar und ist für die Lautstärkeregelung von Flow erforderlich. Bitte überprüfen Sie Ihre Installation, wenn Sie die Lautstärke anpassen müssen.</system:String>
<system:String x:Key="Animation">Animation</system:String> <system:String x:Key="Animation">Animation</system:String>
<system:String x:Key="AnimationTip">Animationen in der Oberfläche verwenden</system:String> <system:String x:Key="AnimationTip">Animation in UI verwenden</system:String>
<system:String x:Key="AnimationSpeed">Animationsgeschwindigkeit</system:String> <system:String x:Key="AnimationSpeed">Animationsgeschwindigkeit</system:String>
<system:String x:Key="AnimationSpeedTip">Die Geschwindigkeit der Nutzeroberflächen-Animation</system:String> <system:String x:Key="AnimationSpeedTip">Die Geschwindigkeit der UI-Animation</system:String>
<system:String x:Key="AnimationSpeedSlow">Langsam</system:String> <system:String x:Key="AnimationSpeedSlow">Langsam</system:String>
<system:String x:Key="AnimationSpeedMedium">Mittel</system:String> <system:String x:Key="AnimationSpeedMedium">Mittel</system:String>
<system:String x:Key="AnimationSpeedFast">Schnell</system:String> <system:String x:Key="AnimationSpeedFast">Schnell</system:String>
<system:String x:Key="AnimationSpeedCustom">Benutzerdefiniert</system:String> <system:String x:Key="AnimationSpeedCustom">Benutzerdefiniert</system:String>
<system:String x:Key="Clock">Uhr</system:String> <system:String x:Key="Clock">Uhr</system:String>
<system:String x:Key="Date">Datumsformat</system:String> <system:String x:Key="Date">Datum</system:String>
<system:String x:Key="TypeIsDarkToolTip">Dieses Theme unterstützt zwei Modi (hell/dunkel).</system:String> <system:String x:Key="TypeIsDarkToolTip">Dieses Theme unterstützt zwei Modi (hell/dunkel).</system:String>
<system:String x:Key="TypeHasBlurToolTip">Dieses Theme unterstützt transparenten verwischten Hintergrund.</system:String> <system:String x:Key="TypeHasBlurToolTip">Dieses Theme unterstützt Unschärfe und transparenten Hintergrund.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Tastenkombination</system:String> <system:String x:Key="hotkey">Hotkey</system:String>
<system:String x:Key="hotkeys">Tastenkombination</system:String> <system:String x:Key="hotkeys">Hotkeys</system:String>
<system:String x:Key="flowlauncherHotkey">Öffne Flow Launcher</system:String> <system:String x:Key="flowlauncherHotkey">Flow Launcher öffnen</system:String>
<system:String x:Key="flowlauncherHotkeyToolTip">Verknüpfung eingeben, um Flow Launcher anzuzeigen/auszublenden.</system:String> <system:String x:Key="flowlauncherHotkeyToolTip">Shortcut eingeben, um Flow Launcher anzuzeigen/auszublenden.</system:String>
<system:String x:Key="previewHotkey">Vorschau aktivieren/deaktivieren</system:String> <system:String x:Key="previewHotkey">Vorschau umschalten</system:String>
<system:String x:Key="previewHotkeyToolTip">Shortcut eingeben, um die Vorschau im Suchfenster anzuzeigen/auszublenden.</system:String> <system:String x:Key="previewHotkeyToolTip">Shortcut eingeben, um Vorschau im Suchfenster anzuzeigen/auszublenden.</system:String>
<system:String x:Key="hotkeyPresets">Voreinstellungen der Tastenkombinationen</system:String> <system:String x:Key="hotkeyPresets">Hotkey-Presets</system:String>
<system:String x:Key="hotkeyPresetsToolTip">Liste der derzeit registrierten Tastenkombinationen</system:String> <system:String x:Key="hotkeyPresetsToolTip">Liste der derzeit registrierten Hotkeys</system:String>
<system:String x:Key="openResultModifiers">Öffnen Sie die Ergebnismodifikatoren</system:String> <system:String x:Key="openResultModifiers">Ergebnis-Modifkator-Taste öffnen</system:String>
<system:String x:Key="openResultModifiersToolTip">Wählen Sie eine Modifikatortaste, um das ausgewählte Ergebnis über die Tastatur zu öffnen.</system:String> <system:String x:Key="openResultModifiersToolTip">Wählen Sie eine Modifikator-Taste aus, um das ausgewählte Ergebnis via Tastatur zu öffnen.</system:String>
<system:String x:Key="showOpenResultHotkey">Hotkey anzeigen</system:String> <system:String x:Key="showOpenResultHotkey">Hotkey zeigen</system:String>
<system:String x:Key="showOpenResultHotkeyToolTip">Hotkey für die Ergebnisauswahl mit Ergebnissen anzeigen.</system:String> <system:String x:Key="showOpenResultHotkeyToolTip">Hotkey für die Ergebnisauswahl mit Ergebnissen zeigen.</system:String>
<system:String x:Key="autoCompleteHotkey">Auto-Vervollständigung</system:String> <system:String x:Key="autoCompleteHotkey">Auto-Vervollständigung</system:String>
<system:String x:Key="autoCompleteHotkeyToolTip">Führt die automatische Vervollständigung für die ausgewählten Elemente aus.</system:String> <system:String x:Key="autoCompleteHotkeyToolTip">Führt die Autovervollständigung für die ausgewählten Elemente aus.</system:String>
<system:String x:Key="SelectNextItemHotkey">Nächstes Element auswählen</system:String> <system:String x:Key="SelectNextItemHotkey">Nächstes Element auswählen</system:String>
<system:String x:Key="SelectPrevItemHotkey">Vorheriges Element auswählen</system:String> <system:String x:Key="SelectPrevItemHotkey">Vorheriges Element auswählen</system:String>
<system:String x:Key="SelectNextPageHotkey">Nächste Seite</system:String> <system:String x:Key="SelectNextPageHotkey">Nächste Seite</system:String>
<system:String x:Key="SelectPrevPageHotkey">Vorherige Seite</system:String> <system:String x:Key="SelectPrevPageHotkey">Vorherige Seite</system:String>
<system:String x:Key="CycleHistoryUpHotkey">Vorherige Suchanfragen durchblättern</system:String> <system:String x:Key="CycleHistoryUpHotkey">Vorherige Abfrage durchblättern</system:String>
<system:String x:Key="CycleHistoryDownHotkey">Nächste Suchanfragen durchblättern</system:String> <system:String x:Key="CycleHistoryDownHotkey">Nächste Abfrage durchblättern</system:String>
<system:String x:Key="OpenContextMenuHotkey">Kontextmenü öffnen</system:String> <system:String x:Key="OpenContextMenuHotkey">Kontextmenü öffnen</system:String>
<system:String x:Key="OpenNativeContextMenuHotkey">Natives Kontextmenü öffnen</system:String> <system:String x:Key="OpenNativeContextMenuHotkey">Natives Kontextmenü öffnen</system:String>
<system:String x:Key="SettingWindowHotkey">Einstellungsfenster öffnen</system:String> <system:String x:Key="SettingWindowHotkey">Einstellungsfenster öffnen</system:String>
<system:String x:Key="CopyFilePathHotkey">Dateipfad kopieren</system:String> <system:String x:Key="CopyFilePathHotkey">Dateipfad kopieren</system:String>
<system:String x:Key="ToggleGameModeHotkey">Gott Modus</system:String> <system:String x:Key="ToggleGameModeHotkey">Spielmodus umschalten</system:String>
<system:String x:Key="ToggleHistoryHotkey">Verlauf umschalten</system:String> <system:String x:Key="ToggleHistoryHotkey">Historie umschalten</system:String>
<system:String x:Key="OpenContainFolderHotkey">Öffne beinhaltenden Ordner</system:String> <system:String x:Key="OpenContainFolderHotkey">Enthaltenden Ordner öffnen</system:String>
<system:String x:Key="RunAsAdminHotkey">Als Administrator ausführen</system:String> <system:String x:Key="RunAsAdminHotkey">Als Admin ausführen</system:String>
<system:String x:Key="RequeryHotkey">Suchergebnisse neu laden</system:String> <system:String x:Key="RequeryHotkey">Suchergebnisse auffrischen</system:String>
<system:String x:Key="ReloadPluginHotkey">Plugin-Daten neu laden</system:String> <system:String x:Key="ReloadPluginHotkey">Plug-in-Daten neu laden</system:String>
<system:String x:Key="QuickWidthHotkey">Schnelleinstellung der Fensterbreite</system:String> <system:String x:Key="QuickWidthHotkey">Fensterbreite schnell anpassen</system:String>
<system:String x:Key="QuickHeightHotkey">Schnelleinstellung Fensterhöhe</system:String> <system:String x:Key="QuickHeightHotkey">Fensterhöhe schnell anpassen</system:String>
<system:String x:Key="ReloadPluginHotkeyToolTip">Use when require plugins to reload and update their existing data.</system:String> <system:String x:Key="ReloadPluginHotkeyToolTip">Verwenden, wenn Plug-ins ihre vorhandenen Daten neu laden und aktualisieren müssen.</system:String>
<system:String x:Key="AdditionalHotkeyToolTip">Du kannst eine weitere Tastenkombination für diese Funktion hinzufügen.</system:String> <system:String x:Key="AdditionalHotkeyToolTip">Sie können einen weiteren Hotkey für diese Funktion hinzufügen.</system:String>
<system:String x:Key="customQueryHotkey">Benutzerdefinierte Abfrage Tastenkombination</system:String> <system:String x:Key="customQueryHotkey">Benutzerdefinierte Abfrage-Hotkeys</system:String>
<system:String x:Key="customQueryShortcut">Custom Query Shortcut</system:String> <system:String x:Key="customQueryShortcut">Benutzerdefinierte Abfrage-Shortcuts</system:String>
<system:String x:Key="builtinShortcuts">Built-in Shortcut</system:String> <system:String x:Key="builtinShortcuts">Integrierte Shortcuts</system:String>
<system:String x:Key="customQuery">Abfrage</system:String> <system:String x:Key="customQuery">Abfrage</system:String>
<system:String x:Key="customShortcut">Abkürzung</system:String> <system:String x:Key="customShortcut">Shortcut</system:String>
<system:String x:Key="customShortcutExpansion">Langform</system:String> <system:String x:Key="customShortcutExpansion">Erweiterung</system:String>
<system:String x:Key="builtinShortcutDescription">Beschreibung</system:String> <system:String x:Key="builtinShortcutDescription">Beschreibung</system:String>
<system:String x:Key="delete">Löschen</system:String> <system:String x:Key="delete">Löschen</system:String>
<system:String x:Key="edit">Bearbeiten</system:String> <system:String x:Key="edit">Bearbeiten</system:String>
<system:String x:Key="add">Hinzufügen</system:String> <system:String x:Key="add">Hinzufügen</system:String>
<system:String x:Key="none">Keine</system:String> <system:String x:Key="none">Keine</system:String>
<system:String x:Key="pleaseSelectAnItem">Bitte einen Eintrag auswählen</system:String> <system:String x:Key="pleaseSelectAnItem">Bitte wählen Sie ein Element aus</system:String>
<system:String x:Key="deleteCustomHotkeyWarning">Wollen Sie die {0} Plugin Tastenkombination wirklich löschen?</system:String> <system:String x:Key="deleteCustomHotkeyWarning">Sind Sie sicher, dass Sie den {0} Plug-in-Hotkey löschen wollen?</system:String>
<system:String x:Key="deleteCustomShortcutWarning">Sind Sie sicher, dass Sie die Verknüpfung {0} mit der Langform {1} löschen möchten?</system:String> <system:String x:Key="deleteCustomShortcutWarning">Sind Sie sicher, dass Sie den Shortcut {0} mit der Erweiterung {1} löschen wollen?</system:String>
<system:String x:Key="shortcut_clipboard_description">Text aus der Zwischenablage abrufen.</system:String> <system:String x:Key="shortcut_clipboard_description">Text aus Zwischenablage abrufen.</system:String>
<system:String x:Key="shortcut_active_explorer_path">Pfad vom aktiven Explorer abfragen.</system:String> <system:String x:Key="shortcut_active_explorer_path">Pfad aus aktivem Explorer abrufen.</system:String>
<system:String x:Key="queryWindowShadowEffect">Schatteneffekt im Abfragefenster</system:String> <system:String x:Key="queryWindowShadowEffect">Schatteneffekt in Abfragefenster</system:String>
<system:String x:Key="shadowEffectCPUUsage">Der Schatteneffekt beansprucht die GPU stark. Nicht empfohlen, wenn die Leistung deines Computers begrenzt ist.</system:String> <system:String x:Key="shadowEffectCPUUsage">Der Schatteneffekt beansprucht die GPU stark. Nicht empfohlen, wenn die Performance Ihres Computers begrenzt ist.</system:String>
<system:String x:Key="windowWidthSize">Fenstergröße Breite</system:String> <system:String x:Key="windowWidthSize">Fensterbreite Größe</system:String>
<system:String x:Key="windowWidthSizeToolTip">Auch schnell mit Strg + [ und Strg + ] einstellbar.</system:String> <system:String x:Key="windowWidthSizeToolTip">Sie können dies auch schnell durch die Verwendung von Strg+[ und Strg+] anpassen.</system:String>
<system:String x:Key="useGlyphUI">Segoe Fluent Icons verwenden</system:String> <system:String x:Key="useGlyphUI">Segoe Fluent-Icons verwenden</system:String>
<system:String x:Key="useGlyphUIEffect">Segoe Fluent Icons für Abfrageergebnisse verwenden, sofern unterstützt</system:String> <system:String x:Key="useGlyphUIEffect">Segoe Fluent-Icons für Abfrageergebnisse verwenden, wo unterstützt</system:String>
<system:String x:Key="flowlauncherPressHotkey">Taste drücken</system:String> <system:String x:Key="flowlauncherPressHotkey">Taste drücken</system:String>
<!-- Setting Proxy --> <!-- Setting Proxy -->
<system:String x:Key="proxy">HTTP-Proxy</system:String> <system:String x:Key="proxy">HTTP-Proxy</system:String>
<system:String x:Key="enableProxy">Aktiviere HTTP Proxy</system:String> <system:String x:Key="enableProxy">HTTP-Proxy aktivieren</system:String>
<system:String x:Key="server">HTTP-Server</system:String> <system:String x:Key="server">HTTP-Server</system:String>
<system:String x:Key="port">Port</system:String> <system:String x:Key="port">Port</system:String>
<system:String x:Key="userName">Benutzername</system:String> <system:String x:Key="userName">Benutzername</system:String>
<system:String x:Key="password">Passwort</system:String> <system:String x:Key="password">Passwort</system:String>
<system:String x:Key="testProxy">Teste Proxy</system:String> <system:String x:Key="testProxy">Proxy testen</system:String>
<system:String x:Key="save">Speichern</system:String> <system:String x:Key="save">Speichern</system:String>
<system:String x:Key="serverCantBeEmpty">Server darf nicht leer sein</system:String> <system:String x:Key="serverCantBeEmpty">Feld Server darf nicht leer sein</system:String>
<system:String x:Key="portCantBeEmpty">Server Port darf nicht leer sein</system:String> <system:String x:Key="portCantBeEmpty">Feld Port darf nicht leer sein</system:String>
<system:String x:Key="invalidPortFormat">Falsches Port Format</system:String> <system:String x:Key="invalidPortFormat">Port-Format ungültig</system:String>
<system:String x:Key="saveProxySuccessfully">Proxy wurde erfolgreich gespeichert</system:String> <system:String x:Key="saveProxySuccessfully">Proxy-Konfiguration erfolgreich gespeichert</system:String>
<system:String x:Key="proxyIsCorrect">Proxy ist korrekt</system:String> <system:String x:Key="proxyIsCorrect">Proxy korrekt konfiguriert</system:String>
<system:String x:Key="proxyConnectFailed">Verbindung zum Proxy fehlgeschlagen</system:String> <system:String x:Key="proxyConnectFailed">Proxy-Verbindung fehlgeschlagen</system:String>
<!-- Setting About --> <!-- Setting About -->
<system:String x:Key="about">Über</system:String> <system:String x:Key="about">Über</system:String>
<system:String x:Key="website">Webseite</system:String> <system:String x:Key="website">Website</system:String>
<system:String x:Key="github">GitHub</system:String> <system:String x:Key="github">GitHub</system:String>
<system:String x:Key="docs">Dokumentation</system:String> <system:String x:Key="docs">Docs</system:String>
<system:String x:Key="version">Version</system:String> <system:String x:Key="version">Version</system:String>
<system:String x:Key="icons">Icons</system:String> <system:String x:Key="icons">Icons</system:String>
<system:String x:Key="about_activate_times">Sie haben Flow Launcher {0} mal aktiviert</system:String> <system:String x:Key="about_activate_times">Sie haben Flow Launcher {0} mal aktiviert</system:String>
<system:String x:Key="checkUpdates">Nach Aktuallisierungen Suchen</system:String> <system:String x:Key="checkUpdates">Nach Updates suchen</system:String>
<system:String x:Key="BecomeASponsor">Sponsor werden</system:String> <system:String x:Key="BecomeASponsor">Ein Sponsor werden</system:String>
<system:String x:Key="newVersionTips">Eine neue Version ({0}) ist vorhanden. Bitte starten Sie Flow Launcher neu.</system:String> <system:String x:Key="newVersionTips">Neue Version {0} ist verfügbar. Möchten Sie Flow Launcher neu starten, um das Update zu verwenden?</system:String>
<system:String x:Key="checkUpdatesFailed">Überprüfung der Updates fehlgeschlagen. Bitte überprüfen Sie Ihre Verbindungs- und Proxy-Einstellungen zu api.github.com.</system:String> <system:String x:Key="checkUpdatesFailed">Überprüfung der Updates fehlgeschlagen. Bitte überprüfen Sie Ihre Verbindungs- und Proxy-Einstellungen zu api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed"> <system:String x:Key="downloadUpdatesFailed">
Das Herunterladen von Updates ist fehlgeschlagen. Bitte überprüfen Sie Ihre Verbindungs- und Proxy-Einstellungen zu github-cloud.s3.amazonaws.com, Das Herunterladen von Updates ist fehlgeschlagen. Bitte überprüfen Sie Ihre Verbindungs- und Proxy-Einstellungen zu github-cloud.s3.amazonaws.com,
oder gehen Sie zu https://github.com/Flow-Launcher/Flow.Launcher/releases, um Updates manuell herunterzuladen. oder gehen Sie zu https://github.com/Flow-Launcher/Flow.Launcher/releases, um Updates manuell herunterzuladen.
</system:String> </system:String>
<system:String x:Key="releaseNotes">Versionshinweise</system:String> <system:String x:Key="releaseNotes">Versionshinweise</system:String>
<system:String x:Key="documentation">Verwendungshinweise</system:String> <system:String x:Key="documentation">Tipps zur Nutzung</system:String>
<system:String x:Key="devtool">Entwicklerwerkzeuge</system:String> <system:String x:Key="devtool">DevTools</system:String>
<system:String x:Key="settingfolder">Einstellungsordner</system:String> <system:String x:Key="settingfolder">Ordner Einstellungen</system:String>
<system:String x:Key="logfolder">Protokoll-Verzeichnis</system:String> <system:String x:Key="logfolder">Ordner Logs</system:String>
<system:String x:Key="clearlogfolder">Protokolldateien leeren</system:String> <system:String x:Key="clearlogfolder">Logs löschen</system:String>
<system:String x:Key="clearlogfolderMessage">Sind Sie sicher, dass Sie alle Protokolle löschen möchten?</system:String> <system:String x:Key="clearlogfolderMessage">Sind Sie sicher, dass Sie alle Logs löschen wollen?</system:String>
<system:String x:Key="welcomewindow">Assistent</system:String> <system:String x:Key="welcomewindow">Assistent</system:String>
<system:String x:Key="userdatapath">Speicherort der Nutzerdaten</system:String> <system:String x:Key="userdatapath">Speicherort für Benutzerdaten</system:String>
<system:String x:Key="userdatapathToolTip">Benutzereinstellungen und installierte Plugins werden im Nutzerdatenordner gespeichert. Dieser Speicherort kann variieren, je nachdem, ob er im portablen Modus ist oder nicht.</system:String> <system:String x:Key="userdatapathToolTip">Benutzereinstellungen und installierte Plug-ins werden im Ordner für Benutzerdaten gespeichert. Dieser Speicherort kann variieren, je nachdem, ob sich das Programm im portablen Modus befindet oder nicht.</system:String>
<system:String x:Key="userdatapathButton">Ordner öffnen</system:String> <system:String x:Key="userdatapathButton">Ordner öffnen</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Dateimanager auswählen</system:String> <system:String x:Key="fileManagerWindow">Dateimanager auswählen</system:String>
<system:String x:Key="fileManager_tips">Please specify the file location of the file manager you using and add arguments as required. The &quot;%d&quot; represents the directory path to open for, used by the Arg for Folder field and for commands opening specific directories. The &quot;%f&quot; represents the file path to open for, used by the Arg for File field and for commands opening specific files.</system:String> <system:String x:Key="fileManager_tips">Bitte geben Sie den Dateiort des von Ihnen verwendeten Dateimanagers an und fügen Sie bei Bedarf Argumente hinzu. Das „%d“ repräsentiert den dafür zu öffnenden Verzeichnispfad, der vom Feld Arg for Folder und für Befehle zum Öffnen bestimmter Verzeichnisse verwendet wird. Das „%f“ repräsentiert den dafür zu öffnenden Dateipfad, der vom Feld Arg for File und für Befehle zum Öffnen bestimmter Dateien verwendet wird.</system:String>
<system:String x:Key="fileManager_tips2">For example, if the file manager uses a command such as &quot;totalcmd.exe /A c:\windows&quot; to open the c:\windows directory, the File Manager Path will be totalcmd.exe, and the Arg For Folder will be /A &quot;%d&quot;. Certain file managers like QTTabBar may just require a path to be supplied, in this instance use &quot;%d&quot; as the File Manager Path and leave the rest of the fileds blank.</system:String> <system:String x:Key="fileManager_tips2">Zum Beispiel, wenn der Dateimanager einen Befehl wie „totalcmd.exe /A c:\windows“ verwendet, um das Verzeichnis c:\windows zu öffnen, lautet der Dateimanager-Pfad „totalcmd.exe“ und der Arg for Folder „/A %d“. Bestimmte Dateimanager wie QTTabBar kann nur die Angabe eines Pfades erfordern, in diesem Fall verwenden Sie „%d“ als den Dateimanager-Pfad und lassen den Rest der Felder blank.</system:String>
<system:String x:Key="fileManager_name">Datei-Manager</system:String> <system:String x:Key="fileManager_name">Dateimanager</system:String>
<system:String x:Key="fileManager_profile_name">Profilname</system:String> <system:String x:Key="fileManager_profile_name">Profilname</system:String>
<system:String x:Key="fileManager_path">Dateimanager-Pfad</system:String> <system:String x:Key="fileManager_path">Dateimanager-Pfad</system:String>
<system:String x:Key="fileManager_directory_arg">Argumente für Ordner</system:String> <system:String x:Key="fileManager_directory_arg">Arg For Folder</system:String>
<system:String x:Key="fileManager_file_arg">Argumente für Datei</system:String> <system:String x:Key="fileManager_file_arg">Arg For File</system:String>
<!-- DefaultBrowser Setting Dialog --> <!-- DefaultBrowser Setting Dialog -->
<system:String x:Key="defaultBrowserTitle">Standard-Webbrowser</system:String> <system:String x:Key="defaultBrowserTitle">Webbrowser per Default</system:String>
<system:String x:Key="defaultBrowser_tips">Die Standardeinstellung verwendet die Browser-Standardeinstellung des Betriebssystems. Falls angegeben, verwendet Flow diesen Browser.</system:String> <system:String x:Key="defaultBrowser_tips">Die Defaulteinstellung folgt der Default-Browsereinstellung des Betriebssystems. Wenn separat angegeben, verwendet Flow diesen Browser.</system:String>
<system:String x:Key="defaultBrowser_name">Browser</system:String> <system:String x:Key="defaultBrowser_name">Browser</system:String>
<system:String x:Key="defaultBrowser_profile_name">Browser-Name</system:String> <system:String x:Key="defaultBrowser_profile_name">Browser-Name</system:String>
<system:String x:Key="defaultBrowser_path">Browserpfad</system:String> <system:String x:Key="defaultBrowser_path">Browser-Pfad</system:String>
<system:String x:Key="defaultBrowser_newWindow">Neues Fenster</system:String> <system:String x:Key="defaultBrowser_newWindow">Neues Fenster</system:String>
<system:String x:Key="defaultBrowser_newTab">Neuer Tab</system:String> <system:String x:Key="defaultBrowser_newTab">Neuer Tab</system:String>
<system:String x:Key="defaultBrowser_parameter">Privater Modus</system:String> <system:String x:Key="defaultBrowser_parameter">Privater Modus</system:String>
<!-- Priority Setting Dialog --> <!-- Priority Setting Dialog -->
<system:String x:Key="changePriorityWindow">Priorität ändern</system:String> <system:String x:Key="changePriorityWindow">Priorität ändern</system:String>
<system:String x:Key="priority_tips">Je höher die Zahl, desto höher wird das Ergebnis gewertet. Versuchen Sie es mit einer 5. Sollen die Ergebnisse tiefer sein als diejenigen anderer Plugins, verwenden Sie eine negative Zahl</system:String> <system:String x:Key="priority_tips">Je höher die Zahl ist, desto höher wird das Ergebnis eingestuft. Versuchen Sie, den Wert auf 5 einzustellen. Wenn Sie möchten, dass die Ergebnisse niedriger sind als jedes andere Plug-in, geben Sie eine negative Zahl ein</system:String>
<system:String x:Key="invalidPriority">Bitte eine gültige Ganzzahl angeben für die Priorität!</system:String> <system:String x:Key="invalidPriority">Bitte geben Sie eine gültige ganze Zahl für Priorität an!</system:String>
<!-- Action Keyword Setting Dialog --> <!-- Action Keyword Setting Dialog -->
<system:String x:Key="oldActionKeywords">Altes Aktionsschlüsselwort</system:String> <system:String x:Key="oldActionKeywords">Altes Aktions-Schlüsselwort</system:String>
<system:String x:Key="newActionKeywords">Neues Aktionsschlüsselwort</system:String> <system:String x:Key="newActionKeywords">Neues Aktions-Schlüsselwort</system:String>
<system:String x:Key="cancel">Abbrechen</system:String> <system:String x:Key="cancel">Abbrechen</system:String>
<system:String x:Key="done">Fertig</system:String> <system:String x:Key="done">Fertig</system:String>
<system:String x:Key="cannotFindSpecifiedPlugin">Kann das angegebene Plugin nicht finden</system:String> <system:String x:Key="cannotFindSpecifiedPlugin">Das angegebene Plug-in kann nicht gefunden werden</system:String>
<system:String x:Key="newActionKeywordsCannotBeEmpty">Neues Aktionsschlüsselwort darf nicht leer sein</system:String> <system:String x:Key="newActionKeywordsCannotBeEmpty">Neues Aktions-Schlüsselwort darf nicht leer sein</system:String>
<system:String x:Key="newActionKeywordsHasBeenAssigned">Aktionsschlüsselwort ist schon bei einem anderen Plugin in verwendung. Bitte stellen Sie ein anderes Aktionsschlüsselwort ein.</system:String> <system:String x:Key="newActionKeywordsHasBeenAssigned">Dieses neue Aktions-Schlüsselwort ist bereits einem anderen Plug-in zugewiesen, bitte wählen Sie ein anderes</system:String>
<system:String x:Key="success">Erfolgreich</system:String> <system:String x:Key="success">Erfolg</system:String>
<system:String x:Key="completedSuccessfully">Erfolgreich abgeschlossen</system:String> <system:String x:Key="completedSuccessfully">Erfolgreich abgeschlossen</system:String>
<system:String x:Key="actionkeyword_tips">Benutzen Sie * wenn Sie ein Aktionsschlüsselwort definieren wollen.</system:String> <system:String x:Key="actionkeyword_tips">Geben Sie das Aktions-Schlüsselwort ein, das Sie verwenden möchten, um das Plug-in zu starten. Verwenden Sie *, wenn Sie keines angeben möchten, und das Plug-in wird ohne irgendwelche Aktions-Schlüsselwörter ausgelöst.</system:String>
<!-- Custom Query Hotkey Dialog --> <!-- Custom Query Hotkey Dialog -->
<system:String x:Key="customeQueryHotkeyTitle">Benutzerdefinierte Abfrage Tastenkombination</system:String> <system:String x:Key="customeQueryHotkeyTitle">Benutzerdefinierter Abfrage-Hotkey</system:String>
<system:String x:Key="customeQueryHotkeyTips">Drücken Sie eine benutzerdefinierte Tastenkombination, um Flow Launcher zu öffnen und die angegebene Abfrage automatisch einzugeben.</system:String> <system:String x:Key="customeQueryHotkeyTips">Drücken Sie einen benutzerdefinierten Hotkey, um Flow Launcher zu öffnen und die angegebene Abfrage automatisch einzugeben.</system:String>
<system:String x:Key="preview">Vorschau</system:String> <system:String x:Key="preview">Vorschau</system:String>
<system:String x:Key="hotkeyIsNotUnavailable">Tastenkombination ist nicht verfügbar, bitte wähle eine andere Tastenkombination</system:String> <system:String x:Key="hotkeyIsNotUnavailable">Hotkey ist nicht verfügbar, bitte wählen Sie einen neuen Hotkey aus</system:String>
<system:String x:Key="invalidPluginHotkey">Ungültige Plugin Tastenkombination</system:String> <system:String x:Key="invalidPluginHotkey">Plug-in-Hotkey ungültig</system:String>
<system:String x:Key="update">Aktualisieren</system:String> <system:String x:Key="update">Aktualisieren</system:String>
<system:String x:Key="hotkeyRegTitle">Binding Hotkey</system:String> <system:String x:Key="hotkeyRegTitle">Bindung Hotkey</system:String>
<system:String x:Key="hotkeyUnavailable">Aktuelle Tastenkombination ist nicht verfügbar.</system:String> <system:String x:Key="hotkeyUnavailable">Aktueller Hotkey ist nicht verfügbar.</system:String>
<system:String x:Key="hotkeyUnavailableUneditable">Diese Tastenkombination ist für &quot;{0}&quot; reserviert und kann nicht verwendet werden. Bitte eine andere Tastenkombination wählen.</system:String> <system:String x:Key="hotkeyUnavailableUneditable">Dieser Hotkey ist für &quot;{0}&quot; reserviert und kann nicht verwendet werden. Bitte wählen Sie einen anderen Hotkey.</system:String>
<system:String x:Key="hotkeyUnavailableEditable">Diese Tastenkombination wird bereits von &quot;{0}&quot; verwendet. Wenn Sie &quot;Überschreiben&quot; drücken, wird sie von &quot;{0} &quot; entfernt.</system:String> <system:String x:Key="hotkeyUnavailableEditable">Dieser Hotkey ist bereits in Verwendung von &quot;{0}&quot;. Wenn Sie &quot;Überschreiben&quot; drücken, wird dieser aus &quot;{0}&quot; entfernt.</system:String>
<system:String x:Key="hotkeyRegGuide">Drücken Sie die Tasten, die Sie für diese Funktion verwenden möchten.</system:String> <system:String x:Key="hotkeyRegGuide">Drücken Sie die Tasten, die Sie für diese Funktion verwenden möchten.</system:String>
<!-- Custom Query Shortcut Dialog --> <!-- Custom Query Shortcut Dialog -->
<system:String x:Key="customeQueryShortcutTitle">Benutzerdefinierte Abfragen-Abkürzungen</system:String> <system:String x:Key="customeQueryShortcutTitle">Benutzerdefinierter Abfrage-Shortcut</system:String>
<system:String x:Key="customeQueryShortcutTips">Geben Sie eine Abkürzung ein, die sich automatisch auf die angegebene Abfrage erweitert.</system:String> <system:String x:Key="customeQueryShortcutTips">Geben Sie einen Shortcut ein, der sich automatisch auf die angegebene Abfrage erweitert.</system:String>
<system:String x:Key="customeQueryShortcutGuide" xml:space="preserve">A shortcut is expanded when it exactly matches the query. <system:String x:Key="customeQueryShortcutGuide" xml:space="preserve">Ein Shortcut wird erweitert, wenn dieser genau mit der Abfrage übereinstimmt.
If you add an '@' prefix while inputting a shortcut, it matches any position in the query. Builtin shortcuts match any position in a query. Wenn Sie bei der Eingabe eines Shortcuts ein '@'-Präfix hinzufügen, stimmt dieser mit jeder beliebigen Position in der Abfrage überein. Integrierte Shortcuts stimmen mit jeder Position in einer Abfrage überein.
</system:String> </system:String>
<system:String x:Key="duplicateShortcut">Abkürzung existiert bereits, bitte geben Sie eine neue Abkürzung ein oder bearbeiten Sie die vorhandene Abkürzung.</system:String> <system:String x:Key="duplicateShortcut">Shortcut ist bereits vorhanden, bitte geben Sie einen neuen Shortcut ein oder bearbeiten Sie den vorhandenen.</system:String>
<system:String x:Key="emptyShortcut">Abkürzung und/oder ihre Erweiterung sind leer.</system:String> <system:String x:Key="emptyShortcut">Shortcut und/oder dessen Erweiterung ist leer.</system:String>
<!-- Common Action --> <!-- Common Action -->
<system:String x:Key="commonSave">Speichern</system:String> <system:String x:Key="commonSave">Speichern</system:String>
@ -362,83 +362,83 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="commonCancel">Abbrechen</system:String> <system:String x:Key="commonCancel">Abbrechen</system:String>
<system:String x:Key="commonReset">Zurücksetzen</system:String> <system:String x:Key="commonReset">Zurücksetzen</system:String>
<system:String x:Key="commonDelete">Löschen</system:String> <system:String x:Key="commonDelete">Löschen</system:String>
<system:String x:Key="commonOK">Aktualisieren</system:String> <system:String x:Key="commonOK">OK</system:String>
<system:String x:Key="commonYes">Ja</system:String> <system:String x:Key="commonYes">Ja</system:String>
<system:String x:Key="commonNo">Nein</system:String> <system:String x:Key="commonNo">Nein</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Version</system:String> <system:String x:Key="reportWindow_version">Version</system:String>
<system:String x:Key="reportWindow_time">Zeit</system:String> <system:String x:Key="reportWindow_time">Zeit</system:String>
<system:String x:Key="reportWindow_reproduce">Bitte teilen Sie uns mit, wie die Anwendung abgestürzt ist, damit wir den Fehler beheben können.</system:String> <system:String x:Key="reportWindow_reproduce">Bitte teilen Sie uns mit, wie die Anwendung abgestürzt ist, damit wir den Fehler beheben können</system:String>
<system:String x:Key="reportWindow_send_report">Sende Report</system:String> <system:String x:Key="reportWindow_send_report">Bericht senden</system:String>
<system:String x:Key="reportWindow_cancel">Abbrechen</system:String> <system:String x:Key="reportWindow_cancel">Abbrechen</system:String>
<system:String x:Key="reportWindow_general">Allgemein</system:String> <system:String x:Key="reportWindow_general">Allgemein</system:String>
<system:String x:Key="reportWindow_exceptions">Fehler</system:String> <system:String x:Key="reportWindow_exceptions">Ausnahmen</system:String>
<system:String x:Key="reportWindow_exception_type">Fehlertypen</system:String> <system:String x:Key="reportWindow_exception_type">Ausnahme-Typ</system:String>
<system:String x:Key="reportWindow_source">Quelle</system:String> <system:String x:Key="reportWindow_source">Quelle</system:String>
<system:String x:Key="reportWindow_stack_trace">Stapelüberwachung</system:String> <system:String x:Key="reportWindow_stack_trace">Stapelverfolgung</system:String>
<system:String x:Key="reportWindow_sending">Sende</system:String> <system:String x:Key="reportWindow_sending">Senden</system:String>
<system:String x:Key="reportWindow_report_succeed">Report erfolgreich</system:String> <system:String x:Key="reportWindow_report_succeed">Bericht erfolgreich gesendet</system:String>
<system:String x:Key="reportWindow_report_failed">Report fehlgeschlagen</system:String> <system:String x:Key="reportWindow_report_failed">Bericht konnte nicht gesendet werden</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher hat einen Fehler</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher hat einen Fehler</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Bitte warten...</system:String> <system:String x:Key="pleaseWait">Bitte warten Sie ...</system:String>
<!-- Update --> <!-- Update -->
<system:String x:Key="update_flowlauncher_update_check">Nach Updates suchen!</system:String> <system:String x:Key="update_flowlauncher_update_check">Prüfung auf neues Update</system:String>
<system:String x:Key="update_flowlauncher_already_on_latest">Sie haben bereits die neuste Version</system:String> <system:String x:Key="update_flowlauncher_already_on_latest">Sie haben bereits die neueste Version von Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_found">Update gefunden</system:String> <system:String x:Key="update_flowlauncher_update_found">Update gefunden</system:String>
<system:String x:Key="update_flowlauncher_updating">Wird aktualisiert ...</system:String> <system:String x:Key="update_flowlauncher_updating">Wird aktualisiert ...</system:String>
<system:String x:Key="update_flowlauncher_fail_moving_portable_user_profile_data"> <system:String x:Key="update_flowlauncher_fail_moving_portable_user_profile_data">
Flow Launcher konnte deine Profildaten nicht in die neue Updateversion verschieben. Flow Launcher war nicht in der Lage, Ihre Benutzerprofildaten auf die neue Update-Version zu übertragen.
Bitte verschieben Sie Ihren Profildatenordner manuell von {0} nach {1} Bitte verschieben Sie Ihren Profildatenordner manuell von {0} nach {1}
</system:String> </system:String>
<system:String x:Key="update_flowlauncher_new_update">Neues Update</system:String> <system:String x:Key="update_flowlauncher_new_update">Neues Update</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">V{0} von Flow Launcher ist verfügbar</system:String> <system:String x:Key="update_flowlauncher_update_new_version_available">Neues Release {0} von Flow Launcher ist jetzt verfügbar</system:String>
<system:String x:Key="update_flowlauncher_update_error">Es ist ein Fehler während der Installation der Aktualisierung aufgetreten.</system:String> <system:String x:Key="update_flowlauncher_update_error">Beim Versuch, Software-Updates zu installieren, ist ein Fehler aufgetreten</system:String>
<system:String x:Key="update_flowlauncher_update">Aktualisieren</system:String> <system:String x:Key="update_flowlauncher_update">Aktualisieren</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Abbrechen</system:String> <system:String x:Key="update_flowlauncher_update_cancel">Abbrechen</system:String>
<system:String x:Key="update_flowlauncher_fail">Aktualisierung fehlgeschlagen</system:String> <system:String x:Key="update_flowlauncher_fail">Update fehlgeschlagen</system:String>
<system:String x:Key="update_flowlauncher_check_connection">Überprüfen Sie Ihre Internetverbindung und aktualisieren Sie die Proxy-Einstellungen um auf github-cloud.s3.amazonaws.com zugreifen zu können.</system:String> <system:String x:Key="update_flowlauncher_check_connection">Überprüfen Sie Ihre Verbindung und versuchen Sie, die Proxy-Einstellungen auf github-cloud.s3.amazonaws.com zu aktualisieren.</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Diese Aktualisierung wird Flow Launcher neu starten</system:String> <system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Dieses Upgrade wird Flow Launcher neu starten</system:String>
<system:String x:Key="update_flowlauncher_update_update_files">Folgende Dateien werden aktualisiert</system:String> <system:String x:Key="update_flowlauncher_update_update_files">Folgende Dateien werden aktualisiert</system:String>
<system:String x:Key="update_flowlauncher_update_files">Aktualisiere Dateien</system:String> <system:String x:Key="update_flowlauncher_update_files">Daten aktualisieren</system:String>
<system:String x:Key="update_flowlauncher_update_update_description">Aktualisierungbeschreibung</system:String> <system:String x:Key="update_flowlauncher_update_update_description">Update-Beschreibung</system:String>
<!-- Welcome Window --> <!-- Welcome Window -->
<system:String x:Key="Skip">Überspringen</system:String> <system:String x:Key="Skip">Überspringen</system:String>
<system:String x:Key="Welcome_Page1_Title">Willkommen im Flow Launcher</system:String> <system:String x:Key="Welcome_Page1_Title">Willkommen bei Flow Launcher</system:String>
<system:String x:Key="Welcome_Page1_Text01">Hallo, dies ist das erste Mal, dass Sie den Flow Launcher verwenden!</system:String> <system:String x:Key="Welcome_Page1_Text01">Hallo, dies ist das erste Mal, dass Sie Flow Launcher ausführen!</system:String>
<system:String x:Key="Welcome_Page1_Text02">Vor dem Start hilft dieser Assistent beim Einrichten des Flow Launchers. Sie können dies überspringen, wenn Sie möchten. Bitte wählen Sie eine Sprache aus</system:String> <system:String x:Key="Welcome_Page1_Text02">Bevor Sie beginnen, hilft dieser Assistent bei der Einrichtung von Flow Launcher. Sie können dies überspringen, wenn Sie möchten. Bitte wählen Sie eine Sprache</system:String>
<system:String x:Key="Welcome_Page2_Title">Suchen und starten Sie alle Dateien sowie Anwendungen auf Ihrem PC</system:String> <system:String x:Key="Welcome_Page2_Title">Suchen und führen Sie alle Dateien und Anwendungen auf Ihrem PC aus</system:String>
<system:String x:Key="Welcome_Page2_Text01">Durchsuchen Sie alles von Anwendungen, Dateien, Lesezeichen, YouTube, Twitter und mehr. Und das alles bequem von Ihrer Tastatur aus, ohne die Maus berühren zu müssen.</system:String> <system:String x:Key="Welcome_Page2_Text01">Suchen Sie alles in Anwendungen, Dateien, Lesezeichen, YouTube, Twitter und vielem mehr. Alles bequem über Ihre Tastatur, ohne die Maus zu berühren.</system:String>
<system:String x:Key="Welcome_Page2_Text02">Flow Launcher startet mit der unten angegebenen Tastenkombination; probieren Sie es aus. Um diese zu ändern, klicken Sie auf die Eingabe und drücken die gewünschte Tastenkombination auf der Tastatur.</system:String> <system:String x:Key="Welcome_Page2_Text02">Flow Launcher startet mit dem unten stehenden Hotkey, probieren Sie ihn gleich aus. Um ihn zu ändern, klicken Sie auf die Eingabe und drücken Sie den gewünschten Hotkey auf der Tastatur.</system:String>
<system:String x:Key="Welcome_Page3_Title">Tastenkombination</system:String> <system:String x:Key="Welcome_Page3_Title">Hotkeys</system:String>
<system:String x:Key="Welcome_Page4_Title">Aktions-Schlüsselwort und Befehle</system:String> <system:String x:Key="Welcome_Page4_Title">Aktions-Schlüsselwort und Befehle</system:String>
<system:String x:Key="Welcome_Page4_Text01">Durchsuchen Sie das Web, starten Sie Anwendungen oder führen Sie verschiedene Abläufe durch die Flow Launcher Plugins aus. Einige Funktionen beginnen mit einem Aktions-Schlüsselwort und können bei Bedarf auch ohne Aktions-Schlüsselwörter verwendet werden. Probieren Sie die untenstehenden Abfragen in Flow Launcher aus.</system:String> <system:String x:Key="Welcome_Page4_Text01">Suchen Sie im Web, starten Sie Anwendungen oder führen Sie verschiedene Funktionen über Flow Launcher-Plug-ins aus. Bestimmte Funktionen beginnen mit einem Aktions-Schlüsselwort und diese können bei Bedarf auch ohne Aktions-Schlüsselwörter verwendet werden. Probieren Sie die Abfragen unten in Flow Launcher aus.</system:String>
<system:String x:Key="Welcome_Page5_Title">Starte Flow-Launcher</system:String> <system:String x:Key="Welcome_Page5_Title">Lassen Sie uns Flow Launcher starten</system:String>
<system:String x:Key="Welcome_Page5_Text01">Fertig. Genießen Sie Flow Launcher. Die Tastenkombination nicht vergessen, um Flow Launcher zu starten :)</system:String> <system:String x:Key="Welcome_Page5_Text01">Beendet. Viel Spaß mit Flow Launcher. Vergessen Sie nicht den Hotkey zum Starten :)</system:String>
<!-- General Guide & Hotkey --> <!-- General Guide & Hotkey -->
<system:String x:Key="HotkeyUpDownDesc">Zurück / Kontextmenü</system:String> <system:String x:Key="HotkeyUpDownDesc">Zurück / Kontextmenü</system:String>
<system:String x:Key="HotkeyLeftRightDesc">Element Navigation</system:String> <system:String x:Key="HotkeyLeftRightDesc">Element-Navigation</system:String>
<system:String x:Key="HotkeyShiftEnterDesc">Kontextmenü öffnen</system:String> <system:String x:Key="HotkeyShiftEnterDesc">Kontextmenü öffnen</system:String>
<system:String x:Key="HotkeyCtrlEnterDesc">Öffne beinhaltenden Ordner</system:String> <system:String x:Key="HotkeyCtrlEnterDesc">Enthaltenden Ordner öffnen</system:String>
<system:String x:Key="HotkeyCtrlShiftEnterDesc">Als Admin ausführen / Ordner im Standard-Dateimanager öffnen</system:String> <system:String x:Key="HotkeyCtrlShiftEnterDesc">Als Admin ausführen / Ordner im Default-Dateimanager öffnen</system:String>
<system:String x:Key="HotkeyCtrlHDesc">Verlauf durchsuchen</system:String> <system:String x:Key="HotkeyCtrlHDesc">Historie abfragen</system:String>
<system:String x:Key="HotkeyESCDesc">Zurück zum Resultat im Kontextmenü</system:String> <system:String x:Key="HotkeyESCDesc">Zurück zu Ergebnis in Kontextmenü</system:String>
<system:String x:Key="HotkeyTabDesc">Autovervollständigung</system:String> <system:String x:Key="HotkeyTabDesc">Autovervollständigung</system:String>
<system:String x:Key="HotkeyRunDesc">Ausgewähltes Element öffnen / ausführen</system:String> <system:String x:Key="HotkeyRunDesc">Ausgewähltes Element öffnen / ausführen</system:String>
<system:String x:Key="HotkeyCtrlIDesc">Einstellungsfenster öffnen</system:String> <system:String x:Key="HotkeyCtrlIDesc">Einstellungsfenster öffnen</system:String>
<system:String x:Key="HotkeyF5Desc">Plugin-Daten neu laden</system:String> <system:String x:Key="HotkeyF5Desc">Plug-in-Daten neu laden</system:String>
<system:String x:Key="HotkeySelectFirstResult">Erstes Ergebnis auswählen</system:String> <system:String x:Key="HotkeySelectFirstResult">Erstes Ergebnis auswählen</system:String>
<system:String x:Key="HotkeySelectLastResult">Letztes Ergebnis auswählen</system:String> <system:String x:Key="HotkeySelectLastResult">Letztes Ergebnis auswählen</system:String>
<system:String x:Key="HotkeyRequery">Aktuelle Abfrage erneut ausführen</system:String> <system:String x:Key="HotkeyRequery">Aktuelle Abfrage erneut ausführen</system:String>
<system:String x:Key="HotkeyOpenResult">Ergebnis öffnen</system:String> <system:String x:Key="HotkeyOpenResult">Ergebnis öffnen</system:String>
<system:String x:Key="HotkeyOpenResultN">Ergebnis #{0} öffnen</system:String> <system:String x:Key="HotkeyOpenResultN">Ergebnis öffnen #{0}</system:String>
<system:String x:Key="RecommendWeather">Wetter</system:String> <system:String x:Key="RecommendWeather">Wetter</system:String>
<system:String x:Key="RecommendWeatherDesc">Wetter in Google-Ergebnis</system:String> <system:String x:Key="RecommendWeatherDesc">Wetter in Google-Ergebnis</system:String>
@ -446,8 +446,8 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="RecommendShellDesc">Shell-Befehl</system:String> <system:String x:Key="RecommendShellDesc">Shell-Befehl</system:String>
<system:String x:Key="RecommendBluetooth">s Bluetooth</system:String> <system:String x:Key="RecommendBluetooth">s Bluetooth</system:String>
<system:String x:Key="RecommendBluetoothDesc">Bluetooth in Windows-Einstellungen</system:String> <system:String x:Key="RecommendBluetoothDesc">Bluetooth in Windows-Einstellungen</system:String>
<system:String x:Key="RecommendAcronyms">nt</system:String> <system:String x:Key="RecommendAcronyms">sn</system:String>
<system:String x:Key="RecommendAcronymsDesc">Notizen</system:String> <system:String x:Key="RecommendAcronymsDesc">Haftnotizen</system:String>
<!-- Preview Area --> <!-- Preview Area -->
<system:String x:Key="FileSize">Dateigröße</system:String> <system:String x:Key="FileSize">Dateigröße</system:String>

View file

@ -2,7 +2,7 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Startup --> <!-- Startup -->
<system:String x:Key="runtimePluginInstalledChooseRuntimePrompt"> <system:String x:Key="runtimePluginInstalledChooseRuntimePrompt">
Flow ha detectado que tiene instalados {0} complementos, que necesitan {1} para funcionar. ¿Desea descargar {1}? Flow ha detectado que tiene instalado(s) {0} complemento(s), que necesita(n) {1} para funcionar. ¿Desea descargar {1}?
{2}{2} {2}{2}
Haga clic en no si ya está instalado, y seleccione la carpeta que contiene el ejecutable {1} Haga clic en no si ya está instalado, y seleccione la carpeta que contiene el ejecutable {1}
</system:String> </system:String>

View file

@ -2,455 +2,455 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Startup --> <!-- Startup -->
<system:String x:Key="runtimePluginInstalledChooseRuntimePrompt"> <system:String x:Key="runtimePluginInstalledChooseRuntimePrompt">
Flow detected you have installed {0} plugins, which will require {1} to run. Would you like to download {1}? Flow oppdaget at du har installert {0} programtillegg, noe som krever {1} for å kjøre. Vil du laste ned {1}?
{2}{2} {2}{2}
Click no if it's already installed, and you will be prompted to select the folder that contains the {1} executable Klikk nei hvis det allerede er installert, og du vil bli bedt om å velge mappen som inneholder {1} kjørbar fil
</system:String> </system:String>
<system:String x:Key="runtimePluginChooseRuntimeExecutable">Please select the {0} executable</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">Velg den kjørbare filen for {0}</system:String>
<system:String x:Key="runtimePluginUnableToSetExecutablePath">Unable to set {0} executable path, please try from Flow's settings (scroll down to the bottom).</system:String> <system:String x:Key="runtimePluginUnableToSetExecutablePath">Kan ikke angi {0} kjørbar bane, prøv fra Flows innstillinger (bla ned til bunnen).</system:String>
<system:String x:Key="failedToInitializePluginsTitle">Fail to Init Plugins</system:String> <system:String x:Key="failedToInitializePluginsTitle">Mislykkes i å initialisere programtillegg</system:String>
<system:String x:Key="failedToInitializePluginsMessage">Plugins: {0} - fail to load and would be disabled, please contact plugin creator for help</system:String> <system:String x:Key="failedToInitializePluginsMessage">Programtillegg: {0} - mislykkes å lastes inn og vil bli deaktivert, vennligst kontakt utvikleren av programtillegget for hjelp</system:String>
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Failed to register hotkey &quot;{0}&quot;. The hotkey may be in use by another program. Change to a different hotkey, or exit another program.</system:String> <system:String x:Key="registerHotkeyFailed">Kan ikke registrere hurtigtasten &quot;{0}&quot;. Hurtigtasten kan være i bruk av et annet program. Endre til en annen hurtigtast, eller avslutt et annet program.</system:String>
<system:String x:Key="MessageBoxTitle">Flow Launcher</system:String> <system:String x:Key="MessageBoxTitle">Flow Launcher</system:String>
<system:String x:Key="couldnotStartCmd">Could not start {0}</system:String> <system:String x:Key="couldnotStartCmd">Kunne ikke starte {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Invalid Flow Launcher plugin file format</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Ugyldig Flow Launcher programtillegg filformat</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Set as topmost in this query</system:String> <system:String x:Key="setAsTopMostInThisQuery">Sett som høyest i denne spørringen</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Cancel topmost in this query</system:String> <system:String x:Key="cancelTopMostInThisQuery">Kanseller høyest i denne spørringen</system:String>
<system:String x:Key="executeQuery">Execute query: {0}</system:String> <system:String x:Key="executeQuery">Kjør spørring: {0}</system:String>
<system:String x:Key="lastExecuteTime">Last execution time: {0}</system:String> <system:String x:Key="lastExecuteTime">Siste utførelsestid: {0}</system:String>
<system:String x:Key="iconTrayOpen">Open</system:String> <system:String x:Key="iconTrayOpen">Åpne</system:String>
<system:String x:Key="iconTraySettings">Settings</system:String> <system:String x:Key="iconTraySettings">Innstillinger</system:String>
<system:String x:Key="iconTrayAbout">About</system:String> <system:String x:Key="iconTrayAbout">Om</system:String>
<system:String x:Key="iconTrayExit">Exit</system:String> <system:String x:Key="iconTrayExit">Avslutt</system:String>
<system:String x:Key="closeWindow">Close</system:String> <system:String x:Key="closeWindow">Lukk</system:String>
<system:String x:Key="copy">Copy</system:String> <system:String x:Key="copy">Kopier</system:String>
<system:String x:Key="cut">Cut</system:String> <system:String x:Key="cut">Klipp ut</system:String>
<system:String x:Key="paste">Paste</system:String> <system:String x:Key="paste">Lim inn</system:String>
<system:String x:Key="undo">Undo</system:String> <system:String x:Key="undo">Angre</system:String>
<system:String x:Key="selectAll">Select All</system:String> <system:String x:Key="selectAll">Velg alle</system:String>
<system:String x:Key="fileTitle">File</system:String> <system:String x:Key="fileTitle">Fil</system:String>
<system:String x:Key="folderTitle">Folder</system:String> <system:String x:Key="folderTitle">Mappe</system:String>
<system:String x:Key="textTitle">Text</system:String> <system:String x:Key="textTitle">Tekst</system:String>
<system:String x:Key="GameMode">Game Mode</system:String> <system:String x:Key="GameMode">Spillmodus</system:String>
<system:String x:Key="GameModeToolTip">Suspend the use of Hotkeys.</system:String> <system:String x:Key="GameModeToolTip">Stopp bruken av hurtigtaster.</system:String>
<system:String x:Key="PositionReset">Position Reset</system:String> <system:String x:Key="PositionReset">Tilbakestilling av posisjon</system:String>
<system:String x:Key="PositionResetToolTip">Reset search window position</system:String> <system:String x:Key="PositionResetToolTip">Tilbakestill posisjonen til søkevinduet</system:String>
<!-- Setting General --> <!-- Setting General -->
<system:String x:Key="flowlauncher_settings">Settings</system:String> <system:String x:Key="flowlauncher_settings">Innstillinger</system:String>
<system:String x:Key="general">General</system:String> <system:String x:Key="general">Generelt</system:String>
<system:String x:Key="portableMode">Portable Mode</system:String> <system:String x:Key="portableMode">Portabel modus</system:String>
<system:String x:Key="portableModeToolTIp">Store all settings and user data in one folder (Useful when used with removable drives or cloud services).</system:String> <system:String x:Key="portableModeToolTIp">Lagre alle innstillinger og brukerdata i en mappe (nyttig når man bruker flyttbare stasjoner eller skytjenester).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher on system startup</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher ved systemoppstart</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Feil ved å sette kjør ved oppstart</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Hide Flow Launcher when focus is lost</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Skjul Flow Launcher når fokus forsvinner</system:String>
<system:String x:Key="dontPromptUpdateMsg">Do not show new version notifications</system:String> <system:String x:Key="dontPromptUpdateMsg">Ikke vis varsler om nye versjoner</system:String>
<system:String x:Key="SearchWindowPosition">Search Window Position</system:String> <system:String x:Key="SearchWindowPosition">Posisjon til søkevindu</system:String>
<system:String x:Key="SearchWindowScreenRememberLastLaunchLocation">Remember Last Position</system:String> <system:String x:Key="SearchWindowScreenRememberLastLaunchLocation">Husk siste posisjon</system:String>
<system:String x:Key="SearchWindowScreenCursor">Monitor with Mouse Cursor</system:String> <system:String x:Key="SearchWindowScreenCursor">Skjerm med musepekeren</system:String>
<system:String x:Key="SearchWindowScreenFocus">Monitor with Focused Window</system:String> <system:String x:Key="SearchWindowScreenFocus">Skjerm med fokusert vindu</system:String>
<system:String x:Key="SearchWindowScreenPrimary">Primary Monitor</system:String> <system:String x:Key="SearchWindowScreenPrimary">Primær skjerm</system:String>
<system:String x:Key="SearchWindowScreenCustom">Custom Monitor</system:String> <system:String x:Key="SearchWindowScreenCustom">Tilpasset skjerm</system:String>
<system:String x:Key="SearchWindowAlign">Search Window Position on Monitor</system:String> <system:String x:Key="SearchWindowAlign">Søkevindusposisjon på skjermen</system:String>
<system:String x:Key="SearchWindowAlignCenter">Center</system:String> <system:String x:Key="SearchWindowAlignCenter">Midten</system:String>
<system:String x:Key="SearchWindowAlignCenterTop">Center Top</system:String> <system:String x:Key="SearchWindowAlignCenterTop">Midtstill toppen</system:String>
<system:String x:Key="SearchWindowAlignLeftTop">Left Top</system:String> <system:String x:Key="SearchWindowAlignLeftTop">Øverst til venstre</system:String>
<system:String x:Key="SearchWindowAlignRightTop">Right Top</system:String> <system:String x:Key="SearchWindowAlignRightTop">Øverst til høyre</system:String>
<system:String x:Key="SearchWindowAlignCustom">Custom Position</system:String> <system:String x:Key="SearchWindowAlignCustom">Egendefinert posisjon</system:String>
<system:String x:Key="language">Language</system:String> <system:String x:Key="language">Språk</system:String>
<system:String x:Key="lastQueryMode">Last Query Style</system:String> <system:String x:Key="lastQueryMode">Siste stil for spørring</system:String>
<system:String x:Key="lastQueryModeToolTip">Show/Hide previous results when Flow Launcher is reactivated.</system:String> <system:String x:Key="lastQueryModeToolTip">Vis/Skjul forrige resultater når Flow Launcher aktiveres på nytt.</system:String>
<system:String x:Key="LastQueryPreserved">Preserve Last Query</system:String> <system:String x:Key="LastQueryPreserved">Bevar siste spørring</system:String>
<system:String x:Key="LastQuerySelected">Select last Query</system:String> <system:String x:Key="LastQuerySelected">Velg siste spørring</system:String>
<system:String x:Key="LastQueryEmpty">Empty last Query</system:String> <system:String x:Key="LastQueryEmpty">Tøm siste spørring</system:String>
<system:String x:Key="KeepMaxResults">Fixed Window Height</system:String> <system:String x:Key="KeepMaxResults">Fast vindushøyde</system:String>
<system:String x:Key="KeepMaxResultsToolTip">The window height is not adjustable by dragging.</system:String> <system:String x:Key="KeepMaxResultsToolTip">Vindushøyden kan ikke justeres ved å dra.</system:String>
<system:String x:Key="maxShowResults">Maximum results shown</system:String> <system:String x:Key="maxShowResults">Maksimalt antall resultater vist</system:String>
<system:String x:Key="maxShowResultsToolTip">You can also quickly adjust this by using CTRL+Plus and CTRL+Minus.</system:String> <system:String x:Key="maxShowResultsToolTip">Du kan også raskt justere dette ved å bruke CTRL+Plus og CTRL+Minus.</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreen">Ignore hotkeys in fullscreen mode</system:String> <system:String x:Key="ignoreHotkeysOnFullscreen">Ignorer hurtigtaster i fullskjermmodus</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Disable Flow Launcher activation when a full screen application is active (Recommended for games).</system:String> <system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Deaktiver Flow Launcher aktivering når et fullskjermprogram er aktivt (anbefalt for spill).</system:String>
<system:String x:Key="defaultFileManager">Default File Manager</system:String> <system:String x:Key="defaultFileManager">Standard filbehandler</system:String>
<system:String x:Key="defaultFileManagerToolTip">Select the file manager to use when opening the folder.</system:String> <system:String x:Key="defaultFileManagerToolTip">Velg filbehandleren du vil bruke når du åpner mappen.</system:String>
<system:String x:Key="defaultBrowser">Default Web Browser</system:String> <system:String x:Key="defaultBrowser">Standard nettleser</system:String>
<system:String x:Key="defaultBrowserToolTip">Setting for New Tab, New Window, Private Mode.</system:String> <system:String x:Key="defaultBrowserToolTip">Innstilling for ny fane, nytt vindu, privat modus.</system:String>
<system:String x:Key="pythonFilePath">Python Path</system:String> <system:String x:Key="pythonFilePath">Python-sti</system:String>
<system:String x:Key="nodeFilePath">Node.js Path</system:String> <system:String x:Key="nodeFilePath">Node.js-sti</system:String>
<system:String x:Key="selectNodeExecutable">Please select the Node.js executable</system:String> <system:String x:Key="selectNodeExecutable">Vennligst velg Node.js-kjørbar fil</system:String>
<system:String x:Key="selectPythonExecutable">Please select pythonw.exe</system:String> <system:String x:Key="selectPythonExecutable">Vennligst velg pythonw.exe</system:String>
<system:String x:Key="typingStartEn">Always Start Typing in English Mode</system:String> <system:String x:Key="typingStartEn">Begynn alltid å skrive i engelsk modus</system:String>
<system:String x:Key="typingStartEnTooltip">Temporarily change your input method to English mode when activating Flow.</system:String> <system:String x:Key="typingStartEnTooltip">Bytt inndatametode midlertidig til engelsk modus når du aktiverer Flow.</system:String>
<system:String x:Key="autoUpdates">Auto Update</system:String> <system:String x:Key="autoUpdates">Automatisk oppdatering</system:String>
<system:String x:Key="select">Select</system:String> <system:String x:Key="select">Velg</system:String>
<system:String x:Key="hideOnStartup">Hide Flow Launcher on startup</system:String> <system:String x:Key="hideOnStartup">Skjul Flow Launcher ved oppstart</system:String>
<system:String x:Key="hideOnStartupToolTip">Flow Launcher search window is hidden in the tray after starting up.</system:String> <system:String x:Key="hideOnStartupToolTip">Søkevinduet for Flow Launcher er skjult i systemstatusfeltet etter oppstart.</system:String>
<system:String x:Key="hideNotifyIcon">Hide tray icon</system:String> <system:String x:Key="hideNotifyIcon">Skjul systemstatusfeltikon</system:String>
<system:String x:Key="hideNotifyIconToolTip">When the icon is hidden from the tray, the Settings menu can be opened by right-clicking on the search window.</system:String> <system:String x:Key="hideNotifyIconToolTip">Når ikonet er skjult fra systemstatusfeltet, kan Innstillinger-menyen åpnes ved å høyreklikke på søkevinduet.</system:String>
<system:String x:Key="querySearchPrecision">Query Search Precision</system:String> <system:String x:Key="querySearchPrecision">Presisjon for spørringssøk</system:String>
<system:String x:Key="querySearchPrecisionToolTip">Changes minimum match score required for results.</system:String> <system:String x:Key="querySearchPrecisionToolTip">Endrer minimum samsvarsresultat som kreves for resultater.</system:String>
<system:String x:Key="SearchPrecisionNone">None</system:String> <system:String x:Key="SearchPrecisionNone">Ingen</system:String>
<system:String x:Key="SearchPrecisionLow">Low</system:String> <system:String x:Key="SearchPrecisionLow">Lav</system:String>
<system:String x:Key="SearchPrecisionRegular">Regular</system:String> <system:String x:Key="SearchPrecisionRegular">Vanlig</system:String>
<system:String x:Key="ShouldUsePinyin">Search with Pinyin</system:String> <system:String x:Key="ShouldUsePinyin">Søk med Pinyin</system:String>
<system:String x:Key="ShouldUsePinyinToolTip">Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.</system:String> <system:String x:Key="ShouldUsePinyinToolTip">Tillater bruk av Pinyin for å søke. Pinyin er standardsystemet for romanisert stavemåte for å oversette kinesisk.</system:String>
<system:String x:Key="AlwaysPreview">Always Preview</system:String> <system:String x:Key="AlwaysPreview">Alltid forhåndsvisning</system:String>
<system:String x:Key="AlwaysPreviewToolTip">Always open preview panel when Flow activates. Press {0} to toggle preview.</system:String> <system:String x:Key="AlwaysPreviewToolTip">Åpne alltid forhåndsvisningspanel når Flow aktiveres. Trykk på {0} for å velge forhåndsvisning.</system:String>
<system:String x:Key="shadowEffectNotAllowed">Shadow effect is not allowed while current theme has blur effect enabled</system:String> <system:String x:Key="shadowEffectNotAllowed">Skyggeeffekt er ikke tillatt mens gjeldende tema har uskarphet-effekt aktivert</system:String>
<!-- Setting Plugin --> <!-- Setting Plugin -->
<system:String x:Key="searchplugin">Search Plugin</system:String> <system:String x:Key="searchplugin">Søk etter programtillegg</system:String>
<system:String x:Key="searchpluginToolTip">Ctrl+F to search plugins</system:String> <system:String x:Key="searchpluginToolTip">Ctrl+F for å søke programtillegg</system:String>
<system:String x:Key="searchplugin_Noresult_Title">No results found</system:String> <system:String x:Key="searchplugin_Noresult_Title">Fant ingen resultater</system:String>
<system:String x:Key="searchplugin_Noresult_Subtitle">Please try a different search.</system:String> <system:String x:Key="searchplugin_Noresult_Subtitle">Vennligst prøv et annet søk.</system:String>
<system:String x:Key="plugin">Plugin</system:String> <system:String x:Key="plugin">Programtillegg</system:String>
<system:String x:Key="plugins">Plugins</system:String> <system:String x:Key="plugins">Programtillegg</system:String>
<system:String x:Key="browserMorePlugins">Find more plugins</system:String> <system:String x:Key="browserMorePlugins">Finn flere programtillegg</system:String>
<system:String x:Key="enable">On</system:String> <system:String x:Key="enable"></system:String>
<system:String x:Key="disable">Off</system:String> <system:String x:Key="disable">Av</system:String>
<system:String x:Key="actionKeywordsTitle">Action keyword Setting</system:String> <system:String x:Key="actionKeywordsTitle">Innstilling av handlingsnøkkelord</system:String>
<system:String x:Key="actionKeywords">Action keyword</system:String> <system:String x:Key="actionKeywords">Handlingsnøkkelord</system:String>
<system:String x:Key="currentActionKeywords">Current action keyword</system:String> <system:String x:Key="currentActionKeywords">Nåværende handlingsnøkkelord</system:String>
<system:String x:Key="newActionKeyword">New action keyword</system:String> <system:String x:Key="newActionKeyword">Nytt handlingsnøkkelord</system:String>
<system:String x:Key="actionKeywordsTooltip">Change Action Keywords</system:String> <system:String x:Key="actionKeywordsTooltip">Endre handlingsnøkkelord</system:String>
<system:String x:Key="currentPriority">Current Priority</system:String> <system:String x:Key="currentPriority">Gjeldende prioritet</system:String>
<system:String x:Key="newPriority">New Priority</system:String> <system:String x:Key="newPriority">Ny prioritet</system:String>
<system:String x:Key="priority">Priority</system:String> <system:String x:Key="priority">Prioritet</system:String>
<system:String x:Key="priorityToolTip">Change Plugin Results Priority</system:String> <system:String x:Key="priorityToolTip">Endre prioritet for programtilleggresultater</system:String>
<system:String x:Key="pluginDirectory">Plugin Directory</system:String> <system:String x:Key="pluginDirectory">Mappe for programtillegg</system:String>
<system:String x:Key="author">by</system:String> <system:String x:Key="author">av</system:String>
<system:String x:Key="plugin_init_time">Init time:</system:String> <system:String x:Key="plugin_init_time">Innbygd tid:</system:String>
<system:String x:Key="plugin_query_time">Query time:</system:String> <system:String x:Key="plugin_query_time">Spørringstid:</system:String>
<system:String x:Key="plugin_query_version">Version</system:String> <system:String x:Key="plugin_query_version">Versjon</system:String>
<system:String x:Key="plugin_query_web">Website</system:String> <system:String x:Key="plugin_query_web">Nettsted</system:String>
<system:String x:Key="plugin_uninstall">Uninstall</system:String> <system:String x:Key="plugin_uninstall">Avinstaller</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Plugin Store</system:String> <system:String x:Key="pluginStore">Programtillegg butikk</system:String>
<system:String x:Key="pluginStore_NewRelease">New Release</system:String> <system:String x:Key="pluginStore_NewRelease">Ny utgivelse</system:String>
<system:String x:Key="pluginStore_RecentlyUpdated">Recently Updated</system:String> <system:String x:Key="pluginStore_RecentlyUpdated">Nylig oppdatert</system:String>
<system:String x:Key="pluginStore_None">Plugins</system:String> <system:String x:Key="pluginStore_None">Programtillegg</system:String>
<system:String x:Key="pluginStore_Installed">Installed</system:String> <system:String x:Key="pluginStore_Installed">Installert</system:String>
<system:String x:Key="refresh">Refresh</system:String> <system:String x:Key="refresh">Oppfrisk</system:String>
<system:String x:Key="installbtn">Install</system:String> <system:String x:Key="installbtn">Installer</system:String>
<system:String x:Key="uninstallbtn">Uninstall</system:String> <system:String x:Key="uninstallbtn">Avinstaller</system:String>
<system:String x:Key="updatebtn">Update</system:String> <system:String x:Key="updatebtn">Oppdater</system:String>
<system:String x:Key="LabelInstalledToolTip">Plugin already installed</system:String> <system:String x:Key="LabelInstalledToolTip">Programtillegg er allerede installert</system:String>
<system:String x:Key="LabelNew">New Version</system:String> <system:String x:Key="LabelNew">Ny versjon</system:String>
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">Dette programtillegget er oppdatert i løpet av de siste 7 dagene</system:String>
<system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String> <system:String x:Key="LabelUpdateToolTip">Ny oppdatering er tilgjengelig</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Theme</system:String> <system:String x:Key="theme">Drakt</system:String>
<system:String x:Key="appearance">Appearance</system:String> <system:String x:Key="appearance">Utseende</system:String>
<system:String x:Key="browserMoreThemes">Theme Gallery</system:String> <system:String x:Key="browserMoreThemes">Tema Galleri</system:String>
<system:String x:Key="howToCreateTheme">How to create a theme</system:String> <system:String x:Key="howToCreateTheme">Hvordan lage et tema</system:String>
<system:String x:Key="hiThere">Hi There</system:String> <system:String x:Key="hiThere">Hei der</system:String>
<system:String x:Key="SampleTitleExplorer">Explorer</system:String> <system:String x:Key="SampleTitleExplorer">Utforsker</system:String>
<system:String x:Key="SampleSubTitleExplorer">Search for files, folders and file contents</system:String> <system:String x:Key="SampleSubTitleExplorer">Søk etter filer, mapper og filinnhold</system:String>
<system:String x:Key="SampleTitleWebSearch">WebSearch</system:String> <system:String x:Key="SampleTitleWebSearch">Nettsøk</system:String>
<system:String x:Key="SampleSubTitleWebSearch">Search the web with different search engine support</system:String> <system:String x:Key="SampleSubTitleWebSearch">Søk på nettet med forskjellig støtte for søkemotorer</system:String>
<system:String x:Key="SampleTitleProgram">Program</system:String> <system:String x:Key="SampleTitleProgram">Program</system:String>
<system:String x:Key="SampleSubTitleProgram">Launch programs as admin or a different user</system:String> <system:String x:Key="SampleSubTitleProgram">Start programmer som administrator eller en annen bruker</system:String>
<system:String x:Key="SampleTitleProcessKiller">ProcessKiller</system:String> <system:String x:Key="SampleTitleProcessKiller">ProsessTerminerer</system:String>
<system:String x:Key="SampleSubTitleProcessKiller">Terminate unwanted processes</system:String> <system:String x:Key="SampleSubTitleProcessKiller">Avslutt uønskede prosesser</system:String>
<system:String x:Key="SearchBarHeight">Search Bar Height</system:String> <system:String x:Key="SearchBarHeight">Søkefeltets høyde</system:String>
<system:String x:Key="ItemHeight">Item Height</system:String> <system:String x:Key="ItemHeight">Elementhøyde</system:String>
<system:String x:Key="queryBoxFont">Query Box Font</system:String> <system:String x:Key="queryBoxFont">Spørreboks skrift</system:String>
<system:String x:Key="resultItemFont">Result Title Font</system:String> <system:String x:Key="resultItemFont">Skrift for resultattittel</system:String>
<system:String x:Key="resultSubItemFont">Result Subtitle Font</system:String> <system:String x:Key="resultSubItemFont">Skrift for resultatundertittel</system:String>
<system:String x:Key="resetCustomize">Reset</system:String> <system:String x:Key="resetCustomize">Tilbakestill</system:String>
<system:String x:Key="CustomizeToolTip">Customize</system:String> <system:String x:Key="CustomizeToolTip">Tilpass</system:String>
<system:String x:Key="windowMode">Window Mode</system:String> <system:String x:Key="windowMode">Vindumodus</system:String>
<system:String x:Key="opacity">Opacity</system:String> <system:String x:Key="opacity">Ugjennomsiktighet</system:String>
<system:String x:Key="theme_load_failure_path_not_exists">Theme {0} not exists, fallback to default theme</system:String> <system:String x:Key="theme_load_failure_path_not_exists">Tema {0} finnes ikke, tilbakestilling til standardtema</system:String>
<system:String x:Key="theme_load_failure_parse_error">Fail to load theme {0}, fallback to default theme</system:String> <system:String x:Key="theme_load_failure_parse_error">Kunne ikke laste inn tema {0}, tilbakestilling til standardtema</system:String>
<system:String x:Key="ThemeFolder">Theme Folder</system:String> <system:String x:Key="ThemeFolder">Tema-mappe</system:String>
<system:String x:Key="OpenThemeFolder">Open Theme Folder</system:String> <system:String x:Key="OpenThemeFolder">Åpne temamappen</system:String>
<system:String x:Key="ColorScheme">Color Scheme</system:String> <system:String x:Key="ColorScheme">Fargevalg</system:String>
<system:String x:Key="ColorSchemeSystem">System Default</system:String> <system:String x:Key="ColorSchemeSystem">Systemstandard</system:String>
<system:String x:Key="ColorSchemeLight">Light</system:String> <system:String x:Key="ColorSchemeLight">Lys</system:String>
<system:String x:Key="ColorSchemeDark">Dark</system:String> <system:String x:Key="ColorSchemeDark">rk</system:String>
<system:String x:Key="SoundEffect">Sound Effect</system:String> <system:String x:Key="SoundEffect">Lydeeffekt</system:String>
<system:String x:Key="SoundEffectTip">Play a small sound when the search window opens</system:String> <system:String x:Key="SoundEffectTip">Spill av en liten lyd når søkevinduet åpnes</system:String>
<system:String x:Key="SoundEffectVolume">Sound Effect Volume</system:String> <system:String x:Key="SoundEffectVolume">Lydeffektvolum</system:String>
<system:String x:Key="SoundEffectVolumeTip">Adjust the volume of the sound effect</system:String> <system:String x:Key="SoundEffectVolumeTip">Juster volumet til lydeffekten</system:String>
<system:String x:Key="SoundEffectWarning">Windows Media Player is unavailable and is required for Flow's volume adjustment. Please check your installation if you need to adjust volume.</system:String> <system:String x:Key="SoundEffectWarning">Windows Media Player er ikke tilgjengelig og er nødvendig for Flows volumjustering. Vennligst sjekk installasjonen din hvis du trenger å justere volumet.</system:String>
<system:String x:Key="Animation">Animation</system:String> <system:String x:Key="Animation">Animasjon</system:String>
<system:String x:Key="AnimationTip">Use Animation in UI</system:String> <system:String x:Key="AnimationTip">Bruk animasjon i brukergrensesnitt</system:String>
<system:String x:Key="AnimationSpeed">Animation Speed</system:String> <system:String x:Key="AnimationSpeed">Animasjonshastighet</system:String>
<system:String x:Key="AnimationSpeedTip">The speed of the UI animation</system:String> <system:String x:Key="AnimationSpeedTip">Hastigheten på grensesnittanimasjonen</system:String>
<system:String x:Key="AnimationSpeedSlow">Slow</system:String> <system:String x:Key="AnimationSpeedSlow">Sakte</system:String>
<system:String x:Key="AnimationSpeedMedium">Medium</system:String> <system:String x:Key="AnimationSpeedMedium">Middels</system:String>
<system:String x:Key="AnimationSpeedFast">Fast</system:String> <system:String x:Key="AnimationSpeedFast">Rask</system:String>
<system:String x:Key="AnimationSpeedCustom">Custom</system:String> <system:String x:Key="AnimationSpeedCustom">Egendefinert</system:String>
<system:String x:Key="Clock">Clock</system:String> <system:String x:Key="Clock">Klokke</system:String>
<system:String x:Key="Date">Date</system:String> <system:String x:Key="Date">Dato</system:String>
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">Dette temaet støtter to (lys/mørk) moduser.</system:String>
<system:String x:Key="TypeHasBlurToolTip">This theme supports Blur Transparent Background.</system:String> <system:String x:Key="TypeHasBlurToolTip">Dette temaet støtter uskarp gjennomsiktig bakgrunn.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Hotkey</system:String> <system:String x:Key="hotkey">Hurtigtast</system:String>
<system:String x:Key="hotkeys">Hotkeys</system:String> <system:String x:Key="hotkeys">Hurtigtaster</system:String>
<system:String x:Key="flowlauncherHotkey">Open Flow Launcher</system:String> <system:String x:Key="flowlauncherHotkey">Åpne Flow Launcher</system:String>
<system:String x:Key="flowlauncherHotkeyToolTip">Enter shortcut to show/hide Flow Launcher.</system:String> <system:String x:Key="flowlauncherHotkeyToolTip">Skriv inn snarvei til å vise/skjule Flow Launcher.</system:String>
<system:String x:Key="previewHotkey">Toggle Preview</system:String> <system:String x:Key="previewHotkey">Vis/skjul forhåndsvisning</system:String>
<system:String x:Key="previewHotkeyToolTip">Enter shortcut to show/hide preview in search window.</system:String> <system:String x:Key="previewHotkeyToolTip">Skriv inn snarvei til å vise/skjule forhåndsvisning i søkevinduet.</system:String>
<system:String x:Key="hotkeyPresets">Hotkey Presets</system:String> <system:String x:Key="hotkeyPresets">Hurtigtast forhåndsinnstillinger</system:String>
<system:String x:Key="hotkeyPresetsToolTip">List of currently registered hotkeys</system:String> <system:String x:Key="hotkeyPresetsToolTip">Liste over registrerte hurtigtaster</system:String>
<system:String x:Key="openResultModifiers">Open Result Modifier Key</system:String> <system:String x:Key="openResultModifiers">Åpne resultatendringstast</system:String>
<system:String x:Key="openResultModifiersToolTip">Select a modifier key to open selected result via keyboard.</system:String> <system:String x:Key="openResultModifiersToolTip">Velg en modifikasjonstast for å åpne valgt resultat via tastatur.</system:String>
<system:String x:Key="showOpenResultHotkey">Show Hotkey</system:String> <system:String x:Key="showOpenResultHotkey">Vis hurtigtast</system:String>
<system:String x:Key="showOpenResultHotkeyToolTip">Show result selection hotkey with results.</system:String> <system:String x:Key="showOpenResultHotkeyToolTip">Vis resultatvalg hurtigtast med resultater.</system:String>
<system:String x:Key="autoCompleteHotkey">Auto Complete</system:String> <system:String x:Key="autoCompleteHotkey">Automatisk fullføring</system:String>
<system:String x:Key="autoCompleteHotkeyToolTip">Runs autocomplete for the selected items.</system:String> <system:String x:Key="autoCompleteHotkeyToolTip">Kjører autofullføring for de valgte elementene.</system:String>
<system:String x:Key="SelectNextItemHotkey">Select Next Item</system:String> <system:String x:Key="SelectNextItemHotkey">Velg neste element</system:String>
<system:String x:Key="SelectPrevItemHotkey">Select Previous Item</system:String> <system:String x:Key="SelectPrevItemHotkey">Velg forrige element</system:String>
<system:String x:Key="SelectNextPageHotkey">Next Page</system:String> <system:String x:Key="SelectNextPageHotkey">Neste side</system:String>
<system:String x:Key="SelectPrevPageHotkey">Previous Page</system:String> <system:String x:Key="SelectPrevPageHotkey">Forrige side</system:String>
<system:String x:Key="CycleHistoryUpHotkey">Cycle Previous Query</system:String> <system:String x:Key="CycleHistoryUpHotkey">Bla gjennom forrige spørring</system:String>
<system:String x:Key="CycleHistoryDownHotkey">Cycle Next Query</system:String> <system:String x:Key="CycleHistoryDownHotkey">Bla gjennom neste spørring</system:String>
<system:String x:Key="OpenContextMenuHotkey">Open Context Menu</system:String> <system:String x:Key="OpenContextMenuHotkey">Åpne hurtigmeny</system:String>
<system:String x:Key="OpenNativeContextMenuHotkey">Open Native Context Menu</system:String> <system:String x:Key="OpenNativeContextMenuHotkey">Åpne innebygd hurtigmeny</system:String>
<system:String x:Key="SettingWindowHotkey">Open Setting Window</system:String> <system:String x:Key="SettingWindowHotkey">Åpne innstillingsvindu</system:String>
<system:String x:Key="CopyFilePathHotkey">Copy File Path</system:String> <system:String x:Key="CopyFilePathHotkey">Kopier filbane</system:String>
<system:String x:Key="ToggleGameModeHotkey">Toggle Game Mode</system:String> <system:String x:Key="ToggleGameModeHotkey">Vis/Skjul spillmodus</system:String>
<system:String x:Key="ToggleHistoryHotkey">Toggle History</system:String> <system:String x:Key="ToggleHistoryHotkey">Veksle historikk</system:String>
<system:String x:Key="OpenContainFolderHotkey">Open Containing Folder</system:String> <system:String x:Key="OpenContainFolderHotkey">Åpne innholdsmappen</system:String>
<system:String x:Key="RunAsAdminHotkey">Run As Admin</system:String> <system:String x:Key="RunAsAdminHotkey">Kjør som administrator</system:String>
<system:String x:Key="RequeryHotkey">Refresh Search Results</system:String> <system:String x:Key="RequeryHotkey">Oppdater søkeresultater</system:String>
<system:String x:Key="ReloadPluginHotkey">Reload Plugins Data</system:String> <system:String x:Key="ReloadPluginHotkey">Last programtilleggdata på nytt</system:String>
<system:String x:Key="QuickWidthHotkey">Quick Adjust Window Width</system:String> <system:String x:Key="QuickWidthHotkey">Hurtigjuster vindusbredden</system:String>
<system:String x:Key="QuickHeightHotkey">Quick Adjust Window Height</system:String> <system:String x:Key="QuickHeightHotkey">Hurtigjuster vindushøyden</system:String>
<system:String x:Key="ReloadPluginHotkeyToolTip">Use when require plugins to reload and update their existing data.</system:String> <system:String x:Key="ReloadPluginHotkeyToolTip">Bruk når du krever programtillegg for å laste inn og oppdatere eksisterende data på nytt.</system:String>
<system:String x:Key="AdditionalHotkeyToolTip">You can add one more hotkey for this function.</system:String> <system:String x:Key="AdditionalHotkeyToolTip">Du kan legge til en hurtigtast til for denne funksjonen.</system:String>
<system:String x:Key="customQueryHotkey">Custom Query Hotkeys</system:String> <system:String x:Key="customQueryHotkey">Egendefinerte hurtigtaster for spørring</system:String>
<system:String x:Key="customQueryShortcut">Custom Query Shortcuts</system:String> <system:String x:Key="customQueryShortcut">Egendefinerte snarveier for spørring</system:String>
<system:String x:Key="builtinShortcuts">Built-in Shortcuts</system:String> <system:String x:Key="builtinShortcuts">Innebygde snarveier</system:String>
<system:String x:Key="customQuery">Query</system:String> <system:String x:Key="customQuery">Spørring</system:String>
<system:String x:Key="customShortcut">Shortcut</system:String> <system:String x:Key="customShortcut">Snarvei</system:String>
<system:String x:Key="customShortcutExpansion">Expansion</system:String> <system:String x:Key="customShortcutExpansion">Utvidelse</system:String>
<system:String x:Key="builtinShortcutDescription">Description</system:String> <system:String x:Key="builtinShortcutDescription">Beskrivelse</system:String>
<system:String x:Key="delete">Delete</system:String> <system:String x:Key="delete">Slett</system:String>
<system:String x:Key="edit">Edit</system:String> <system:String x:Key="edit">Rediger</system:String>
<system:String x:Key="add">Add</system:String> <system:String x:Key="add">Legg til</system:String>
<system:String x:Key="none">None</system:String> <system:String x:Key="none">Ingen</system:String>
<system:String x:Key="pleaseSelectAnItem">Please select an item</system:String> <system:String x:Key="pleaseSelectAnItem">Velg et element</system:String>
<system:String x:Key="deleteCustomHotkeyWarning">Are you sure you want to delete {0} plugin hotkey?</system:String> <system:String x:Key="deleteCustomHotkeyWarning">Er du sikker på at du vil slette {0} programtillegg hurtigtast?</system:String>
<system:String x:Key="deleteCustomShortcutWarning">Are you sure you want to delete shortcut: {0} with expansion {1}?</system:String> <system:String x:Key="deleteCustomShortcutWarning">Er du sikker på at du vil slette snarvei: {0} med utvidelse {1}?</system:String>
<system:String x:Key="shortcut_clipboard_description">Get text from clipboard.</system:String> <system:String x:Key="shortcut_clipboard_description">Hent tekst fra utklippstavlen.</system:String>
<system:String x:Key="shortcut_active_explorer_path">Get path from active explorer.</system:String> <system:String x:Key="shortcut_active_explorer_path">Hent sti fra aktiv utforsker.</system:String>
<system:String x:Key="queryWindowShadowEffect">Query window shadow effect</system:String> <system:String x:Key="queryWindowShadowEffect">Vindusskyggeeffekt for spørringer</system:String>
<system:String x:Key="shadowEffectCPUUsage">Shadow effect has a substantial usage of GPU. Not recommended if your computer performance is limited.</system:String> <system:String x:Key="shadowEffectCPUUsage">Skyggeeffekt har en betydelig bruk av GPU. Anbefales ikke hvis datamaskinens ytelse er begrenset.</system:String>
<system:String x:Key="windowWidthSize">Window Width Size</system:String> <system:String x:Key="windowWidthSize">Vindusbredde størrelse</system:String>
<system:String x:Key="windowWidthSizeToolTip">You can also quickly adjust this by using Ctrl+[ and Ctrl+].</system:String> <system:String x:Key="windowWidthSizeToolTip">Du kan også raskt justere dette ved å bruke Ctrl+[ og Ctrl+].</system:String>
<system:String x:Key="useGlyphUI">Use Segoe Fluent Icons</system:String> <system:String x:Key="useGlyphUI">Bruk Segoe Fluent ikoner</system:String>
<system:String x:Key="useGlyphUIEffect">Use Segoe Fluent Icons for query results where supported</system:String> <system:String x:Key="useGlyphUIEffect">Bruk Segoe Fluent Icons for spørreresultater der det støttes</system:String>
<system:String x:Key="flowlauncherPressHotkey">Press Key</system:String> <system:String x:Key="flowlauncherPressHotkey">Trykk tast</system:String>
<!-- Setting Proxy --> <!-- Setting Proxy -->
<system:String x:Key="proxy">HTTP Proxy</system:String> <system:String x:Key="proxy">HTTP proxy</system:String>
<system:String x:Key="enableProxy">Enable HTTP Proxy</system:String> <system:String x:Key="enableProxy">Aktiver HTTP proxy</system:String>
<system:String x:Key="server">HTTP Server</system:String> <system:String x:Key="server">HTTP-tjener</system:String>
<system:String x:Key="port">Port</system:String> <system:String x:Key="port">Port</system:String>
<system:String x:Key="userName">User Name</system:String> <system:String x:Key="userName">Brukernavn</system:String>
<system:String x:Key="password">Password</system:String> <system:String x:Key="password">Passord</system:String>
<system:String x:Key="testProxy">Test Proxy</system:String> <system:String x:Key="testProxy">Test-proxy</system:String>
<system:String x:Key="save">Save</system:String> <system:String x:Key="save">Lagre</system:String>
<system:String x:Key="serverCantBeEmpty">Server field can't be empty</system:String> <system:String x:Key="serverCantBeEmpty">Tjenerfelt kan ikke være tomt</system:String>
<system:String x:Key="portCantBeEmpty">Port field can't be empty</system:String> <system:String x:Key="portCantBeEmpty">Portfelt kan ikke være tomt</system:String>
<system:String x:Key="invalidPortFormat">Invalid port format</system:String> <system:String x:Key="invalidPortFormat">Ugyldig portformat</system:String>
<system:String x:Key="saveProxySuccessfully">Proxy configuration saved successfully</system:String> <system:String x:Key="saveProxySuccessfully">Proxy-konfigurasjonen ble lagret</system:String>
<system:String x:Key="proxyIsCorrect">Proxy configured correctly</system:String> <system:String x:Key="proxyIsCorrect">Proxy konfigurert riktig</system:String>
<system:String x:Key="proxyConnectFailed">Proxy connection failed</system:String> <system:String x:Key="proxyConnectFailed">Proxy-tilkobling mislyktes</system:String>
<!-- Setting About --> <!-- Setting About -->
<system:String x:Key="about">About</system:String> <system:String x:Key="about">Om</system:String>
<system:String x:Key="website">Website</system:String> <system:String x:Key="website">Nettsted</system:String>
<system:String x:Key="github">GitHub</system:String> <system:String x:Key="github">GitHub</system:String>
<system:String x:Key="docs">Docs</system:String> <system:String x:Key="docs">Dokumenter</system:String>
<system:String x:Key="version">Version</system:String> <system:String x:Key="version">Versjon</system:String>
<system:String x:Key="icons">Icons</system:String> <system:String x:Key="icons">Ikoner</system:String>
<system:String x:Key="about_activate_times">You have activated Flow Launcher {0} times</system:String> <system:String x:Key="about_activate_times">Du har aktivert Flow Launcher {0} ganger</system:String>
<system:String x:Key="checkUpdates">Check for Updates</system:String> <system:String x:Key="checkUpdates">Se etter oppdateringer</system:String>
<system:String x:Key="BecomeASponsor">Become A Sponsor</system:String> <system:String x:Key="BecomeASponsor">Bli en sponsor</system:String>
<system:String x:Key="newVersionTips">New version {0} is available, would you like to restart Flow Launcher to use the update?</system:String> <system:String x:Key="newVersionTips">Ny versjon {0} er tilgjengelig, vil du starte Flow Launcher på nytt for å bruke oppdateringen?</system:String>
<system:String x:Key="checkUpdatesFailed">Check updates failed, please check your connection and proxy settings to api.github.com.</system:String> <system:String x:Key="checkUpdatesFailed">Sjekk oppdateringer mislyktes, vennligst sjekk tilkoblingen og proxy-innstillingene til api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed"> <system:String x:Key="downloadUpdatesFailed">
Download updates failed, please check your connection and proxy settings to github-cloud.s3.amazonaws.com, Nedlasting av oppdateringer mislyktes, vennligst sjekk tilkoblings- og mellomtjenerinnstillingene til github-cloud.s3.amazonaws.com,
or go to https://github.com/Flow-Launcher/Flow.Launcher/releases to download updates manually. eller gå til https://github.com/Flow-Launcher/Flow.Launcher/releases for å laste ned manuelt.
</system:String> </system:String>
<system:String x:Key="releaseNotes">Release Notes</system:String> <system:String x:Key="releaseNotes">Versjonsmerknader</system:String>
<system:String x:Key="documentation">Usage Tips</system:String> <system:String x:Key="documentation">Tips om bruk</system:String>
<system:String x:Key="devtool">DevTools</system:String> <system:String x:Key="devtool">DevTools</system:String>
<system:String x:Key="settingfolder">Setting Folder</system:String> <system:String x:Key="settingfolder">Innstillingsmappe</system:String>
<system:String x:Key="logfolder">Log Folder</system:String> <system:String x:Key="logfolder">Loggmappe</system:String>
<system:String x:Key="clearlogfolder">Clear Logs</system:String> <system:String x:Key="clearlogfolder">Tøm logger</system:String>
<system:String x:Key="clearlogfolderMessage">Are you sure you want to delete all logs?</system:String> <system:String x:Key="clearlogfolderMessage">Er du sikker på at du vil slette alle loggene?</system:String>
<system:String x:Key="welcomewindow">Wizard</system:String> <system:String x:Key="welcomewindow">Veiviser</system:String>
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">Plassering av brukerdata</system:String>
<system:String x:Key="userdatapathToolTip">User settings and installed plugins are saved in the user data folder. This location may vary depending on whether it's in portable mode or not.</system:String> <system:String x:Key="userdatapathToolTip">Brukerinnstillinger og installerte programtillegg lagres i brukerens datamappe. Denne plasseringen kan variere avhengig av om den er i portabel modus eller ikke.</system:String>
<system:String x:Key="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Åpne mappe</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Select File Manager</system:String> <system:String x:Key="fileManagerWindow">Velg filbehandler</system:String>
<system:String x:Key="fileManager_tips">Please specify the file location of the file manager you using and add arguments as required. The &quot;%d&quot; represents the directory path to open for, used by the Arg for Folder field and for commands opening specific directories. The &quot;%f&quot; represents the file path to open for, used by the Arg for File field and for commands opening specific files.</system:String> <system:String x:Key="fileManager_tips">Vennligst spesifiser filplasseringen til filbehandleren du bruker, og legg til argumenter etter behov. &quot;%d&quot; representerer katalogbanen som skal åpnes for, brukt av Arg for mappe-feltet og for kommandoer som åpner spesifikke kataloger. &quot;%f&quot; representerer filbanen som skal åpnes for, brukt av Arg for fil-feltet og for kommandoer som åpner spesifikke filer.</system:String>
<system:String x:Key="fileManager_tips2">For example, if the file manager uses a command such as &quot;totalcmd.exe /A c:\windows&quot; to open the c:\windows directory, the File Manager Path will be totalcmd.exe, and the Arg For Folder will be /A &quot;%d&quot;. Certain file managers like QTTabBar may just require a path to be supplied, in this instance use &quot;%d&quot; as the File Manager Path and leave the rest of the fileds blank.</system:String> <system:String x:Key="fileManager_tips2">For eksempel, hvis filbehandleren bruker en kommando som &quot;totalcmd.exe /A c:windows&quot; for å åpne c:windows-katalogen, vil filbehandlingsbanen bli totalcmd.exe, og Arg For Folder vil være /A &quot;%d&quot;. Enkelte filbehandlere som QTTabBar kan bare kreve at en bane oppgis, i dette tilfellet bruker du &quot;%d&quot; som filbehandlingsbane og lar resten av feltene stå tomme.</system:String>
<system:String x:Key="fileManager_name">File Manager</system:String> <system:String x:Key="fileManager_name">Filbehandler</system:String>
<system:String x:Key="fileManager_profile_name">Profile Name</system:String> <system:String x:Key="fileManager_profile_name">Profilnavn</system:String>
<system:String x:Key="fileManager_path">File Manager Path</system:String> <system:String x:Key="fileManager_path">Filbehandler sti</system:String>
<system:String x:Key="fileManager_directory_arg">Arg For Folder</system:String> <system:String x:Key="fileManager_directory_arg">Arg for mappe</system:String>
<system:String x:Key="fileManager_file_arg">Arg For File</system:String> <system:String x:Key="fileManager_file_arg">Arg for fil</system:String>
<!-- DefaultBrowser Setting Dialog --> <!-- DefaultBrowser Setting Dialog -->
<system:String x:Key="defaultBrowserTitle">Default Web Browser</system:String> <system:String x:Key="defaultBrowserTitle">Standard nettleser</system:String>
<system:String x:Key="defaultBrowser_tips">The default setting follows the OS default browser setting. If specified separately, flow uses that browser.</system:String> <system:String x:Key="defaultBrowser_tips">Standardinnstillingen følger operativsystemets standard nettleserinnstilling. Hvis det er angitt separat, bruker Flow denne nettleseren.</system:String>
<system:String x:Key="defaultBrowser_name">Browser</system:String> <system:String x:Key="defaultBrowser_name">Nettleser</system:String>
<system:String x:Key="defaultBrowser_profile_name">Browser Name</system:String> <system:String x:Key="defaultBrowser_profile_name">Nettlesernavn</system:String>
<system:String x:Key="defaultBrowser_path">Browser Path</system:String> <system:String x:Key="defaultBrowser_path">Sti til nettleser</system:String>
<system:String x:Key="defaultBrowser_newWindow">New Window</system:String> <system:String x:Key="defaultBrowser_newWindow">Nytt vindu</system:String>
<system:String x:Key="defaultBrowser_newTab">New Tab</system:String> <system:String x:Key="defaultBrowser_newTab">Ny fane</system:String>
<system:String x:Key="defaultBrowser_parameter">Private Mode</system:String> <system:String x:Key="defaultBrowser_parameter">Privat modus</system:String>
<!-- Priority Setting Dialog --> <!-- Priority Setting Dialog -->
<system:String x:Key="changePriorityWindow">Change Priority</system:String> <system:String x:Key="changePriorityWindow">Endre prioritet</system:String>
<system:String x:Key="priority_tips">Greater the number, the higher the result will be ranked. Try setting it as 5. If you want the results to be lower than any other plugin's, provide a negative number</system:String> <system:String x:Key="priority_tips">Større nummer, jo høyere vil resultatet bli rangert. Prøv å sette det som 5. Ønsker du at resultatene skal være lavere enn noen andre programtillegg, gi et negativt tall</system:String>
<system:String x:Key="invalidPriority">Please provide an valid integer for Priority!</system:String> <system:String x:Key="invalidPriority">Angi et gyldig heltall for prioritet!</system:String>
<!-- Action Keyword Setting Dialog --> <!-- Action Keyword Setting Dialog -->
<system:String x:Key="oldActionKeywords">Old Action Keyword</system:String> <system:String x:Key="oldActionKeywords">Gammelt nøkkelord for handling</system:String>
<system:String x:Key="newActionKeywords">New Action Keyword</system:String> <system:String x:Key="newActionKeywords">Nytt nøkkelord for handling</system:String>
<system:String x:Key="cancel">Cancel</system:String> <system:String x:Key="cancel">Avbryt</system:String>
<system:String x:Key="done">Done</system:String> <system:String x:Key="done">Utført</system:String>
<system:String x:Key="cannotFindSpecifiedPlugin">Can't find specified plugin</system:String> <system:String x:Key="cannotFindSpecifiedPlugin">Kan ikke finne spesifisert programtillegg</system:String>
<system:String x:Key="newActionKeywordsCannotBeEmpty">New Action Keyword can't be empty</system:String> <system:String x:Key="newActionKeywordsCannotBeEmpty">Nytt handlingsnøkkelord kan ikke være tom</system:String>
<system:String x:Key="newActionKeywordsHasBeenAssigned">This new Action Keyword is already assigned to another plugin, please choose a different one</system:String> <system:String x:Key="newActionKeywordsHasBeenAssigned">Det nye nøkkelordet for handling er allerede tilordnet et annet programtillegg, velg et annet</system:String>
<system:String x:Key="success">Success</system:String> <system:String x:Key="success">Vellykket</system:String>
<system:String x:Key="completedSuccessfully">Completed successfully</system:String> <system:String x:Key="completedSuccessfully">Fullført vellykket</system:String>
<system:String x:Key="actionkeyword_tips">Enter the action keyword you like to use to start the plugin. Use * if you don't want to specify any, and the plugin will be triggered without any action keywords.</system:String> <system:String x:Key="actionkeyword_tips">Skriv inn handlingsnøkkelord du vil bruke for å starte programtillegget. Bruk * hvis du ikke ønsker å spesifisere noen, og utvidelsen vil bli utløst uten noen handlingsord.</system:String>
<!-- Custom Query Hotkey Dialog --> <!-- Custom Query Hotkey Dialog -->
<system:String x:Key="customeQueryHotkeyTitle">Custom Query Hotkey</system:String> <system:String x:Key="customeQueryHotkeyTitle">Hurtigtast for egendefinert spørring</system:String>
<system:String x:Key="customeQueryHotkeyTips">Press a custom hotkey to open Flow Launcher and input the specified query automatically.</system:String> <system:String x:Key="customeQueryHotkeyTips">Trykk på en egendefinert hurtigtast for å åpne Flow Launcher og skrive inn den angitte spørringen automatisk.</system:String>
<system:String x:Key="preview">Preview</system:String> <system:String x:Key="preview">Forhåndsvis</system:String>
<system:String x:Key="hotkeyIsNotUnavailable">Hotkey is unavailable, please select a new hotkey</system:String> <system:String x:Key="hotkeyIsNotUnavailable">Hurtigtast er utilgjengelig, vennligst velg en ny hurtigtast</system:String>
<system:String x:Key="invalidPluginHotkey">Invalid plugin hotkey</system:String> <system:String x:Key="invalidPluginHotkey">Ugyldig hurtigtast for programtillegg</system:String>
<system:String x:Key="update">Update</system:String> <system:String x:Key="update">Oppdater</system:String>
<system:String x:Key="hotkeyRegTitle">Binding Hotkey</system:String> <system:String x:Key="hotkeyRegTitle">Binding av hurtigtast</system:String>
<system:String x:Key="hotkeyUnavailable">Current hotkey is unavailable.</system:String> <system:String x:Key="hotkeyUnavailable">Nåværende hurtigtast er utilgjengelig.</system:String>
<system:String x:Key="hotkeyUnavailableUneditable">This hotkey is reserved for &quot;{0}&quot; and can't be used. Please choose another hotkey.</system:String> <system:String x:Key="hotkeyUnavailableUneditable">Denne hurtigtasten er reservert for &quot;{0}&quot; og kan ikke brukes. Velg en annen hurtigtast.</system:String>
<system:String x:Key="hotkeyUnavailableEditable">This hotkey is already in use by &quot;{0}&quot;. If you press &quot;Overwrite&quot;, it will be removed from &quot;{0}&quot;.</system:String> <system:String x:Key="hotkeyUnavailableEditable">Denne hurtigtasten er allerede i bruk av &quot;{0}&quot;. Hvis du trykker &quot;Overskriv&quot; vil den bli fjernet fra &quot;{0}&quot;.</system:String>
<system:String x:Key="hotkeyRegGuide">Press the keys you want to use for this function.</system:String> <system:String x:Key="hotkeyRegGuide">Trykk på tastene du vil bruke for denne funksjonen.</system:String>
<!-- Custom Query Shortcut Dialog --> <!-- Custom Query Shortcut Dialog -->
<system:String x:Key="customeQueryShortcutTitle">Custom Query Shortcut</system:String> <system:String x:Key="customeQueryShortcutTitle">Snarvei for egendefinert spørring</system:String>
<system:String x:Key="customeQueryShortcutTips">Enter a shortcut that automatically expands to the specified query.</system:String> <system:String x:Key="customeQueryShortcutTips">Skriv inn en snarvei som automatisk utvides til den angitte spørringen.</system:String>
<system:String x:Key="customeQueryShortcutGuide" xml:space="preserve">A shortcut is expanded when it exactly matches the query. <system:String x:Key="customeQueryShortcutGuide" xml:space="preserve">En snarvei utvides når den samsvarer nøyaktig med spørringen.
If you add an '@' prefix while inputting a shortcut, it matches any position in the query. Builtin shortcuts match any position in a query. Hvis du legger til et @-prefiks mens du legger inn en snarvei, samsvarer det med en hvilken som helst posisjon i spørringen. Innebygde snarveier samsvarer med alle posisjoner i en spørring.
</system:String> </system:String>
<system:String x:Key="duplicateShortcut">Shortcut already exists, please enter a new Shortcut or edit the existing one.</system:String> <system:String x:Key="duplicateShortcut">Snarveien eksisterer allerede, skriv inn en ny snarvei eller rediger den eksisterende.</system:String>
<system:String x:Key="emptyShortcut">Shortcut and/or its expansion is empty.</system:String> <system:String x:Key="emptyShortcut">Snarvei og/eller utvidelsen er tom.</system:String>
<!-- Common Action --> <!-- Common Action -->
<system:String x:Key="commonSave">Save</system:String> <system:String x:Key="commonSave">Lagre</system:String>
<system:String x:Key="commonOverwrite">Overwrite</system:String> <system:String x:Key="commonOverwrite">Overskriv</system:String>
<system:String x:Key="commonCancel">Cancel</system:String> <system:String x:Key="commonCancel">Avbryt</system:String>
<system:String x:Key="commonReset">Reset</system:String> <system:String x:Key="commonReset">Tilbakestill</system:String>
<system:String x:Key="commonDelete">Delete</system:String> <system:String x:Key="commonDelete">Slett</system:String>
<system:String x:Key="commonOK">OK</system:String> <system:String x:Key="commonOK">OK</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Ja</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">Nei</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Version</system:String> <system:String x:Key="reportWindow_version">Versjon</system:String>
<system:String x:Key="reportWindow_time">Time</system:String> <system:String x:Key="reportWindow_time">Tid</system:String>
<system:String x:Key="reportWindow_reproduce">Please tell us how application crashed so we can fix it</system:String> <system:String x:Key="reportWindow_reproduce">Fortell oss hvordan programmet krasjet slik at vi kan fikse det</system:String>
<system:String x:Key="reportWindow_send_report">Send Report</system:String> <system:String x:Key="reportWindow_send_report">Send rapport</system:String>
<system:String x:Key="reportWindow_cancel">Cancel</system:String> <system:String x:Key="reportWindow_cancel">Avbryt</system:String>
<system:String x:Key="reportWindow_general">General</system:String> <system:String x:Key="reportWindow_general">Generelt</system:String>
<system:String x:Key="reportWindow_exceptions">Exceptions</system:String> <system:String x:Key="reportWindow_exceptions">Unntak</system:String>
<system:String x:Key="reportWindow_exception_type">Exception Type</system:String> <system:String x:Key="reportWindow_exception_type">Type unntak</system:String>
<system:String x:Key="reportWindow_source">Source</system:String> <system:String x:Key="reportWindow_source">Kilde</system:String>
<system:String x:Key="reportWindow_stack_trace">Stack Trace</system:String> <system:String x:Key="reportWindow_stack_trace">Stabel spor</system:String>
<system:String x:Key="reportWindow_sending">Sending</system:String> <system:String x:Key="reportWindow_sending">Sender</system:String>
<system:String x:Key="reportWindow_report_succeed">Report sent successfully</system:String> <system:String x:Key="reportWindow_report_succeed">Rapporten ble sendt</system:String>
<system:String x:Key="reportWindow_report_failed">Failed to send report</system:String> <system:String x:Key="reportWindow_report_failed">Kunne ikke sende rapport</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher got an error</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher fikk en feil</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Please wait...</system:String> <system:String x:Key="pleaseWait">Vennligst vent...</system:String>
<!-- Update --> <!-- Update -->
<system:String x:Key="update_flowlauncher_update_check">Checking for new update</system:String> <system:String x:Key="update_flowlauncher_update_check">Ser etter nye oppdateringer</system:String>
<system:String x:Key="update_flowlauncher_already_on_latest">You already have the latest Flow Launcher version</system:String> <system:String x:Key="update_flowlauncher_already_on_latest">Du har allerede siste versjon av Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_found">Update found</system:String> <system:String x:Key="update_flowlauncher_update_found">Oppdatering funnet</system:String>
<system:String x:Key="update_flowlauncher_updating">Updating...</system:String> <system:String x:Key="update_flowlauncher_updating">Oppdaterer...</system:String>
<system:String x:Key="update_flowlauncher_fail_moving_portable_user_profile_data"> <system:String x:Key="update_flowlauncher_fail_moving_portable_user_profile_data">
Flow Launcher was not able to move your user profile data to the new update version. Flow Launcher kunne ikke flytte brukerprofildataene dine til den nye oppdateringsversjonen.
Please manually move your profile data folder from {0} to {1} Du må manuelt flytte profildatamappen fra {0} til {1}
</system:String> </system:String>
<system:String x:Key="update_flowlauncher_new_update">New Update</system:String> <system:String x:Key="update_flowlauncher_new_update">Ny oppdatering</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">New Flow Launcher release {0} is now available</system:String> <system:String x:Key="update_flowlauncher_update_new_version_available">Ny versjon av Flow Launcher {0} er nå tilgjengelig</system:String>
<system:String x:Key="update_flowlauncher_update_error">An error occurred while trying to install software updates</system:String> <system:String x:Key="update_flowlauncher_update_error">Det oppstod en feil under forsøket på å installere programvareoppdateringer</system:String>
<system:String x:Key="update_flowlauncher_update">Update</system:String> <system:String x:Key="update_flowlauncher_update">Oppdater</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Cancel</system:String> <system:String x:Key="update_flowlauncher_update_cancel">Avbryt</system:String>
<system:String x:Key="update_flowlauncher_fail">Update Failed</system:String> <system:String x:Key="update_flowlauncher_fail">Oppdatering mislyktes</system:String>
<system:String x:Key="update_flowlauncher_check_connection">Check your connection and try updating proxy settings to github-cloud.s3.amazonaws.com.</system:String> <system:String x:Key="update_flowlauncher_check_connection">Sjekk din tilkobling og prøv å oppdatere proxy-innstillingene til github-cloud.s3.amazonaws.com.</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">This upgrade will restart Flow Launcher</system:String> <system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Denne oppgraderingen vil starte Flow Launcher på nytt</system:String>
<system:String x:Key="update_flowlauncher_update_update_files">Following files will be updated</system:String> <system:String x:Key="update_flowlauncher_update_update_files">Følgende filer vil bli oppdatert</system:String>
<system:String x:Key="update_flowlauncher_update_files">Update files</system:String> <system:String x:Key="update_flowlauncher_update_files">Oppdater filer</system:String>
<system:String x:Key="update_flowlauncher_update_update_description">Update description</system:String> <system:String x:Key="update_flowlauncher_update_update_description">Beskrivelse av oppdatering</system:String>
<!-- Welcome Window --> <!-- Welcome Window -->
<system:String x:Key="Skip">Skip</system:String> <system:String x:Key="Skip">Hopp over</system:String>
<system:String x:Key="Welcome_Page1_Title">Welcome to Flow Launcher</system:String> <system:String x:Key="Welcome_Page1_Title">Velkommen til Flow Launcher</system:String>
<system:String x:Key="Welcome_Page1_Text01">Hello, this is the first time you are running Flow Launcher!</system:String> <system:String x:Key="Welcome_Page1_Text01">Hei, dette er første gang du kjører Flow Launcher!</system:String>
<system:String x:Key="Welcome_Page1_Text02">Before starting, this wizard will assist in setting up Flow Launcher. You can skip this if you wish. Please choose a language</system:String> <system:String x:Key="Welcome_Page1_Text02">Før du starter, vil denne veiviseren hjelpe deg å sette opp Flow Launcher. Du kan hoppe over dette hvis du vil. Vennligst velg et språk</system:String>
<system:String x:Key="Welcome_Page2_Title">Search and run all files and applications on your PC</system:String> <system:String x:Key="Welcome_Page2_Title">Søk og kjør alle filer og programmer på PCen din</system:String>
<system:String x:Key="Welcome_Page2_Text01">Search everything from applications, files, bookmarks, YouTube, Twitter and more. All from the comfort of your keyboard without ever touching the mouse.</system:String> <system:String x:Key="Welcome_Page2_Text01">Søk alt fra programmer, filer, bokmerker, YouTube, Twitter og mer. Alt fra komforten til tastaturet uten å røre musen.</system:String>
<system:String x:Key="Welcome_Page2_Text02">Flow Launcher starts with the hotkey below, go ahead and try it out now. To change it, click on the input and press the desired hotkey on the keyboard.</system:String> <system:String x:Key="Welcome_Page2_Text02">Flow Launcher starter med hurtigtasten nedenfor, fortsett og prøv den nå. For å endre det, klikk på inndata og trykk på ønsket hurtigtast på tastaturet.</system:String>
<system:String x:Key="Welcome_Page3_Title">Hotkeys</system:String> <system:String x:Key="Welcome_Page3_Title">Hurtigtaster</system:String>
<system:String x:Key="Welcome_Page4_Title">Action Keyword and Commands</system:String> <system:String x:Key="Welcome_Page4_Title">Nøkkelord og kommandoer for handling</system:String>
<system:String x:Key="Welcome_Page4_Text01">Search the web, launch applications or run various functions through Flow Launcher plugins. Certain functions start with an action keyword, and if necessary, they can be used without action keywords. Try the queries below in Flow Launcher.</system:String> <system:String x:Key="Welcome_Page4_Text01">Søk på nett, starte programmer eller kjør forskjellige funksjoner gjennom programtillegg for Flow Launcher. Enkelte funksjoner begynner med et handlings-nøkkelord, og kan om nødvendig brukes uten handlings-søkeord. Prøv spørringene under i Flow Launcher.</system:String>
<system:String x:Key="Welcome_Page5_Title">Let's Start Flow Launcher</system:String> <system:String x:Key="Welcome_Page5_Title">La oss starte Flow Launcher</system:String>
<system:String x:Key="Welcome_Page5_Text01">Finished. Enjoy Flow Launcher. Don't forget the hotkey to start :)</system:String> <system:String x:Key="Welcome_Page5_Text01">Fullført. Nyt Flow Launcher. Ikke glem hurtigtasten for å starte :)</system:String>
<!-- General Guide & Hotkey --> <!-- General Guide & Hotkey -->
<system:String x:Key="HotkeyUpDownDesc">Back / Context Menu</system:String> <system:String x:Key="HotkeyUpDownDesc">Tilbake / Hurtigmeny</system:String>
<system:String x:Key="HotkeyLeftRightDesc">Item Navigation</system:String> <system:String x:Key="HotkeyLeftRightDesc">Elementnavigering</system:String>
<system:String x:Key="HotkeyShiftEnterDesc">Open Context Menu</system:String> <system:String x:Key="HotkeyShiftEnterDesc">Åpne hurtigmeny</system:String>
<system:String x:Key="HotkeyCtrlEnterDesc">Open Containing Folder</system:String> <system:String x:Key="HotkeyCtrlEnterDesc">Åpne innholdsmappen</system:String>
<system:String x:Key="HotkeyCtrlShiftEnterDesc">Run as Admin / Open Folder in Default File Manager</system:String> <system:String x:Key="HotkeyCtrlShiftEnterDesc">Kjør som admin / åpne mappe i standard filbehandling</system:String>
<system:String x:Key="HotkeyCtrlHDesc">Query History</system:String> <system:String x:Key="HotkeyCtrlHDesc">Spørrehistorikk</system:String>
<system:String x:Key="HotkeyESCDesc">Back to Result in Context Menu</system:String> <system:String x:Key="HotkeyESCDesc">Tilbake til resultat i hurtigmenyen</system:String>
<system:String x:Key="HotkeyTabDesc">Autocomplete</system:String> <system:String x:Key="HotkeyTabDesc">Autofullfør</system:String>
<system:String x:Key="HotkeyRunDesc">Open / Run Selected Item</system:String> <system:String x:Key="HotkeyRunDesc">Åpne / Kjør valgte element</system:String>
<system:String x:Key="HotkeyCtrlIDesc">Open Setting Window</system:String> <system:String x:Key="HotkeyCtrlIDesc">Åpne innstillingsvindu</system:String>
<system:String x:Key="HotkeyF5Desc">Reload Plugin Data</system:String> <system:String x:Key="HotkeyF5Desc">Last programtilleggdata på nytt</system:String>
<system:String x:Key="HotkeySelectFirstResult">Select first result</system:String> <system:String x:Key="HotkeySelectFirstResult">Velg første resultat</system:String>
<system:String x:Key="HotkeySelectLastResult">Select last result</system:String> <system:String x:Key="HotkeySelectLastResult">Velg siste resultat</system:String>
<system:String x:Key="HotkeyRequery">Run current query again</system:String> <system:String x:Key="HotkeyRequery">Kjør gjeldende spørring på nytt</system:String>
<system:String x:Key="HotkeyOpenResult">Open result</system:String> <system:String x:Key="HotkeyOpenResult">Åpne resultat</system:String>
<system:String x:Key="HotkeyOpenResultN">Open result #{0}</system:String> <system:String x:Key="HotkeyOpenResultN">Åpne resultat #{0}</system:String>
<system:String x:Key="RecommendWeather">Weather</system:String> <system:String x:Key="RecommendWeather">r</system:String>
<system:String x:Key="RecommendWeatherDesc">Weather in Google Result</system:String> <system:String x:Key="RecommendWeatherDesc">Været i Google Resultat</system:String>
<system:String x:Key="RecommendShell">&gt; ping 8.8.8.8</system:String> <system:String x:Key="RecommendShell">&gt; ping 8.8.8.8</system:String>
<system:String x:Key="RecommendShellDesc">Shell Command</system:String> <system:String x:Key="RecommendShellDesc">Skallkommando</system:String>
<system:String x:Key="RecommendBluetooth">s Bluetooth</system:String> <system:String x:Key="RecommendBluetooth">s Bluetooth</system:String>
<system:String x:Key="RecommendBluetoothDesc">Bluetooth in Windows Settings</system:String> <system:String x:Key="RecommendBluetoothDesc">Bluetooth i Windows innstillinger</system:String>
<system:String x:Key="RecommendAcronyms">sn</system:String> <system:String x:Key="RecommendAcronyms">sn</system:String>
<system:String x:Key="RecommendAcronymsDesc">Sticky Notes</system:String> <system:String x:Key="RecommendAcronymsDesc">Sticky Notes</system:String>
<!-- Preview Area --> <!-- Preview Area -->
<system:String x:Key="FileSize">File Size</system:String> <system:String x:Key="FileSize">Filstørrelse</system:String>
<system:String x:Key="Created">Created</system:String> <system:String x:Key="Created">Opprettet</system:String>
<system:String x:Key="LastModified">Last Modified</system:String> <system:String x:Key="LastModified">Sist endret</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -163,7 +163,7 @@
<system:String x:Key="resultItemFont">Resultaat titel lettertype</system:String> <system:String x:Key="resultItemFont">Resultaat titel lettertype</system:String>
<system:String x:Key="resultSubItemFont">Result Subtitle Font</system:String> <system:String x:Key="resultSubItemFont">Result Subtitle Font</system:String>
<system:String x:Key="resetCustomize">Herstellen</system:String> <system:String x:Key="resetCustomize">Herstellen</system:String>
<system:String x:Key="CustomizeToolTip">Customize</system:String> <system:String x:Key="CustomizeToolTip">Aanpassen</system:String>
<system:String x:Key="windowMode">Venster Modus</system:String> <system:String x:Key="windowMode">Venster Modus</system:String>
<system:String x:Key="opacity">Ondoorzichtigheid</system:String> <system:String x:Key="opacity">Ondoorzichtigheid</system:String>
<system:String x:Key="theme_load_failure_path_not_exists">Thema {0} bestaat niet, terugvallen op het standaardthema</system:String> <system:String x:Key="theme_load_failure_path_not_exists">Thema {0} bestaat niet, terugvallen op het standaardthema</system:String>
@ -183,13 +183,13 @@
<system:String x:Key="AnimationTip">Animatie gebruiken in UI</system:String> <system:String x:Key="AnimationTip">Animatie gebruiken in UI</system:String>
<system:String x:Key="AnimationSpeed">Animation Speed</system:String> <system:String x:Key="AnimationSpeed">Animation Speed</system:String>
<system:String x:Key="AnimationSpeedTip">The speed of the UI animation</system:String> <system:String x:Key="AnimationSpeedTip">The speed of the UI animation</system:String>
<system:String x:Key="AnimationSpeedSlow">Slow</system:String> <system:String x:Key="AnimationSpeedSlow">Langzaam</system:String>
<system:String x:Key="AnimationSpeedMedium">Medium</system:String> <system:String x:Key="AnimationSpeedMedium">Normaal</system:String>
<system:String x:Key="AnimationSpeedFast">Fast</system:String> <system:String x:Key="AnimationSpeedFast">Snel</system:String>
<system:String x:Key="AnimationSpeedCustom">Custom</system:String> <system:String x:Key="AnimationSpeedCustom">Aangepast</system:String>
<system:String x:Key="Clock">Clock</system:String> <system:String x:Key="Clock">Klok</system:String>
<system:String x:Key="Date">Date</system:String> <system:String x:Key="Date">Datum</system:String>
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">Dit thema ondersteunt twee (licht/donker) modi.</system:String>
<system:String x:Key="TypeHasBlurToolTip">This theme supports Blur Transparent Background.</system:String> <system:String x:Key="TypeHasBlurToolTip">This theme supports Blur Transparent Background.</system:String>
@ -200,30 +200,30 @@
<system:String x:Key="flowlauncherHotkeyToolTip">Voer snelkoppeling in om Flow Launcher te tonen/verbergen.</system:String> <system:String x:Key="flowlauncherHotkeyToolTip">Voer snelkoppeling in om Flow Launcher te tonen/verbergen.</system:String>
<system:String x:Key="previewHotkey">Toggle Preview</system:String> <system:String x:Key="previewHotkey">Toggle Preview</system:String>
<system:String x:Key="previewHotkeyToolTip">Enter shortcut to show/hide preview in search window.</system:String> <system:String x:Key="previewHotkeyToolTip">Enter shortcut to show/hide preview in search window.</system:String>
<system:String x:Key="hotkeyPresets">Hotkey Presets</system:String> <system:String x:Key="hotkeyPresets">Sneltoets voorinstellingen</system:String>
<system:String x:Key="hotkeyPresetsToolTip">List of currently registered hotkeys</system:String> <system:String x:Key="hotkeyPresetsToolTip">Lijst met momenteel geregistreerde sneltoetsen</system:String>
<system:String x:Key="openResultModifiers">Open resultaatmodificatoren</system:String> <system:String x:Key="openResultModifiers">Open resultaatmodificatoren</system:String>
<system:String x:Key="openResultModifiersToolTip">Kies een aanpassingstoets om het geselecteerde resultaat te openen via het toetsenbord.</system:String> <system:String x:Key="openResultModifiersToolTip">Kies een aanpassingstoets om het geselecteerde resultaat te openen via het toetsenbord.</system:String>
<system:String x:Key="showOpenResultHotkey">Sneltoets weergeven</system:String> <system:String x:Key="showOpenResultHotkey">Sneltoets weergeven</system:String>
<system:String x:Key="showOpenResultHotkeyToolTip">Show result selection hotkey with results.</system:String> <system:String x:Key="showOpenResultHotkeyToolTip">Show result selection hotkey with results.</system:String>
<system:String x:Key="autoCompleteHotkey">Auto Complete</system:String> <system:String x:Key="autoCompleteHotkey">Automatisch Aanvullen</system:String>
<system:String x:Key="autoCompleteHotkeyToolTip">Runs autocomplete for the selected items.</system:String> <system:String x:Key="autoCompleteHotkeyToolTip">Voert automatisch aanvullen uit voor de geselecteerde items.</system:String>
<system:String x:Key="SelectNextItemHotkey">Select Next Item</system:String> <system:String x:Key="SelectNextItemHotkey">Selecteer Volgend Item</system:String>
<system:String x:Key="SelectPrevItemHotkey">Select Previous Item</system:String> <system:String x:Key="SelectPrevItemHotkey">Selecteer Vorig Item</system:String>
<system:String x:Key="SelectNextPageHotkey">Next Page</system:String> <system:String x:Key="SelectNextPageHotkey">Volgende Pagina</system:String>
<system:String x:Key="SelectPrevPageHotkey">Previous Page</system:String> <system:String x:Key="SelectPrevPageHotkey">Vorige Pagina</system:String>
<system:String x:Key="CycleHistoryUpHotkey">Ga naar vorige zoekopdracht</system:String> <system:String x:Key="CycleHistoryUpHotkey">Ga naar vorige zoekopdracht</system:String>
<system:String x:Key="CycleHistoryDownHotkey">Ga naar volgende zoekopdracht</system:String> <system:String x:Key="CycleHistoryDownHotkey">Ga naar volgende zoekopdracht</system:String>
<system:String x:Key="OpenContextMenuHotkey">Open Context Menu</system:String> <system:String x:Key="OpenContextMenuHotkey">Open Contextmenu</system:String>
<system:String x:Key="OpenNativeContextMenuHotkey">Open Native Context Menu</system:String> <system:String x:Key="OpenNativeContextMenuHotkey">Open Origineel Contextmenu</system:String>
<system:String x:Key="SettingWindowHotkey">Open Setting Window</system:String> <system:String x:Key="SettingWindowHotkey">Open Instellingenvenster</system:String>
<system:String x:Key="CopyFilePathHotkey">Copy File Path</system:String> <system:String x:Key="CopyFilePathHotkey">Kopieer Bestandspad</system:String>
<system:String x:Key="ToggleGameModeHotkey">Toggle Game Mode</system:String> <system:String x:Key="ToggleGameModeHotkey">Toggle Game Mode</system:String>
<system:String x:Key="ToggleHistoryHotkey">Toggle History</system:String> <system:String x:Key="ToggleHistoryHotkey">Toggle History</system:String>
<system:String x:Key="OpenContainFolderHotkey">Open Containing Folder</system:String> <system:String x:Key="OpenContainFolderHotkey">Open Containing Folder</system:String>
<system:String x:Key="RunAsAdminHotkey">Run As Admin</system:String> <system:String x:Key="RunAsAdminHotkey">Uitvoeren Als Administrator</system:String>
<system:String x:Key="RequeryHotkey">Refresh Search Results</system:String> <system:String x:Key="RequeryHotkey">Vernieuw Zoekresultaten</system:String>
<system:String x:Key="ReloadPluginHotkey">Reload Plugins Data</system:String> <system:String x:Key="ReloadPluginHotkey">Herlaad Gegevens Plugins</system:String>
<system:String x:Key="QuickWidthHotkey">Snel vensterbreedte aanpassen</system:String> <system:String x:Key="QuickWidthHotkey">Snel vensterbreedte aanpassen</system:String>
<system:String x:Key="QuickHeightHotkey">Snel vensterhoogte aanpassen</system:String> <system:String x:Key="QuickHeightHotkey">Snel vensterhoogte aanpassen</system:String>
<system:String x:Key="ReloadPluginHotkeyToolTip">Use when require plugins to reload and update their existing data.</system:String> <system:String x:Key="ReloadPluginHotkeyToolTip">Use when require plugins to reload and update their existing data.</system:String>

View file

@ -2,14 +2,14 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Startup --> <!-- Startup -->
<system:String x:Key="runtimePluginInstalledChooseRuntimePrompt"> <system:String x:Key="runtimePluginInstalledChooseRuntimePrompt">
Flow detected you have installed {0} plugins, which will require {1} to run. Would you like to download {1}? Flow wykrył, że zainstalowano {0} wtyczek, które będą wymagać {1} do działania. Czy chcesz pobrać {1}?
{2}{2} {2}{2}
Click no if it's already installed, and you will be prompted to select the folder that contains the {1} executable Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy poproszony o wybranie folderu zawierającego plik wykonywalny {1}
</system:String> </system:String>
<system:String x:Key="runtimePluginChooseRuntimeExecutable">Please select the {0} executable</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">Proszę wybrać plik wykonywalny {0}</system:String>
<system:String x:Key="runtimePluginUnableToSetExecutablePath">Unable to set {0} executable path, please try from Flow's settings (scroll down to the bottom).</system:String> <system:String x:Key="runtimePluginUnableToSetExecutablePath">Nie można ustawić ścieżki pliku wykonywalnego {0}, proszę spróbować z poziomu ustawień Flow (przewiń na dół strony).</system:String>
<system:String x:Key="failedToInitializePluginsTitle">Fail to Init Plugins</system:String> <system:String x:Key="failedToInitializePluginsTitle">Nie udało się zainicjować wtyczek</system:String>
<system:String x:Key="failedToInitializePluginsMessage">Plugins: {0} - fail to load and would be disabled, please contact plugin creator for help</system:String> <system:String x:Key="failedToInitializePluginsMessage">Wtyczki: {0} - nie udało się załadować i zostaną wyłączone, proszę skontaktować się z twórcą wtyczki w celu uzyskania pomocy</system:String>
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Nie udało się zarejestrować skrótu klawiszowego &quot;{0}&quot;. Klucz skrótu może być używany przez inny program. Zmień skrót klawiszowy lub wyjdź z innego programu.</system:String> <system:String x:Key="registerHotkeyFailed">Nie udało się zarejestrować skrótu klawiszowego &quot;{0}&quot;. Klucz skrótu może być używany przez inny program. Zmień skrót klawiszowy lub wyjdź z innego programu.</system:String>
@ -47,13 +47,13 @@
<system:String x:Key="setAutoStartFailed">Błąd uruchamiania ustawień przy starcie</system:String> <system:String x:Key="setAutoStartFailed">Błąd uruchamiania ustawień przy starcie</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Ukryj okno Flow Launcher kiedy przestanie ono być aktywne</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Ukryj okno Flow Launcher kiedy przestanie ono być aktywne</system:String>
<system:String x:Key="dontPromptUpdateMsg">Nie pokazuj powiadomienia o nowej wersji</system:String> <system:String x:Key="dontPromptUpdateMsg">Nie pokazuj powiadomienia o nowej wersji</system:String>
<system:String x:Key="SearchWindowPosition">Pozycja Okna Wyszukiwania</system:String> <system:String x:Key="SearchWindowPosition">Pozycja okna wyszukiwania</system:String>
<system:String x:Key="SearchWindowScreenRememberLastLaunchLocation">Zapamiętaj Ostatnią Pozycję</system:String> <system:String x:Key="SearchWindowScreenRememberLastLaunchLocation">Zapamiętaj Ostatnią Pozycję</system:String>
<system:String x:Key="SearchWindowScreenCursor">Monitoruj kursorem myszy</system:String> <system:String x:Key="SearchWindowScreenCursor">Monitoruj kursorem myszy</system:String>
<system:String x:Key="SearchWindowScreenFocus">Monitor z Dostosowanym Oknem</system:String> <system:String x:Key="SearchWindowScreenFocus">Monitor z Dostosowanym Oknem</system:String>
<system:String x:Key="SearchWindowScreenPrimary">Monitor główny</system:String> <system:String x:Key="SearchWindowScreenPrimary">Monitor główny</system:String>
<system:String x:Key="SearchWindowScreenCustom">Monitor Niestandardowy </system:String> <system:String x:Key="SearchWindowScreenCustom">Monitor Niestandardowy </system:String>
<system:String x:Key="SearchWindowAlign">Pozycja Okna Wyszukiwania na Monitorze</system:String> <system:String x:Key="SearchWindowAlign">Pozycja okna wyszukiwania na monitorze</system:String>
<system:String x:Key="SearchWindowAlignCenter">Wyśrodkowane</system:String> <system:String x:Key="SearchWindowAlignCenter">Wyśrodkowane</system:String>
<system:String x:Key="SearchWindowAlignCenterTop">Środek Góra</system:String> <system:String x:Key="SearchWindowAlignCenterTop">Środek Góra</system:String>
<system:String x:Key="SearchWindowAlignLeftTop">Lewa Góra</system:String> <system:String x:Key="SearchWindowAlignLeftTop">Lewa Góra</system:String>
@ -65,17 +65,17 @@
<system:String x:Key="LastQueryPreserved">Zachowaj ostatnie zapytanie</system:String> <system:String x:Key="LastQueryPreserved">Zachowaj ostatnie zapytanie</system:String>
<system:String x:Key="LastQuerySelected">Wybierz ostatnie zapytanie</system:String> <system:String x:Key="LastQuerySelected">Wybierz ostatnie zapytanie</system:String>
<system:String x:Key="LastQueryEmpty">Puste ostatnie zapytanie</system:String> <system:String x:Key="LastQueryEmpty">Puste ostatnie zapytanie</system:String>
<system:String x:Key="KeepMaxResults">Fixed Window Height</system:String> <system:String x:Key="KeepMaxResults">Stała wysokość okna</system:String>
<system:String x:Key="KeepMaxResultsToolTip">The window height is not adjustable by dragging.</system:String> <system:String x:Key="KeepMaxResultsToolTip">Wysokość okna nie jest regulowana poprzez przeciąganie.</system:String>
<system:String x:Key="maxShowResults">Maksymalna liczba wyników</system:String> <system:String x:Key="maxShowResults">Maksymalna liczba wyników</system:String>
<system:String x:Key="maxShowResultsToolTip">Możesz to również szybko dostosować używając CTRL+Plus i CTRL+Minus.</system:String> <system:String x:Key="maxShowResultsToolTip">Możesz to również szybko dostosować używając CTRL+Plus i CTRL+Minus.</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreen">Ignoruj skróty klawiszowe w trybie pełnego ekranu</system:String> <system:String x:Key="ignoreHotkeysOnFullscreen">Ignoruj skróty klawiszowe w trybie pełnoekranowym</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Wyłącz aktywowanie Flow Launcher, gdy uruchomiona jest aplikacja pełnoekranowa (Zalecane dla gier).</system:String> <system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Wyłącz aktywację Flow Launcher, gdy aktywna jest aplikacja pełnoekranowa (zalecane dla gier).</system:String>
<system:String x:Key="defaultFileManager">Domyślny menedżer plików</system:String> <system:String x:Key="defaultFileManager">Domyślny menedżer plików</system:String>
<system:String x:Key="defaultFileManagerToolTip">Wybierz menedżer plików używany do otwierania folderów.</system:String> <system:String x:Key="defaultFileManagerToolTip">Wybierz menedżer plików używany do otwierania folderów.</system:String>
<system:String x:Key="defaultBrowser">Domyślna przeglądarka</system:String> <system:String x:Key="defaultBrowser">Domyślna przeglądarka</system:String>
<system:String x:Key="defaultBrowserToolTip">Ustawienie dla nowej karty, nowego okna i trybu prywatnego.</system:String> <system:String x:Key="defaultBrowserToolTip">Ustawienie dla nowej karty, nowego okna i trybu prywatnego.</system:String>
<system:String x:Key="pythonFilePath">Python Path</system:String> <system:String x:Key="pythonFilePath">Ścieżka Python</system:String>
<system:String x:Key="nodeFilePath">Ścieżka Node.js</system:String> <system:String x:Key="nodeFilePath">Ścieżka Node.js</system:String>
<system:String x:Key="selectNodeExecutable">Wybierz plik wykonywalny Node.js</system:String> <system:String x:Key="selectNodeExecutable">Wybierz plik wykonywalny Node.js</system:String>
<system:String x:Key="selectPythonExecutable">Wybierz pythonw.exe</system:String> <system:String x:Key="selectPythonExecutable">Wybierz pythonw.exe</system:String>
@ -84,17 +84,17 @@
<system:String x:Key="autoUpdates">Automatyczne aktualizacje</system:String> <system:String x:Key="autoUpdates">Automatyczne aktualizacje</system:String>
<system:String x:Key="select">Wybierz</system:String> <system:String x:Key="select">Wybierz</system:String>
<system:String x:Key="hideOnStartup">Uruchamiaj Flow Launcher zminimalizowany</system:String> <system:String x:Key="hideOnStartup">Uruchamiaj Flow Launcher zminimalizowany</system:String>
<system:String x:Key="hideOnStartupToolTip">Flow Launcher search window is hidden in the tray after starting up.</system:String> <system:String x:Key="hideOnStartupToolTip">Okno wyszukiwania Flow Launcher jest ukryte w zasobniku systemowym po uruchomieniu.</system:String>
<system:String x:Key="hideNotifyIcon">Ukryj ikonę zasobnika</system:String> <system:String x:Key="hideNotifyIcon">Ukryj ikonę zasobnika</system:String>
<system:String x:Key="hideNotifyIconToolTip">Gdy ikona jest ukryta w zasobniku, menu Ustawienia można otworzyć, klikając prawym przyciskiem myszy okno wyszukiwania.</system:String> <system:String x:Key="hideNotifyIconToolTip">Gdy ikona jest ukryta w zasobniku systemowym, menu Ustawienia można otworzyć, klikając prawym przyciskiem myszy na oknie wyszukiwania.</system:String>
<system:String x:Key="querySearchPrecision">Precyzja wyszukiwania zapytań</system:String> <system:String x:Key="querySearchPrecision">Precyzja wyszukiwania zapytań</system:String>
<system:String x:Key="querySearchPrecisionToolTip">Zmienia minimalny wynik dopasowania wymagany do uzyskania wyników.</system:String> <system:String x:Key="querySearchPrecisionToolTip">Zmienia minimalny wynik dopasowania wymagany do uzyskania wyników.</system:String>
<system:String x:Key="SearchPrecisionNone">None</system:String> <system:String x:Key="SearchPrecisionNone">Brak</system:String>
<system:String x:Key="SearchPrecisionLow">Low</system:String> <system:String x:Key="SearchPrecisionLow">Niska</system:String>
<system:String x:Key="SearchPrecisionRegular">Regular</system:String> <system:String x:Key="SearchPrecisionRegular">Standardowa</system:String>
<system:String x:Key="ShouldUsePinyin">Szukaj z Pinyin</system:String> <system:String x:Key="ShouldUsePinyin">Szukaj z Pinyin</system:String>
<system:String x:Key="ShouldUsePinyinToolTip">Umożliwia wyszukiwanie przy użyciu Pinyin. Pinyin to standardowy system pisowni zromanizowanej służący do tłumaczenia języka chińskiego.</system:String> <system:String x:Key="ShouldUsePinyinToolTip">Umożliwia wyszukiwanie przy użyciu Pinyin. Pinyin to standardowy system pisowni zromanizowanej służący do tłumaczenia języka chińskiego.</system:String>
<system:String x:Key="AlwaysPreview">Zawsze Podgląd</system:String> <system:String x:Key="AlwaysPreview">Zawsze podgląd</system:String>
<system:String x:Key="AlwaysPreviewToolTip">Zawsze otwieraj panel podglądu, gdy aktywowany jest Flow. Naciśnij {0}, aby przełączyć podgląd.</system:String> <system:String x:Key="AlwaysPreviewToolTip">Zawsze otwieraj panel podglądu, gdy aktywowany jest Flow. Naciśnij {0}, aby przełączyć podgląd.</system:String>
<system:String x:Key="shadowEffectNotAllowed">Efekt cienia jest niedozwolony, gdy bieżący motyw ma włączony efekt rozmycia</system:String> <system:String x:Key="shadowEffectNotAllowed">Efekt cienia jest niedozwolony, gdy bieżący motyw ma włączony efekt rozmycia</system:String>
@ -157,28 +157,28 @@
<system:String x:Key="SampleSubTitleProgram">Uruchamiaj programy jako administrator lub inny użytkownik</system:String> <system:String x:Key="SampleSubTitleProgram">Uruchamiaj programy jako administrator lub inny użytkownik</system:String>
<system:String x:Key="SampleTitleProcessKiller">ZabijProces</system:String> <system:String x:Key="SampleTitleProcessKiller">ZabijProces</system:String>
<system:String x:Key="SampleSubTitleProcessKiller">Zakończ niechciane procesy</system:String> <system:String x:Key="SampleSubTitleProcessKiller">Zakończ niechciane procesy</system:String>
<system:String x:Key="SearchBarHeight">Search Bar Height</system:String> <system:String x:Key="SearchBarHeight">Wysokość paska wyszukiwania</system:String>
<system:String x:Key="ItemHeight">Item Height</system:String> <system:String x:Key="ItemHeight">Wysokość elementu</system:String>
<system:String x:Key="queryBoxFont">Czcionka okna zapytania</system:String> <system:String x:Key="queryBoxFont">Czcionka okna zapytania</system:String>
<system:String x:Key="resultItemFont">Result Title Font</system:String> <system:String x:Key="resultItemFont">Czcionka tytułu wyniku</system:String>
<system:String x:Key="resultSubItemFont">Result Subtitle Font</system:String> <system:String x:Key="resultSubItemFont">Czcionka podtytułu wyniku</system:String>
<system:String x:Key="resetCustomize">Reset</system:String> <system:String x:Key="resetCustomize">Resetuj</system:String>
<system:String x:Key="CustomizeToolTip">Customize</system:String> <system:String x:Key="CustomizeToolTip">Personalizuj</system:String>
<system:String x:Key="windowMode">Tryb w oknie</system:String> <system:String x:Key="windowMode">Tryb w oknie</system:String>
<system:String x:Key="opacity">Przeźroczystość</system:String> <system:String x:Key="opacity">Przeźroczystość</system:String>
<system:String x:Key="theme_load_failure_path_not_exists">Motyw {0} nie istnieje, powróć do domyślnego motywu</system:String> <system:String x:Key="theme_load_failure_path_not_exists">Motyw {0} nie istnieje, powróć do domyślnego motywu</system:String>
<system:String x:Key="theme_load_failure_parse_error">Nie można załadować motywu {0}, wróć do motywu domyślnego</system:String> <system:String x:Key="theme_load_failure_parse_error">Nie można załadować motywu {0}, wróć do motywu domyślnego</system:String>
<system:String x:Key="ThemeFolder">Folder Motywu</system:String> <system:String x:Key="ThemeFolder">Folder motywów</system:String>
<system:String x:Key="OpenThemeFolder">Otwórz folder motywu</system:String> <system:String x:Key="OpenThemeFolder">Otwórz folder motywów</system:String>
<system:String x:Key="ColorScheme">Schemat kolorów</system:String> <system:String x:Key="ColorScheme">Schemat kolorów</system:String>
<system:String x:Key="ColorSchemeSystem">Domyślne ustawienie systemowe</system:String> <system:String x:Key="ColorSchemeSystem">Domyślne ustawienie systemowe</system:String>
<system:String x:Key="ColorSchemeLight">Jasny</system:String> <system:String x:Key="ColorSchemeLight">Jasny</system:String>
<system:String x:Key="ColorSchemeDark">Ciemny</system:String> <system:String x:Key="ColorSchemeDark">Ciemny</system:String>
<system:String x:Key="SoundEffect">Efekty dźwiękowe</system:String> <system:String x:Key="SoundEffect">Efekty dźwiękowe</system:String>
<system:String x:Key="SoundEffectTip">Odtwarzaj krótki dźwięk po otwarciu okna wyszukiwania</system:String> <system:String x:Key="SoundEffectTip">Odtwarzaj krótki dźwięk po otwarciu okna wyszukiwania</system:String>
<system:String x:Key="SoundEffectVolume">Sound Effect Volume</system:String> <system:String x:Key="SoundEffectVolume">Głośność efektów dźwiękowych</system:String>
<system:String x:Key="SoundEffectVolumeTip">Adjust the volume of the sound effect</system:String> <system:String x:Key="SoundEffectVolumeTip">Dostosuj głośność efektów dźwiękowych</system:String>
<system:String x:Key="SoundEffectWarning">Windows Media Player is unavailable and is required for Flow's volume adjustment. Please check your installation if you need to adjust volume.</system:String> <system:String x:Key="SoundEffectWarning">Windows Media Player jest niedostępny, a jest wymagany do regulacji głośności w Flow. Sprawdź swoją instalację, jeśli potrzebujesz dostosować głośność.</system:String>
<system:String x:Key="Animation">Animacja</system:String> <system:String x:Key="Animation">Animacja</system:String>
<system:String x:Key="AnimationTip">Użyj animacji w interfejsie użytkownika</system:String> <system:String x:Key="AnimationTip">Użyj animacji w interfejsie użytkownika</system:String>
<system:String x:Key="AnimationSpeed">Szybkość animacji</system:String> <system:String x:Key="AnimationSpeed">Szybkość animacji</system:String>
@ -189,68 +189,68 @@
<system:String x:Key="AnimationSpeedCustom">Niestandardowa</system:String> <system:String x:Key="AnimationSpeedCustom">Niestandardowa</system:String>
<system:String x:Key="Clock">Zegar</system:String> <system:String x:Key="Clock">Zegar</system:String>
<system:String x:Key="Date">Data</system:String> <system:String x:Key="Date">Data</system:String>
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">Ten motyw obsługuje dwa tryby (jasny/ciemny).</system:String>
<system:String x:Key="TypeHasBlurToolTip">This theme supports Blur Transparent Background.</system:String> <system:String x:Key="TypeHasBlurToolTip">Ten motyw obsługuje rozmyte przezroczyste tło.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Skrót klawiszowy</system:String> <system:String x:Key="hotkey">Skrót klawiszowy</system:String>
<system:String x:Key="hotkeys">Skrót klawiszowy</system:String> <system:String x:Key="hotkeys">Skrót klawiszowy</system:String>
<system:String x:Key="flowlauncherHotkey">Open Flow Launcher</system:String> <system:String x:Key="flowlauncherHotkey">Otwórz Flow Launcher</system:String>
<system:String x:Key="flowlauncherHotkeyToolTip">Wprowadź skrót, aby pokazać/ukryć Flow Launcher.</system:String> <system:String x:Key="flowlauncherHotkeyToolTip">Wprowadź skrót, aby pokazać/ukryć Flow Launcher.</system:String>
<system:String x:Key="previewHotkey">Toggle Preview</system:String> <system:String x:Key="previewHotkey">Przełącz podgląd</system:String>
<system:String x:Key="previewHotkeyToolTip">Wprowadź skrót, aby pokazać/ukryć podgląd w oknie wyszukiwania.</system:String> <system:String x:Key="previewHotkeyToolTip">Wprowadź skrót, aby pokazać/ukryć podgląd w oknie wyszukiwania.</system:String>
<system:String x:Key="hotkeyPresets">Hotkey Presets</system:String> <system:String x:Key="hotkeyPresets">Szablony skrótów</system:String>
<system:String x:Key="hotkeyPresetsToolTip">List of currently registered hotkeys</system:String> <system:String x:Key="hotkeyPresetsToolTip">Lista zarejestrowanych skrótów klawiszowych</system:String>
<system:String x:Key="openResultModifiers">Modyfikatory klawiszów otwierających wyniki</system:String> <system:String x:Key="openResultModifiers">Modyfikatory klawiszów otwierających wyniki</system:String>
<system:String x:Key="openResultModifiersToolTip">Select a modifier key to open selected result via keyboard.</system:String> <system:String x:Key="openResultModifiersToolTip">Wybierz klawisz modyfikujący, aby otworzyć wybrany wynik za pomocą klawiatury.</system:String>
<system:String x:Key="showOpenResultHotkey">Pokaż skrót klawiszowy</system:String> <system:String x:Key="showOpenResultHotkey">Pokaż skrót klawiszowy</system:String>
<system:String x:Key="showOpenResultHotkeyToolTip">Show result selection hotkey with results.</system:String> <system:String x:Key="showOpenResultHotkeyToolTip">Pokaż skrót wyboru wyniku wraz z wynikami.</system:String>
<system:String x:Key="autoCompleteHotkey">Auto Complete</system:String> <system:String x:Key="autoCompleteHotkey">Autouzupełnienie</system:String>
<system:String x:Key="autoCompleteHotkeyToolTip">Runs autocomplete for the selected items.</system:String> <system:String x:Key="autoCompleteHotkeyToolTip">Uruchamia autouzupełnianie dla wybranych elementów.</system:String>
<system:String x:Key="SelectNextItemHotkey">Select Next Item</system:String> <system:String x:Key="SelectNextItemHotkey">Wybierz następny element</system:String>
<system:String x:Key="SelectPrevItemHotkey">Select Previous Item</system:String> <system:String x:Key="SelectPrevItemHotkey">Wybierz poprzedni element</system:String>
<system:String x:Key="SelectNextPageHotkey">Next Page</system:String> <system:String x:Key="SelectNextPageHotkey">Następna Strona</system:String>
<system:String x:Key="SelectPrevPageHotkey">Previous Page</system:String> <system:String x:Key="SelectPrevPageHotkey">Poprzednia strona</system:String>
<system:String x:Key="CycleHistoryUpHotkey">Cycle Previous Query</system:String> <system:String x:Key="CycleHistoryUpHotkey">Przejdź do poprzedniego zapytania</system:String>
<system:String x:Key="CycleHistoryDownHotkey">Cycle Next Query</system:String> <system:String x:Key="CycleHistoryDownHotkey">Przejdź do następnego zapytania</system:String>
<system:String x:Key="OpenContextMenuHotkey">Open Context Menu</system:String> <system:String x:Key="OpenContextMenuHotkey">Otwórz menu kontekstowe</system:String>
<system:String x:Key="OpenNativeContextMenuHotkey">Open Native Context Menu</system:String> <system:String x:Key="OpenNativeContextMenuHotkey">Otwórz natywne menu kontekstowe</system:String>
<system:String x:Key="SettingWindowHotkey">Open Setting Window</system:String> <system:String x:Key="SettingWindowHotkey">Otwórz okno ustawień</system:String>
<system:String x:Key="CopyFilePathHotkey">Copy File Path</system:String> <system:String x:Key="CopyFilePathHotkey">Kopiuj ścieżkę pliku</system:String>
<system:String x:Key="ToggleGameModeHotkey">Toggle Game Mode</system:String> <system:String x:Key="ToggleGameModeHotkey">Przełącz tryb gry</system:String>
<system:String x:Key="ToggleHistoryHotkey">Toggle History</system:String> <system:String x:Key="ToggleHistoryHotkey">Przełącz historię</system:String>
<system:String x:Key="OpenContainFolderHotkey">Otwórz folder zawierający</system:String> <system:String x:Key="OpenContainFolderHotkey">Otwórz folder zawierający</system:String>
<system:String x:Key="RunAsAdminHotkey">Run As Admin</system:String> <system:String x:Key="RunAsAdminHotkey">Uruchom jako Administrator</system:String>
<system:String x:Key="RequeryHotkey">Refresh Search Results</system:String> <system:String x:Key="RequeryHotkey">Odśwież wyniki wyszukiwania</system:String>
<system:String x:Key="ReloadPluginHotkey">Reload Plugins Data</system:String> <system:String x:Key="ReloadPluginHotkey">Odśwież dane wtyczek</system:String>
<system:String x:Key="QuickWidthHotkey">Quick Adjust Window Width</system:String> <system:String x:Key="QuickWidthHotkey">Szybka regulacja szerokości okna</system:String>
<system:String x:Key="QuickHeightHotkey">Quick Adjust Window Height</system:String> <system:String x:Key="QuickHeightHotkey">Szybka regulacja szerokości okna</system:String>
<system:String x:Key="ReloadPluginHotkeyToolTip">Use when require plugins to reload and update their existing data.</system:String> <system:String x:Key="ReloadPluginHotkeyToolTip">Używaj, gdy wymagane jest odświeżenie wtyczek i zaktualizowanie ich istniejących danych.</system:String>
<system:String x:Key="AdditionalHotkeyToolTip">You can add one more hotkey for this function.</system:String> <system:String x:Key="AdditionalHotkeyToolTip">Możesz dodać jeszcze jeden skrót klawiszowy dla tej funkcji.</system:String>
<system:String x:Key="customQueryHotkey">Skrót klawiszowy niestandardowych zapytań</system:String> <system:String x:Key="customQueryHotkey">Skrót klawiszowy niestandardowych zapytań</system:String>
<system:String x:Key="customQueryShortcut">Custom Query Shortcut</system:String> <system:String x:Key="customQueryShortcut">Custom Query Shortcut</system:String>
<system:String x:Key="builtinShortcuts">Built-in Shortcut</system:String> <system:String x:Key="builtinShortcuts">Built-in Shortcut</system:String>
<system:String x:Key="customQuery">Query</system:String> <system:String x:Key="customQuery">Zapytanie</system:String>
<system:String x:Key="customShortcut">Shortcut</system:String> <system:String x:Key="customShortcut">Skrót</system:String>
<system:String x:Key="customShortcutExpansion">Expansion</system:String> <system:String x:Key="customShortcutExpansion">Rozwinięcie</system:String>
<system:String x:Key="builtinShortcutDescription">Opis</system:String> <system:String x:Key="builtinShortcutDescription">Opis</system:String>
<system:String x:Key="delete">Usuń</system:String> <system:String x:Key="delete">Usuń</system:String>
<system:String x:Key="edit">Edytuj</system:String> <system:String x:Key="edit">Edytuj</system:String>
<system:String x:Key="add">Dodaj</system:String> <system:String x:Key="add">Dodaj</system:String>
<system:String x:Key="none">None</system:String> <system:String x:Key="none">Brak</system:String>
<system:String x:Key="pleaseSelectAnItem">Musisz coś wybrać</system:String> <system:String x:Key="pleaseSelectAnItem">Musisz coś wybrać</system:String>
<system:String x:Key="deleteCustomHotkeyWarning">Czy jesteś pewien że chcesz usunąć skrót klawiszowy {0} wtyczki?</system:String> <system:String x:Key="deleteCustomHotkeyWarning">Czy jesteś pewien że chcesz usunąć skrót klawiszowy {0} wtyczki?</system:String>
<system:String x:Key="deleteCustomShortcutWarning">Are you sure you want to delete shortcut: {0} with expansion {1}?</system:String> <system:String x:Key="deleteCustomShortcutWarning">Czy na pewno chcesz usunąć skrót: {0} z rozszerzeniem {1}?</system:String>
<system:String x:Key="shortcut_clipboard_description">Get text from clipboard.</system:String> <system:String x:Key="shortcut_clipboard_description">Pobierz tekst ze schowka.</system:String>
<system:String x:Key="shortcut_active_explorer_path">Get path from active explorer.</system:String> <system:String x:Key="shortcut_active_explorer_path">Pobierz ścieżkę z aktywnego eksploratora.</system:String>
<system:String x:Key="queryWindowShadowEffect">Query window shadow effect</system:String> <system:String x:Key="queryWindowShadowEffect">Efekt cienia okna zapytania</system:String>
<system:String x:Key="shadowEffectCPUUsage">Shadow effect has a substantial usage of GPU. Not recommended if your computer performance is limited.</system:String> <system:String x:Key="shadowEffectCPUUsage">Efekt cienia znacząco obciąża GPU. Niezalecane, jeśli wydajność twojego komputera jest ograniczona.</system:String>
<system:String x:Key="windowWidthSize">Window Width Size</system:String> <system:String x:Key="windowWidthSize">Szerokość okna</system:String>
<system:String x:Key="windowWidthSizeToolTip">You can also quickly adjust this by using Ctrl+[ and Ctrl+].</system:String> <system:String x:Key="windowWidthSizeToolTip">Możesz to również szybko dostosować, używając Ctrl+[ i Ctrl+].</system:String>
<system:String x:Key="useGlyphUI">Use Segoe Fluent Icons</system:String> <system:String x:Key="useGlyphUI">Użyj ikon Segoe Fluent</system:String>
<system:String x:Key="useGlyphUIEffect">Use Segoe Fluent Icons for query results where supported</system:String> <system:String x:Key="useGlyphUIEffect">Użyj ikon Segoe Fluent dla wyników wyszukiwania, gdzie jest to obsługiwane</system:String>
<system:String x:Key="flowlauncherPressHotkey">Press Key</system:String> <system:String x:Key="flowlauncherPressHotkey">Naciśnij klawisz</system:String>
<!-- Setting Proxy --> <!-- Setting Proxy -->
<system:String x:Key="proxy">Serwer proxy HTTP</system:String> <system:String x:Key="proxy">Serwer proxy HTTP</system:String>
@ -270,36 +270,36 @@
<!-- Setting About --> <!-- Setting About -->
<system:String x:Key="about">O programie</system:String> <system:String x:Key="about">O programie</system:String>
<system:String x:Key="website">Website</system:String> <system:String x:Key="website">Strona internetowa</system:String>
<system:String x:Key="github">GitHub</system:String> <system:String x:Key="github">GitHub</system:String>
<system:String x:Key="docs">Docs</system:String> <system:String x:Key="docs">Dokumentacja</system:String>
<system:String x:Key="version">Wersja</system:String> <system:String x:Key="version">Wersja</system:String>
<system:String x:Key="icons">Icons</system:String> <system:String x:Key="icons">Ikony</system:String>
<system:String x:Key="about_activate_times">Uaktywniłeś Flow Launcher {0} razy</system:String> <system:String x:Key="about_activate_times">Uaktywniłeś Flow Launcher {0} razy</system:String>
<system:String x:Key="checkUpdates">Szukaj aktualizacji</system:String> <system:String x:Key="checkUpdates">Szukaj aktualizacji</system:String>
<system:String x:Key="BecomeASponsor">Become A Sponsor</system:String> <system:String x:Key="BecomeASponsor">Zostań sponsorem</system:String>
<system:String x:Key="newVersionTips">Nowa wersja {0} jest dostępna, uruchom ponownie Flow Launcher</system:String> <system:String x:Key="newVersionTips">Nowa wersja {0} jest dostępna, uruchom ponownie Flow Launcher</system:String>
<system:String x:Key="checkUpdatesFailed">Check updates failed, please check your connection and proxy settings to api.github.com.</system:String> <system:String x:Key="checkUpdatesFailed">Sprawdzenie aktualizacji nie powiodło się. Sprawdź swoje połączenie i ustawienia proxy dla api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed"> <system:String x:Key="downloadUpdatesFailed">
Download updates failed, please check your connection and proxy settings to github-cloud.s3.amazonaws.com, Pobieranie aktualizacji nie powiodło się. Sprawdź połączenie internetowe i ustawienia proxy dla github-cloud.s3.amazonaws.com
or go to https://github.com/Flow-Launcher/Flow.Launcher/releases to download updates manually. lub przejdź do https://github.com/Flow-Launcher/Flow.Launcher/releases, aby pobrać aktualizacje ręcznie.
</system:String> </system:String>
<system:String x:Key="releaseNotes">Zmiany</system:String> <system:String x:Key="releaseNotes">Zmiany</system:String>
<system:String x:Key="documentation">Usage Tips</system:String> <system:String x:Key="documentation">Wskazówki użycia</system:String>
<system:String x:Key="devtool">DevTools</system:String> <system:String x:Key="devtool">Narzędzia deweloperskie</system:String>
<system:String x:Key="settingfolder">Setting Folder</system:String> <system:String x:Key="settingfolder">Folder ustawień</system:String>
<system:String x:Key="logfolder">Log Folder</system:String> <system:String x:Key="logfolder">Folder dziennika</system:String>
<system:String x:Key="clearlogfolder">Clear Logs</system:String> <system:String x:Key="clearlogfolder">Wyczyść logi</system:String>
<system:String x:Key="clearlogfolderMessage">Are you sure you want to delete all logs?</system:String> <system:String x:Key="clearlogfolderMessage">Czy na pewno chcesz usunąć wszystkie logi?</system:String>
<system:String x:Key="welcomewindow">Wizard</system:String> <system:String x:Key="welcomewindow">Kreator</system:String>
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">Lokalizacja danych użytkownika</system:String>
<system:String x:Key="userdatapathToolTip">User settings and installed plugins are saved in the user data folder. This location may vary depending on whether it's in portable mode or not.</system:String> <system:String x:Key="userdatapathToolTip">Ustawienia użytkownika i zainstalowane wtyczki są zapisywane w folderze danych użytkownika. Ta lokalizacja może się różnić w zależności od tego, czy aplikacja jest w trybie przenośnym, czy nie.</system:String>
<system:String x:Key="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Otwórz folder</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Select File Manager</system:String> <system:String x:Key="fileManagerWindow">Wybierz menedżer plików</system:String>
<system:String x:Key="fileManager_tips">Please specify the file location of the file manager you using and add arguments as required. The &quot;%d&quot; represents the directory path to open for, used by the Arg for Folder field and for commands opening specific directories. The &quot;%f&quot; represents the file path to open for, used by the Arg for File field and for commands opening specific files.</system:String> <system:String x:Key="fileManager_tips">Proszę określić lokalizację pliku menedżera plików, którego używasz i dodać argumenty według potrzeb. Symbol &quot;%d&quot; reprezentuje ścieżkę katalogu do otwarcia, używaną w polu Arg dla Folderu oraz dla poleceń otwierających konkretne katalogi. Symbol &quot;%f&quot; reprezentuje ścieżkę pliku do otwarcia, używaną w polu Arg dla Pliku oraz dla poleceń otwierających konkretne pliki.</system:String>
<system:String x:Key="fileManager_tips2">For example, if the file manager uses a command such as &quot;totalcmd.exe /A c:\windows&quot; to open the c:\windows directory, the File Manager Path will be totalcmd.exe, and the Arg For Folder will be /A &quot;%d&quot;. Certain file managers like QTTabBar may just require a path to be supplied, in this instance use &quot;%d&quot; as the File Manager Path and leave the rest of the fileds blank.</system:String> <system:String x:Key="fileManager_tips2">Na przykład, jeśli menedżer plików używa polecenia takiego jak „totalcmd.exe /A c:\windows&quot; do otwarcia katalogu c:\windows, Ścieżka Menedżera Plików będzie totalcmd.exe, a Argument dla Folderu będzie /A &quot;%d&quot;. Niektóre menedżery plików, takie jak QTTabBar, mogą wymagać jedynie podania ścieżki; w takim przypadku użyj &quot;%d&quot; jako Ścieżki Menedżera Plików, a pozostałe pola pozostaw puste.</system:String>
<system:String x:Key="fileManager_name">Menadżer plików</system:String> <system:String x:Key="fileManager_name">Menadżer plików</system:String>
<system:String x:Key="fileManager_profile_name">Nazwa profilu</system:String> <system:String x:Key="fileManager_profile_name">Nazwa profilu</system:String>
<system:String x:Key="fileManager_path">Ścieżka menedżera plików</system:String> <system:String x:Key="fileManager_path">Ścieżka menedżera plików</system:String>
@ -340,11 +340,11 @@
<system:String x:Key="hotkeyIsNotUnavailable">Skrót klawiszowy jest niedostępny, musisz podać inny skrót klawiszowy</system:String> <system:String x:Key="hotkeyIsNotUnavailable">Skrót klawiszowy jest niedostępny, musisz podać inny skrót klawiszowy</system:String>
<system:String x:Key="invalidPluginHotkey">Niepoprawny skrót klawiszowy</system:String> <system:String x:Key="invalidPluginHotkey">Niepoprawny skrót klawiszowy</system:String>
<system:String x:Key="update">Aktualizuj</system:String> <system:String x:Key="update">Aktualizuj</system:String>
<system:String x:Key="hotkeyRegTitle">Binding Hotkey</system:String> <system:String x:Key="hotkeyRegTitle">Przypisywanie skrótów</system:String>
<system:String x:Key="hotkeyUnavailable">Current hotkey is unavailable.</system:String> <system:String x:Key="hotkeyUnavailable">Bieżący skrót klawiszowy jest niedostępny.</system:String>
<system:String x:Key="hotkeyUnavailableUneditable">This hotkey is reserved for &quot;{0}&quot; and can't be used. Please choose another hotkey.</system:String> <system:String x:Key="hotkeyUnavailableUneditable">Ten skrót klawiszowy jest zarezerwowany dla &quot;{0}&quot; i nie może być użyty. Proszę wybrać inny skrót.</system:String>
<system:String x:Key="hotkeyUnavailableEditable">This hotkey is already in use by &quot;{0}&quot;. If you press &quot;Overwrite&quot;, it will be removed from &quot;{0}&quot;.</system:String> <system:String x:Key="hotkeyUnavailableEditable">Ten skrót klawiszowy jest już używany przez &quot;{0}&quot;. Jeśli naciśniesz &quot;Nadpisz&quot;, zostanie on usunięty z &quot;{0}&quot;.</system:String>
<system:String x:Key="hotkeyRegGuide">Press the keys you want to use for this function.</system:String> <system:String x:Key="hotkeyRegGuide">Naciśnij klawisze, których chcesz użyć dla tej funkcji.</system:String>
<!-- Custom Query Shortcut Dialog --> <!-- Custom Query Shortcut Dialog -->
<system:String x:Key="customeQueryShortcutTitle">Niestandardowy skrót zapytania</system:String> <system:String x:Key="customeQueryShortcutTitle">Niestandardowy skrót zapytania</system:String>
@ -358,13 +358,13 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d
<!-- Common Action --> <!-- Common Action -->
<system:String x:Key="commonSave">Zapisz</system:String> <system:String x:Key="commonSave">Zapisz</system:String>
<system:String x:Key="commonOverwrite">Overwrite</system:String> <system:String x:Key="commonOverwrite">Nadpisz</system:String>
<system:String x:Key="commonCancel">Anuluj</system:String> <system:String x:Key="commonCancel">Anuluj</system:String>
<system:String x:Key="commonReset">Reset</system:String> <system:String x:Key="commonReset">Zresetuj</system:String>
<system:String x:Key="commonDelete">Usu</system:String> <system:String x:Key="commonDelete">Usu</system:String>
<system:String x:Key="commonOK">Aktualizuj</system:String> <system:String x:Key="commonOK">Aktualizuj</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Tak</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">Nie</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Wersja</system:String> <system:String x:Key="reportWindow_version">Wersja</system:String>
@ -428,29 +428,29 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d
<system:String x:Key="HotkeyCtrlEnterDesc">Otwórz folder zawierający</system:String> <system:String x:Key="HotkeyCtrlEnterDesc">Otwórz folder zawierający</system:String>
<system:String x:Key="HotkeyCtrlShiftEnterDesc">Uruchom jako administrator / Otwórz folder w domyślnym menedżerze plików</system:String> <system:String x:Key="HotkeyCtrlShiftEnterDesc">Uruchom jako administrator / Otwórz folder w domyślnym menedżerze plików</system:String>
<system:String x:Key="HotkeyCtrlHDesc">Historia zapytań</system:String> <system:String x:Key="HotkeyCtrlHDesc">Historia zapytań</system:String>
<system:String x:Key="HotkeyESCDesc">Back to Result in Context Menu</system:String> <system:String x:Key="HotkeyESCDesc">Powrót do wyniku w menu kontekstowym</system:String>
<system:String x:Key="HotkeyTabDesc">Autocomplete</system:String> <system:String x:Key="HotkeyTabDesc">Autouzupełnianie</system:String>
<system:String x:Key="HotkeyRunDesc">Open / Run Selected Item</system:String> <system:String x:Key="HotkeyRunDesc">Otwórz / Uruchom zaznaczony element</system:String>
<system:String x:Key="HotkeyCtrlIDesc">Open Setting Window</system:String> <system:String x:Key="HotkeyCtrlIDesc">Otwórz okno ustawień</system:String>
<system:String x:Key="HotkeyF5Desc">Reload Plugin Data</system:String> <system:String x:Key="HotkeyF5Desc">Odśwież dane wtyczek</system:String>
<system:String x:Key="HotkeySelectFirstResult">Select first result</system:String> <system:String x:Key="HotkeySelectFirstResult">Wybierz pierwszy wynik</system:String>
<system:String x:Key="HotkeySelectLastResult">Select last result</system:String> <system:String x:Key="HotkeySelectLastResult">Wybierz ostatni wynik</system:String>
<system:String x:Key="HotkeyRequery">Run current query again</system:String> <system:String x:Key="HotkeyRequery">Uruchom ponownie bieżące zapytanie</system:String>
<system:String x:Key="HotkeyOpenResult">Open result</system:String> <system:String x:Key="HotkeyOpenResult">Otwórz wynik</system:String>
<system:String x:Key="HotkeyOpenResultN">Open result #{0}</system:String> <system:String x:Key="HotkeyOpenResultN">Otwórz wynik #{0}</system:String>
<system:String x:Key="RecommendWeather">Weather</system:String> <system:String x:Key="RecommendWeather">Pogoda</system:String>
<system:String x:Key="RecommendWeatherDesc">Weather in Google Result</system:String> <system:String x:Key="RecommendWeatherDesc">Pogoda w wynikach Google</system:String>
<system:String x:Key="RecommendShell">&gt; ping 8.8.8.8</system:String> <system:String x:Key="RecommendShell">&gt; ping 8.8.8.8</system:String>
<system:String x:Key="RecommendShellDesc">Shell Command</system:String> <system:String x:Key="RecommendShellDesc">Polecenie powłoki</system:String>
<system:String x:Key="RecommendBluetooth">s Bluetooth</system:String> <system:String x:Key="RecommendBluetooth">s Bluetooth</system:String>
<system:String x:Key="RecommendBluetoothDesc">Bluetooth in Windows Settings</system:String> <system:String x:Key="RecommendBluetoothDesc">Bluetooth w ustawieniach Windows</system:String>
<system:String x:Key="RecommendAcronyms">sn</system:String> <system:String x:Key="RecommendAcronyms">sn</system:String>
<system:String x:Key="RecommendAcronymsDesc">Sticky Notes</system:String> <system:String x:Key="RecommendAcronymsDesc">Podręczne notatki</system:String>
<!-- Preview Area --> <!-- Preview Area -->
<system:String x:Key="FileSize">File Size</system:String> <system:String x:Key="FileSize">Rozmiar pliku</system:String>
<system:String x:Key="Created">Created</system:String> <system:String x:Key="Created">Utworzono</system:String>
<system:String x:Key="LastModified">Last Modified</system:String> <system:String x:Key="LastModified">Ostatnia modyfikacja</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,9 +2,9 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Startup --> <!-- Startup -->
<system:String x:Key="runtimePluginInstalledChooseRuntimePrompt"> <system:String x:Key="runtimePluginInstalledChooseRuntimePrompt">
Flow detected you have installed {0} plugins, which will require {1} to run. Would you like to download {1}? Flow phát hiện bạn đã cài plugin {0}, plugin này cần {1} để chạy. Bạn có muốn tải {1}?
{2}{2} {2}{2}
Click no if it's already installed, and you will be prompted to select the folder that contains the {1} executable Hãy chọn không nếu nó đã được cài đặt, và bạn sẽ được hỏi chọn thư mục chứa chương trình thực thi {1}
</system:String> </system:String>
<system:String x:Key="runtimePluginChooseRuntimeExecutable">Please select the {0} executable</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">Please select the {0} executable</system:String>
<system:String x:Key="runtimePluginUnableToSetExecutablePath">Unable to set {0} executable path, please try from Flow's settings (scroll down to the bottom).</system:String> <system:String x:Key="runtimePluginUnableToSetExecutablePath">Unable to set {0} executable path, please try from Flow's settings (scroll down to the bottom).</system:String>
@ -13,7 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Không thể đăng ký phím nóng &quot;{0}&quot;. Phím nóng có thể được sử dụng bởi một chương trình khác. Chuyển sang phím nóng khác hoặc thoát khỏi chương trình khác.</system:String> <system:String x:Key="registerHotkeyFailed">Không thể đăng ký phím nóng &quot;{0}&quot;. Phím nóng có thể được sử dụng bởi một chương trình khác. Chuyển sang phím nóng khác hoặc thoát khỏi chương trình khác.</system:String>
<system:String x:Key="MessageBoxTitle">Trình khởi chạy luồng</system:String> <system:String x:Key="MessageBoxTitle">Flow Launcher</system:String>
<system:String x:Key="couldnotStartCmd">Không thể khởi động {0}</system:String> <system:String x:Key="couldnotStartCmd">Không thể khởi động {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Định dạng tệp plugin Flow Launcher không chính xác</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Định dạng tệp plugin Flow Launcher không chính xác</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Đặt ở vị trí trên cùng trong truy vấn này</system:String> <system:String x:Key="setAsTopMostInThisQuery">Đặt ở vị trí trên cùng trong truy vấn này</system:String>
@ -65,8 +65,8 @@
<system:String x:Key="LastQueryPreserved">Giữ lại truy vấn cuối cùng</system:String> <system:String x:Key="LastQueryPreserved">Giữ lại truy vấn cuối cùng</system:String>
<system:String x:Key="LastQuerySelected">Chọn truy vấn cuối cùng</system:String> <system:String x:Key="LastQuerySelected">Chọn truy vấn cuối cùng</system:String>
<system:String x:Key="LastQueryEmpty">Trống truy vấn cuối cùng</system:String> <system:String x:Key="LastQueryEmpty">Trống truy vấn cuối cùng</system:String>
<system:String x:Key="KeepMaxResults">Fixed Window Height</system:String> <system:String x:Key="KeepMaxResults">Giữ nguyên chiều cao cửa sổ</system:String>
<system:String x:Key="KeepMaxResultsToolTip">The window height is not adjustable by dragging.</system:String> <system:String x:Key="KeepMaxResultsToolTip">Chiều cao cửa sổ không thể thay đổi bằng cách kéo.</system:String>
<system:String x:Key="maxShowResults">Số kết quả tối đa</system:String> <system:String x:Key="maxShowResults">Số kết quả tối đa</system:String>
<system:String x:Key="maxShowResultsToolTip">Có thể thiết lập nhanh chóng bằng CTRL+Plus và CTRL+Minus.</system:String> <system:String x:Key="maxShowResultsToolTip">Có thể thiết lập nhanh chóng bằng CTRL+Plus và CTRL+Minus.</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreen">Bỏ qua phím nóng khi cửa sổ ở chế độ toàn màn hình</system:String> <system:String x:Key="ignoreHotkeysOnFullscreen">Bỏ qua phím nóng khi cửa sổ ở chế độ toàn màn hình</system:String>
@ -83,15 +83,15 @@
<system:String x:Key="typingStartEnTooltip">Tạm thời chuyển phương thức nhập sang tiếng Anh khi kích hoạt Flow.</system:String> <system:String x:Key="typingStartEnTooltip">Tạm thời chuyển phương thức nhập sang tiếng Anh khi kích hoạt Flow.</system:String>
<system:String x:Key="autoUpdates">Cập nhật tự động</system:String> <system:String x:Key="autoUpdates">Cập nhật tự động</system:String>
<system:String x:Key="select">Chọn</system:String> <system:String x:Key="select">Chọn</system:String>
<system:String x:Key="hideOnStartup">Ẩn Trình khởi chạy luồng khi khởi động</system:String> <system:String x:Key="hideOnStartup">Ẩn Flow Launcher khi khởi động</system:String>
<system:String x:Key="hideOnStartupToolTip">Flow Launcher search window is hidden in the tray after starting up.</system:String> <system:String x:Key="hideOnStartupToolTip">Flow Launcher sẽ ẩn trong khay hệ thống sau khi khởi động.</system:String>
<system:String x:Key="hideNotifyIcon">Ẩn biểu tượng thanh trạng thái</system:String> <system:String x:Key="hideNotifyIcon">Ẩn biểu tượng thanh trạng thái</system:String>
<system:String x:Key="hideNotifyIconToolTip">Khi biểu tượng bị ẩn khỏi khay, bạn có thể mở menu Cài đặt bằng cách nhấp chuột phải vào cửa sổ tìm kiếm.</system:String> <system:String x:Key="hideNotifyIconToolTip">Khi biểu tượng bị ẩn khỏi khay, bạn có thể mở menu Cài đặt bằng cách nhấp chuột phải vào cửa sổ tìm kiếm.</system:String>
<system:String x:Key="querySearchPrecision">Độ chính xác của tìm kiếm truy vấn</system:String> <system:String x:Key="querySearchPrecision">Độ chính xác của tìm kiếm truy vấn</system:String>
<system:String x:Key="querySearchPrecisionToolTip">Kết quả tìm kiếm bắt buộc.</system:String> <system:String x:Key="querySearchPrecisionToolTip">Kết quả tìm kiếm bắt buộc.</system:String>
<system:String x:Key="SearchPrecisionNone">Không</system:String> <system:String x:Key="SearchPrecisionNone">Không</system:String>
<system:String x:Key="SearchPrecisionLow">Low</system:String> <system:String x:Key="SearchPrecisionLow">Thấp</system:String>
<system:String x:Key="SearchPrecisionRegular">Regular</system:String> <system:String x:Key="SearchPrecisionRegular">Bình thường</system:String>
<system:String x:Key="ShouldUsePinyin">Hoạt động bính âm</system:String> <system:String x:Key="ShouldUsePinyin">Hoạt động bính âm</system:String>
<system:String x:Key="ShouldUsePinyinToolTip">Cho phép bạn sử dụng Bính âm để tìm kiếm. Bính âm là hệ thống ký hiệu La Mã tiêu chuẩn để dịch văn bản tiếng Trung.</system:String> <system:String x:Key="ShouldUsePinyinToolTip">Cho phép bạn sử dụng Bính âm để tìm kiếm. Bính âm là hệ thống ký hiệu La Mã tiêu chuẩn để dịch văn bản tiếng Trung.</system:String>
<system:String x:Key="AlwaysPreview">Luôn xem trước</system:String> <system:String x:Key="AlwaysPreview">Luôn xem trước</system:String>
@ -157,7 +157,7 @@
<system:String x:Key="SampleSubTitleProgram">Khởi chạy chương trình với tư cách quản trị viên hoặc người dùng khác</system:String> <system:String x:Key="SampleSubTitleProgram">Khởi chạy chương trình với tư cách quản trị viên hoặc người dùng khác</system:String>
<system:String x:Key="SampleTitleProcessKiller">Buộc Tắt Tiến Trình </system:String> <system:String x:Key="SampleTitleProcessKiller">Buộc Tắt Tiến Trình </system:String>
<system:String x:Key="SampleSubTitleProcessKiller">Chấm dứt các tiến trình không mong muốn</system:String> <system:String x:Key="SampleSubTitleProcessKiller">Chấm dứt các tiến trình không mong muốn</system:String>
<system:String x:Key="SearchBarHeight">Search Bar Height</system:String> <system:String x:Key="SearchBarHeight">Chiều cao thanh tìm kiếm</system:String>
<system:String x:Key="ItemHeight">Item Height</system:String> <system:String x:Key="ItemHeight">Item Height</system:String>
<system:String x:Key="queryBoxFont">Phông chữ hộp truy vấn</system:String> <system:String x:Key="queryBoxFont">Phông chữ hộp truy vấn</system:String>
<system:String x:Key="resultItemFont">Result Title Font</system:String> <system:String x:Key="resultItemFont">Result Title Font</system:String>
@ -222,7 +222,7 @@
<system:String x:Key="ToggleHistoryHotkey">Chuyển đổi lịch sử</system:String> <system:String x:Key="ToggleHistoryHotkey">Chuyển đổi lịch sử</system:String>
<system:String x:Key="OpenContainFolderHotkey">Mở thư mục chứa</system:String> <system:String x:Key="OpenContainFolderHotkey">Mở thư mục chứa</system:String>
<system:String x:Key="RunAsAdminHotkey">Chạy với quyền admin</system:String> <system:String x:Key="RunAsAdminHotkey">Chạy với quyền admin</system:String>
<system:String x:Key="RequeryHotkey">Refresh Search Results</system:String> <system:String x:Key="RequeryHotkey">Làm mới kết quả tìm kiếm</system:String>
<system:String x:Key="ReloadPluginHotkey">Dữ liệu plugin không tải</system:String> <system:String x:Key="ReloadPluginHotkey">Dữ liệu plugin không tải</system:String>
<system:String x:Key="QuickWidthHotkey">Điều chỉnh nhanh độ rộng cửa sổ</system:String> <system:String x:Key="QuickWidthHotkey">Điều chỉnh nhanh độ rộng cửa sổ</system:String>
<system:String x:Key="QuickHeightHotkey">Điều chỉnh nhanh chiều cao cửa sổ</system:String> <system:String x:Key="QuickHeightHotkey">Điều chỉnh nhanh chiều cao cửa sổ</system:String>
@ -367,8 +367,8 @@
<system:String x:Key="commonReset">Đặt lại</system:String> <system:String x:Key="commonReset">Đặt lại</system:String>
<system:String x:Key="commonDelete">Xóa</system:String> <system:String x:Key="commonDelete">Xóa</system:String>
<system:String x:Key="commonOK">OK</system:String> <system:String x:Key="commonOK">OK</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes"></system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">Không</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Phiên bản</system:String> <system:String x:Key="reportWindow_version">Phiên bản</system:String>
@ -444,7 +444,7 @@
<system:String x:Key="HotkeySelectLastResult">Chọn kết quả cuối cùng</system:String> <system:String x:Key="HotkeySelectLastResult">Chọn kết quả cuối cùng</system:String>
<system:String x:Key="HotkeyRequery">Chạy lại truy vấn hiện tại</system:String> <system:String x:Key="HotkeyRequery">Chạy lại truy vấn hiện tại</system:String>
<system:String x:Key="HotkeyOpenResult">Mở kết quả</system:String> <system:String x:Key="HotkeyOpenResult">Mở kết quả</system:String>
<system:String x:Key="HotkeyOpenResultN">Open result #{0}</system:String> <system:String x:Key="HotkeyOpenResultN">Mở kết quả #{0}</system:String>
<system:String x:Key="RecommendWeather">Thời Tiết</system:String> <system:String x:Key="RecommendWeather">Thời Tiết</system:String>
<system:String x:Key="RecommendWeatherDesc">Thời tiết từ kết quả của Google</system:String> <system:String x:Key="RecommendWeatherDesc">Thời tiết từ kết quả của Google</system:String>

View file

@ -58,6 +58,8 @@ namespace Flow.Launcher
_settings = settings; _settings = settings;
InitializeComponent(); InitializeComponent();
// Initialize call twice to work around multi-display alignment issue- https://github.com/Flow-Launcher/Flow.Launcher/issues/2910
InitializePosition();
InitializePosition(); InitializePosition();
InitSoundEffects(); InitSoundEffects();
@ -72,11 +74,7 @@ namespace Flow.Launcher
}; };
} }
DispatcherTimer timer = new DispatcherTimer DispatcherTimer timer = new DispatcherTimer { Interval = new TimeSpan(0, 0, 0, 0, 500), IsEnabled = false };
{
Interval = new TimeSpan(0, 0, 0, 0, 500),
IsEnabled = false
};
public MainWindow() public MainWindow()
{ {
@ -87,6 +85,7 @@ namespace Flow.Launcher
private const int WM_EXITSIZEMOVE = 0x0232; private const int WM_EXITSIZEMOVE = 0x0232;
private int _initialWidth; private int _initialWidth;
private int _initialHeight; private int _initialHeight;
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled) private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{ {
if (msg == WM_ENTERSIZEMOVE) if (msg == WM_ENTERSIZEMOVE)
@ -95,18 +94,22 @@ namespace Flow.Launcher
_initialHeight = (int)Height; _initialHeight = (int)Height;
handled = true; handled = true;
} }
if (msg == WM_EXITSIZEMOVE) if (msg == WM_EXITSIZEMOVE)
{ {
if ( _initialHeight != (int)Height) if (_initialHeight != (int)Height)
{ {
OnResizeEnd(); OnResizeEnd();
} }
if (_initialWidth != (int)Width) if (_initialWidth != (int)Width)
{ {
FlowMainWindow.SizeToContent = SizeToContent.Height; FlowMainWindow.SizeToContent = SizeToContent.Height;
} }
handled = true; handled = true;
} }
return IntPtr.Zero; return IntPtr.Zero;
} }
@ -131,6 +134,7 @@ namespace Flow.Launcher
_settings.MaxResultsToShow = Convert.ToInt32(Math.Truncate(itemCount)); _settings.MaxResultsToShow = Convert.ToInt32(Math.Truncate(itemCount));
} }
} }
FlowMainWindow.SizeToContent = SizeToContent.Height; FlowMainWindow.SizeToContent = SizeToContent.Height;
_viewModel.MainWindowWidth = Width; _viewModel.MainWindowWidth = Width;
} }
@ -175,6 +179,7 @@ namespace Flow.Launcher
private void OnInitialized(object sender, EventArgs e) private void OnInitialized(object sender, EventArgs e)
{ {
} }
private void OnLoaded(object sender, RoutedEventArgs _) private void OnLoaded(object sender, RoutedEventArgs _)
{ {
// MouseEventHandler // MouseEventHandler
@ -186,6 +191,8 @@ namespace Flow.Launcher
InitializeColorScheme(); InitializeColorScheme();
WindowsInteropHelper.DisableControlBox(this); WindowsInteropHelper.DisableControlBox(this);
InitProgressbarAnimation(); InitProgressbarAnimation();
// Initialize call twice to work around multi-display alignment issue- https://github.com/Flow-Launcher/Flow.Launcher/issues/2910
InitializePosition();
InitializePosition(); InitializePosition();
PreviewReset(); PreviewReset();
// since the default main window visibility is visible // since the default main window visibility is visible
@ -206,6 +213,7 @@ namespace Flow.Launcher
{ {
SoundPlay(); SoundPlay();
} }
UpdatePosition(); UpdatePosition();
PreviewReset(); PreviewReset();
Activate(); Activate();
@ -217,7 +225,8 @@ namespace Flow.Launcher
_viewModel.LastQuerySelected = true; _viewModel.LastQuerySelected = true;
} }
if (_viewModel.ProgressBarVisibility == Visibility.Visible && isProgressBarStoryboardPaused) if (_viewModel.ProgressBarVisibility == Visibility.Visible &&
isProgressBarStoryboardPaused)
{ {
_progressBarStoryboard.Begin(ProgressBar, true); _progressBarStoryboard.Begin(ProgressBar, true);
isProgressBarStoryboardPaused = false; isProgressBarStoryboardPaused = false;
@ -258,9 +267,12 @@ namespace Flow.Launcher
MoveQueryTextToEnd(); MoveQueryTextToEnd();
_viewModel.QueryTextCursorMovedToEnd = false; _viewModel.QueryTextCursorMovedToEnd = false;
} }
break; break;
case nameof(MainViewModel.GameModeStatus): case nameof(MainViewModel.GameModeStatus):
_notifyIcon.Icon = _viewModel.GameModeStatus ? Properties.Resources.gamemode : Properties.Resources.app; _notifyIcon.Icon = _viewModel.GameModeStatus
? Properties.Resources.gamemode
: Properties.Resources.app;
break; break;
} }
}; };
@ -290,50 +302,59 @@ namespace Flow.Launcher
private void InitializePosition() private void InitializePosition()
{ {
if (_settings.SearchWindowScreen == SearchWindowScreens.RememberLastLaunchLocation) // Initialize call twice to work around multi-display alignment issue- https://github.com/Flow-Launcher/Flow.Launcher/issues/2910
InitializePositionInner();
InitializePositionInner();
return;
void InitializePositionInner()
{ {
Top = _settings.WindowTop; if (_settings.SearchWindowScreen == SearchWindowScreens.RememberLastLaunchLocation)
Left = _settings.WindowLeft;
}
else
{
var screen = SelectedScreen();
switch (_settings.SearchWindowAlign)
{ {
case SearchWindowAligns.Center: Top = _settings.WindowTop;
Left = HorizonCenter(screen); Left = _settings.WindowLeft;
Top = VerticalCenter(screen); }
break; else
case SearchWindowAligns.CenterTop: {
Left = HorizonCenter(screen); var screen = SelectedScreen();
Top = 10; switch (_settings.SearchWindowAlign)
break; {
case SearchWindowAligns.LeftTop: case SearchWindowAligns.Center:
Left = HorizonLeft(screen); Left = HorizonCenter(screen);
Top = 10; Top = VerticalCenter(screen);
break; break;
case SearchWindowAligns.RightTop: case SearchWindowAligns.CenterTop:
Left = HorizonRight(screen); Left = HorizonCenter(screen);
Top = 10; Top = 10;
break; break;
case SearchWindowAligns.Custom: case SearchWindowAligns.LeftTop:
Left = WindowsInteropHelper.TransformPixelsToDIP(this, screen.WorkingArea.X + _settings.CustomWindowLeft, 0).X; Left = HorizonLeft(screen);
Top = WindowsInteropHelper.TransformPixelsToDIP(this, 0, screen.WorkingArea.Y + _settings.CustomWindowTop).Y; Top = 10;
break; break;
case SearchWindowAligns.RightTop:
Left = HorizonRight(screen);
Top = 10;
break;
case SearchWindowAligns.Custom:
Left = WindowsInteropHelper.TransformPixelsToDIP(this,
screen.WorkingArea.X + _settings.CustomWindowLeft, 0).X;
Top = WindowsInteropHelper.TransformPixelsToDIP(this, 0,
screen.WorkingArea.Y + _settings.CustomWindowTop).Y;
break;
}
} }
} }
} }
private void UpdateNotifyIconText() private void UpdateNotifyIconText()
{ {
var menu = contextMenu; var menu = contextMenu;
((MenuItem)menu.Items[0]).Header = InternationalizationManager.Instance.GetTranslation("iconTrayOpen") + " (" + _settings.Hotkey + ")"; ((MenuItem)menu.Items[0]).Header = InternationalizationManager.Instance.GetTranslation("iconTrayOpen") +
" (" + _settings.Hotkey + ")";
((MenuItem)menu.Items[1]).Header = InternationalizationManager.Instance.GetTranslation("GameMode"); ((MenuItem)menu.Items[1]).Header = InternationalizationManager.Instance.GetTranslation("GameMode");
((MenuItem)menu.Items[2]).Header = InternationalizationManager.Instance.GetTranslation("PositionReset"); ((MenuItem)menu.Items[2]).Header = InternationalizationManager.Instance.GetTranslation("PositionReset");
((MenuItem)menu.Items[3]).Header = InternationalizationManager.Instance.GetTranslation("iconTraySettings"); ((MenuItem)menu.Items[3]).Header = InternationalizationManager.Instance.GetTranslation("iconTraySettings");
((MenuItem)menu.Items[4]).Header = InternationalizationManager.Instance.GetTranslation("iconTrayExit"); ((MenuItem)menu.Items[4]).Header = InternationalizationManager.Instance.GetTranslation("iconTrayExit");
} }
private void InitializeNotifyIcon() private void InitializeNotifyIcon()
@ -345,50 +366,34 @@ namespace Flow.Launcher
Visible = !_settings.HideNotifyIcon Visible = !_settings.HideNotifyIcon
}; };
var openIcon = new FontIcon var openIcon = new FontIcon { Glyph = "\ue71e" };
{
Glyph = "\ue71e"
};
var open = new MenuItem var open = new MenuItem
{ {
Header = InternationalizationManager.Instance.GetTranslation("iconTrayOpen") + " (" + _settings.Hotkey + ")", Header = InternationalizationManager.Instance.GetTranslation("iconTrayOpen") + " (" +
_settings.Hotkey + ")",
Icon = openIcon Icon = openIcon
}; };
var gamemodeIcon = new FontIcon var gamemodeIcon = new FontIcon { Glyph = "\ue7fc" };
{
Glyph = "\ue7fc"
};
var gamemode = new MenuItem var gamemode = new MenuItem
{ {
Header = InternationalizationManager.Instance.GetTranslation("GameMode"), Header = InternationalizationManager.Instance.GetTranslation("GameMode"), Icon = gamemodeIcon
Icon = gamemodeIcon
};
var positionresetIcon = new FontIcon
{
Glyph = "\ue73f"
}; };
var positionresetIcon = new FontIcon { Glyph = "\ue73f" };
var positionreset = new MenuItem var positionreset = new MenuItem
{ {
Header = InternationalizationManager.Instance.GetTranslation("PositionReset"), Header = InternationalizationManager.Instance.GetTranslation("PositionReset"),
Icon = positionresetIcon Icon = positionresetIcon
}; };
var settingsIcon = new FontIcon var settingsIcon = new FontIcon { Glyph = "\ue713" };
{
Glyph = "\ue713"
};
var settings = new MenuItem var settings = new MenuItem
{ {
Header = InternationalizationManager.Instance.GetTranslation("iconTraySettings"), Header = InternationalizationManager.Instance.GetTranslation("iconTraySettings"),
Icon = settingsIcon Icon = settingsIcon
}; };
var exitIcon = new FontIcon var exitIcon = new FontIcon { Glyph = "\ue7e8" };
{
Glyph = "\ue7e8"
};
var exit = new MenuItem var exit = new MenuItem
{ {
Header = InternationalizationManager.Instance.GetTranslation("iconTrayExit"), Header = InternationalizationManager.Instance.GetTranslation("iconTrayExit"), Icon = exitIcon
Icon = exitIcon
}; };
open.Click += (o, e) => _viewModel.ToggleFlowLauncher(); open.Click += (o, e) => _viewModel.ToggleFlowLauncher();
@ -421,6 +426,7 @@ namespace Flow.Launcher
{ {
_ = SetForegroundWindow(hwndSource.Handle); _ = SetForegroundWindow(hwndSource.Handle);
} }
contextMenu.Focus(); contextMenu.Focus();
break; break;
} }
@ -454,8 +460,10 @@ namespace Flow.Launcher
private void InitProgressbarAnimation() private void InitProgressbarAnimation()
{ {
var da = new DoubleAnimation(ProgressBar.X2, ActualWidth + 100, new Duration(new TimeSpan(0, 0, 0, 0, 1600))); var da = new DoubleAnimation(ProgressBar.X2, ActualWidth + 100,
var da1 = new DoubleAnimation(ProgressBar.X1, ActualWidth + 0, new Duration(new TimeSpan(0, 0, 0, 0, 1600))); new Duration(new TimeSpan(0, 0, 0, 0, 1600)));
var da1 = new DoubleAnimation(ProgressBar.X1, ActualWidth + 0,
new Duration(new TimeSpan(0, 0, 0, 0, 1600)));
Storyboard.SetTargetProperty(da, new PropertyPath("(Line.X2)")); Storyboard.SetTargetProperty(da, new PropertyPath("(Line.X2)"));
Storyboard.SetTargetProperty(da1, new PropertyPath("(Line.X1)")); Storyboard.SetTargetProperty(da1, new PropertyPath("(Line.X1)"));
_progressBarStoryboard.Children.Add(da); _progressBarStoryboard.Children.Add(da);
@ -565,6 +573,7 @@ namespace Flow.Launcher
{ {
clocksb.Begin(ClockPanel); clocksb.Begin(ClockPanel);
} }
iconsb.Begin(SearchIcon); iconsb.Begin(SearchIcon);
windowsb.Begin(FlowMainWindow); windowsb.Begin(FlowMainWindow);
} }
@ -641,6 +650,9 @@ namespace Flow.Launcher
{ {
if (_animating) if (_animating)
return; return;
// Initialize call twice to work around multi-display alignment issue- https://github.com/Flow-Launcher/Flow.Launcher/issues/2910
InitializePosition();
InitializePosition(); InitializePosition();
} }
@ -671,7 +683,7 @@ namespace Flow.Launcher
public Screen SelectedScreen() public Screen SelectedScreen()
{ {
Screen screen = null; Screen screen = null;
switch(_settings.SearchWindowScreen) switch (_settings.SearchWindowScreen)
{ {
case SearchWindowScreens.Cursor: case SearchWindowScreens.Cursor:
screen = Screen.FromPoint(System.Windows.Forms.Cursor.Position); screen = Screen.FromPoint(System.Windows.Forms.Cursor.Position);
@ -693,6 +705,7 @@ namespace Flow.Launcher
screen = Screen.AllScreens[0]; screen = Screen.AllScreens[0];
break; break;
} }
return screen ?? Screen.AllScreens[0]; return screen ?? Screen.AllScreens[0];
} }
@ -762,6 +775,7 @@ namespace Flow.Launcher
_viewModel.LoadContextMenuCommand.Execute(null); _viewModel.LoadContextMenuCommand.Execute(null);
e.Handled = true; e.Handled = true;
} }
break; break;
case Key.Left: case Key.Left:
if (!_viewModel.SelectedIsFromQueryResults() && QueryTextBox.CaretIndex == 0) if (!_viewModel.SelectedIsFromQueryResults() && QueryTextBox.CaretIndex == 0)
@ -769,6 +783,7 @@ namespace Flow.Launcher
_viewModel.EscCommand.Execute(null); _viewModel.EscCommand.Execute(null);
e.Handled = true; e.Handled = true;
} }
break; break;
case Key.Back: case Key.Back:
if (specialKeyState.CtrlPressed) if (specialKeyState.CtrlPressed)
@ -787,12 +802,13 @@ namespace Flow.Launcher
} }
} }
} }
break; break;
default: default:
break; break;
} }
} }
private void OnKeyUp(object sender, KeyEventArgs e) private void OnKeyUp(object sender, KeyEventArgs e)
{ {
if (e.Key == Key.Up || e.Key == Key.Down) if (e.Key == Key.Up || e.Key == Key.Down)
@ -808,6 +824,7 @@ namespace Flow.Launcher
e.Handled = true; // Ignore Mouse Hover when press Arrowkeys e.Handled = true; // Ignore Mouse Hover when press Arrowkeys
} }
} }
public void PreviewReset() public void PreviewReset()
{ {
_viewModel.ResetPreview(); _viewModel.ResetPreview();

View file

@ -171,6 +171,7 @@
IsPaneToggleButtonVisible="False" IsPaneToggleButtonVisible="False"
IsSettingsVisible="False" IsSettingsVisible="False"
IsTabStop="False" IsTabStop="False"
Loaded="NavView_Loaded"
OpenPaneLength="240" OpenPaneLength="240"
PaneDisplayMode="Left" PaneDisplayMode="Left"
SelectionChanged="NavigationView_SelectionChanged"> SelectionChanged="NavigationView_SelectionChanged">

View file

@ -29,7 +29,6 @@ public partial class SettingWindow
_api = api; _api = api;
InitializePosition(); InitializePosition();
InitializeComponent(); InitializeComponent();
NavView.SelectedItem = NavView.MenuItems[0]; /* Set First Page */
} }
private void OnLoaded(object sender, RoutedEventArgs e) private void OnLoaded(object sender, RoutedEventArgs e)
@ -169,7 +168,11 @@ public partial class SettingWindow
else else
{ {
var selectedItem = (NavigationViewItem)args.SelectedItem; var selectedItem = (NavigationViewItem)args.SelectedItem;
if (selectedItem == null) return; if (selectedItem == null)
{
NavView_Loaded(sender, null); /* Reset First Page */
return;
}
var pageType = selectedItem.Name switch var pageType = selectedItem.Name switch
{ {
@ -186,5 +189,22 @@ public partial class SettingWindow
} }
} }
private void NavView_Loaded(object sender, RoutedEventArgs e)
{
if (ContentFrame.IsLoaded)
{
ContentFrame_Loaded(sender, e);
}
else
{
ContentFrame.Loaded += ContentFrame_Loaded;
}
}
private void ContentFrame_Loaded(object sender, RoutedEventArgs e)
{
NavView.SelectedItem ??= NavView.MenuItems[0]; /* Set First Page */
}
public record PaneData(Settings Settings, Updater Updater, IPortable Portable); public record PaneData(Settings Settings, Updater Updater, IPortable Portable);
} }

View file

@ -82,6 +82,7 @@
<ui:Frame <ui:Frame
x:Name="ContentFrame" x:Name="ContentFrame"
HorizontalAlignment="Stretch" HorizontalAlignment="Stretch"
Loaded="ContentFrame_Loaded"
ScrollViewer.CanContentScroll="True" ScrollViewer.CanContentScroll="True"
ScrollViewer.HorizontalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Visible"
ScrollViewer.VerticalScrollBarVisibility="Visible"> ScrollViewer.VerticalScrollBarVisibility="Visible">

View file

@ -17,7 +17,6 @@ namespace Flow.Launcher
InitializeComponent(); InitializeComponent();
BackButton.IsEnabled = false; BackButton.IsEnabled = false;
this.settings = settings; this.settings = settings;
ContentFrame.Navigate(PageTypeSelector(1), settings);
} }
private NavigationTransitionInfo _transitionInfo = new SlideNavigationTransitionInfo() private NavigationTransitionInfo _transitionInfo = new SlideNavigationTransitionInfo()
@ -102,9 +101,15 @@ namespace Flow.Launcher
var tRequest = new TraversalRequest(FocusNavigationDirection.Next); var tRequest = new TraversalRequest(FocusNavigationDirection.Next);
textBox.MoveFocus(tRequest); textBox.MoveFocus(tRequest);
} }
private void OnActivated(object sender, EventArgs e) private void OnActivated(object sender, EventArgs e)
{ {
Keyboard.ClearFocus(); Keyboard.ClearFocus();
} }
private void ContentFrame_Loaded(object sender, RoutedEventArgs e)
{
ContentFrame.Navigate(PageTypeSelector(1), settings); /* Set First Page */
}
} }
} }

View file

@ -95,7 +95,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.8" /> <PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -3,7 +3,7 @@
<!-- Plugin Info --> <!-- Plugin Info -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_name">Browser-Lesezeichen</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_name">Browser-Lesezeichen</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_description">Lesezeichen durchsuchen</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_description">Ihre Browser-Lesezeichen durchsuchen</system:String>
<!-- Settings --> <!-- Settings -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Lesezeichen-Daten</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Lesezeichen-Daten</system:String>
@ -11,18 +11,19 @@
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">Neues Fenster</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">Neues Fenster</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">Neuer Tab</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">Neuer Tab</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath">Browser aus Pfad festlegen:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath">Browser aus Pfad festlegen:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Auswählen</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Wählen</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">Kopiere Url</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">URL kopieren</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_subtitle">Die Url des Lesezeichens in die Zwischenablage kopieren</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_subtitle">URL des Lesezeichens in Zwischenablage kopieren</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Lade Browser-Lesezeichen aus:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Browser laden aus:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Browser-Name</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Browser-Name</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">Pfad zum Datenverzeichnis</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">URL des Lesezeichens in Zwischenablage kopieren</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">Hinzufügen</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">Hinzufügen</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">Bearbeiten</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">Bearbeiten</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">Löschen</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">Löschen</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Durchsuchen</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Durchsuchen</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_others">Others</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_others">Andere</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Browser Engine</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Browser-Engine</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage01">If you are not using Chrome, Firefox or Edge, or you are using their portable version, you need to add bookmarks data directory and select correct browser engine to make this plugin work.</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage01">Wenn Sie nicht Chrome, Firefox oder Edge verwenden oder deren portable Version nutzen, müssen Sie das Lesezeichen-Datenverzeichnis hinzufügen und die richtige Browser-Engine auswählen, damit dieses Plug-in funktioniert.</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage02">For example: Brave's engine is Chromium; and its default bookmarks data location is: &quot;%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData&quot;. For Firefox engine, the bookmarks directory is the userdata folder contains the places.sqlite file.</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage02">Zum Beispiel: Die Engine von Brave ist Chromium, und deren Standardspeicherort der Lesezeichen-Daten ist:
%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData&quot;. Bei der Firefox-Engine ist das Lesezeichenverzeichnis der Ordner userdata, der die Datei places.sqlite enthält.</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,27 +2,27 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Plugin Info --> <!-- Plugin Info -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_name">Browser Bookmarks</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_name">Nettleserbokmerker</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_description">Search your browser bookmarks</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_description">Søk i nettleserbokmerker</system:String>
<!-- Settings --> <!-- Settings -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Bookmark Data</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Bokmerkedata</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_openBookmarks">Open bookmarks in:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_openBookmarks">Åpne bokmerker i:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">New window</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">Nytt vindu</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">New tab</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">Ny fane</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath">Set browser from path:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath">Angi nettleser fra banen:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Choose</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Velg</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">Copy url</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">Kopier nettadresse</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_subtitle">Copy the bookmark's url to clipboard</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_subtitle">Kopier bokmerkets nettadresse til utklippstavlen</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Load Browser From:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Last nettleser fra:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Browser Name</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Nettlesernavn</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">Data Directory Path</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">Sti til datakatalog</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">Add</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">Legg til</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">Edit</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">Rediger</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">Delete</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">Slett</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Browse</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Bla</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_others">Others</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_others">Andre</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Browser Engine</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Nettlesermotor</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage01">If you are not using Chrome, Firefox or Edge, or you are using their portable version, you need to add bookmarks data directory and select correct browser engine to make this plugin work.</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage01">Hvis du ikke bruker Chrome, Firefox eller Edge, eller hvis du bruker den bærbare versjonen, må du legge til bokmerkedatakatalog og velge riktig nettlesermotor for å få dette programtillegget til å fungere.</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage02">For example: Brave's engine is Chromium; and its default bookmarks data location is: &quot;%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData&quot;. For Firefox engine, the bookmarks directory is the userdata folder contains the places.sqlite file.</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage02">For eksempel: Brave's motor er Chromium; og standardplasseringen av bokmerker er: &quot;%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData&quot;. For Firefox-motoren er bokmerkekatalogen brukerdatamappen som inneholder places.sqlite-filen.</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,27 +2,27 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Plugin Info --> <!-- Plugin Info -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_name">Browser Bookmarks</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_name">Zakładki przeglądarki</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_description">Search your browser bookmarks</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_plugin_description">Przeszukaj zakładki przeglądarki</system:String>
<!-- Settings --> <!-- Settings -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Bookmark Data</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Dane zakładek</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_openBookmarks">Open bookmarks in:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_openBookmarks">Otwórz zakładki w:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">New window</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">Nowe okno</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">New tab</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">Nowa karta</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath">Set browser from path:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_setBrowserFromPath">Ustaw przeglądarkę ze ścieżki:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Choose</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Wybierz</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">Copy url</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">Kopiuj adres url</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_subtitle">Copy the bookmark's url to clipboard</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_subtitle">Skopiuj adres url zakładki do schowka</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Load Browser From:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Załaduj przeglądarkę z:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Browser Name</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Nazwa przeglądarki</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">Data Directory Path</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">Ścieżka katalogu danych</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">Dodaj</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">Dodaj</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">Edytuj</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">Edytuj</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">Usu</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">Usu</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Przeglądaj</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Przeglądaj</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_others">Others</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_others">Inne</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Browser Engine</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Silnik przeglądarki</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage01">If you are not using Chrome, Firefox or Edge, or you are using their portable version, you need to add bookmarks data directory and select correct browser engine to make this plugin work.</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage01">Jeśli nie używasz Chrome, Firefox lub Edge, lub używasz ich wersji przenośnej, musisz dodać katalog danych zakładek i wybrać poprawny silnik przeglądarki, aby wtyczka działała.</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage02">For example: Brave's engine is Chromium; and its default bookmarks data location is: &quot;%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData&quot;. For Firefox engine, the bookmarks directory is the userdata folder contains the places.sqlite file.</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_guideMessage02">Na przykład: silnikiem przeglądarki Brave jest Chromium, a domyślna lokalizacja danych zakładek to: &quot;%LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData&quot;. W przypadku silnika Firefoksa, katalog zakładek to folder danych użytkownika zawierający plik places.sqlite.</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -4,7 +4,7 @@
"Name": "Browser Bookmarks", "Name": "Browser Bookmarks",
"Description": "Search your browser bookmarks", "Description": "Search your browser bookmarks",
"Author": "qianlifeng, Ioannis G.", "Author": "qianlifeng, Ioannis G.",
"Version": "3.3.1", "Version": "3.3.3",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.BrowserBookmark.dll", "ExecuteFileName": "Flow.Launcher.Plugin.BrowserBookmark.dll",

View file

@ -2,14 +2,14 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Rechner</system:String> <system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Rechner</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Stellt mathematische Berechnungen bereit.(Versuche 5*3-2 in Flow Launcher)</system:String> <system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Ermöglicht mathematische Berechnungen (z. B. 5*3-2 in Flow Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Keine Zahl (NaN)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Nicht eine Zahl (NaN)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Ausdruck falsch oder nicht vollständig (Klammern vergessen?)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Ausdruck falsch oder unvollständig (Haben Sie einige Klammern vergessen?)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Diese Zahl in die Zwischenablage kopieren</system:String> <system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Diese Zahl in die Zwischenablage kopieren</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator">Dezimaltrennzeichen</system:String> <system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator">Dezimaltrennzeichen</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator_help">Das Dezimaltrennzeichen, welches bei der Ausgabe verwendet werden soll.</system:String> <system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator_help">Das Dezimaltrennzeichen, das in der Ausgabe verwendet werden soll.</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_use_system_locale">Systemeinstellung nutzen</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_use_system_locale">Systemgebietsschema verwenden</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_comma">Komma (,)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_comma">Komma (,)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_dot">Punkt (.)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_dot">Punkt (.)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_max_decimal_places">Max. Nachkommastellen</system:String> <system:String x:Key="flowlauncher_plugin_calculator_max_decimal_places">Max. Dezimalstellen</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,15 +1,15 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Calculator</system:String> <system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Kalkulator</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Allows to do mathematical calculations.(Try 5*3-2 in Flow Launcher)</system:String> <system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Lar deg gjøre matematiske beregninger. (Prøv 5*3-2 i Flow Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Not a number (NaN)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Ikke et tall (NaN)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Expression wrong or incomplete (Did you forget some parentheses?)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Uttrykk feil eller ufullstendig (glem noen parenteser?)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Copy this number to the clipboard</system:String> <system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Kopier dette nummeret til utklippstavlen</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator">Decimal separator</system:String> <system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator">Desimalskille</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator_help">The decimal separator to be used in the output.</system:String> <system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator_help">Desimalskilletegnet som skal brukes i utdataene.</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_use_system_locale">Use system locale</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_use_system_locale">Bruk systemets nasjonale innstilling</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_comma">Comma (,)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_comma">Komma (,)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_dot">Dot (.)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_dot">Prikk (.)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_max_decimal_places">Max. decimal places</system:String> <system:String x:Key="flowlauncher_plugin_calculator_max_decimal_places">Maks. desimaler</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -3,13 +3,13 @@
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Kalkulator</system:String> <system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Kalkulator</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Szybkie wykonywanie obliczeń matematycznych. (Spróbuj wpisać 5*3-2 w oknie Flow Launchera)</system:String> <system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Szybkie wykonywanie obliczeń matematycznych. (Spróbuj wpisać 5*3-2 w oknie Flow Launchera)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Not a number (NaN)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Nie liczba (NaN)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Expression wrong or incomplete (Did you forget some parentheses?)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Wyrażenie niepoprawne lub niekompletne (Czy zapomniałeś o nawiasach?)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Copy this number to the clipboard</system:String> <system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Skopiuj ten numer do schowka</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator">Decimal separator</system:String> <system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator">Separator dziesiętny</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator_help">The decimal separator to be used in the output.</system:String> <system:String x:Key="flowlauncher_plugin_calculator_output_decimal_seperator_help">Separator dziesiętny używany w wyniku.</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_use_system_locale">Use system locale</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_use_system_locale">Użyj ustawień regionalnych systemu</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_comma">Comma (,)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_comma">Przecinek (,)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_dot">Dot (.)</system:String> <system:String x:Key="flowlauncher_plugin_calculator_decimal_seperator_dot">Kropka (.)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_max_decimal_places">Max. decimal places</system:String> <system:String x:Key="flowlauncher_plugin_calculator_max_decimal_places">Maks. liczba miejsc po przecinku</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -4,7 +4,7 @@
"Name": "Calculator", "Name": "Calculator",
"Description": "Provide mathematical calculations.(Try 5*3-2 in Flow Launcher)", "Description": "Provide mathematical calculations.(Try 5*3-2 in Flow Launcher)",
"Author": "cxfksword", "Author": "cxfksword",
"Version": "3.1.2", "Version": "3.1.4",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Calculator.dll", "ExecuteFileName": "Flow.Launcher.Plugin.Calculator.dll",

View file

@ -45,7 +45,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="System.Data.OleDb" Version="8.0.0" /> <PackageReference Include="System.Data.OleDb" Version="8.0.1" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" /> <PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="tlbimp-Microsoft.Search.Interop" Version="1.0.0" /> <PackageReference Include="tlbimp-Microsoft.Search.Interop" Version="1.0.0" />
</ItemGroup> </ItemGroup>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">قائمة السياق الأصلية</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">قائمة السياق الأصلية</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">عرض قائمة السياق الأصلية (تجريبي)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">عرض قائمة السياق الأصلية (تجريبي)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">أدناه يمكنك تحديد العناصر التي تريد تضمينها في قائمة السياق، يمكن أن تكون جزئية (على سبيل المثال 'pen wit') أو كاملة ('فتح بواسطة').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">أدناه يمكنك تحديد العناصر التي تريد تضمينها في قائمة السياق، يمكن أن تكون جزئية (على سبيل المثال 'pen wit') أو كاملة ('فتح بواسطة').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">أدناه يمكنك تحديد العناصر التي تريد استبعادها من قائمة السياق، يمكن أن تكون جزئية (على سبيل المثال 'pen wit') أو كاملة ('فتح بواسطة')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">يمكنك أدناه تحديد العناصر التي تريد استبعادها من قائمة الضغط الأيمن، يمكن أن تكون جزئية (على سبيل المثال، 'pen wit') أو كاملة ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,45 +2,45 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Dialogues --> <!-- Dialogues -->
<system:String x:Key="plugin_explorer_make_selection_warning">Zuerst eine Auswahl treffen</system:String> <system:String x:Key="plugin_explorer_make_selection_warning">Bitte treffen Sie zuerst eine Auswahl.</system:String>
<system:String x:Key="plugin_explorer_select_folder_link_warning">Bitte wähle eine Ordnerverknüpfung</system:String> <system:String x:Key="plugin_explorer_select_folder_link_warning">Bitte wählen Sie einen Ordner-Link aus</system:String>
<system:String x:Key="plugin_explorer_delete_folder_link">Bist du sicher {0} zu löschen?</system:String> <system:String x:Key="plugin_explorer_delete_folder_link">Sind Sie sicher, dass Sie {0} löschen wollen?</system:String>
<system:String x:Key="plugin_explorer_deletefileconfirm">Sind Sie sicher, dass Sie diese Datei dauerhaft löschen möchten?</system:String> <system:String x:Key="plugin_explorer_deletefileconfirm">Sind Sie sicher, dass Sie diese Datei dauerhaft löschen möchten?</system:String>
<system:String x:Key="plugin_explorer_deletefilefolderconfirm">Are you sure you want to permanently delete this file/folder?</system:String> <system:String x:Key="plugin_explorer_deletefilefolderconfirm">Sind Sie sicher, dass Sie diese(n) Datei/Ordner dauerhaft löschen wollen?</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess">Löschen erfolgreich</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess">Löschung erfolgreich</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Successfully deleted {0}</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Erfolgreich gelöscht {0}</system:String>
<system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Die Zuweisung des globalen Aktions-Schlüsselwortes könnte zu viele Ergebnisse bei der Suche hervorrufen. Bitte wählen Sie ein spezielles Aktionswort</system:String> <system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Die Zuweisung des globalen Aktions-Schlüsselwortes könnte zu viele Ergebnisse bei der Suche hervorrufen. Bitte wählen Sie ein spezifisches Aktions-Schlüsselwort</system:String>
<system:String x:Key="plugin_explorer_quickaccess_globalActionKeywordInvalid">Schnellzugriff kann nicht auf das globale Aktionswort gesetzt werden, wenn aktiviert. Bitte wählen Sie ein spezielles Aktionswort</system:String> <system:String x:Key="plugin_explorer_quickaccess_globalActionKeywordInvalid">Schnellzugriff kann nicht auf das globale Aktions-Schlüsselwort gesetzt werden, wenn aktiviert. Bitte wählen Sie ein spezifisches Aktions-Schlüsselwort</system:String>
<system:String x:Key="plugin_explorer_windowsSearchServiceNotRunning">Der benötigte Dienst für Windows Indexsuche scheint nicht ausgeführt zu werden</system:String> <system:String x:Key="plugin_explorer_windowsSearchServiceNotRunning">Der erforderliche Dienst für Windows-Indexsuche scheint nicht ausgeführt zu werden</system:String>
<system:String x:Key="plugin_explorer_windowsSearchServiceFix">Um dies zu beheben, starten Sie den Windows-Suchdienst. Klicken Sie hier, um diese Warnung zu entfernen</system:String> <system:String x:Key="plugin_explorer_windowsSearchServiceFix">Um dies zu beheben, starten Sie den Windows-Suchdienst. Wählen Sie hier aus, um diese Warnung zu entfernen</system:String>
<system:String x:Key="plugin_explorer_alternative">Die Warnmeldung wurde ausgeschaltet. Möchten Sie als Alternative für die Suche nach Dateien und Ordnern das Plugin Everything installieren?{0}{0}Wählen Sie 'Ja', um das Plugin Everything zu installieren, oder 'Nein', um zurückzukehren</system:String> <system:String x:Key="plugin_explorer_alternative">Die Warnmeldung ist ausgeschaltet worden. Möchten Sie als Alternative für die Suche nach Dateien und Ordnern das Plugin Everything installieren?{0}{0}Wählen Sie 'Ja' aus, um das Plug-in Everything zu installieren, oder 'Nein', um zurückzukehren</system:String>
<system:String x:Key="plugin_explorer_alternative_title">Explorer Alternative</system:String> <system:String x:Key="plugin_explorer_alternative_title">Explorer-Alternative</system:String>
<system:String x:Key="plugin_explorer_directoryinfosearch_error">Error occurred during search: {0}</system:String> <system:String x:Key="plugin_explorer_directoryinfosearch_error">Fehler aufgetreten während Suche: {0}</system:String>
<system:String x:Key="plugin_explorer_opendir_error">Could not open folder</system:String> <system:String x:Key="plugin_explorer_opendir_error">Ordner konnte nicht geöffnet werden</system:String>
<system:String x:Key="plugin_explorer_openfile_error">Could not open file</system:String> <system:String x:Key="plugin_explorer_openfile_error">Datei konnte nicht geöffnet werden</system:String>
<!-- Controls --> <!-- Controls -->
<system:String x:Key="plugin_explorer_delete">Löschen</system:String> <system:String x:Key="plugin_explorer_delete">Löschen</system:String>
<system:String x:Key="plugin_explorer_edit">Bearbeiten</system:String> <system:String x:Key="plugin_explorer_edit">Bearbeiten</system:String>
<system:String x:Key="plugin_explorer_add">Hinzufügen</system:String> <system:String x:Key="plugin_explorer_add">Hinzufügen</system:String>
<system:String x:Key="plugin_explorer_generalsetting_header">General Setting</system:String> <system:String x:Key="plugin_explorer_generalsetting_header">Allgemeine Einstellung</system:String>
<system:String x:Key="plugin_explorer_manageactionkeywords_header">Aktions-Schlüsselwörter ändern</system:String> <system:String x:Key="plugin_explorer_manageactionkeywords_header">Aktions-Schlüsselwörter individuell anpassen</system:String>
<system:String x:Key="plugin_explorer_quickaccesslinks_header">Schnellzugriff-Links</system:String> <system:String x:Key="plugin_explorer_quickaccesslinks_header">Schnellzugriff-Links</system:String>
<system:String x:Key="plugin_explorer_everything_setting_header">Everything Setting</system:String> <system:String x:Key="plugin_explorer_everything_setting_header">Everyhting-Einstellung</system:String>
<system:String x:Key="plugin_explorer_previewpanel_setting_header">Preview Panel</system:String> <system:String x:Key="plugin_explorer_previewpanel_setting_header">Vorschau-Panel</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Größe</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Größe</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Date Created</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Erstellungsdatum</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Date Modified</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Änderungsdatum</system:String>
<system:String x:Key="plugin_explorer_previewpanel_file_info_label">Display File Info</system:String> <system:String x:Key="plugin_explorer_previewpanel_file_info_label">Datei-Info anzeigen</system:String>
<system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Date and time format</system:String> <system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Datums- und Zeitformat</system:String>
<system:String x:Key="plugin_explorer_everything_sort_option">Sort Option:</system:String> <system:String x:Key="plugin_explorer_everything_sort_option">Sortieroption:</system:String>
<system:String x:Key="plugin_explorer_everything_installed_path">Everything Path:</system:String> <system:String x:Key="plugin_explorer_everything_installed_path">Everything-Pfad:</system:String>
<system:String x:Key="plugin_explorer_launch_hidden">Launch Hidden</system:String> <system:String x:Key="plugin_explorer_launch_hidden">Ausgeblendet starten</system:String>
<system:String x:Key="plugin_explorer_editor_path">Editor pad</system:String> <system:String x:Key="plugin_explorer_editor_path">Editor-Pfad</system:String>
<system:String x:Key="plugin_explorer_shell_path">Shell Path</system:String> <system:String x:Key="plugin_explorer_shell_path">Shell-Pfad</system:String>
<system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Indexsuche ausgeschlossen Pfade</system:String> <system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Indexsuche ausgeschlossene Pfade</system:String>
<system:String x:Key="plugin_explorer_use_location_as_working_dir">Verwenden Suchergebnis Standort als ausführbare Arbeitsverzeichnis</system:String> <system:String x:Key="plugin_explorer_use_location_as_working_dir">Ort des Suchergebnisses als Arbeitsverzeichnis der ausführbaren Datei verwenden</system:String>
<system:String x:Key="plugin_explorer_default_open_in_file_manager">Hit Enter to open folder in Default File Manager</system:String> <system:String x:Key="plugin_explorer_default_open_in_file_manager">Drücken Sie die Enter, um den Ordner im Default-Dateimanager zu öffnen</system:String>
<system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Use Index Search For Path Search</system:String> <system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Use Index Search For Path Search</system:String>
<system:String x:Key="plugin_explorer_manageindexoptions">Indexierungsoptionen</system:String> <system:String x:Key="plugin_explorer_manageindexoptions">Indexierungsoptionen</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_search">Suche:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_search">Suche:</system:String>
@ -51,10 +51,10 @@
<system:String x:Key="plugin_explorer_actionkeyword_current">Aktuelles Aktions-Schlüsselwort</system:String> <system:String x:Key="plugin_explorer_actionkeyword_current">Aktuelles Aktions-Schlüsselwort</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_done">Fertig</system:String> <system:String x:Key="plugin_explorer_actionkeyword_done">Fertig</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled">Aktiviert</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled">Aktiviert</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">Wenn diese Funktion deaktiviert ist, führt Flow diese Suchoption nicht aus und kehrt zusätzlich zu '*' zurück, um das Aktionsschlüsselwort freizugeben</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">Wenn deaktiviert, führt Flow diese Suchoption nicht aus und kehrt zusätzlich zu '*' zurück, um das Aktions-Schlüsselwort freizugeben</system:String>
<system:String x:Key="plugin_explorer_engine_everything">Everything</system:String> <system:String x:Key="plugin_explorer_engine_everything">Everything</system:String>
<system:String x:Key="plugin_explorer_engine_windows_index">Windows Index</system:String> <system:String x:Key="plugin_explorer_engine_windows_index">Windows-Index</system:String>
<system:String x:Key="plugin_explorer_path_enumeration_engine_none">Direct Enumeration</system:String> <system:String x:Key="plugin_explorer_path_enumeration_engine_none">Direkte Aufzählung</system:String>
<system:String x:Key="plugin_explorer_file_editor_path">Datei-Editor-Pfad</system:String> <system:String x:Key="plugin_explorer_file_editor_path">Datei-Editor-Pfad</system:String>
<system:String x:Key="plugin_explorer_folder_editor_path">Ordner-Editor-Pfad</system:String> <system:String x:Key="plugin_explorer_folder_editor_path">Ordner-Editor-Pfad</system:String>
<system:String x:Key="plugin_explorer_enabled">Aktiviert</system:String> <system:String x:Key="plugin_explorer_enabled">Aktiviert</system:String>
@ -64,22 +64,22 @@
<system:String x:Key="plugin_explorer_Directory_Recursive_Search_Engine">Directory Recursive Search Engine</system:String> <system:String x:Key="plugin_explorer_Directory_Recursive_Search_Engine">Directory Recursive Search Engine</system:String>
<system:String x:Key="plugin_explorer_Index_Search_Engine">Index Search Engine</system:String> <system:String x:Key="plugin_explorer_Index_Search_Engine">Index Search Engine</system:String>
<system:String x:Key="plugin_explorer_Open_Window_Index_Option">Open Windows Index Option</system:String> <system:String x:Key="plugin_explorer_Open_Window_Index_Option">Open Windows Index Option</system:String>
<system:String x:Key="plugin_explorer_Excluded_File_Types">Excluded File Types (comma seperated)</system:String> <system:String x:Key="plugin_explorer_Excluded_File_Types">Ausgeschlossene Dateitypen (durch Komma getrennt)</system:String>
<system:String x:Key="plugin_explorer_Excluded_File_Types_Tooltip">For example: exe,jpg,png</system:String> <system:String x:Key="plugin_explorer_Excluded_File_Types_Tooltip">Zum Beispiel: exe,jpg,png</system:String>
<system:String x:Key="plugin_explorer_Maximum_Results">Maximum results</system:String> <system:String x:Key="plugin_explorer_Maximum_Results">Maximale Ergebnisse</system:String>
<system:String x:Key="plugin_explorer_Maximum_Results_Tooltip">The maximum number of results requested from active search engine</system:String> <system:String x:Key="plugin_explorer_Maximum_Results_Tooltip">Die maximale Anzahl der angeforderten Ergebnisse aus aktiver Suchmaschine</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_explorer_plugin_name">Explorer</system:String> <system:String x:Key="plugin_explorer_plugin_name">Explorer</system:String>
<system:String x:Key="plugin_explorer_plugin_description">Find and manage files and folders via Windows Search or Everything</system:String> <system:String x:Key="plugin_explorer_plugin_description">Dateien und Ordner via Windows-Suche oder Everything finden und verwalten</system:String>
<!-- Plugin Tooltip --> <!-- Plugin Tooltip -->
<system:String x:Key="plugin_explorer_plugin_ToolTipOpenDirectory">Ctrl + Enter to open the directory</system:String> <system:String x:Key="plugin_explorer_plugin_ToolTipOpenDirectory">Strg+Enter, um das Verzeichnis zu öffnen</system:String>
<system:String x:Key="plugin_explorer_plugin_ToolTipOpenContainingFolder">Ctrl + Enter to open the containing folder</system:String> <system:String x:Key="plugin_explorer_plugin_ToolTipOpenContainingFolder">Strg+Enter, um den enthaltenden Ordner zu öffnen</system:String>
<!-- Context menu items --> <!-- Context menu items -->
<system:String x:Key="plugin_explorer_copypath">Pfad kopieren</system:String> <system:String x:Key="plugin_explorer_copypath">Pfad kopieren</system:String>
<system:String x:Key="plugin_explorer_copypath_subtitle">Copy path of current item to clipboard</system:String> <system:String x:Key="plugin_explorer_copypath_subtitle">Pfad des aktuellen Elements in Zwischenablage kopieren</system:String>
<system:String x:Key="plugin_explorer_copyfilefolder">Kopieren</system:String> <system:String x:Key="plugin_explorer_copyfilefolder">Kopieren</system:String>
<system:String x:Key="plugin_explorer_copyfile_subtitle">Aktuelle Datei in Zwischenablage kopieren</system:String> <system:String x:Key="plugin_explorer_copyfile_subtitle">Aktuelle Datei in Zwischenablage kopieren</system:String>
<system:String x:Key="plugin_explorer_copyfolder_subtitle">Aktuellen Ordner in Zwischenablage kopieren</system:String> <system:String x:Key="plugin_explorer_copyfolder_subtitle">Aktuellen Ordner in Zwischenablage kopieren</system:String>
@ -87,79 +87,79 @@
<system:String x:Key="plugin_explorer_deletefile_subtitle">Aktuelle Datei dauerhaft löschen</system:String> <system:String x:Key="plugin_explorer_deletefile_subtitle">Aktuelle Datei dauerhaft löschen</system:String>
<system:String x:Key="plugin_explorer_deletefolder_subtitle">Aktuellen Ordner dauerhaft löschen</system:String> <system:String x:Key="plugin_explorer_deletefolder_subtitle">Aktuellen Ordner dauerhaft löschen</system:String>
<system:String x:Key="plugin_explorer_path">Pfad:</system:String> <system:String x:Key="plugin_explorer_path">Pfad:</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Ausgewählte löschen</system:String> <system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Ausgewähltes löschen</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser">Als anderer Benutzer ausführen</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser">Als anderer Benutzer ausführen</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser_subtitle">Ausgewählte mit einem anderen Benutzerkonto ausführen</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser_subtitle">Ausgewähltes unter Verwendung eines anderen Benutzerkontos ausführen</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder">Enthaltenden Ordner öffnen</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder">Enthaltenden Ordner öffnen</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder_subtitle">Open the location that contains current item</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder_subtitle">Den Ort öffnen, der aktuelles Element enthält</system:String>
<system:String x:Key="plugin_explorer_openwitheditor">Öffnen mit Editor:</system:String> <system:String x:Key="plugin_explorer_openwitheditor">Öffnen mit Editor:</system:String>
<system:String x:Key="plugin_explorer_openwitheditor_error">Failed to open file at {0} with Editor {1} at {2}</system:String> <system:String x:Key="plugin_explorer_openwitheditor_error">Datei bei {0} konnte nicht mit Editor {1} bei {2} geöffnet werden</system:String>
<system:String x:Key="plugin_explorer_openwithshell">Open With Shell:</system:String> <system:String x:Key="plugin_explorer_openwithshell">Öffnen mit Shell:</system:String>
<system:String x:Key="plugin_explorer_openwithshell_error">Failed to open folder {0} with Shell {1} at {2}</system:String> <system:String x:Key="plugin_explorer_openwithshell_error">Ordner {0} konnte nicht mit Shell {1} bei {2} geöffnet werden</system:String>
<system:String x:Key="plugin_explorer_excludefromindexsearch">Aktuelles und Unterverzeichnisse von der Indexsuche ausschließen</system:String> <system:String x:Key="plugin_explorer_excludefromindexsearch">Aktuelles und Unterverzeichnisse aus Indexsuche ausschließen</system:String>
<system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Von der Indexsuche ausgeschlossen</system:String> <system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Aus Indexsuche ausgeschlossen</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions">Windows Indexoptionen öffnen</system:String> <system:String x:Key="plugin_explorer_openindexingoptions">Windows-Indexierungsoptionen öffnen</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions_subtitle">Indexierte Dateien und Ordner verwalten</system:String> <system:String x:Key="plugin_explorer_openindexingoptions_subtitle">Indexierte Dateien und Ordner verwalten</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions_errormsg">Fehler beim Öffnen der Windows-Indexierungsoptionen</system:String> <system:String x:Key="plugin_explorer_openindexingoptions_errormsg">Windows-Indexierungsoptionen konnten nicht geöffnet werden</system:String>
<system:String x:Key="plugin_explorer_add_to_quickaccess_title">Zu Schnellzugriff hinzufügen</system:String> <system:String x:Key="plugin_explorer_add_to_quickaccess_title">Zu Schnellzugriff hinzufügen</system:String>
<system:String x:Key="plugin_explorer_add_to_quickaccess_subtitle">Add current item to Quick Access</system:String> <system:String x:Key="plugin_explorer_add_to_quickaccess_subtitle">Aktuelles Element zu Schnellzugriff hinzufügen</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess">Successfully Added</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess">Erfolgreich hinzugefügt</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess_detail">Successfully added to Quick Access</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess_detail">Erfolgreich zum Schnellzugriff hinzugefügt</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess">Successfully Removed</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess">Erfolgreich entfernt</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess_detail">Successfully removed from Quick Access</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess_detail">Erfolgreich aus Schnellzugriff entfernt</system:String>
<system:String x:Key="plugin_explorer_contextmenu_titletooltip">Add to Quick Access so it can be opened with Explorer's Search Activation action keyword</system:String> <system:String x:Key="plugin_explorer_contextmenu_titletooltip">Zum Schnellzugriff hinzufügen, so kann dieser mit dem Aktions-Schlüsselwort &quot;Suchaktivierung&quot; des Explorers geöffnet werden</system:String>
<system:String x:Key="plugin_explorer_contextmenu_remove_titletooltip">Remove from Quick Access</system:String> <system:String x:Key="plugin_explorer_contextmenu_remove_titletooltip">Aus Schnellzugriff entfernen</system:String>
<system:String x:Key="plugin_explorer_remove_from_quickaccess_title">Remove from Quick Access</system:String> <system:String x:Key="plugin_explorer_remove_from_quickaccess_title">Aus Schnellzugriff entfernen</system:String>
<system:String x:Key="plugin_explorer_remove_from_quickaccess_subtitle">Remove current item from Quick Access</system:String> <system:String x:Key="plugin_explorer_remove_from_quickaccess_subtitle">Aktuelles Element aus Schnellzugriff entfernen</system:String>
<system:String x:Key="plugin_explorer_show_contextmenu_title">Show Windows Context Menu</system:String> <system:String x:Key="plugin_explorer_show_contextmenu_title">Windows-Kontextmenü zeigen</system:String>
<system:String x:Key="plugin_explorer_openwith">Öffnen mit</system:String> <system:String x:Key="plugin_explorer_openwith">Öffnen mit</system:String>
<system:String x:Key="plugin_explorer_openwith_subtitle">Programm zum Öffnen auswählen</system:String> <system:String x:Key="plugin_explorer_openwith_subtitle">Ein Programm zum Öffnen auswählen</system:String>
<!-- Special Results --> <!-- Special Results -->
<system:String x:Key="plugin_explorer_diskfreespace">{0} free of {1}</system:String> <system:String x:Key="plugin_explorer_diskfreespace">{0} frei von {1}</system:String>
<system:String x:Key="plugin_explorer_openresultfolder">Open in Default File Manager</system:String> <system:String x:Key="plugin_explorer_openresultfolder">In Default-Dateimanager öffnen</system:String>
<system:String x:Key="plugin_explorer_openresultfolder_subtitle"> <system:String x:Key="plugin_explorer_openresultfolder_subtitle">
Use '&gt;' to search in this directory, '*' to search for file extensions or '&gt;*' to combine both searches. Verwenden Sie '&gt;', um in diesem Verzeichnis zu suchen, '*', um nach Dateierweiterungen zu suchen, oder '&gt;*', um beide Suchen zu kombinieren.
</system:String> </system:String>
<!-- Everything --> <!-- Everything -->
<system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Failed to load Everything SDK</system:String> <system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Everything SDK konnte nicht geladen werden</system:String>
<system:String x:Key="flowlauncher_plugin_everything_is_not_running">Everything Service läuft nicht</system:String> <system:String x:Key="flowlauncher_plugin_everything_is_not_running">Warnung: Everything-Dienst wird nicht ausgeführt</system:String>
<system:String x:Key="flowlauncher_plugin_everything_query_error">Everything Plugin hat einen Fehler (drücke Enter zum kopieren der Fehlernachricht)</system:String> <system:String x:Key="flowlauncher_plugin_everything_query_error">Fehler bei Abfrage von Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by">Sort By</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by">Sortieren nach</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_name">Name</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_name">Name</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_path">Path</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_path">Pfad</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_size">Größe</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_size">Größe</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_extension">Extension</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_extension">Extension</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_type_name">Type Name</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_type_name">Type Name</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">Date Created</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">Erstellungsdatum</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">Date Modified</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">Änderungsdatum</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">Attributes</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">Attribute</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_file_list_filename">File List FileName</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_file_list_filename">File List FileName</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_run_count">Run Count</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_run_count">Run Count</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">Date Recently Changed</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">Datum kürzlich geändert</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">Date Accessed</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">Zugriffsdatum</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">Date Run</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">Ausführungsdatum</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_ascending">↑</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_ascending">↑</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_descending">↓</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_descending">↓</system:String>
<system:String x:Key="flowlauncher_plugin_everything_nonfastsort_warning">Warning: This is not a Fast Sort option, searches may be slow</system:String> <system:String x:Key="flowlauncher_plugin_everything_nonfastsort_warning">Warnung: Dies ist keine Schnellsortieroption, Suchen können langsam sein</system:String>
<system:String x:Key="flowlauncher_plugin_everything_search_fullpath">Search Full Path</system:String> <system:String x:Key="flowlauncher_plugin_everything_search_fullpath">Vollständigen Pfad suchen</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_run_count">Enable File/Folder Run Count</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_run_count">Enable File/Folder Run Count</system:String>
<system:String x:Key="flowlauncher_plugin_everything_click_to_launch_or_install">Klicken, um Everything zu starten oder zu installieren</system:String> <system:String x:Key="flowlauncher_plugin_everything_click_to_launch_or_install">Klicken, um Everything zu starten oder zu installieren</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_title">Everything Installation</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_title">Everything-Installation</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">Installing Everything service. Please wait...</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">Everything-Dienst wird installiert. Bitte warten Sie ...</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">Successfully installed Everything service</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">Everything-Dienst erfolgreich installiert</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">Der Everything-Dienst konnte nicht automatisch installiert werden. Bitte installieren Sie ihn manuell über https://www.voidtools.com</system:String>
<system:String x:Key="flowlauncher_plugin_everything_run_service">Click here to start it</system:String> <system:String x:Key="flowlauncher_plugin_everything_run_service">Klicken Sie hier, um es zu starten</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_select">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</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_select">Es kann keine Everything-Installation gefuinden werden, möchten Sie einen Ort manuell auswählen?{0}{0}Klicken Sie auf Nein und Everything wird automatisch für Sie installiert</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_content_search">Möchten Sie die Inhaltssuche für alles aktivieren?</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_content_search">Möchten Sie die Inhaltssuche für Everything aktivieren?</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_content_search_tips">It can be very slow without index (which is only supported in Everything v1.5+)</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_content_search_tips">Es kann sehr langsam sein ohne Index (was nur in Everything v1.5+ unterstützt wird)</system:String>
<!-- Native Context Menu --> <!-- Native Context Menu -->
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Natives Kontextmenü</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Natives Kontextmenü anzeigen (experimentell)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Unten können Sie die Elemente angeben, die Sie in das Kontextmenü aufnehmen möchten. Diese können partiell (z. B. „Stift mit“) oder vollständig („Öffnen mit“) sein.</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Unten können Sie die Elemente angeben, die Sie aus dem Kontextmenü ausschließen möchten. Diese können partiell (z. B. „Stift mit“) oder vollständig („Öffnen mit“) sein.</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -160,6 +160,6 @@
<!-- Native Context Menu --> <!-- Native Context Menu -->
<system:String x:Key="plugin_explorer_native_context_menu_header">Menú contextual nativo</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Menú contextual nativo</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Mostrar menú contextual nativo (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Mostrar menú contextual nativo (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">En el siguiente cuadro puede especificar los elementos que desea incluir en el menú contextual, puede describirlos de forma parcial o completa (p. ej., 'ejecutar' o 'Abrir con').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">En el siguiente cuadro puede especificar los elementos que desea incluir en el menú contextual, puede describirlos de forma parcial (p. ej., 'brir co') o completa ('Abrir con').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">En el siguiente cuadro puede especificar los elementos que desea excluir del menú contextual, puede describirlos de forma parcial o completa (p. ej., 'ejecutar' o 'Abrir con').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">En el siguiente cuadro puede especificar los elementos que desea excluir en el menú contextual, puede describirlos de forma parcial (p. ej., 'brir co') o completa ('Abrir con').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Menu contextuel natif</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Menu contextuel natif</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Afficher le menu contextuel natif (expérimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Afficher le menu contextuel natif (expérimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Ci-dessous, vous pouvez spécifier les éléments que vous souhaitez inclure dans le menu contextuel. Ils peuvent être partiels ('pen wit') ou complets ('Ouvrir avec').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Ci-dessous, vous pouvez spécifier les éléments que vous souhaitez inclure dans le menu contextuel. Ils peuvent être partiels ('pen wit') ou complets ('Ouvrir avec').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Vous pouvez spécifier ci-dessous les éléments que vous souhaitez exclure du menu contextuel. Ces éléments peuvent être partiels ('pen wit') ou complets ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Vous pouvez spécifier ci-dessous les éléments que vous souhaitez exclure du menu contextuel. Ces éléments peuvent être partiels (par exemple, &quot;pen wit&quot;) ou complets (&quot;Ouvrir avec&quot;).</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Menu Contestuale Nativo</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Menu Contestuale Nativo</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Visualizza il menu contestuale nativo (sperimentale)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Visualizza il menu contestuale nativo (sperimentale)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Sotto si può specificare elementi che si vuole includere nel menu contestuale, che possono essere parziali (es 'pri co') o completi ('Apri con').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Sotto si può specificare elementi che si vuole includere nel menu contestuale, che possono essere parziali (es 'pri co') o completi ('Apri con').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Sotto si può specificare elementi che si vuole escludere dal menu contestuale, che possono essere parziali (es 'pri co') o completi ('Apri con')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,164 +2,164 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Dialogues --> <!-- Dialogues -->
<system:String x:Key="plugin_explorer_make_selection_warning">Please make a selection first</system:String> <system:String x:Key="plugin_explorer_make_selection_warning">Vennligst gjør et valg først</system:String>
<system:String x:Key="plugin_explorer_select_folder_link_warning">Please select a folder link</system:String> <system:String x:Key="plugin_explorer_select_folder_link_warning">Velg en mappekobling</system:String>
<system:String x:Key="plugin_explorer_delete_folder_link">Are you sure you want to delete {0}?</system:String> <system:String x:Key="plugin_explorer_delete_folder_link">Er du sikker på at du ønsker å slette {0}?</system:String>
<system:String x:Key="plugin_explorer_deletefileconfirm">Are you sure you want to permanently delete this file?</system:String> <system:String x:Key="plugin_explorer_deletefileconfirm">Er du sikker på at du vil slette denne filen permanent?</system:String>
<system:String x:Key="plugin_explorer_deletefilefolderconfirm">Are you sure you want to permanently delete this file/folder?</system:String> <system:String x:Key="plugin_explorer_deletefilefolderconfirm">Er du sikker på at du vil slette denne filen/mappen permanent?</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess">Deletion successful</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess">Vellykket sletting</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Successfully deleted {0}</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">{0} ble slettet</system:String>
<system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword</system:String> <system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Hvis du tilordner det globale handlingsnøkkelordet, kan det få for mange resultater under søk. Velg et bestemt handlingsnøkkelord</system:String>
<system:String x:Key="plugin_explorer_quickaccess_globalActionKeywordInvalid">Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword</system:String> <system:String x:Key="plugin_explorer_quickaccess_globalActionKeywordInvalid">Hurtigtilgang kan ikke stilles til det globale handlingsnøkkelordet når det er aktivert. Vennligst velg et spesifikt handlingsnøkkelord</system:String>
<system:String x:Key="plugin_explorer_windowsSearchServiceNotRunning">The required service for Windows Index Search does not appear to be running</system:String> <system:String x:Key="plugin_explorer_windowsSearchServiceNotRunning">Den nødvendige tjenesten for Windows Index Search ser ikke ut til å kjøre</system:String>
<system:String x:Key="plugin_explorer_windowsSearchServiceFix">To fix this, start the Windows Search service. Select here to remove this warning</system:String> <system:String x:Key="plugin_explorer_windowsSearchServiceFix">For å fikse dette, start Windows-søketjenesten. Velg her for å fjerne denne advarselen</system:String>
<system:String x:Key="plugin_explorer_alternative">The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return</system:String> <system:String x:Key="plugin_explorer_alternative">Advarselen er slått av. Som et alternativ for å søke filer og mapper, vil du installere Everything-programtillegget?{0}{0}Velg 'Ja' for å installere Everything-programtillegget, eller 'Nei' for å returnere</system:String>
<system:String x:Key="plugin_explorer_alternative_title">Explorer Alternative</system:String> <system:String x:Key="plugin_explorer_alternative_title">Alternativ til utforsker</system:String>
<system:String x:Key="plugin_explorer_directoryinfosearch_error">Error occurred during search: {0}</system:String> <system:String x:Key="plugin_explorer_directoryinfosearch_error">Feil oppstod under søk: {0}</system:String>
<system:String x:Key="plugin_explorer_opendir_error">Could not open folder</system:String> <system:String x:Key="plugin_explorer_opendir_error">Kunne ikke åpne mappe</system:String>
<system:String x:Key="plugin_explorer_openfile_error">Could not open file</system:String> <system:String x:Key="plugin_explorer_openfile_error">Kunne ikke åpne fil</system:String>
<!-- Controls --> <!-- Controls -->
<system:String x:Key="plugin_explorer_delete">Delete</system:String> <system:String x:Key="plugin_explorer_delete">Slett</system:String>
<system:String x:Key="plugin_explorer_edit">Edit</system:String> <system:String x:Key="plugin_explorer_edit">Rediger</system:String>
<system:String x:Key="plugin_explorer_add">Add</system:String> <system:String x:Key="plugin_explorer_add">Legg til</system:String>
<system:String x:Key="plugin_explorer_generalsetting_header">General Setting</system:String> <system:String x:Key="plugin_explorer_generalsetting_header">Generell innstilling</system:String>
<system:String x:Key="plugin_explorer_manageactionkeywords_header">Customise Action Keywords</system:String> <system:String x:Key="plugin_explorer_manageactionkeywords_header">Tilpass handlingsnøkkelord</system:String>
<system:String x:Key="plugin_explorer_quickaccesslinks_header">Quick Access Links</system:String> <system:String x:Key="plugin_explorer_quickaccesslinks_header">Koblinger for hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_everything_setting_header">Everything Setting</system:String> <system:String x:Key="plugin_explorer_everything_setting_header">Everything-innstilling</system:String>
<system:String x:Key="plugin_explorer_previewpanel_setting_header">Preview Panel</system:String> <system:String x:Key="plugin_explorer_previewpanel_setting_header">Forhåndsvisningspanel</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Size</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Størrelse</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Date Created</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Dato opprettet</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Date Modified</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Dato endret</system:String>
<system:String x:Key="plugin_explorer_previewpanel_file_info_label">Display File Info</system:String> <system:String x:Key="plugin_explorer_previewpanel_file_info_label">Vis filinfo</system:String>
<system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Date and time format</system:String> <system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Dato- og klokkeslettformat</system:String>
<system:String x:Key="plugin_explorer_everything_sort_option">Sort Option:</system:String> <system:String x:Key="plugin_explorer_everything_sort_option">Alternativ for sortering:</system:String>
<system:String x:Key="plugin_explorer_everything_installed_path">Everything Path:</system:String> <system:String x:Key="plugin_explorer_everything_installed_path">Everything-sti:</system:String>
<system:String x:Key="plugin_explorer_launch_hidden">Launch Hidden</system:String> <system:String x:Key="plugin_explorer_launch_hidden">Start skjult</system:String>
<system:String x:Key="plugin_explorer_editor_path">Editor Path</system:String> <system:String x:Key="plugin_explorer_editor_path">Sti til redigeringsprogram</system:String>
<system:String x:Key="plugin_explorer_shell_path">Shell Path</system:String> <system:String x:Key="plugin_explorer_shell_path">Skall-sti</system:String>
<system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Index Search Excluded Paths</system:String> <system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Søk i indekser ekskluderte baner</system:String>
<system:String x:Key="plugin_explorer_use_location_as_working_dir">Use search result's location as the working directory of the executable</system:String> <system:String x:Key="plugin_explorer_use_location_as_working_dir">Bruk søkeresultatets plassering som arbeidskatalogen til den kjørbare filen</system:String>
<system:String x:Key="plugin_explorer_default_open_in_file_manager">Hit Enter to open folder in Default File Manager</system:String> <system:String x:Key="plugin_explorer_default_open_in_file_manager">Trykk Enter for å åpne mappen i standard filbehandler</system:String>
<system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Use Index Search For Path Search</system:String> <system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Bruk indekssøk for banesøk</system:String>
<system:String x:Key="plugin_explorer_manageindexoptions">Indexing Options</system:String> <system:String x:Key="plugin_explorer_manageindexoptions">Alternativer for indeksering</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_search">Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_search">Søk:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">Path Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">Søk etter filbane:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">File Content Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">Søk etter filinnhold:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Index Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Indekssøk:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Quick Access:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Hurtigtilgang:</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_current">Current Action Keyword</system:String> <system:String x:Key="plugin_explorer_actionkeyword_current">Nåværende nøkkelord for handling</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_done">Done</system:String> <system:String x:Key="plugin_explorer_actionkeyword_done">Utført</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled">Enabled</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled">Aktivert</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">Når deaktivert vil Flow ikke utføre dette søkealternativet, og vil i tillegg gå tilbake til '*' for å frigjøre handlingsnøkkelordet</system:String>
<system:String x:Key="plugin_explorer_engine_everything">Everything</system:String> <system:String x:Key="plugin_explorer_engine_everything">Everything</system:String>
<system:String x:Key="plugin_explorer_engine_windows_index">Windows Index</system:String> <system:String x:Key="plugin_explorer_engine_windows_index">Windows-indeks</system:String>
<system:String x:Key="plugin_explorer_path_enumeration_engine_none">Direct Enumeration</system:String> <system:String x:Key="plugin_explorer_path_enumeration_engine_none">Direkte oppregning</system:String>
<system:String x:Key="plugin_explorer_file_editor_path">Filredigeringsbane</system:String> <system:String x:Key="plugin_explorer_file_editor_path">Filredigeringsbane</system:String>
<system:String x:Key="plugin_explorer_folder_editor_path">Mapperedigeringsbane</system:String> <system:String x:Key="plugin_explorer_folder_editor_path">Mapperedigeringsbane</system:String>
<system:String x:Key="plugin_explorer_enabled">Enabled</system:String> <system:String x:Key="plugin_explorer_enabled">Aktivert</system:String>
<system:String x:Key="plugin_explorer_disabled">Disabled</system:String> <system:String x:Key="plugin_explorer_disabled">Deaktivert</system:String>
<system:String x:Key="plugin_explorer_Content_Search_Engine">Content Search Engine</system:String> <system:String x:Key="plugin_explorer_Content_Search_Engine">Søkemotor for innhold</system:String>
<system:String x:Key="plugin_explorer_Directory_Recursive_Search_Engine">Directory Recursive Search Engine</system:String> <system:String x:Key="plugin_explorer_Directory_Recursive_Search_Engine">Rekursiv søkemotor for katalog</system:String>
<system:String x:Key="plugin_explorer_Index_Search_Engine">Index Search Engine</system:String> <system:String x:Key="plugin_explorer_Index_Search_Engine">Indeks-søkemotor</system:String>
<system:String x:Key="plugin_explorer_Open_Window_Index_Option">Open Windows Index Option</system:String> <system:String x:Key="plugin_explorer_Open_Window_Index_Option">Åpne Windows-indeksalternativet</system:String>
<system:String x:Key="plugin_explorer_Excluded_File_Types">Excluded File Types (comma seperated)</system:String> <system:String x:Key="plugin_explorer_Excluded_File_Types">Ekskluderte filtyper (kommaseparert)</system:String>
<system:String x:Key="plugin_explorer_Excluded_File_Types_Tooltip">For example: exe,jpg,png</system:String> <system:String x:Key="plugin_explorer_Excluded_File_Types_Tooltip">For eksempel: exe,jpg,png</system:String>
<system:String x:Key="plugin_explorer_Maximum_Results">Maximum results</system:String> <system:String x:Key="plugin_explorer_Maximum_Results">Maksimalt antall resultater</system:String>
<system:String x:Key="plugin_explorer_Maximum_Results_Tooltip">The maximum number of results requested from active search engine</system:String> <system:String x:Key="plugin_explorer_Maximum_Results_Tooltip">Maksimalt antall forespurte resultater fra aktiv søkemotor</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_explorer_plugin_name">Explorer</system:String> <system:String x:Key="plugin_explorer_plugin_name">Utforsker</system:String>
<system:String x:Key="plugin_explorer_plugin_description">Find and manage files and folders via Windows Search or Everything</system:String> <system:String x:Key="plugin_explorer_plugin_description">Finn og administrer filer og mapper via Windows Søk eller Everything</system:String>
<!-- Plugin Tooltip --> <!-- Plugin Tooltip -->
<system:String x:Key="plugin_explorer_plugin_ToolTipOpenDirectory">Ctrl + Enter to open the directory</system:String> <system:String x:Key="plugin_explorer_plugin_ToolTipOpenDirectory">Ctrl + Enter for å åpne katalogen</system:String>
<system:String x:Key="plugin_explorer_plugin_ToolTipOpenContainingFolder">Ctrl + Enter to open the containing folder</system:String> <system:String x:Key="plugin_explorer_plugin_ToolTipOpenContainingFolder">Ctrl + Enter for å åpne mappen som inneholder</system:String>
<!-- Context menu items --> <!-- Context menu items -->
<system:String x:Key="plugin_explorer_copypath">Copy path</system:String> <system:String x:Key="plugin_explorer_copypath">Kopier sti</system:String>
<system:String x:Key="plugin_explorer_copypath_subtitle">Copy path of current item to clipboard</system:String> <system:String x:Key="plugin_explorer_copypath_subtitle">Kopier sti til gjeldende element til utklippstavlen</system:String>
<system:String x:Key="plugin_explorer_copyfilefolder">Copy</system:String> <system:String x:Key="plugin_explorer_copyfilefolder">Kopier</system:String>
<system:String x:Key="plugin_explorer_copyfile_subtitle">Copy current file to clipboard</system:String> <system:String x:Key="plugin_explorer_copyfile_subtitle">Kopier gjeldende fil til utklippstavlen</system:String>
<system:String x:Key="plugin_explorer_copyfolder_subtitle">Copy current folder to clipboard</system:String> <system:String x:Key="plugin_explorer_copyfolder_subtitle">Kopier gjeldende mappe til utklippstavlen</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder">Delete</system:String> <system:String x:Key="plugin_explorer_deletefilefolder">Slett</system:String>
<system:String x:Key="plugin_explorer_deletefile_subtitle">Permanently delete current file</system:String> <system:String x:Key="plugin_explorer_deletefile_subtitle">Slett gjeldende fil permanent</system:String>
<system:String x:Key="plugin_explorer_deletefolder_subtitle">Permanently delete current folder</system:String> <system:String x:Key="plugin_explorer_deletefolder_subtitle">Slett gjeldende mappe permanent</system:String>
<system:String x:Key="plugin_explorer_path">Path:</system:String> <system:String x:Key="plugin_explorer_path">Sti:</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Delete the selected</system:String> <system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Slett valgte</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser">Run as different user</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser">Kjør som annen bruker</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser_subtitle">Run the selected using a different user account</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser_subtitle">Kjør valgte med en annen brukerkonto</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder">Open containing folder</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder">Åpne inneholdende mappe</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder_subtitle">Open the location that contains current item</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder_subtitle">Åpne plasseringen som inneholder gjeldende element</system:String>
<system:String x:Key="plugin_explorer_openwitheditor">Open With Editor:</system:String> <system:String x:Key="plugin_explorer_openwitheditor">Åpne med redigeringsprogram:</system:String>
<system:String x:Key="plugin_explorer_openwitheditor_error">Failed to open file at {0} with Editor {1} at {2}</system:String> <system:String x:Key="plugin_explorer_openwitheditor_error">Kunne ikke åpne filen på {0} med redigeringsprogram {1} ved {2}</system:String>
<system:String x:Key="plugin_explorer_openwithshell">Open With Shell:</system:String> <system:String x:Key="plugin_explorer_openwithshell">Åpne med Skall:</system:String>
<system:String x:Key="plugin_explorer_openwithshell_error">Failed to open folder {0} with Shell {1} at {2}</system:String> <system:String x:Key="plugin_explorer_openwithshell_error">Kunne ikke å åpne mappe {0} med Skall {1} ved {2}</system:String>
<system:String x:Key="plugin_explorer_excludefromindexsearch">Exclude current and sub-directories from Index Search</system:String> <system:String x:Key="plugin_explorer_excludefromindexsearch">Utelukk gjeldende og underkataloger fra Indekssøk</system:String>
<system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Excluded from Index Search</system:String> <system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Ekskludert fra indekssøk</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions">Open Windows Indexing Options</system:String> <system:String x:Key="plugin_explorer_openindexingoptions">Åpne Windows indekseringsalternativer</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions_subtitle">Manage indexed files and folders</system:String> <system:String x:Key="plugin_explorer_openindexingoptions_subtitle">Behandle indekserte filer og mapper</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions_errormsg">Failed to open Windows Indexing Options</system:String> <system:String x:Key="plugin_explorer_openindexingoptions_errormsg">Kunne ikke åpne Windows indekseringsalternativer</system:String>
<system:String x:Key="plugin_explorer_add_to_quickaccess_title">Add to Quick Access</system:String> <system:String x:Key="plugin_explorer_add_to_quickaccess_title">Legg til hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_add_to_quickaccess_subtitle">Add current item to Quick Access</system:String> <system:String x:Key="plugin_explorer_add_to_quickaccess_subtitle">Legg gjeldende element til hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess">Successfully Added</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess">Lagt til</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess_detail">Successfully added to Quick Access</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess_detail">Vellykket lagt til hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess">Successfully Removed</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess">Fjernet</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess_detail">Successfully removed from Quick Access</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess_detail">Fjernet fra hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_contextmenu_titletooltip">Add to Quick Access so it can be opened with Explorer's Search Activation action keyword</system:String> <system:String x:Key="plugin_explorer_contextmenu_titletooltip">Legg til i hurtigtilgang, slik at den kan åpnes med handlingsnøkkelordet Søkeaktivering i Utforsker</system:String>
<system:String x:Key="plugin_explorer_contextmenu_remove_titletooltip">Remove from Quick Access</system:String> <system:String x:Key="plugin_explorer_contextmenu_remove_titletooltip">Fjern fra hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_remove_from_quickaccess_title">Remove from Quick Access</system:String> <system:String x:Key="plugin_explorer_remove_from_quickaccess_title">Fjern fra hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_remove_from_quickaccess_subtitle">Remove current item from Quick Access</system:String> <system:String x:Key="plugin_explorer_remove_from_quickaccess_subtitle">Fjern gjeldende element fra hurtigtilgang</system:String>
<system:String x:Key="plugin_explorer_show_contextmenu_title">Show Windows Context Menu</system:String> <system:String x:Key="plugin_explorer_show_contextmenu_title">Vis Windows-hurtigmeny</system:String>
<system:String x:Key="plugin_explorer_openwith">Open With</system:String> <system:String x:Key="plugin_explorer_openwith">Åpne med</system:String>
<system:String x:Key="plugin_explorer_openwith_subtitle">Select a program to open with</system:String> <system:String x:Key="plugin_explorer_openwith_subtitle">Velg et program for å åpne med</system:String>
<!-- Special Results --> <!-- Special Results -->
<system:String x:Key="plugin_explorer_diskfreespace">{0} free of {1}</system:String> <system:String x:Key="plugin_explorer_diskfreespace">{0} ledig av {1}</system:String>
<system:String x:Key="plugin_explorer_openresultfolder">Open in Default File Manager</system:String> <system:String x:Key="plugin_explorer_openresultfolder">Åpne i standard filbehandler</system:String>
<system:String x:Key="plugin_explorer_openresultfolder_subtitle"> <system:String x:Key="plugin_explorer_openresultfolder_subtitle">
Use '&gt;' to search in this directory, '*' to search for file extensions or '&gt;*' to combine both searches. Bruk '&gt;' for å søke i denne katalogen, '*' for å søke etter filendelser eller '&gt;*' for å kombinere begge søkene.
</system:String> </system:String>
<!-- Everything --> <!-- Everything -->
<system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Failed to load Everything SDK</system:String> <system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Kan ikke laste inn Everything-SDK</system:String>
<system:String x:Key="flowlauncher_plugin_everything_is_not_running">Warning: Everything service is not running</system:String> <system:String x:Key="flowlauncher_plugin_everything_is_not_running">Advarsel: Everything-tjenesten kjører ikke</system:String>
<system:String x:Key="flowlauncher_plugin_everything_query_error">Error while querying Everything</system:String> <system:String x:Key="flowlauncher_plugin_everything_query_error">Feil under spørring av Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by">Sort By</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by">Sorter etter</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_name">Name</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_name">Navn</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_path">Path</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_path">Sti</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_size">Size</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_size">Størrelse</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_extension">Extension</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_extension">Utvidelse</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_type_name">Type Name</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_type_name">Typenavn</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">Date Created</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">Dato opprettet</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">Date Modified</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">Dato endret</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">Attributes</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">Attributter</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_file_list_filename">File List FileName</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_file_list_filename">Filliste Filnavn</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_run_count">Run Count</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_run_count">Antall kjøringer</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">Date Recently Changed</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">Dato nylig endret</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">Date Accessed</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">Dato for tilgang</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">Date Run</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">Dato for kjøring</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_ascending">↑</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_ascending">↑</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_descending">↓</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_descending">↓</system:String>
<system:String x:Key="flowlauncher_plugin_everything_nonfastsort_warning">Warning: This is not a Fast Sort option, searches may be slow</system:String> <system:String x:Key="flowlauncher_plugin_everything_nonfastsort_warning">Advarsel: dette er ikke et hurtigsorteringsalternativ, søk kan være trege</system:String>
<system:String x:Key="flowlauncher_plugin_everything_search_fullpath">Search Full Path</system:String> <system:String x:Key="flowlauncher_plugin_everything_search_fullpath">Søk i hele banen</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_run_count">Enable File/Folder Run Count</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_run_count">Aktiver antall fil-/mappekjøringer</system:String>
<system:String x:Key="flowlauncher_plugin_everything_click_to_launch_or_install">Click to launch or install Everything</system:String> <system:String x:Key="flowlauncher_plugin_everything_click_to_launch_or_install">Klikk for å starte eller installere Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_title">Everything Installation</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_title">Installasjon av Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">Installing Everything service. Please wait...</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">Installerer Everything-tjenesten. Vennligst vent...</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">Successfully installed Everything service</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">Everything-tjenesten vellykket installert</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">Kunne ikke installere Everything-tjenesten automatisk. Installer den manuelt fra https://www.voidtools.com</system:String>
<system:String x:Key="flowlauncher_plugin_everything_run_service">Click here to start it</system:String> <system:String x:Key="flowlauncher_plugin_everything_run_service">Klikk her for å starte den</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_select">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</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_select">Kunne ikke finne en Everything-installasjon, vil du manuelt velge en plassering?{0}{0}Klikk nei, og Everything vil bli automatisk installert for deg</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_content_search">Do you want to enable content search for Everything?</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_content_search">Vil du aktivere innholdssøk for Everything?</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_content_search_tips">It can be very slow without index (which is only supported in Everything v1.5+)</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_content_search_tips">Det kan være veldig tregt uten indeks (som bare støttes i Everything v1.5+)</system:String>
<!-- Native Context Menu --> <!-- Native Context Menu -->
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Opprinnelig hurtigmeny</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Vis opprinnelig hurtigmeny (eksperimentell)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Nedenfor kan du spesifisere elementer du vil inkludere i hurtigtmenyen, de kan være delvise (f.eks. 'pne me') eller komplette ('Åpne med').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Nedenfor kan du spesifisere elementer du vil ekskludere fra hurtigtmenyen, de kan være delvise (f.eks. 'pne me') eller komplette ('Åpne med').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -6,160 +6,160 @@
<system:String x:Key="plugin_explorer_select_folder_link_warning">Musisz wybrać któryś folder z listy</system:String> <system:String x:Key="plugin_explorer_select_folder_link_warning">Musisz wybrać któryś folder z listy</system:String>
<system:String x:Key="plugin_explorer_delete_folder_link">Czy jesteś pewien że chcesz usunąć {0}?</system:String> <system:String x:Key="plugin_explorer_delete_folder_link">Czy jesteś pewien że chcesz usunąć {0}?</system:String>
<system:String x:Key="plugin_explorer_deletefileconfirm">Jesteś pewny, że chcesz usunąć ten plik trwale?</system:String> <system:String x:Key="plugin_explorer_deletefileconfirm">Jesteś pewny, że chcesz usunąć ten plik trwale?</system:String>
<system:String x:Key="plugin_explorer_deletefilefolderconfirm">Are you sure you want to permanently delete this file/folder?</system:String> <system:String x:Key="plugin_explorer_deletefilefolderconfirm">Czy na pewno chcesz trwale usunąć ten plik/folder?</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess">Deletion successful</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess">Usunięcie powiodło się</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Successfully deleted {0}</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Pomyślnie usunięto {0}</system:String>
<system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Assigning the global action keyword could bring up too many results during search. Please choose a specific action keyword</system:String> <system:String x:Key="plugin_explorer_globalActionKeywordInvalid">Przypisanie globalnego słowa kluczowego akcji może spowodować wyświetlenie zbyt wielu wyników podczas wyszukiwania. Proszę wybrać konkretne słowo kluczowe akcji</system:String>
<system:String x:Key="plugin_explorer_quickaccess_globalActionKeywordInvalid">Quick Access can not be set to the global action keyword when enabled. Please choose a specific action keyword</system:String> <system:String x:Key="plugin_explorer_quickaccess_globalActionKeywordInvalid">Szybki dostęp nie może być ustawiony jako globalny klawisz akcji, gdy jest włączony. Proszę wybrać konkretny klawisz akcji</system:String>
<system:String x:Key="plugin_explorer_windowsSearchServiceNotRunning">The required service for Windows Index Search does not appear to be running</system:String> <system:String x:Key="plugin_explorer_windowsSearchServiceNotRunning">Wymagana usługa dla Windows Index Search nie wydaje się być uruchomiona</system:String>
<system:String x:Key="plugin_explorer_windowsSearchServiceFix">To fix this, start the Windows Search service. Select here to remove this warning</system:String> <system:String x:Key="plugin_explorer_windowsSearchServiceFix">Aby to naprawić, uruchom usługę wyszukiwania Windows. Wybierz tutaj, aby usunąć to ostrzeżenie</system:String>
<system:String x:Key="plugin_explorer_alternative">The warning message has been switched off. As an alternative for searching files and folders, would you like to install Everything plugin?{0}{0}Select 'Yes' to install Everything plugin, or 'No' to return</system:String> <system:String x:Key="plugin_explorer_alternative">Komunikat ostrzegawczy został wyłączony. Jako alternatywę do wyszukiwania plików i folderów, czy chcesz zainstalować wtyczkę Everything?{0}{0}Wybierz 'Tak', aby zainstalować wtyczkę Everything, lub 'Nie', aby powrócić</system:String>
<system:String x:Key="plugin_explorer_alternative_title">Explorer Alternative</system:String> <system:String x:Key="plugin_explorer_alternative_title">Alternatywa dla Eksploratora</system:String>
<system:String x:Key="plugin_explorer_directoryinfosearch_error">Error occurred during search: {0}</system:String> <system:String x:Key="plugin_explorer_directoryinfosearch_error">Wystąpił błąd podczas wyszukiwania: {0}</system:String>
<system:String x:Key="plugin_explorer_opendir_error">Could not open folder</system:String> <system:String x:Key="plugin_explorer_opendir_error">Nie można otworzyć folderu</system:String>
<system:String x:Key="plugin_explorer_openfile_error">Could not open file</system:String> <system:String x:Key="plugin_explorer_openfile_error">Nie można otworzyć pliku</system:String>
<!-- Controls --> <!-- Controls -->
<system:String x:Key="plugin_explorer_delete">Usuń</system:String> <system:String x:Key="plugin_explorer_delete">Usuń</system:String>
<system:String x:Key="plugin_explorer_edit">Edytuj</system:String> <system:String x:Key="plugin_explorer_edit">Edytuj</system:String>
<system:String x:Key="plugin_explorer_add">Dodaj</system:String> <system:String x:Key="plugin_explorer_add">Dodaj</system:String>
<system:String x:Key="plugin_explorer_generalsetting_header">General Setting</system:String> <system:String x:Key="plugin_explorer_generalsetting_header">Ustawienia ogólne</system:String>
<system:String x:Key="plugin_explorer_manageactionkeywords_header">Customise Action Keywords</system:String> <system:String x:Key="plugin_explorer_manageactionkeywords_header">Zmień słowa kluczowe akcji</system:String>
<system:String x:Key="plugin_explorer_quickaccesslinks_header">Quick Access Links</system:String> <system:String x:Key="plugin_explorer_quickaccesslinks_header">Linki szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_everything_setting_header">Everything Setting</system:String> <system:String x:Key="plugin_explorer_everything_setting_header">Ustawienia Everything</system:String>
<system:String x:Key="plugin_explorer_previewpanel_setting_header">Preview Panel</system:String> <system:String x:Key="plugin_explorer_previewpanel_setting_header">Panel podglądu</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Rozmiar</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_size_checkbox">Rozmiar</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Date Created</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">Data utworzenia</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Date Modified</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">Data modyfikacji</system:String>
<system:String x:Key="plugin_explorer_previewpanel_file_info_label">Display File Info</system:String> <system:String x:Key="plugin_explorer_previewpanel_file_info_label">Wyświetl informacje o pliku</system:String>
<system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Date and time format</system:String> <system:String x:Key="plugin_explorer_previewpanel_date_and_time_format_label">Format daty i czasu</system:String>
<system:String x:Key="plugin_explorer_everything_sort_option">Sort Option:</system:String> <system:String x:Key="plugin_explorer_everything_sort_option">Opcje sortowania:</system:String>
<system:String x:Key="plugin_explorer_everything_installed_path">Everything Path:</system:String> <system:String x:Key="plugin_explorer_everything_installed_path">Ścieżka Everything:</system:String>
<system:String x:Key="plugin_explorer_launch_hidden">Launch Hidden</system:String> <system:String x:Key="plugin_explorer_launch_hidden">Uruchom w tle</system:String>
<system:String x:Key="plugin_explorer_editor_path">Ścieżka edytora</system:String> <system:String x:Key="plugin_explorer_editor_path">Ścieżka edytora</system:String>
<system:String x:Key="plugin_explorer_shell_path">Shell Path</system:String> <system:String x:Key="plugin_explorer_shell_path">Ścieżka powłoki</system:String>
<system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Index Search Excluded Paths</system:String> <system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Wykluczone ścieżki indeksu</system:String>
<system:String x:Key="plugin_explorer_use_location_as_working_dir">Use search result's location as the working directory of the executable</system:String> <system:String x:Key="plugin_explorer_use_location_as_working_dir">Użyj lokalizacji wyników wyszukiwania jako katalogu roboczego pliku wykonywalnego</system:String>
<system:String x:Key="plugin_explorer_default_open_in_file_manager">Hit Enter to open folder in Default File Manager</system:String> <system:String x:Key="plugin_explorer_default_open_in_file_manager">Naciśnij Enter, aby otworzyć folder w domyślnym menedżerze plików</system:String>
<system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Use Index Search For Path Search</system:String> <system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Użyj wyszukiwania indeksowego do przeszukiwania ścieżek</system:String>
<system:String x:Key="plugin_explorer_manageindexoptions">Indexing Options</system:String> <system:String x:Key="plugin_explorer_manageindexoptions">Opcje indeksowania</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_search">Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_search">Szukaj:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">Path Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">Szukaj w ścieżce:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">File Content Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">Przeszukiwanie zawartości plików:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Index Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Wyszukiwanie indeksowe:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Quick Access:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Szybki dostęp:</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_current">Current Action Keyword</system:String> <system:String x:Key="plugin_explorer_actionkeyword_current">Bieżące słowo kluczowe akcji</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_done">Zapisz</system:String> <system:String x:Key="plugin_explorer_actionkeyword_done">Zapisz</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled">Enabled</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled">Aktywny</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">When disabled Flow will not execute this search option, and will additionally revert back to '*' to free up the action keyword</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">Po wyłączeniu Flow nie będzie wykonywać tej opcji wyszukiwania, a dodatkowo przywróci '*', aby zwolnić słowo kluczowe akcji</system:String>
<system:String x:Key="plugin_explorer_engine_everything">Everything</system:String> <system:String x:Key="plugin_explorer_engine_everything">Everything</system:String>
<system:String x:Key="plugin_explorer_engine_windows_index">Windows Index</system:String> <system:String x:Key="plugin_explorer_engine_windows_index">Indeks Windows</system:String>
<system:String x:Key="plugin_explorer_path_enumeration_engine_none">Direct Enumeration</system:String> <system:String x:Key="plugin_explorer_path_enumeration_engine_none">Bezpośrednie wyliczanie</system:String>
<system:String x:Key="plugin_explorer_file_editor_path">Ścieżka edytora plików</system:String> <system:String x:Key="plugin_explorer_file_editor_path">Ścieżka edytora plików</system:String>
<system:String x:Key="plugin_explorer_folder_editor_path">Ścieżka edytora folderów</system:String> <system:String x:Key="plugin_explorer_folder_editor_path">Ścieżka edytora folderów</system:String>
<system:String x:Key="plugin_explorer_enabled">Enabled</system:String> <system:String x:Key="plugin_explorer_enabled">Aktywny</system:String>
<system:String x:Key="plugin_explorer_disabled">Disabled</system:String> <system:String x:Key="plugin_explorer_disabled">Wyłączony</system:String>
<system:String x:Key="plugin_explorer_Content_Search_Engine">Content Search Engine</system:String> <system:String x:Key="plugin_explorer_Content_Search_Engine">Wyszukiwarka zawartości</system:String>
<system:String x:Key="plugin_explorer_Directory_Recursive_Search_Engine">Directory Recursive Search Engine</system:String> <system:String x:Key="plugin_explorer_Directory_Recursive_Search_Engine">Rekurencyjna wyszukiwarka katalogów</system:String>
<system:String x:Key="plugin_explorer_Index_Search_Engine">Index Search Engine</system:String> <system:String x:Key="plugin_explorer_Index_Search_Engine">Wyszukiwarka zawartości</system:String>
<system:String x:Key="plugin_explorer_Open_Window_Index_Option">Open Windows Index Option</system:String> <system:String x:Key="plugin_explorer_Open_Window_Index_Option">Otwórz opcje indeksowania Windows</system:String>
<system:String x:Key="plugin_explorer_Excluded_File_Types">Excluded File Types (comma seperated)</system:String> <system:String x:Key="plugin_explorer_Excluded_File_Types">Wykluczone typy plików (oddzielone przecinkami)</system:String>
<system:String x:Key="plugin_explorer_Excluded_File_Types_Tooltip">For example: exe,jpg,png</system:String> <system:String x:Key="plugin_explorer_Excluded_File_Types_Tooltip">Na przykład: exe,jpg,png</system:String>
<system:String x:Key="plugin_explorer_Maximum_Results">Maximum results</system:String> <system:String x:Key="plugin_explorer_Maximum_Results">Maksymalna liczba wyników</system:String>
<system:String x:Key="plugin_explorer_Maximum_Results_Tooltip">The maximum number of results requested from active search engine</system:String> <system:String x:Key="plugin_explorer_Maximum_Results_Tooltip">Maksymalna liczba wyników żądanych przez aktywną wyszukiwarkę</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_explorer_plugin_name">Explorer</system:String> <system:String x:Key="plugin_explorer_plugin_name">Explorer</system:String>
<system:String x:Key="plugin_explorer_plugin_description">Find and manage files and folders via Windows Search or Everything</system:String> <system:String x:Key="plugin_explorer_plugin_description">Wyszukaj i zarządzaj plikami oraz folderami za pomocą Windows Search lub Everything</system:String>
<!-- Plugin Tooltip --> <!-- Plugin Tooltip -->
<system:String x:Key="plugin_explorer_plugin_ToolTipOpenDirectory">Ctrl + Enter to open the directory</system:String> <system:String x:Key="plugin_explorer_plugin_ToolTipOpenDirectory">Ctrl + Enter, aby otworzyć folder</system:String>
<system:String x:Key="plugin_explorer_plugin_ToolTipOpenContainingFolder">Ctrl + Enter to open the containing folder</system:String> <system:String x:Key="plugin_explorer_plugin_ToolTipOpenContainingFolder">Ctrl + Enter, aby otworzyć folder zawierający</system:String>
<!-- Context menu items --> <!-- Context menu items -->
<system:String x:Key="plugin_explorer_copypath">Copy path</system:String> <system:String x:Key="plugin_explorer_copypath">Skopiuj Ścieżkę</system:String>
<system:String x:Key="plugin_explorer_copypath_subtitle">Copy path of current item to clipboard</system:String> <system:String x:Key="plugin_explorer_copypath_subtitle">Kopiuj ścieżkę bieżącego elementu do schowka</system:String>
<system:String x:Key="plugin_explorer_copyfilefolder">Copy</system:String> <system:String x:Key="plugin_explorer_copyfilefolder">Kopiuj</system:String>
<system:String x:Key="plugin_explorer_copyfile_subtitle">Copy current file to clipboard</system:String> <system:String x:Key="plugin_explorer_copyfile_subtitle">Kopiuj bieżący plik do schowka</system:String>
<system:String x:Key="plugin_explorer_copyfolder_subtitle">Copy current folder to clipboard</system:String> <system:String x:Key="plugin_explorer_copyfolder_subtitle">Kopiuj bieżący folder do schowka</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder">Usu</system:String> <system:String x:Key="plugin_explorer_deletefilefolder">Usu</system:String>
<system:String x:Key="plugin_explorer_deletefile_subtitle">Permanently delete current file</system:String> <system:String x:Key="plugin_explorer_deletefile_subtitle">Trwale usuń bieżący plik</system:String>
<system:String x:Key="plugin_explorer_deletefolder_subtitle">Permanently delete current folder</system:String> <system:String x:Key="plugin_explorer_deletefolder_subtitle">Trwale usuń bieżący folder</system:String>
<system:String x:Key="plugin_explorer_path">Path:</system:String> <system:String x:Key="plugin_explorer_path">Ścieżka:</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Delete the selected</system:String> <system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Usuń zaznaczone</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser">Run as different user</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser">Uruchom jako inny użytkownik</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser_subtitle">Run the selected using a different user account</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser_subtitle">Uruchom wybrane używając innego konta użytkownika</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder">Open containing folder</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder">Otwórz folder nadrzędny</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder_subtitle">Open the location that contains current item</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder_subtitle">Otwórz lokalizację zawierającą bieżący element</system:String>
<system:String x:Key="plugin_explorer_openwitheditor">Open With Editor:</system:String> <system:String x:Key="plugin_explorer_openwitheditor">Otwórz w edytorze:</system:String>
<system:String x:Key="plugin_explorer_openwitheditor_error">Failed to open file at {0} with Editor {1} at {2}</system:String> <system:String x:Key="plugin_explorer_openwitheditor_error">Nie udało się otworzyć pliku {0} w edytorze {1} pod ścieżką {2}</system:String>
<system:String x:Key="plugin_explorer_openwithshell">Open With Shell:</system:String> <system:String x:Key="plugin_explorer_openwithshell">Otwórz za pomocą powłoki:</system:String>
<system:String x:Key="plugin_explorer_openwithshell_error">Failed to open folder {0} with Shell {1} at {2}</system:String> <system:String x:Key="plugin_explorer_openwithshell_error">Nie udało się otworzyć folderu {0} za pomocą powłoki {1} w {2}</system:String>
<system:String x:Key="plugin_explorer_excludefromindexsearch">Exclude current and sub-directories from Index Search</system:String> <system:String x:Key="plugin_explorer_excludefromindexsearch">Wyklucz bieżący i podkatalogi z wyszukiwania indeksowego</system:String>
<system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Excluded from Index Search</system:String> <system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Wykluczone z wyszukiwania indeksowego</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions">Open Windows Indexing Options</system:String> <system:String x:Key="plugin_explorer_openindexingoptions">Otwórz opcje indeksowania Windows</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions_subtitle">Manage indexed files and folders</system:String> <system:String x:Key="plugin_explorer_openindexingoptions_subtitle">Zarządzaj zindeksowanymi plikami i folderami</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions_errormsg">Failed to open Windows Indexing Options</system:String> <system:String x:Key="plugin_explorer_openindexingoptions_errormsg">Nie udało się otworzyć opcji indeksowania Windows</system:String>
<system:String x:Key="plugin_explorer_add_to_quickaccess_title">Add to Quick Access</system:String> <system:String x:Key="plugin_explorer_add_to_quickaccess_title">Dodaj do szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_add_to_quickaccess_subtitle">Add current item to Quick Access</system:String> <system:String x:Key="plugin_explorer_add_to_quickaccess_subtitle">Dodaj bieżący element do szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess">Successfully Added</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess">Pomyślnie dodano</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess_detail">Successfully added to Quick Access</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess_detail">Pomyślnie dodano do szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess">Successfully Removed</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess">Pomyślnie usunięto</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess_detail">Successfully removed from Quick Access</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess_detail">Pomyślnie usunięto z szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_contextmenu_titletooltip">Add to Quick Access so it can be opened with Explorer's Search Activation action keyword</system:String> <system:String x:Key="plugin_explorer_contextmenu_titletooltip">Dodaj do szybkiego dostępu, aby można było otworzyć za pomocą słowa kluczowego akcji aktywacji wyszukiwania Eksploratora</system:String>
<system:String x:Key="plugin_explorer_contextmenu_remove_titletooltip">Remove from Quick Access</system:String> <system:String x:Key="plugin_explorer_contextmenu_remove_titletooltip">Usunieto z szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_remove_from_quickaccess_title">Remove from Quick Access</system:String> <system:String x:Key="plugin_explorer_remove_from_quickaccess_title">Usunieto z szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_remove_from_quickaccess_subtitle">Remove current item from Quick Access</system:String> <system:String x:Key="plugin_explorer_remove_from_quickaccess_subtitle">Usuń bieżący element z szybkiego dostępu</system:String>
<system:String x:Key="plugin_explorer_show_contextmenu_title">Show Windows Context Menu</system:String> <system:String x:Key="plugin_explorer_show_contextmenu_title">Pokaż menu kontekstowe Windows</system:String>
<system:String x:Key="plugin_explorer_openwith">Open With</system:String> <system:String x:Key="plugin_explorer_openwith">Otwórz za pomocą</system:String>
<system:String x:Key="plugin_explorer_openwith_subtitle">Select a program to open with</system:String> <system:String x:Key="plugin_explorer_openwith_subtitle">Wybierz program do otwarcia</system:String>
<!-- Special Results --> <!-- Special Results -->
<system:String x:Key="plugin_explorer_diskfreespace">{0} free of {1}</system:String> <system:String x:Key="plugin_explorer_diskfreespace">{0} wolne z {1}</system:String>
<system:String x:Key="plugin_explorer_openresultfolder">Open in Default File Manager</system:String> <system:String x:Key="plugin_explorer_openresultfolder">Otwórz w domyślnym menedżerze plików</system:String>
<system:String x:Key="plugin_explorer_openresultfolder_subtitle"> <system:String x:Key="plugin_explorer_openresultfolder_subtitle">
Use '&gt;' to search in this directory, '*' to search for file extensions or '&gt;*' to combine both searches. Użyj '&gt;' aby przeszukać ten folder, '' aby wyszukać rozszerzenia plików lub '&gt;' aby połączyć oba wyszukiwania.
</system:String> </system:String>
<!-- Everything --> <!-- Everything -->
<system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Failed to load Everything SDK</system:String> <system:String x:Key="flowlauncher_plugin_everything_sdk_issue">Nie udało się załadować wszystkich SDK</system:String>
<system:String x:Key="flowlauncher_plugin_everything_is_not_running">Everything Service nie jest uruchomiony</system:String> <system:String x:Key="flowlauncher_plugin_everything_is_not_running">Everything Service nie jest uruchomiony</system:String>
<system:String x:Key="flowlauncher_plugin_everything_query_error">Wystąpił błąd podczas pobierania wyników z Everything</system:String> <system:String x:Key="flowlauncher_plugin_everything_query_error">Wystąpił błąd podczas pobierania wyników z Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by">Sort By</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by">Sortuj wg</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_name">Name</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_name">Nazwa</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_path">Path</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_path">Ścieżka</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_size">Rozmiar</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_size">Rozmiar</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_extension">Extension</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_extension">Rozszerzenia</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_type_name">Type Name</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_type_name">Nazwa typu</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">Date Created</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">Data utworzenia</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">Date Modified</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">Data modyfikacji</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">Attributes</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">Atrybuty</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_file_list_filename">File List FileName</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_file_list_filename">Nazwa pliku na liście plików</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_run_count">Run Count</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_run_count">Liczba uruchomień</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">Date Recently Changed</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">Data ostatniej zmiany</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">Date Accessed</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">Data dostępu</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">Date Run</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">Data uruchomienia</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_ascending">↑</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_ascending">↑</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_descending">↓</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_descending">↓</system:String>
<system:String x:Key="flowlauncher_plugin_everything_nonfastsort_warning">Warning: This is not a Fast Sort option, searches may be slow</system:String> <system:String x:Key="flowlauncher_plugin_everything_nonfastsort_warning">Uwaga: To nie jest opcja Szybkiego sortowania, wyszukiwania mogą być wolne</system:String>
<system:String x:Key="flowlauncher_plugin_everything_search_fullpath">Search Full Path</system:String> <system:String x:Key="flowlauncher_plugin_everything_search_fullpath">Wyszukaj pełną ścieżkę</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_run_count">Enable File/Folder Run Count</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_run_count">Włącz licznik uruchomień plików/folderów</system:String>
<system:String x:Key="flowlauncher_plugin_everything_click_to_launch_or_install">Click to launch or install Everything</system:String> <system:String x:Key="flowlauncher_plugin_everything_click_to_launch_or_install">Kliknij, aby uruchomić lub zainstalować Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_title">Everything Installation</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_title">Instalacja Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">Installing Everything service. Please wait...</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">Trwa instalacja usługi Everything. Proszę czekać...</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">Successfully installed Everything service</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">Pomyślnie zainstalowano usługę Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">Failed to automatically install Everything service. Please manually install it from https://www.voidtools.com</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">Nie udało się automatycznie zainstalować usługi Everything. Proszę zainstalować ją ręcznie z https://www.voidtools.com</system:String>
<system:String x:Key="flowlauncher_plugin_everything_run_service">Click here to start it</system:String> <system:String x:Key="flowlauncher_plugin_everything_run_service">Kliknij tutaj, aby rozpocząć</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_select">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</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_select">Nie można znaleźć instalacji programu Everything. Czy chcesz ręcznie wybrać lokalizację?{0}{0}Kliknij &quot;Nie&quot;, a program Everything zostanie automatycznie zainstalowany</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_content_search">Do you want to enable content search for Everything?</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_content_search">Czy chcesz włączyć wyszukiwanie zawartości dla programu Everything?</system:String>
<system:String x:Key="flowlauncher_plugin_everything_enable_content_search_tips">It can be very slow without index (which is only supported in Everything v1.5+)</system:String> <system:String x:Key="flowlauncher_plugin_everything_enable_content_search_tips">Może działać bardzo wolno bez indeksu (który jest obsługiwany tylko w Everything w wersji 1.5 i nowszych)</system:String>
<!-- Native Context Menu --> <!-- Native Context Menu -->
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Natywne menu kontekstowe</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Wyświetl natywne menu kontekstowe (eksperymentalne)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Poniżej możesz określić elementy, które chcesz uwzględnić w menu kontekstowym. Mogą być one częściowe (np. &quot;otw w&quot;) lub pełne (&quot;Otwórz za pomocą&quot;).</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Poniżej możesz określić elementy, które chcesz wykluczyć z menu kontekstowego. Mogą być one częściowe (np. &quot;otw w&quot;) lub pełne (&quot;Otwórz za pomocą&quot;).</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Natívna kontextová ponuka</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Natívna kontextová ponuka</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Zobraziť natívnu kontextovú ponuku (experimentálne)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Zobraziť natívnu kontextovú ponuku (experimentálne)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Nižšie môžete určiť položky, ktoré chcete zahrnúť do kontextovej ponuky, môžu byť čiastočné (napr. &quot;tvoriť v program&quot;) alebo úplné (&quot;Otvoriť v programe&quot;).</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Nižšie môžete určiť položky, ktoré chcete zahrnúť do kontextovej ponuky, môžu byť čiastočné (napr. &quot;tvoriť v program&quot;) alebo úplné (&quot;Otvoriť v programe&quot;).</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Nižšie môžete určiť položky, ktoré chcete vylúčiť z kontextovej ponuky, môžu byť čiastočné (napr. &quot;tvoriť v program&quot;) alebo úplné (&quot;Otvoriť v programe&quot;)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Nižšie môžete určiť položky, ktoré chcete vylúčiť z kontextovej ponuky, môžu byť čiastočné (napr. &quot;tvoriť v program&quot;) alebo úplné (&quot;Otvoriť v programe&quot;).</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,6 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Рідне контекстне меню</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Рідне контекстне меню</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Відображати рідне контекстне меню (експериментально)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Відображати рідне контекстне меню (експериментально)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Нижче ви можете вказати елементи, які хочете включити до контекстного меню, вони можуть бути частковими (наприклад, «шир пера») або повними («Відкрити за допомогою»).</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Нижче ви можете вказати елементи, які хочете включити до контекстного меню, вони можуть бути частковими (наприклад, «шир пера») або повними («Відкрити за допомогою»).</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Нижче ви можете вказати елементи, які хочете виключити з контекстного меню, вони можуть бути частковими (наприклад, «шир пера») або повними («Відкрити за допомогою»)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Нижче ви можете вказати елементи, які хочете виключити з контекстного меню, вони можуть бути частковими (наприклад, «шир пера») або повними («Відкрити за допомогою»).</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -161,5 +161,5 @@
<system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String> <system:String x:Key="plugin_explorer_native_context_menu_header">Native Context Menu</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String> <system:String x:Key="plugin_explorer_native_context_menu_display_context_menu">Display native context menu (experimental)</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String> <system:String x:Key="plugin_explorer_native_context_menu_include_patterns_guide">Below you can specify items you want to include in the context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
<system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with')</system:String> <system:String x:Key="plugin_explorer_native_context_menu_exclude_patterns_guide">Below you can specify items you want to exclude from context menu, they can be partial (e.g. 'pen wit') or complete ('Open with').</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -10,7 +10,7 @@
"Name": "Explorer", "Name": "Explorer",
"Description": "Find and manage files and folders via Windows Search or Everything", "Description": "Find and manage files and folders via Windows Search or Everything",
"Author": "Jeremy Wu", "Author": "Jeremy Wu",
"Version": "3.2.1", "Version": "3.2.3",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Explorer.dll", "ExecuteFileName": "Flow.Launcher.Plugin.Explorer.dll",

View file

@ -1,9 +1,9 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_pluginindicator_result_subtitle">Activate {0} plugin action keyword</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_result_subtitle">Plug-in-Aktions-Schlüsselwort {0} aktivieren</system:String>
<system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_name">Plugin Indikator</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_name">Plug-in-Indikator</system:String>
<system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_description">Stellt Vorschläge für Plugin-Befehle bereit</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_description">Bietet Vorschläge für Aktionswörter für Plug-ins</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,9 +1,9 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_pluginindicator_result_subtitle">Activate {0} plugin action keyword</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_result_subtitle">Aktiver {0} programtillegg-handlingsnøkkelord</system:String>
<system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_name">Plugin Indicator</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_name">Indikator for programtillegg</system:String>
<system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_description">Provides plugins action words suggestions</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_description">Viser forslag til handlingsord for programtillegg</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,9 +1,9 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_pluginindicator_result_subtitle">Activate {0} plugin action keyword</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_result_subtitle">Aktywuj słowo kluczowe akcji wtyczki {0}</system:String>
<system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_name">Plugin Indicator</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_name">Wskaźnik wtyczki</system:String>
<system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_description">Pokazuje podpowiedzi jakich zainstalowanych wtyczek możesz użyć</system:String> <system:String x:Key="flowlauncher_plugin_pluginindicator_plugin_description">Pokazuje podpowiedzi jakich zainstalowanych wtyczek możesz użyć</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -4,7 +4,7 @@
"Name": "Plugin Indicator", "Name": "Plugin Indicator",
"Description": "Provides plugin action keyword suggestions", "Description": "Provides plugin action keyword suggestions",
"Author": "qianlifeng", "Author": "qianlifeng",
"Version": "3.0.4", "Version": "3.0.6",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.PluginIndicator.dll", "ExecuteFileName": "Flow.Launcher.Plugin.PluginIndicator.dll",

View file

@ -2,62 +2,62 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Dialogues --> <!-- Dialogues -->
<system:String x:Key="plugin_pluginsmanager_downloading_plugin">Plugin wird heruntergeladen</system:String> <system:String x:Key="plugin_pluginsmanager_downloading_plugin">Plug-in wird heruntergeladen</system:String>
<system:String x:Key="plugin_pluginsmanager_download_success">Successfully downloaded</system:String> <system:String x:Key="plugin_pluginsmanager_download_success">Erfolgreich heruntergeladen {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_download_error">Fehler: Plugin konnte nicht heruntergeladen werden</system:String> <system:String x:Key="plugin_pluginsmanager_download_error">Fehler: Das Plug-in kann nicht heruntergeladen werden</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_prompt">{0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_prompt">{0} von {1} {2}{3}Möchten Sie dieses Plug-in deinstallieren? Nach der Deinstallation wird Flow automatisch neu gestartet.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_prompt_no_restart">{0} by {1} {2}{2}Would you like to uninstall this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_prompt_no_restart">{0} von {1} {2}{2}Möchten Sie dieses Plug-in deinstallieren?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_prompt">{0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_install_prompt">{0} von {1} {2}{3}Möchten Sie dieses Plug-in installieren? Nach der Installation wird Flow automatisch neu gestartet.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_prompt_no_restart">{0} by {1} {2}{2}Would you like to install this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_install_prompt_no_restart">{0} von {1} {2}{2}Möchten Sie dieses Plug-in installieren?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_title">Plugin-Installation</system:String> <system:String x:Key="plugin_pluginsmanager_install_title">Plug-in-Installation</system:String>
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Plugin wird installiert</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">{0} herunterladen und installieren</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">{0} herunterladen und installieren</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin-Deinstallation</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plug-in-Deinstallation</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin successfully installed. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plug-in {0} erfolgreich installiert. Flow wird neu gestartet, bitte warten Sie ...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Konnte die Metadaten-Datei plugin.json in der entpackten Zip-Datei nicht finden.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Die Metadaten-Datei plugin.json in der entpackten Zip-Datei kann nicht gefunden werden.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Fehler: Ein Plugin mit der gleichen oder größeren Version, {0}, existiert bereits.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Fehler: Ein Plug-in, welches die gleiche oder eine höhere Version mit {0} hat, ist bereits vorhanden.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_title">Fehler bei der Installation des Plugins</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_title">Fehler bei Installation des Plug-ins</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_subtitle">Error occurred while trying to install {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_subtitle">Beim Versuch, {0} zu installieren, ist ein Fehler aufgetreten</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Error uninstalling plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Fehler bei Deinstallation des Plug-ins</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_title">Kein Update verfügbar</system:String> <system:String x:Key="plugin_pluginsmanager_update_noresult_title">Kein Update verfügbar</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_subtitle">Alle Plugins sind aktuell</system:String> <system:String x:Key="plugin_pluginsmanager_update_noresult_subtitle">Alle Plug-ins sind auf dem neuesten Stand</system:String>
<system:String x:Key="plugin_pluginsmanager_update_prompt">{0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt">{0} von {1} {2}{3}Möchten Sie dieses Plug-in aktualisieren? Nach dem Update wird Flow automatisch neu gestartet.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} by {1} {2}{2}Would you like to update this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} von {1} {2}{2}Möchten Sie dieses Plugin aktualisieren?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_title">Plugin Update</system:String> <system:String x:Key="plugin_pluginsmanager_update_title">Plug-in-Update</system:String>
<system:String x:Key="plugin_pluginsmanager_update_alreadyexists">Dieses Plugin ist bereits installiert</system:String> <system:String x:Key="plugin_pluginsmanager_update_alreadyexists">Dieses Plug-in ist bereits installiert</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_title">Download der Plugin-Manifest-Datei fehlgeschlagen</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_title">Download des Plug-in-Manifests fehlgeschlagen</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_subtitle">Bitte überprüfen Sie, ob Sie sich mit github.com verbinden können. Dieser Fehler bedeutet, dass Sie möglicherweise keine Plugins installieren oder aktualisieren können.</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_subtitle">Bitte überprüfen Sie, ob Sie eine Verbindung zu github.com herstellen können. Dieser Fehler bedeutet, dass Sie möglicherweise nicht in der Lage sind, Plug-ins zu installieren oder zu aktualisieren.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_title">Update all plugins</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_title">Alle Plug-ins aktualisieren</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_subtitle">Would you like to update all plugins?</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_subtitle">Möchten Sie alle Plug-ins aktualisieren?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_prompt">Would you like to update {0} plugins?{1}Flow Launcher will restart after updating all plugins.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_prompt">Möchten Sie {0} Plug-ins aktualisieren?{1}Flow Launcher wird nach der Aktualisierung aller Plug-ins neu starten.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_prompt_no_restart">Would you like to update {0} plugins?</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_prompt_no_restart">Möchten Sie {0} Plug-ins aktualisieren?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_restart">{0} plugins successfully updated. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_restart">{0} Plug-ins erfolgreich aktualisiert. Flow wird neu gestartet, bitte warten Sie ...</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} successfully updated. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Plug-in {0} erfolgreich aktualisiert. Flow wird neu gestartet, bitte warten Sie ...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installation aus unbekannter Quelle</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installation aus unbekannter Quelle</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Sie installieren dieses Plugin aus einer unbekannten Quelle und es kann potenzielle Risiken enthalten!{0}{0}Bitte stellen Sie sicher, dass Sie verstehen, wo dieses Plugin herkommt und ob es sicher ist.{0}{0}Möchten Sie fortfahren?{0}{0}(Sie können diese Warnung über Einstellungen ausschalten)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Sie installieren dieses Plug-in aus einer unbekannten Quelle und es kann potenzielle Gefahren enthalten!{0}{0}Bitte stellen Sie sicher, dass Sie verstehen, woher dieses Plug-in stammt und dass es sicher ist.{0}{0}Möchten Sie dennoch fortfahren?{0}{0}(Sie können diese Warnung über die Einstellungen ausschalten)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plug-in {0} erfolgreich installiert. Bitte starten Sie Flow neu.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plug-in {0} erfolgreich deinstalliert. Bitte starten Sie Flow neu.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plug-in {0} erfolgreich aktualisiert. Bitte starten Sie Flow neu.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} Plug-ins erfolgreich aktualisiert. Bitte starten Sie Flow neu.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Plug-in {0} ist bereits modifiziert worden. Bitte starten Sie Flow neu, bevor Sie irgendwelche weitere Änderungen vornehmen.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Plugins verwalten</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Plug-ins-Manager</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Verwaltung der Installation, Deinstallation oder Aktualisierung von Flow Launcher Plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Verwaltung der Installation, Deinstallation oder Aktualisierung der Plug-ins von Flow Launcher</system:String>
<system:String x:Key="plugin_pluginsmanager_unknown_author">Unbekannter Autor</system:String> <system:String x:Key="plugin_pluginsmanager_unknown_author">Unbekannter Autor</system:String>
<!-- Context menu items --> <!-- Context menu items -->
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_title">Webseite öffnen</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_title">Website öffnen</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle">Besuche die Plugin-Webseite</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle">Besuchen Sie die Website des Plug-ins</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_title">Quellcode anzeigen</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_title">Siehe Quellcode</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_subtitle">Quellcode des Plugins ansehen</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_subtitle">Quellcode des Plug-ins ansehen</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_title">Verbesserung vorschlagen oder Fehler melden</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_title">Eine Verbesserung/ Erweiterung vorschlagen oder ein Problem einreichen</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_subtitle">Dem Plugin-Entwickler eine Verbesserung vorschlagen oder einen Fehler melden</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_subtitle">Eine Verbesserung/ Erweiterung vorschlagen oder ein Problem an den Plug-in-Entwickler einreichen</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title">Zu Flows Plugin-Verzeichnis gehen</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title">Gehe zu Plug-ins-Repository von Flow</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle">Visit the PluginsManifest repository to see community-made plugin submissions</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle">Besuchen Sie das PluginsManifest-Repository, um die von der Community eingereichten Plug-ins zu sehen</system:String>
<!-- Settings menu items --> <!-- Settings menu items -->
<system:String x:Key="plugin_pluginsmanager_plugin_settings_unknown_source">Warnung bei Installation aus unbekannter Quelle</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_settings_unknown_source">Warnung vor Installation aus unbekannter Quelle</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_settings_auto_restart">Automatically restart Flow Launcher after installing/uninstalling/updating plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_settings_auto_restart">Automatischer Neustart von Flow Launcher nach Installation/Deinstallation/Aktualisierung von Plug-ins</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,62 +2,62 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Dialogues --> <!-- Dialogues -->
<system:String x:Key="plugin_pluginsmanager_downloading_plugin">Downloading plugin</system:String> <system:String x:Key="plugin_pluginsmanager_downloading_plugin">Laster ned programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_download_success">Successfully downloaded</system:String> <system:String x:Key="plugin_pluginsmanager_download_success">Successfully downloaded</system:String>
<system:String x:Key="plugin_pluginsmanager_download_error">Error: Unable to download the plugin</system:String> <system:String x:Key="plugin_pluginsmanager_download_error">Feil: kan ikke laste ned programtillegget</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_prompt">{0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_prompt">{0} av {1} {2}{3}Ønsker du å avinstallere dette programtillegget? Flow vil starte automatisk på nytt etter avinstallasjonen.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_prompt_no_restart">{0} by {1} {2}{2}Would you like to uninstall this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_prompt_no_restart">{0} av {1} {2}{2}Vil du avinstallere dette programtillegget?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_prompt">{0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_install_prompt">{0} av {1} {2}{3}Ønsker du å installere dette programtillegget? Flow vil starte automatisk på nytt etter installasjonen.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_prompt_no_restart">{0} by {1} {2}{2}Would you like to install this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_install_prompt_no_restart">{0} av {1} {2}{2}Vil du installere dette programtillegget?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_title">Plugin Install</system:String> <system:String x:Key="plugin_pluginsmanager_install_title">Programtillegg installasjon</system:String>
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installerer programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Download and install {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Last ned og installer {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Programtillegg avinstallasjon</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin successfully installed. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin successfully installed. Restarting Flow, please wait...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Unable to find the plugin.json metadata file from the extracted zip file.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Kunne ikke finne filen plugin.json metadata fra utpakket zip-fil.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Error: A plugin which has the same or greater version with {0} already exists.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Feil: det finnes allerede et programtillegg som har samme eller større versjon med {0}.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_title">Error installing plugin</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_title">Feil ved installering av programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_subtitle">Error occurred while trying to install {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_subtitle">En feil oppstod under forsøk på å installere {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Error uninstalling plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Feil ved avinstallering av programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_title">No update available</system:String> <system:String x:Key="plugin_pluginsmanager_update_noresult_title">Ingen oppdatering tilgjengelig</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_subtitle">All plugins are up to date</system:String> <system:String x:Key="plugin_pluginsmanager_update_noresult_subtitle">Alle programtillegg er oppdatert</system:String>
<system:String x:Key="plugin_pluginsmanager_update_prompt">{0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt">{0} av {1} {2}{3}Ønsker du å oppdatere dette programtillegget? Flow vil starte automatisk på nytt etter oppdateringen.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} by {1} {2}{2}Would you like to update this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} av {1} {2}{2}Vil du oppdatere dette programtillegget?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_title">Plugin Update</system:String> <system:String x:Key="plugin_pluginsmanager_update_title">Oppdatering av programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_update_alreadyexists">This plugin is already installed</system:String> <system:String x:Key="plugin_pluginsmanager_update_alreadyexists">Dette programtillegget er allerede installert</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_title">Plugin Manifest Download Failed</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_title">Nedlasting av manifest for programtillegg mislyktes</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_subtitle">Please check if you can connect to github.com. This error means you may not be able to install or update plugins.</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_subtitle">Vennligst sjekk om du kan koble til github.com. Denne feilen betyr at det kan hende du ikke kan installere eller oppdatere programtillegg.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_title">Update all plugins</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_title">Oppdater alle programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_subtitle">Would you like to update all plugins?</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_subtitle">Ønsker du å oppdatere alle programtillegg?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_prompt">Would you like to update {0} plugins?{1}Flow Launcher will restart after updating all plugins.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_prompt">Ønsker du å oppdatere {0} programtillegg?{1}Flow Launcher vil starte på nytt etter å ha oppdatert alle programtillegg.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_prompt_no_restart">Would you like to update {0} plugins?</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_prompt_no_restart">Ønsker du å oppdatere {0} programtillegg?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_restart">{0} plugins successfully updated. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_restart">{0} programtillegg er oppdatert. Starter Flow på nytt, vennligst vent...</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} successfully updated. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Programtillegg {0} oppdatert. Starter Flow på nytt, vennligst vent...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installing from an unknown source</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installerer fra en ukjent kilde</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">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)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Du installerer dette tillegget fra en ukjent kilde og det kan inneholde potensielle risikoer!{0}{0}Forsikre deg om at du forstår hvor denne utvidelsen er fra og at den er sikker.{0}{0}Vil du fortsette å gjøre?{0}{0}(Du kan slå av denne advarselen via innstillinger)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Programtillegg {0} installert. Vennligst start Flow på nytt.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Programtillegg {0} avinstallert. Vennligst start Flow på nytt.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Programtillegg {0} oppdatert. Vennligst restart Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} programtillegg oppdatert. Start Flow på nytt.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Programtillegg {0} er allerede endret. Start Flow på nytt før nye endringer foretas.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Plugins Manager</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Programtilleggsbehandling</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Management of installing, uninstalling or updating Flow Launcher plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Administrasjon av installasjon, avinstallere eller oppdatere Flow Launcher programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_unknown_author">Unknown Author</system:String> <system:String x:Key="plugin_pluginsmanager_unknown_author">Ukjent utvikler</system:String>
<!-- Context menu items --> <!-- Context menu items -->
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_title">Open website</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_title">Åpne nettsted</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle">Visit the plugin's website</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle">Besøk programtilleggets nettsted</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_title">See source code</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_title">Se kildekoden</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_subtitle">See the plugin's source code</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_subtitle">Se programtilleggets kildekode</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_title">Suggest an enhancement or submit an issue</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_title">Foreslå en forbedring eller send inn en sak</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_subtitle">Suggest an enhancement or submit an issue to the plugin developer</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_subtitle">Foreslå en forbedring eller send inn en sak til utvikleren av programtillegget</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title">Go to Flow's plugins repository</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title">Gå til Flows programtilleggskodelager</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle">Visit the PluginsManifest repository to see community-made plugin submissions</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle">Besøk PluginsManifest-kodelageret for å se innsendinger av programtillegg fra fellesskapet</system:String>
<!-- Settings menu items --> <!-- Settings menu items -->
<system:String x:Key="plugin_pluginsmanager_plugin_settings_unknown_source">Install from unknown source warning</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_settings_unknown_source">Advarsel om installering fra ukjent kilde</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_settings_auto_restart">Automatically restart Flow Launcher after installing/uninstalling/updating plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_settings_auto_restart">Start Flow Launcher automatisk på nytt etter installasjon/avinstallering/oppdatering av programtillegg</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,62 +2,62 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Dialogues --> <!-- Dialogues -->
<system:String x:Key="plugin_pluginsmanager_downloading_plugin">Downloading plugin</system:String> <system:String x:Key="plugin_pluginsmanager_downloading_plugin">Pobieranie wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_download_success">Successfully downloaded</system:String> <system:String x:Key="plugin_pluginsmanager_download_success">Successfully downloaded</system:String>
<system:String x:Key="plugin_pluginsmanager_download_error">Error: Unable to download the plugin</system:String> <system:String x:Key="plugin_pluginsmanager_download_error">Błąd: Nie udało się pobrać wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_prompt">{0} by {1} {2}{3}Would you like to uninstall this plugin? After the uninstallation Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_prompt">{0} autorstwa {1} {2}{3}Czy chcesz odinstalować tę wtyczkę? Po odinstalowaniu Flow automatycznie uruchomi się ponownie.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_prompt_no_restart">{0} by {1} {2}{2}Would you like to uninstall this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_prompt_no_restart">{0} autorstwa {1} {2}{2}Czy chcesz odinstalować tę wtyczkę?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_prompt">{0} by {1} {2}{3}Would you like to install this plugin? After the installation Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_install_prompt">{0} autorstwa {1} {2}{3}Czy chcesz zainstalować tę wtyczkę? Po instalacji Flow automatycznie uruchomi się ponownie.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_prompt_no_restart">{0} by {1} {2}{2}Would you like to install this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_install_prompt_no_restart">{0} autorstwa {1} {2}{2}Czy chcesz zainstalować tę wtyczkę?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_title">Plugin Install</system:String> <system:String x:Key="plugin_pluginsmanager_install_title">Instalacja wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalowanie wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Download and install {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Pobierz i zainstaluj {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Odinstalowanie wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin successfully installed. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin successfully installed. Restarting Flow, please wait...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Unable to find the plugin.json metadata file from the extracted zip file.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Nie można znaleźć pliku metadanych plugin.json z rozpakowanego pliku zip.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Error: A plugin which has the same or greater version with {0} already exists.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Błąd: Wtyczka o tej samej lub wyższej wersji co {0} już istnieje.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_title">Error installing plugin</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_title">Błąd podczas instalacji wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_subtitle">Error occurred while trying to install {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_subtitle">Wystąpił błąd podczas próby instalacji {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Error uninstalling plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Błąd podczas odinstalowywania wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_title">No update available</system:String> <system:String x:Key="plugin_pluginsmanager_update_noresult_title">Brak dostępnych aktualizacji</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_subtitle">All plugins are up to date</system:String> <system:String x:Key="plugin_pluginsmanager_update_noresult_subtitle">Wszystkie wtyczki są aktualne</system:String>
<system:String x:Key="plugin_pluginsmanager_update_prompt">{0} by {1} {2}{3}Would you like to update this plugin? After the update Flow will automatically restart.</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt">{0} autorstwa {1} {2}{3}Czy chcesz zaktualizować tę wtyczkę? Po aktualizacji Flow automatycznie uruchomi się ponownie.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} by {1} {2}{2}Would you like to update this plugin?</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} autorstwa {1} {2}{2}Czy chcesz zaktualizować tę wtyczkę?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_title">Plugin Update</system:String> <system:String x:Key="plugin_pluginsmanager_update_title">Aktualizacja wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_update_alreadyexists">This plugin is already installed</system:String> <system:String x:Key="plugin_pluginsmanager_update_alreadyexists">Ta wtyczka jest już zainstalowana</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_title">Plugin Manifest Download Failed</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_title">Nie udało się pobrać manifestu wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_subtitle">Please check if you can connect to github.com. This error means you may not be able to install or update plugins.</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_subtitle">Sprawdź, czy masz połączenie z github.com. Ten błąd oznacza, że możesz nie być w stanie instalować lub aktualizować wtyczek.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_title">Update all plugins</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_title">Zaktualizuj wszystkie wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_subtitle">Would you like to update all plugins?</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_subtitle">Czy chcesz zaktualizować wszystkie wtyczki?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_prompt">Would you like to update {0} plugins?{1}Flow Launcher will restart after updating all plugins.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_prompt">Czy chcesz zaktualizować {0} wtyczek?{1}Flow Launcher uruchomi się ponownie po zaktualizowaniu wszystkich wtyczek.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_prompt_no_restart">Would you like to update {0} plugins?</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_prompt_no_restart">Czy chcesz zaktualizować {0} wtyczek?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_restart">{0} plugins successfully updated. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_restart">{0} wtyczek zaktualizowano pomyślnie. Ponowne uruchamianie Flow, proszę czekać...</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} successfully updated. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Wtyczka {0} została pomyślnie zaktualizowana. Ponowne uruchamianie Flow, proszę czekać...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installing from an unknown source</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalowanie z nieznanego źródła</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">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)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Instalujesz tę wtyczkę z nieznanego źródła i może ona stanowić potencjalne zagrożenie!{0}{0}Upewnij się, że rozumiesz, skąd pochodzi ta wtyczka i że jest ona bezpieczna.{0}{0}Czy mimo to chcesz kontynuować?{0}{0}(Możesz wyłączyć to ostrzeżenie w ustawieniach)&quot;</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Wtyczka {0} została pomyślnie zainstalowana. Proszę ponownie uruchomić Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Wtyczka {0} została pomyślnie odinstalowana. Proszę ponownie uruchomić Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Wtyczka {0} została pomyślnie zaktualizowana. Proszę ponownie uruchomić Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} wtyczek zaktualizowano pomyślnie. Proszę ponownie uruchomić Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Wtyczka {0} została już zmodyfikowana. Proszę ponownie uruchomić Flow przed wprowadzeniem dalszych zmian.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Plugins Manager</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Menadżer wtyczek</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Management of installing, uninstalling or updating Flow Launcher plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Zarządzanie instalowaniem, odinstalowywaniem i aktualizowaniem wtyczek Flow Launcher</system:String>
<system:String x:Key="plugin_pluginsmanager_unknown_author">Unknown Author</system:String> <system:String x:Key="plugin_pluginsmanager_unknown_author">Nieznany autor</system:String>
<!-- Context menu items --> <!-- Context menu items -->
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_title">Open website</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_title">Otwórz stronę</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle">Visit the plugin's website</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle">Odwiedź stronę wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_title">See source code</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_title">Zobacz kod źródłowy</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_subtitle">See the plugin's source code</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_gotosourcecode_subtitle">Zobacz kod źródłowy wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_title">Suggest an enhancement or submit an issue</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_title">Zaproponuj ulepszenie lub zgłoś problem</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_subtitle">Suggest an enhancement or submit an issue to the plugin developer</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_newissue_subtitle">Zaproponuj ulepszenie lub zgłoś problem do twórcy wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title">Go to Flow's plugins repository</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title">Przejdź do repozytorium wtyczek Flow</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle">Visit the PluginsManifest repository to see community-made plugin submissions</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle">Odwiedź repozytorium PluginsManifest, aby zobaczyć wtyczki społeczności</system:String>
<!-- Settings menu items --> <!-- Settings menu items -->
<system:String x:Key="plugin_pluginsmanager_plugin_settings_unknown_source">Install from unknown source warning</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_settings_unknown_source">Ostrzeżenie o instalacji z nieznanego źródła</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_settings_auto_restart">Automatically restart Flow Launcher after installing/uninstalling/updating plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_settings_auto_restart">Automatycznie uruchom ponownie Flow Launcher po zainstalowaniu/odinstalowaniu/zaktualizowaniu wtyczek</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -206,8 +206,8 @@ namespace Flow.Launcher.Plugin.PluginsManager
} }
var updateSource = !updateFromLocalPath var updateSource = !updateFromLocalPath
? PluginsManifest.UserPlugins ? PluginsManifest.UserPlugins
: new List<UserPlugin> { pluginFromLocalPath }; : new List<UserPlugin> { pluginFromLocalPath };
var resultsForUpdate = ( var resultsForUpdate = (
from existingPlugin in Context.API.GetAllPlugins() from existingPlugin in Context.API.GetAllPlugins()
@ -327,7 +327,6 @@ namespace Flow.Launcher.Plugin.PluginsManager
}, TaskContinuationOptions.OnlyOnFaulted); }, TaskContinuationOptions.OnlyOnFaulted);
return true; return true;
}, },
ContextData = ContextData =
new UserPlugin new UserPlugin
@ -513,7 +512,8 @@ namespace Flow.Launcher.Plugin.PluginsManager
{ {
if (!InstallSourceKnown(plugin.Website) if (!InstallSourceKnown(plugin.Website)
&& MessageBox.Show(string.Format( && MessageBox.Show(string.Format(
Context.API.GetTranslation("plugin_pluginsmanager_install_unknown_source_warning"), Context.API.GetTranslation(
"plugin_pluginsmanager_install_unknown_source_warning"),
Environment.NewLine), Environment.NewLine),
Context.API.GetTranslation( Context.API.GetTranslation(
"plugin_pluginsmanager_install_unknown_source_warning_title"), "plugin_pluginsmanager_install_unknown_source_warning_title"),
@ -532,7 +532,12 @@ namespace Flow.Launcher.Plugin.PluginsManager
private bool InstallSourceKnown(string url) private bool InstallSourceKnown(string url)
{ {
var author = url.Split('/')[3]; var pieces = url.Split('/');
if (pieces.Length < 4)
return false;
var author = pieces[3];
var acceptedSource = "https://github.com"; var acceptedSource = "https://github.com";
var constructedUrlPart = string.Format("{0}/{1}/", acceptedSource, author); var constructedUrlPart = string.Format("{0}/{1}/", acceptedSource, author);

View file

@ -6,7 +6,7 @@
"Name": "Plugins Manager", "Name": "Plugins Manager",
"Description": "Management of installing, uninstalling or updating Flow Launcher plugins", "Description": "Management of installing, uninstalling or updating Flow Launcher plugins",
"Author": "Jeremy Wu", "Author": "Jeremy Wu",
"Version": "3.2.1", "Version": "3.2.3",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.PluginsManager.dll", "ExecuteFileName": "Flow.Launcher.Plugin.PluginsManager.dll",

View file

@ -1,11 +1,11 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_processkiller_plugin_name">Process Killer</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_plugin_name">Prosessterminerer</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_plugin_description">Kill running processes from Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_plugin_description">Terminer kjørende prosesser fra Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_kill_all">kill all instances of &quot;{0}&quot;</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_kill_all">terminer alle forekomster av &quot;{0}&quot;</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_kill_all_count">kill {0} processes</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_kill_all_count">terminer {0} processes</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_kill_instances">kill all instances</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_kill_instances">terminer alle forekomstene</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,11 +1,11 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_processkiller_plugin_name">Process Killer</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_plugin_name">Zamykacz procesów</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_plugin_description">Kill running processes from Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_plugin_description">Zamykaj uruchomione procesy z poziomu Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_kill_all">kill all instances of &quot;{0}&quot;</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_kill_all">zamknij wszystkie instancje &quot;{0}&quot;</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_kill_all_count">kill {0} processes</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_kill_all_count">zamknij {0} procesów</system:String>
<system:String x:Key="flowlauncher_plugin_processkiller_kill_instances">kill all instances</system:String> <system:String x:Key="flowlauncher_plugin_processkiller_kill_instances">zamknij wszystkie instancje</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -4,7 +4,7 @@
"Name":"Process Killer", "Name":"Process Killer",
"Description":"Kill running processes from Flow", "Description":"Kill running processes from Flow",
"Author":"Flow-Launcher", "Author":"Flow-Launcher",
"Version":"3.0.6", "Version":"3.0.7",
"Language":"csharp", "Language":"csharp",
"Website":"https://github.com/Flow-Launcher/Flow.Launcher.Plugin.ProcessKiller", "Website":"https://github.com/Flow-Launcher/Flow.Launcher.Plugin.ProcessKiller",
"IcoPath":"Images\\app.png", "IcoPath":"Images\\app.png",

View file

@ -60,7 +60,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="ini-parser" Version="2.5.2" /> <PackageReference Include="ini-parser" Version="2.5.2" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" /> <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -2,7 +2,7 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Program setting --> <!-- Program setting -->
<system:String x:Key="flowlauncher_plugin_program_reset">إعادة الضبط الافتراضي</system:String> <system:String x:Key="flowlauncher_plugin_program_reset">إعادة الوضع الإفتراضي</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete">حذف</system:String> <system:String x:Key="flowlauncher_plugin_program_delete">حذف</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit">تعديل</system:String> <system:String x:Key="flowlauncher_plugin_program_edit">تعديل</system:String>
<system:String x:Key="flowlauncher_plugin_program_add">إضافة</system:String> <system:String x:Key="flowlauncher_plugin_program_add">إضافة</system:String>
@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">مستكشف مخصص</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">مستكشف مخصص</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">وسيطات</system:String> <system:String x:Key="flowlauncher_plugin_program_args">وسيطات</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">يمكنك تخصيص المستكشف المستخدم لفتح المجلد المحتوي عن طريق إدخال متغير البيئة للمستكشف الذي تريد استخدامه. سيكون من المفيد استخدام CMD لاختبار ما إذا كان متغير البيئة متاحًا.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">يمكنك تخصيص المستكشف المستخدم لفتح مجلد الحاوية عن طريق إدخال المتغير البيئي للمستكشف الذي تريد استخدامه. سيكون من المفيد استخدام CMD لاختبار ما إذا كان المتغير البيئي متاحًا.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">أدخل الوسيطات المخصصة التي تريد إضافتها لمستكشفك المخصص. %s للدليل الأصل، %f للمسار الكامل (الذي يعمل فقط مع win32). راجع موقع المستكشف الإلكتروني للحصول على التفاصيل.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">أدخل الوسيطات المخصصة التي تريد إضافتها لمستكشفك المخصص. %s للدليل الأصل، %f للمسار الكامل (الذي يعمل فقط مع win32). راجع موقع المستكشف الإلكتروني للحصول على التفاصيل.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -83,6 +83,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Vlastní Průzkumník</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Vlastní Průzkumník</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Arg</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Arg</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Umístění úvodní složky můžete upravit vložením proměnných prostředí, které chcete použít. Dostupnost proměnných prostředí můžete otestovat pomocí příkazového řádku.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Umístění úvodní složky můžete upravit vložením proměnných prostředí, které chcete použít. Dostupnost proměnných prostředí můžete otestovat pomocí příkazového řádku.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Zadejte argumenty, které chcete přidat pro správce souborů. %s pro nadřazenou složku, %f pro úplnou cestu (funguje pouze pro win32). Podrobnosti naleznete na webové stránce správce souborů.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Zadejte argumenty, které chcete přidat pro správce souborů. %s pro nadřazenou složku, %f pro úplnou cestu (funguje pouze pro win32). Podrobnosti naleznete na webové stránce správce souborů.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -2,7 +2,7 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Program setting --> <!-- Program setting -->
<system:String x:Key="flowlauncher_plugin_program_reset">Auf Standardeinstellungen zurücksetzen</system:String> <system:String x:Key="flowlauncher_plugin_program_reset">Auf Default zurücksetzen</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete">Löschen</system:String> <system:String x:Key="flowlauncher_plugin_program_delete">Löschen</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit">Bearbeiten</system:String> <system:String x:Key="flowlauncher_plugin_program_edit">Bearbeiten</system:String>
<system:String x:Key="flowlauncher_plugin_program_add">Hinzufügen</system:String> <system:String x:Key="flowlauncher_plugin_program_add">Hinzufügen</system:String>
@ -13,12 +13,12 @@
<system:String x:Key="flowlauncher_plugin_program_status">Status</system:String> <system:String x:Key="flowlauncher_plugin_program_status">Status</system:String>
<system:String x:Key="flowlauncher_plugin_program_true">Aktiviert</system:String> <system:String x:Key="flowlauncher_plugin_program_true">Aktiviert</system:String>
<system:String x:Key="flowlauncher_plugin_program_false">Deaktiviert</system:String> <system:String x:Key="flowlauncher_plugin_program_false">Deaktiviert</system:String>
<system:String x:Key="flowlauncher_plugin_program_location">Speicherort</system:String> <system:String x:Key="flowlauncher_plugin_program_location">Ort</system:String>
<system:String x:Key="flowlauncher_plugin_program_all_programs">Alle Programme</system:String> <system:String x:Key="flowlauncher_plugin_program_all_programs">Alle Programme</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes">Dateityp</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes">Dateityp</system:String>
<system:String x:Key="flowlauncher_plugin_program_reindex">erneut Indexieren</system:String> <system:String x:Key="flowlauncher_plugin_program_reindex">Neu indizieren</system:String>
<system:String x:Key="flowlauncher_plugin_program_indexing">Indexieren</system:String> <system:String x:Key="flowlauncher_plugin_program_indexing">Indexierung</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_source">Index Sources</system:String> <system:String x:Key="flowlauncher_plugin_program_index_source">Indexquellen</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_option">Optionen</system:String> <system:String x:Key="flowlauncher_plugin_program_index_option">Optionen</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_uwp">UWP-Apps</system:String> <system:String x:Key="flowlauncher_plugin_program_index_uwp">UWP-Apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_uwp_tooltip">Wenn aktiviert, wird Flow UWP-Anwendungen laden</system:String> <system:String x:Key="flowlauncher_plugin_program_index_uwp_tooltip">Wenn aktiviert, wird Flow UWP-Anwendungen laden</system:String>
@ -28,67 +28,67 @@
<system:String x:Key="flowlauncher_plugin_program_index_registry_tooltip">Wenn aktiviert, wird Flow Programme aus der Registry laden</system:String> <system:String x:Key="flowlauncher_plugin_program_index_registry_tooltip">Wenn aktiviert, wird Flow Programme aus der Registry laden</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_PATH">PATH</system:String> <system:String x:Key="flowlauncher_plugin_program_index_PATH">PATH</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_PATH_tooltip">Wenn aktiviert, wird Flow Programme aus der PATH-Umgebungsvariable laden</system:String> <system:String x:Key="flowlauncher_plugin_program_index_PATH_tooltip">Wenn aktiviert, wird Flow Programme aus der PATH-Umgebungsvariable laden</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath">App-Pfad verstecken</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath">App-Pfad ausblenden</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath_tooltip">Für ausführbare Dateien wie UWP oder lnk Dateipfad ausblenden</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath_tooltip">Für ausführbare Dateien wie UWP oder lnk den Dateipfad nicht mehr sichtbar machen</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Deinstallationsprogramme ausblenden</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Uninstaller ausblenden</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Versteckt Programme mit gängigen Deinstallationsprogramm-Namen, wie unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Versteckt Programme mit gängigen Uninstaller-Namen, wie unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">In Programmbeschreibung suchen</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">In Programmbeschreibung suchen</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow wird die Programmbeschreibung durchsuchen</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow wird in Programmbeschreibung suchen</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Endungen</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixe</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maximale Tiefe</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maximale Tiefe</system:String>
<system:String x:Key="flowlauncher_plugin_program_directory">Verzeichnis:</system:String> <system:String x:Key="flowlauncher_plugin_program_directory">Verzeichnis</system:String>
<system:String x:Key="flowlauncher_plugin_program_browse">Durchsuchen</system:String> <system:String x:Key="flowlauncher_plugin_program_browse">Durchsuchen</system:String>
<system:String x:Key="flowlauncher_plugin_program_file_suffixes">Dateiendungen:</system:String> <system:String x:Key="flowlauncher_plugin_program_file_suffixes">Dateisuffixe:</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_search_depth">Maximale Suchtiefe (-1 ist unlimitiert):</system:String> <system:String x:Key="flowlauncher_plugin_program_max_search_depth">Maximale Suchtiefe (-1 ist unlimitiert):</system:String>
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Bitte wähle eine Programmquelle</system:String> <system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Bitte wählen Sie eine Programmquelle aus</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete_program_source">Are you sure you want to delete the selected program sources?</system:String> <system:String x:Key="flowlauncher_plugin_program_delete_program_source">Sind Sie sicher, dass Sie die ausgewählten Programmquellen löschen wollen?</system:String>
<system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Another program source with the same location already exists.</system:String> <system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Eine andere Programmquelle mit dem gleichen Ort ist bereits vorhanden.</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Program Source</system:String> <system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Programmquelle</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_tips">Edit directory and status of this program source.</system:String> <system:String x:Key="flowlauncher_plugin_program_edit_program_source_tips">Verzeichnis und Status dieser Programmquelle bearbeiten.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Aktualisieren</system:String> <system:String x:Key="flowlauncher_plugin_program_update">Aktualisieren</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Program Plugin will only index files with selected suffixes and .url files with selected protocols.</system:String> <system:String x:Key="flowlauncher_plugin_program_only_index_tip">Das Programm Plug-in indiziert nur Dateien mit ausgewählten Suffixen und .url-Dateien mit ausgewählten Protokollen.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Dateiendungen wurden erfolgreich aktualisiert</system:String> <system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Dateisuffixe erfolgreich aktualisiert</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Dateiendungen dürfen nicht leer sein</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Dateisuffixe dürfen nicht leer sein</system:String>
<system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protocols can't be empty</system:String> <system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protokolle dürfen nicht leer sein</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_executable_types">Indexiere Dateiendungen</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_executable_types">Dateisuffixe</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">URL Protocols</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">URL-Protokolle</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_steam">Steam Games</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_steam">Steam Games</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_epic">Epic Games</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_epic">Epic Games</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_http">Http/Https</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_http">Http/Https</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_custom_urls">Custom URL Protocols</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_custom_urls">Benutzerdefinierte URL-Protokolle</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_custom_file_types">Benutzerdefinierte Dateiendungen</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_custom_file_types">Benutzerdefinierte Dateisuffixe</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_tooltip"> <system:String x:Key="flowlauncher_plugin_program_suffixes_tooltip">
Fügen Sie Dateiendungen ein, die Sie indizieren möchten, ein. Die Dateiendungen sollten durch ';' getrennt werden. (z.B.&gt;bat;py) Fügen Sie Suffixe ein, die Sie indizieren möchten, ein. Suffixe sollten durch ';' getrennt werden. (z.B.&gt;bat;py)
</system:String> </system:String>
<system:String x:Key="flowlauncher_plugin_program_protocol_tooltip"> <system:String x:Key="flowlauncher_plugin_program_protocol_tooltip">
Insert protocols of .url files you want to index. Protocols should be separated by ';', and should end with &quot;://&quot;. (ex&gt;ftp://;mailto://) Fügen Sie Protokolle von .url-Dateien ein, die Sie indizieren möchten. Protokolle sollten durch ';' getrennt werden und mit &quot;://&quot; enden. (ex&gt;ftp://;mailto://)
</system:String> </system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Als anderer Benutzer ausführen</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Als anderer Benutzer ausführen</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Als Administrator ausführen</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Als Administrator ausführen</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Enthaltenden Ordner öffnen</system:String> <system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Enthaltenden Ordner öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_program">Dieses Programm nicht anzeigen</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_program">Dieses Programm von der Anzeige deaktivieren</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_target_folder">Öffne Zielverzeichnis</system:String> <system:String x:Key="flowlauncher_plugin_program_open_target_folder">Zielordner öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Programm</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_name">Programm</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Suche Programme mit Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_description">Programme in Flow Launcher suchen</system:String>
<system:String x:Key="flowlauncher_plugin_program_invalid_path">Ungültiger Pfad</system:String> <system:String x:Key="flowlauncher_plugin_program_invalid_path">Pfad ungültig</system:String>
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Benutzerdefinierter Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Individuell angepasster Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Argumente</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Sie können den zum Öffnen des Containerordners verwendeten Explorer individuell anpassen, indem Sie die Umgebungsvariable des von Ihnen verwendenden Explorers eingeben. Es ist sinnvoll, CMD zu verwenden, um zu testen, ob die Umgebungsvariable verfügbar ist.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Geben Sie die benutzerdefinierten Args ein, die Sie für Ihren individuell angepassten Explorer hinzufügen möchten. %s für übergeordnetes Verzeichnis, %f für vollständigen Pfad (was nur für Win32 funktioniert). Details finden Sie auf der Website des Explorers.</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">Erfolgreich</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">Erfolg</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_error">Fehler</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_error">Fehler</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success_message">Successfully disabled this program from displaying in your query</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success_message">Dieses Programm wurde erfolgreich von der Anzeige in Ihrer Abfrage deaktiviert</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator_not_supported_message">Diese App ist nicht zur Ausführung als Administrator gedacht</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator_not_supported_message">Diese App ist nicht zur Ausführung als Administrator gedacht</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_failed">{0} kann nicht ausgeführt werden</system:String> <system:String x:Key="flowlauncher_plugin_program_run_failed">{0} kann nicht ausgeführt werden</system:String>

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Explorador personalizado</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Explorador personalizado</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Argumentos</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Argumentos</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Puede personalizar el explorador utilizado para abrir la carpeta contenedor introduciendo la Variable de entorno del explorador que desea utilizar. Será útil usar CMD para probar si la Variable de entorno está disponible.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Puede personalizar el explorador utilizado para abrir la carpeta contenedora introduciendo la Variable de Entorno del explorador que desea utilizar. Para comprobar si la Variable de Entorno está disponible, puede utilizar CMD.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Introduzca los argumentos personalizados que desea agregar para el explorador personalizado. %s para carpeta contenedora, %f para ruta completa (solo funciona para win32). Consulte la página web del explorador para obtener más detalles.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Introduzca los argumentos personalizados que desea agregar para el explorador personalizado. %s para carpeta contenedora, %f para ruta completa (solo funciona para win32). Consulte la página web del explorador para obtener más detalles.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -71,8 +71,8 @@
<system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Exécuter en tant qu'utilisateur différent</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Exécuter en tant qu'utilisateur différent</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Exécuter en tant qu'administrateur</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Exécuter en tant qu'administrateur</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Ouvrir le répertoire</system:String> <system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Ouvrir l'emplacement du fichier</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_program">Désactiver l'affichage de ce programme</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_program">Masquer ce programme des résultats</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_target_folder">Ouvrir le répertoire cible</system:String> <system:String x:Key="flowlauncher_plugin_program_open_target_folder">Ouvrir le répertoire cible</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Programme</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_name">Programme</system:String>

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Esplora Risorse personalizzato</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Esplora Risorse personalizzato</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Parametri</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Parametri</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Inserisci i parametri personalizzati che vuoi aggiungere per il tuo Esplora Risorse personalizzato. %s per la cartella superiore, %f per il percorso completo (che funziona solo per win32). Controlla il sito dell'Esplora Risorse per i dettagli.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Inserisci i parametri personalizzati che vuoi aggiungere per il tuo Esplora Risorse personalizzato. %s per la cartella superiore, %f per il percorso completo (che funziona solo per win32). Controlla il sito dell'Esplora Risorse per i dettagli.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -2,94 +2,94 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Program setting --> <!-- Program setting -->
<system:String x:Key="flowlauncher_plugin_program_reset">Reset Default</system:String> <system:String x:Key="flowlauncher_plugin_program_reset">Tilbakestill standard</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete">Delete</system:String> <system:String x:Key="flowlauncher_plugin_program_delete">Slett</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit">Edit</system:String> <system:String x:Key="flowlauncher_plugin_program_edit">Rediger</system:String>
<system:String x:Key="flowlauncher_plugin_program_add">Add</system:String> <system:String x:Key="flowlauncher_plugin_program_add">Legg til</system:String>
<system:String x:Key="flowlauncher_plugin_program_name">Name</system:String> <system:String x:Key="flowlauncher_plugin_program_name">Navn</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable">Enable</system:String> <system:String x:Key="flowlauncher_plugin_program_enable">Aktiver</system:String>
<system:String x:Key="flowlauncher_plugin_program_enabled">Enabled</system:String> <system:String x:Key="flowlauncher_plugin_program_enabled">Aktivert</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable">Disable</system:String> <system:String x:Key="flowlauncher_plugin_program_disable">Deaktiver</system:String>
<system:String x:Key="flowlauncher_plugin_program_status">Status</system:String> <system:String x:Key="flowlauncher_plugin_program_status">Status</system:String>
<system:String x:Key="flowlauncher_plugin_program_true">Enabled</system:String> <system:String x:Key="flowlauncher_plugin_program_true">Aktivert</system:String>
<system:String x:Key="flowlauncher_plugin_program_false">Disabled</system:String> <system:String x:Key="flowlauncher_plugin_program_false">Deaktivert</system:String>
<system:String x:Key="flowlauncher_plugin_program_location">Location</system:String> <system:String x:Key="flowlauncher_plugin_program_location">Plassering</system:String>
<system:String x:Key="flowlauncher_plugin_program_all_programs">All Programs</system:String> <system:String x:Key="flowlauncher_plugin_program_all_programs">Alle programmer</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes">File Type</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes">Filtype</system:String>
<system:String x:Key="flowlauncher_plugin_program_reindex">Reindex</system:String> <system:String x:Key="flowlauncher_plugin_program_reindex">Indekser på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_program_indexing">Indexing</system:String> <system:String x:Key="flowlauncher_plugin_program_indexing">Indekserer</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_source">Index Sources</system:String> <system:String x:Key="flowlauncher_plugin_program_index_source">Indeks kilder</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_option">Options</system:String> <system:String x:Key="flowlauncher_plugin_program_index_option">Alternativer</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_uwp">UWP Apps</system:String> <system:String x:Key="flowlauncher_plugin_program_index_uwp">UWP-apper</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_uwp_tooltip">When enabled, Flow will load UWP Applications</system:String> <system:String x:Key="flowlauncher_plugin_program_index_uwp_tooltip">Når aktivert, vil Flow laste UWP-applikasjoner</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_start">Start Menu</system:String> <system:String x:Key="flowlauncher_plugin_program_index_start">Startmeny</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_start_tooltip">When enabled, Flow will load programs from the start menu</system:String> <system:String x:Key="flowlauncher_plugin_program_index_start_tooltip">Når aktivert, vil Flow laste programmer fra startmenyen</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_registry">Registry</system:String> <system:String x:Key="flowlauncher_plugin_program_index_registry">Registeret</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_registry_tooltip">When enabled, Flow will load programs from the registry</system:String> <system:String x:Key="flowlauncher_plugin_program_index_registry_tooltip">Når aktivert, vil Flow laste programmer fra registeret</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_PATH">PATH</system:String> <system:String x:Key="flowlauncher_plugin_program_index_PATH">BANE</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_PATH_tooltip">When enabled, Flow will load programs from the PATH environment variable</system:String> <system:String x:Key="flowlauncher_plugin_program_index_PATH_tooltip">Når aktivert, vil Flow laste programmer fra BANE-miljøvariabelen</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath">Hide app path</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath">Skjul app-banen</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath_tooltip">For executable files such as UWP or lnk, hide the file path from being visible</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath_tooltip">For kjørbare filer som for eksempel UWP eller lnk, skjul filbanen fra å være synlig</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Hide uninstallers</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Skjul avinstalleringsprogrammer</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Hides programs with common uninstaller names, such as unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Skjuler programmer med samme navn til avinstalleringer, for eksempel unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Search in Program Description</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Søk i programbeskrivelse</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow will search program's description</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow vil søke i programmets beskrivelse</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffikser</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Max Depth</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maks dybde</system:String>
<system:String x:Key="flowlauncher_plugin_program_directory">Directory</system:String> <system:String x:Key="flowlauncher_plugin_program_directory">Katalog</system:String>
<system:String x:Key="flowlauncher_plugin_program_browse">Browse</system:String> <system:String x:Key="flowlauncher_plugin_program_browse">Bla</system:String>
<system:String x:Key="flowlauncher_plugin_program_file_suffixes">File Suffixes:</system:String> <system:String x:Key="flowlauncher_plugin_program_file_suffixes">Filendelser:</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_search_depth">Maximum Search Depth (-1 is unlimited):</system:String> <system:String x:Key="flowlauncher_plugin_program_max_search_depth">Maks søkedybde (-1 er ubegrenset):</system:String>
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Please select a program source</system:String> <system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Vennligst velg en programkilde</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete_program_source">Are you sure you want to delete the selected program sources?</system:String> <system:String x:Key="flowlauncher_plugin_program_delete_program_source">Er du sikker på at du vil slette de valgte programkildene?</system:String>
<system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Another program source with the same location already exists.</system:String> <system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Det finnes allerede en annen programkilde med samme plassering.</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Program Source</system:String> <system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Programkilde</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_tips">Edit directory and status of this program source.</system:String> <system:String x:Key="flowlauncher_plugin_program_edit_program_source_tips">Rediger katalog og status for denne programkilden.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Update</system:String> <system:String x:Key="flowlauncher_plugin_program_update">Oppdater</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Program Plugin will only index files with selected suffixes and .url files with selected protocols.</system:String> <system:String x:Key="flowlauncher_plugin_program_only_index_tip">Programtillegg vil bare indeksere filer med valgte endelser og .url filer med valgte protokoller.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Successfully updated file suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Vellykket oppdatering av filendelser</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">File suffixes can't be empty</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Filendelser kan ikke være tomme</system:String>
<system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protocols can't be empty</system:String> <system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protokoller kan ikke være tomme</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_executable_types">File Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_executable_types">Filendelser</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">URL Protocols</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">URL-protokoller</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_steam">Steam Games</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_steam">Steam-spill</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_epic">Epic Games</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_epic">Epic-spill</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_http">Http/Https</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_http">Http/Https</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_custom_urls">Custom URL Protocols</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_custom_urls">Egendefinerte URL-protokoller</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_custom_file_types">Custom File Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_custom_file_types">Egendefinerte filendelser</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_tooltip"> <system:String x:Key="flowlauncher_plugin_program_suffixes_tooltip">
Insert file suffixes you want to index. Suffixes should be separated by ';'. (ex&gt;bat;py) Sett inn filendelser du vil indeksere. Suffikser skal skilles med ';'. (eks&gt;bat;py)
</system:String> </system:String>
<system:String x:Key="flowlauncher_plugin_program_protocol_tooltip"> <system:String x:Key="flowlauncher_plugin_program_protocol_tooltip">
Insert protocols of .url files you want to index. Protocols should be separated by ';', and should end with &quot;://&quot;. (ex&gt;ftp://;mailto://) Sett inn protokoller for .url-filer du vil indeksere. Protokoller skal skilles med ';', og skal slutte med &quot;://&quot;. (eks&gt;ftp://;mailto://)
</system:String> </system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Run As Different User</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Kjør som en annen bruker</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Run As Administrator</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Kjør som administrator</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Open containing folder</system:String> <system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Åpne inneholdende mappe</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_program">Disable this program from displaying</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_program">Deaktiver visningen av dette programmet</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_target_folder">Open target folder</system:String> <system:String x:Key="flowlauncher_plugin_program_open_target_folder">Åpne målmappe</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Search programs in Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_description">Søk etter programmer i Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_program_invalid_path">Invalid Path</system:String> <system:String x:Key="flowlauncher_plugin_program_invalid_path">Ugyldig bane</system:String>
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Tilpasset utforsker</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Argumenter</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Du kan tilpasse utforskeren som brukes til å åpne beholdermappen, ved å skrive inn miljøvariabelen for utforskeren du vil bruke. Det vil være nyttig å bruke CMD for å teste om miljøvariabelen er tilgjengelig.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Skriv inn de tilpassede argumentene du vil legge til for din tilpassede utforsker. %s for overordnet katalog, %f for full bane (som bare fungerer for win32). Sjekk utforskerens nettsted for detaljer.</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">Success</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">Vellykket</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_error">Error</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_error">Feil</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success_message">Successfully disabled this program from displaying in your query</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success_message">Deaktiverte dette programmet fra å vises i spørringen din</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator_not_supported_message">This app is not intended to be run as administrator</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator_not_supported_message">Denne appen er ikke ment å kjøre som administrator</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_failed">Unable to run {0}</system:String> <system:String x:Key="flowlauncher_plugin_program_run_failed">Kan ikke kjøre {0}</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -2,38 +2,38 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Program setting --> <!-- Program setting -->
<system:String x:Key="flowlauncher_plugin_program_reset">Reset Default</system:String> <system:String x:Key="flowlauncher_plugin_program_reset">Przywróć domyślne</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete">Usuń</system:String> <system:String x:Key="flowlauncher_plugin_program_delete">Usuń</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit">Edytuj</system:String> <system:String x:Key="flowlauncher_plugin_program_edit">Edytuj</system:String>
<system:String x:Key="flowlauncher_plugin_program_add">Dodaj</system:String> <system:String x:Key="flowlauncher_plugin_program_add">Dodaj</system:String>
<system:String x:Key="flowlauncher_plugin_program_name">Name</system:String> <system:String x:Key="flowlauncher_plugin_program_name">Nazwa</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable">Aktywne</system:String> <system:String x:Key="flowlauncher_plugin_program_enable">Aktywne</system:String>
<system:String x:Key="flowlauncher_plugin_program_enabled">Enabled</system:String> <system:String x:Key="flowlauncher_plugin_program_enabled">Aktywny</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable">Disable</system:String> <system:String x:Key="flowlauncher_plugin_program_disable">Wyłącz</system:String>
<system:String x:Key="flowlauncher_plugin_program_status">Status</system:String> <system:String x:Key="flowlauncher_plugin_program_status">Status</system:String>
<system:String x:Key="flowlauncher_plugin_program_true">Enabled</system:String> <system:String x:Key="flowlauncher_plugin_program_true">Aktywny</system:String>
<system:String x:Key="flowlauncher_plugin_program_false">Disabled</system:String> <system:String x:Key="flowlauncher_plugin_program_false">Wyłączony</system:String>
<system:String x:Key="flowlauncher_plugin_program_location">Lokalizacja</system:String> <system:String x:Key="flowlauncher_plugin_program_location">Lokalizacja</system:String>
<system:String x:Key="flowlauncher_plugin_program_all_programs">All Programs</system:String> <system:String x:Key="flowlauncher_plugin_program_all_programs">Wszystkie programy</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes">File Type</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes">Typ pliku</system:String>
<system:String x:Key="flowlauncher_plugin_program_reindex">Re-indeksuj</system:String> <system:String x:Key="flowlauncher_plugin_program_reindex">Re-indeksuj</system:String>
<system:String x:Key="flowlauncher_plugin_program_indexing">Indeksowanie</system:String> <system:String x:Key="flowlauncher_plugin_program_indexing">Indeksowanie</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_source">Index Sources</system:String> <system:String x:Key="flowlauncher_plugin_program_index_source">Źródła indeksu</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_option">Options</system:String> <system:String x:Key="flowlauncher_plugin_program_index_option">Opcje</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_uwp">UWP Apps</system:String> <system:String x:Key="flowlauncher_plugin_program_index_uwp">Aplikacje UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_uwp_tooltip">When enabled, Flow will load UWP Applications</system:String> <system:String x:Key="flowlauncher_plugin_program_index_uwp_tooltip">Po włączeniu Flow załaduje aplikacje UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_start">Start Menu</system:String> <system:String x:Key="flowlauncher_plugin_program_index_start">Menu Start</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_start_tooltip">When enabled, Flow will load programs from the start menu</system:String> <system:String x:Key="flowlauncher_plugin_program_index_start_tooltip">Gdy opcja ta jest włączona, Flow będzie ładować programy z menu Start</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_registry">Registry</system:String> <system:String x:Key="flowlauncher_plugin_program_index_registry">Rejestr</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_registry_tooltip">When enabled, Flow will load programs from the registry</system:String> <system:String x:Key="flowlauncher_plugin_program_index_registry_tooltip">Gdy opcja ta jest włączona, Flow będzie ładować programy z rejestru</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_PATH">PATH</system:String> <system:String x:Key="flowlauncher_plugin_program_index_PATH">PATH</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_PATH_tooltip">When enabled, Flow will load programs from the PATH environment variable</system:String> <system:String x:Key="flowlauncher_plugin_program_index_PATH_tooltip">Gdy opcja ta jest włączona, Flow będzie ładować programy ze zmiennej środowiskowej PATH</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath">Hide app path</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath">Ukryj ścieżkę aplikacji</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath_tooltip">For executable files such as UWP or lnk, hide the file path from being visible</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hidelnkpath_tooltip">Dla plików wykonywalnych, takich jak UWP lub lnk, ukryj widoczną ścieżkę pliku</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Hide uninstallers</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Ukryj deinstalatory</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Hides programs with common uninstaller names, such as unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Ukrywa programy z typowymi nazwami deinstalatorów, takimi jak unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Search in Program Description</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Szukaj w opisie programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow will search program's description</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow będzie przeszukiwać opisy programów</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Rozszerzenia</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Rozszerzenia</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maksymalna głębokość</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maksymalna głębokość</system:String>
@ -43,53 +43,53 @@
<system:String x:Key="flowlauncher_plugin_program_max_search_depth">Maksymalna głębokość wyszukiwania (-1 to nieograniczona):</system:String> <system:String x:Key="flowlauncher_plugin_program_max_search_depth">Maksymalna głębokość wyszukiwania (-1 to nieograniczona):</system:String>
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Musisz wybrać katalog programu</system:String> <system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Musisz wybrać katalog programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_delete_program_source">Are you sure you want to delete the selected program sources?</system:String> <system:String x:Key="flowlauncher_plugin_program_delete_program_source">Czy na pewno chcesz usunąć wybrane źródła programów?</system:String>
<system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Another program source with the same location already exists.</system:String> <system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Inne źródło programu z tą samą lokalizacją już istnieje.</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Program Source</system:String> <system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Źródło programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_tips">Edit directory and status of this program source.</system:String> <system:String x:Key="flowlauncher_plugin_program_edit_program_source_tips">Edytuj katalog i status tego źródła programu.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Aktualizuj</system:String> <system:String x:Key="flowlauncher_plugin_program_update">Aktualizuj</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Program Plugin will only index files with selected suffixes and .url files with selected protocols.</system:String> <system:String x:Key="flowlauncher_plugin_program_only_index_tip">Wtyczka programu będzie indeksować tylko pliki z wybranymi sufiksami oraz pliki .url z wybranymi protokołami.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Pomyślnie zaktualizowano rozszerzenia plików</system:String> <system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Pomyślnie zaktualizowano rozszerzenia plików</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Musisz podać rozszerzenia plików</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Musisz podać rozszerzenia plików</system:String>
<system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protocols can't be empty</system:String> <system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protokoły nie mogą być puste</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_executable_types">Rozszerzenia indeksowanych plików</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_executable_types">Rozszerzenia indeksowanych plików</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">URL Protocols</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">Protokoły URL</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_steam">Steam Games</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_steam">Gry Steam</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_epic">Epic Games</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_epic">Epic Games</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_http">Http/Https</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_URL_http">Http/Https</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_custom_urls">Custom URL Protocols</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_custom_urls">Niestandardowe protokoły URL</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_custom_file_types">Custom File Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_custom_file_types">Niestandardowe rozszerzenia plików</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_tooltip"> <system:String x:Key="flowlauncher_plugin_program_suffixes_tooltip">
Insert file suffixes you want to index. Suffixes should be separated by ';'. (ex&gt;bat;py) Wpisz rozszerzenia plików, które chcesz indeksować. Rozszerzenia powinny być oddzielone średnikiem ';'. (np. bat;py)
</system:String> </system:String>
<system:String x:Key="flowlauncher_plugin_program_protocol_tooltip"> <system:String x:Key="flowlauncher_plugin_program_protocol_tooltip">
Insert protocols of .url files you want to index. Protocols should be separated by ';', and should end with &quot;://&quot;. (ex&gt;ftp://;mailto://) Wpisz protokoły plików .url, które chcesz indeksować. Protokoły powinny być oddzielone średnikiem ';' i kończyć się &quot;://&quot;. (np. ftp://;mailto://)
</system:String> </system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Run As Different User</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_different_user">Uruchom jako inny użytkownik</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Uruchom jako administrator</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator">Uruchom jako administrator</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Open containing folder</system:String> <system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Otwórz folder nadrzędny</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_program">Disable this program from displaying</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_program">Wyłącz wyświetlanie tego programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_open_target_folder">Open target folder</system:String> <system:String x:Key="flowlauncher_plugin_program_open_target_folder">Otwórz folder docelowy</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Programy</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_name">Programy</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Szukaj i uruchamiaj programy z poziomu Flow Launchera</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_description">Szukaj i uruchamiaj programy z poziomu Flow Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_program_invalid_path">Invalid Path</system:String> <system:String x:Key="flowlauncher_plugin_program_invalid_path">Nieprawidłowa ścieżka</system:String>
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Spersonalizowany Eksplorator</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Możesz dostosować eksplorator używany do otwierania folderu nadrzędnego, wprowadzając zmienną środowiskową wybranego eksploratora. Warto użyć wiersza poleceń (CMD), aby sprawdzić, czy zmienna środowiskowa jest dostępna.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Wprowadź niestandardowe argumenty, które chcesz dodać do spersonalizowanego eksploratora. %s dla katalogu nadrzędnego, %f dla pełnej ścieżki (działa tylko dla win32). Sprawdź stronę internetową eksploratora, aby uzyskać szczegółowe informacje.</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">Sukces</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">Sukces</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_error">Error</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_error">Błąd</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success_message">Successfully disabled this program from displaying in your query</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success_message">Pomyślnie wyłączono wyświetlanie tego programu w zapytaniu</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_as_administrator_not_supported_message">This app is not intended to be run as administrator</system:String> <system:String x:Key="flowlauncher_plugin_program_run_as_administrator_not_supported_message">Ta aplikacja nie jest przeznaczona do uruchomienia jako administrator</system:String>
<system:String x:Key="flowlauncher_plugin_program_run_failed">Unable to run {0}</system:String> <system:String x:Key="flowlauncher_plugin_program_run_failed">Nie można uruchomić {0}</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Parâmetros</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Parâmetros</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -83,6 +83,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Настраиваемый проводник</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Настраиваемый проводник</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Аргументы</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Аргументы</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Вы можете настроить проводник, используемый для открытия папки контейнера, введя переменную окружения проводника, который вы хотите использовать. Будет полезно использовать командную строку для проверки доступности переменной среды.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Вы можете настроить проводник, используемый для открытия папки контейнера, введя переменную окружения проводника, который вы хотите использовать. Будет полезно использовать командную строку для проверки доступности переменной среды.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Введите настраиваемые аргументы, которые вы хотите добавить для вашего настраиваемого проводника. %s для родительского каталога, %f для полного пути (работает только для win32). Подробности смотрите на сайте проводника.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Введите настраиваемые аргументы, которые вы хотите добавить для вашего настраиваемого проводника. %s для родительского каталога, %f для полного пути (работает только для win32). Подробности смотрите на сайте проводника.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -83,6 +83,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Кастомізований провідник</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Кастомізований провідник</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Аргументи</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Аргументи</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Ви можете налаштувати провідник, який використовується для відкриття теки контейнера, ввівши змінну середовища провідника, який ви хочете використовувати. Буде корисно скористатися командою CMD для перевірки доступності змінної середовища.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Ви можете налаштувати провідник, який використовується для відкриття теки контейнера, ввівши змінну середовища провідника, який ви хочете використовувати. Буде корисно скористатися командою CMD для перевірки доступності змінної середовища.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Введіть спеціальні аргументи, які ви хочете додати до вашого провідника. %s для батьківського каталогу, %f для повного шляху (працює лише для win32). Докладнішу інформацію можна знайти на веб-сайті провідника.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Введіть спеціальні аргументи, які ви хочете додати до вашого провідника. %s для батьківського каталогу, %f для повного шляху (працює лише для win32). Докладнішу інформацію можна знайти на веб-сайті провідника.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -83,6 +83,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Trình khám phá tùy chỉnh</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Trình khám phá tùy chỉnh</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Đối số</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Đối số</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Bạn có thể tùy chỉnh trình thám hiểm được sử dụng để mở thư mục vùng chứa bằng cách nhập Biến môi trường của trình khám phá mà bạn muốn sử dụng. Sẽ rất hữu ích khi sử dụng CMD để kiểm tra xem Biến môi trường có sẵn hay không.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">Bạn có thể tùy chỉnh trình thám hiểm được sử dụng để mở thư mục vùng chứa bằng cách nhập Biến môi trường của trình khám phá mà bạn muốn sử dụng. Sẽ rất hữu ích khi sử dụng CMD để kiểm tra xem Biến môi trường có sẵn hay không.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Nhập các đối số tùy chỉnh mà bạn muốn thêm cho trình khám phá tùy chỉnh của mình. %s cho thư mục mẹ, %f cho đường dẫn đầy đủ (chỉ hoạt động với win32). Kiểm tra trang web của nhà thám hiểm để biết chi tiết.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Nhập các đối số tùy chỉnh mà bạn muốn thêm cho trình khám phá tùy chỉnh của mình. %s cho thư mục mẹ, %f cho đường dẫn đầy đủ (chỉ hoạt động với win32). Kiểm tra trang web của nhà thám hiểm để biết chi tiết.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">自定义资源管理器</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">自定义资源管理器</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">参数</system:String> <system:String x:Key="flowlauncher_plugin_program_args">参数</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">您可以通过输入要使用的资源管理器的环境变量来自定义用于打开文件夹的资源管理器。 使用CMD来测试环境变量是否可用。</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">您可以通过输入要使用的资源管理器的环境变量来自定义用于打开容器文件夹的资源管理器。使用 CMD 测试环境变量是否可用将很有用。</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">输入要为自定义资源管理器添加的自定义参数。 %s代表父目录%f代表完整路径仅适用于win32。 检查资源管理器的网站以获取详细信息。</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">输入要为自定义资源管理器添加的自定义参数。 %s代表父目录%f代表完整路径仅适用于win32。 检查资源管理器的网站以获取详细信息。</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -82,7 +82,7 @@
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">Args</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customized the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_customizedexplorer">You can customize the explorer used for opening the container folder by inputing the Environmental Variable of the explorer you want to use. It will be useful to use CMD to test whether the Environmental Variable is available.</system:String>
<system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Enter the customized args you want to add for your customized explorer. %s for parent directory, %f for full path (which only works for win32). Check the explorer's website for details.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -60,15 +60,26 @@ namespace Flow.Launcher.Plugin.Program
var result = await cache.GetOrCreateAsync(query.Search, async entry => var result = await cache.GetOrCreateAsync(query.Search, async entry =>
{ {
var resultList = await Task.Run(() => var resultList = await Task.Run(() =>
_win32s.Cast<IProgram>() {
.Concat(_uwps) try
.AsParallel() {
.WithCancellation(token) return _win32s.Cast<IProgram>()
.Where(HideUninstallersFilter) .Concat(_uwps)
.Where(p => p.Enabled) .AsParallel()
.Select(p => p.Result(query.Search, Context.API)) .WithCancellation(token)
.Where(r => r?.Score > 0) .Where(HideUninstallersFilter)
.ToList()); .Where(p => p.Enabled)
.Select(p => p.Result(query.Search, Context.API))
.Where(r => r?.Score > 0)
.ToList();
}
catch (OperationCanceledException)
{
Log.Debug("|Flow.Launcher.Plugin.Program.Main|Query operation cancelled");
return emptyResults;
}
}, token);
resultList = resultList.Any() ? resultList : emptyResults; resultList = resultList.Any() ? resultList : emptyResults;

View file

@ -4,7 +4,7 @@
"Name": "Program", "Name": "Program",
"Description": "Search programs in Flow.Launcher", "Description": "Search programs in Flow.Launcher",
"Author": "qianlifeng", "Author": "qianlifeng",
"Version": "3.3.1", "Version": "3.3.3",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Program.dll", "ExecuteFileName": "Flow.Launcher.Plugin.Program.dll",

View file

@ -1,17 +1,17 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Ersetzt Win+R</system:String> <system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Win+R ersetzen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_close_cmd_after_press">Close Command Prompt after pressing any key</system:String> <system:String x:Key="flowlauncher_plugin_cmd_close_cmd_after_press">Eingabeaufforderung nach Drücken einer beliebigen Taste schließen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_press_any_key_to_close">Press any key to close this window...</system:String> <system:String x:Key="flowlauncher_plugin_cmd_press_any_key_to_close">Drücken Sie eine beliebige Taste, um dieses Fenster zu schließen ...</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Schließe die Kommandozeilte nicht nachdem der Befehl ausgeführt wurde</system:String> <system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Eingabeaufforderung nach Befehlsausführung nicht schließen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Immer als Administrator ausführen</system:String> <system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Immer als Administrator ausführen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Als anderer Benutzer ausführen</system:String> <system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Als anderer Benutzer ausführen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Kommandozeile</system:String> <system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Shell</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Allows to execute system commands from Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Ermöglicht das Ausführen von Systembefehlen aus Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">Dieser Befehl wurde {0} mal ausgeführt</system:String> <system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">Dieser Befehl ist {0} mal ausgeführt worden</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">Führe Befehle mittels Kommandozeile aus</system:String> <system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">Befehl über Befehls-Shell ausführen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Als Administrator ausführen</system:String> <system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Als Administrator ausführen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_copy">Copy the command</system:String> <system:String x:Key="flowlauncher_plugin_cmd_copy">Kopieren des Befehls</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_history">Only show number of most used commands:</system:String> <system:String x:Key="flowlauncher_plugin_cmd_history">Nur Anzahl der am meisten verwendeten Befehle zeigen:</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,17 +1,17 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Replace Win+R</system:String> <system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Erstatt Win+R</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_close_cmd_after_press">Close Command Prompt after pressing any key</system:String> <system:String x:Key="flowlauncher_plugin_cmd_close_cmd_after_press">Lukk ledetekst etter å ha trykket på en hvilken som helst tast</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_press_any_key_to_close">Press any key to close this window...</system:String> <system:String x:Key="flowlauncher_plugin_cmd_press_any_key_to_close">Trykk på en tast for å lukke dette vinduet...</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Do not close Command Prompt after command execution</system:String> <system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Ikke lukk ledeteksten etter utførelse av kommandoen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Always run as administrator</system:String> <system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Kjør alltid som administrator</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Run as different user</system:String> <system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Kjør som annen bruker</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Shell</system:String> <system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Skall</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Allows to execute system commands from Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Lar deg utføre systemkommandoer fra Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">this command has been executed {0} times</system:String> <system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">denne kommandoen har blitt utført {0} ganger</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">execute command through command shell</system:String> <system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">utfør kommando via kommandoskall</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Run As Administrator</system:String> <system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Kjør som administrator</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_copy">Copy the command</system:String> <system:String x:Key="flowlauncher_plugin_cmd_copy">Kopier kommandoen</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_history">Only show number of most used commands:</system:String> <system:String x:Key="flowlauncher_plugin_cmd_history">Vis bare antall mest brukte kommandoer:</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,16 +2,16 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Zastąp Win+R</system:String> <system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Zastąp Win+R</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_close_cmd_after_press">Close Command Prompt after pressing any key</system:String> <system:String x:Key="flowlauncher_plugin_cmd_close_cmd_after_press">Zamknij wiersz poleceń po naciśnięciu dowolnego przycisku</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_press_any_key_to_close">Press any key to close this window...</system:String> <system:String x:Key="flowlauncher_plugin_cmd_press_any_key_to_close">Naciśnij dowolny przycisk, aby zamknąć to okno...</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Nie zamykaj wiersza poleceń po wykonaniu polecenia</system:String> <system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Nie zamykaj wiersza poleceń po wykonaniu polecenia</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Always run as administrator</system:String> <system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Zawsze uruchamiaj jako administrator</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Run as different user</system:String> <system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Uruchom jako inny użytkownik</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Wiersz poleceń</system:String> <system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Wiersz poleceń</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Allows to execute system commands from Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Umożliwia wykonywanie poleceń systemowych z poziomu Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">to polecenie zostało wykonane {0} razy</system:String> <system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">to polecenie zostało wykonane {0} razy</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">wykonaj to polecenie w wierszu poleceń</system:String> <system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">wykonaj to polecenie w wierszu poleceń</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Uruchom jako administrator</system:String> <system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Uruchom jako administrator</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_copy">Copy the command</system:String> <system:String x:Key="flowlauncher_plugin_cmd_copy">Skopiuj komendę</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_history">Only show number of most used commands:</system:String> <system:String x:Key="flowlauncher_plugin_cmd_history">Pokaż tylko liczbę najczęściej używanych poleceń:</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -4,7 +4,7 @@
"Name": "Shell", "Name": "Shell",
"Description": "Provide executing commands from Flow Launcher", "Description": "Provide executing commands from Flow Launcher",
"Author": "qianlifeng", "Author": "qianlifeng",
"Version": "3.2.2", "Version": "3.2.4",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Shell.dll", "ExecuteFileName": "Flow.Launcher.Plugin.Shell.dll",

View file

@ -7,57 +7,57 @@
<system:String x:Key="flowlauncher_plugin_sys_shutdown_computer_cmd">Herunterfahren</system:String> <system:String x:Key="flowlauncher_plugin_sys_shutdown_computer_cmd">Herunterfahren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_computer_cmd">Neu starten</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_computer_cmd">Neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_advanced_cmd">Neustart mit erweiterten Startoptionen</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_advanced_cmd">Neustart mit erweiterten Boot-Optionen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off_cmd">Abmelden</system:String> <system:String x:Key="flowlauncher_plugin_sys_log_off_cmd">Ausloggen/Abmelden</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock_cmd">Sperren</system:String> <system:String x:Key="flowlauncher_plugin_sys_lock_cmd">Sperren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep_cmd">Energie sparen</system:String> <system:String x:Key="flowlauncher_plugin_sys_sleep_cmd">Schlafmodus</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate_cmd">Ruhezustand</system:String> <system:String x:Key="flowlauncher_plugin_sys_hibernate_cmd">Ruhezustand</system:String>
<system:String x:Key="flowlauncher_plugin_sys_indexoption_cmd">Indizierungsoptionen</system:String> <system:String x:Key="flowlauncher_plugin_sys_indexoption_cmd">Index-Option</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin_cmd">Papierkorb leeren</system:String> <system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin_cmd">Papierkorb leeren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin_cmd">Papierkorb öffnen</system:String> <system:String x:Key="flowlauncher_plugin_sys_openrecyclebin_cmd">Papierkorb öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit_cmd">Schließen</system:String> <system:String x:Key="flowlauncher_plugin_sys_exit_cmd">Beenden</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings_cmd">Einstellungen speichern</system:String> <system:String x:Key="flowlauncher_plugin_sys_save_all_settings_cmd">Einstellungen speichern</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_cmd">Flow Launcher neu starten</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_cmd">Flow Launcher neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting_cmd">Einstellungen</system:String> <system:String x:Key="flowlauncher_plugin_sys_setting_cmd">Einstellungen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data_cmd">Plugin-Daten neu laden</system:String> <system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data_cmd">Plug-in-Daten neu laden</system:String>
<system:String x:Key="flowlauncher_plugin_sys_check_for_update_cmd">Auf Updates prüfen</system:String> <system:String x:Key="flowlauncher_plugin_sys_check_for_update_cmd">Nach Updates suchen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_log_location_cmd">Log-Speicherort öffnen</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_log_location_cmd">Log-Ort öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_docs_tips_cmd">Flow Launcher Tipps</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_docs_tips_cmd">Flow Launcher-Tipps</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_userdata_location_cmd">Flow Launcher Benutzerdaten-Ordner</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_userdata_location_cmd">Flow Launcher UserData-Ordner</system:String>
<system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode_cmd">Gott Modus</system:String> <system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode_cmd">Spielmodus umschalten</system:String>
<!-- Command Descriptions --> <!-- Command Descriptions -->
<system:String x:Key="flowlauncher_plugin_sys_shutdown_computer">Computer herunterfahren</system:String> <system:String x:Key="flowlauncher_plugin_sys_shutdown_computer">Computer herunterfahren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Computer neu starten</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_computer">Computer neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_advanced">Startet den Computer mit erweiterten Startoptionen für den abgesicherten Modus neu</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_advanced">Starten Sie den Computer mit erweiterten Boot-Optionen für den sicheren und den Debugging-Modus sowie anderen Optionen neu</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Abmelden</system:String> <system:String x:Key="flowlauncher_plugin_sys_log_off">Ausloggen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Computer sperren</system:String> <system:String x:Key="flowlauncher_plugin_sys_lock">Diesen Computer sperren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow Launcher schließen</system:String> <system:String x:Key="flowlauncher_plugin_sys_exit">Flow Launcher schließen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow Launcher neu starten</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart">Flow Launcher neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Einstellungen des Flow Launchers anpassen</system:String> <system:String x:Key="flowlauncher_plugin_sys_setting">Einstellungen von Flow Launcher optimieren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Computer in Schlafmodus versetzen</system:String> <system:String x:Key="flowlauncher_plugin_sys_sleep">Computer in Schlafmodus versetzen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Papierkorb leeren</system:String> <system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Papierkorb leeren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">Papierkorb öffnen</system:String> <system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">Papierkorb öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_indexoption">Indizierungsoptionen</system:String> <system:String x:Key="flowlauncher_plugin_sys_indexoption">Indexierungsoptionen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate">Computer in den Ruhezustand versetzen</system:String> <system:String x:Key="flowlauncher_plugin_sys_hibernate">Computer in den Ruhezustand versetzen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Alle Flow Launcher Einstellungen speichern</system:String> <system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Alle Flow Launcher-Einstellungen speichern</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Aktualisiert Plugin-Daten mit neuen Inhalten</system:String> <system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Aktualisiert Plug-in-Daten mit neuen Inhalten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_log_location">Öffnet den Speicherort der Flow Launcher Logs</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_log_location">Log-Ort von Flow Launcher öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_check_for_update">Prüft auf neue Flow Launcher Updates</system:String> <system:String x:Key="flowlauncher_plugin_sys_check_for_update">Nach neuem Flow Launcher-Update suchen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_docs_tips">Öffnet die Dokumentation von Flow Launcher für Hilfe und Tipps</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_docs_tips">Besuchen Sie die Dokumentation von Flow Launcher für mehr Hilfe und Tipps zur Verwendung</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_userdata_location">Öffnet den Ort an dem Flow Laucher Einstellungen speichert</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_userdata_location">Den Ort öffnen, an dem die Einstellungen von Flow Launcher gespeichert sind</system:String>
<system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode">Gott Modus</system:String> <system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode">Spielmodus umschalten</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Erfolgreich</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Erfolg</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">Alle Flow Launcher Einstellungen wurden gespeichert</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">Alle Flow Launcher-Einstellungen gespeichert</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Alle betroffenen Plugin-Daten wurden neu geladen</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Alle anwendbaren Plug-in-Daten neu geladen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Soll der Computer wirklich heruntergefahren werden?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Sind Sie sicher, dass Sie den Computer herunterfahren wollen?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Soll der Computer wirklich neu gestartet werden?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Sind Sie sicher, dass Sie den Computer neu starten wollen?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer_advanced">Soll der Computer wirklich mit erweiterten Startoptionen neu gestartet werden?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer_advanced">Soll der Computer wirklich mit erweiterten Startoptionen neu gestartet werden?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_logoff_computer">Soll der aktuelle Benutzer wirklich abgemeldet werden?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_logoff_computer">Sind Sie sicher, dass Sie sich ausloggen wollen?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_plugin_name">Systembefehle</system:String> <system:String x:Key="flowlauncher_plugin_sys_plugin_name">Systembefehle</system:String>
<system:String x:Key="flowlauncher_plugin_sys_plugin_description">Stellt Systemrelevante Befehle bereit. z.B. herunterfahren, sperren, Einstellungen, usw.</system:String> <system:String x:Key="flowlauncher_plugin_sys_plugin_description">Bietet systembezogene Befehle, z. B. Herunterfahren, Sperren, Einstellungen etc.</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -2,62 +2,62 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<!-- Command List --> <!-- Command List -->
<system:String x:Key="flowlauncher_plugin_sys_command">Command</system:String> <system:String x:Key="flowlauncher_plugin_sys_command">Kommando</system:String>
<system:String x:Key="flowlauncher_plugin_sys_desc">Description</system:String> <system:String x:Key="flowlauncher_plugin_sys_desc">Beskrivelse</system:String>
<system:String x:Key="flowlauncher_plugin_sys_shutdown_computer_cmd">Shutdown</system:String> <system:String x:Key="flowlauncher_plugin_sys_shutdown_computer_cmd">Slå av</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_computer_cmd">Restart</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_computer_cmd">Start på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_advanced_cmd">Restart With Advanced Boot Options</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_advanced_cmd">Start på nytt med avanserte oppstartsalternativer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off_cmd">Log Off/Sign Out</system:String> <system:String x:Key="flowlauncher_plugin_sys_log_off_cmd">Logg av/logg ut</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock_cmd">Lock</system:String> <system:String x:Key="flowlauncher_plugin_sys_lock_cmd">Lås</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep_cmd">Sleep</system:String> <system:String x:Key="flowlauncher_plugin_sys_sleep_cmd">Hvilemodus</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate_cmd">Hibernate</system:String> <system:String x:Key="flowlauncher_plugin_sys_hibernate_cmd">Dvalemodus</system:String>
<system:String x:Key="flowlauncher_plugin_sys_indexoption_cmd">Index Option</system:String> <system:String x:Key="flowlauncher_plugin_sys_indexoption_cmd">Indeksalternativ</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin_cmd">Empty Recycle Bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin_cmd">Tøm papirkurven</system:String>
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin_cmd">Open Recycle Bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_openrecyclebin_cmd">Åpne papirkurven</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit_cmd">Exit</system:String> <system:String x:Key="flowlauncher_plugin_sys_exit_cmd">Avslutt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings_cmd">Save Settings</system:String> <system:String x:Key="flowlauncher_plugin_sys_save_all_settings_cmd">Lagre innstillinger</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_cmd">Restart Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_cmd">Start Flow Launcher på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting_cmd">Settings</system:String> <system:String x:Key="flowlauncher_plugin_sys_setting_cmd">Innstillinger</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data_cmd">Reload Plugin Data</system:String> <system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data_cmd">Last programtilleggdata på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_check_for_update_cmd">Check For Update</system:String> <system:String x:Key="flowlauncher_plugin_sys_check_for_update_cmd">Se etter oppdatering</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_log_location_cmd">Open Log Location</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_log_location_cmd">Åpne loggplassering</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_docs_tips_cmd">Flow Launcher Tips</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_docs_tips_cmd">Flow Launcher Tips</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_userdata_location_cmd">Flow Launcher UserData Folder</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_userdata_location_cmd">Brukerdatamappe for Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode_cmd">Toggle Game Mode</system:String> <system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode_cmd">Vis/Skjul spillmodus</system:String>
<!-- Command Descriptions --> <!-- Command Descriptions -->
<system:String x:Key="flowlauncher_plugin_sys_shutdown_computer">Shutdown Computer</system:String> <system:String x:Key="flowlauncher_plugin_sys_shutdown_computer">Slår av datamaskin</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Restart Computer</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_computer">Start datamaskinen på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_advanced">Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_advanced">Start datamaskinen på nytt med avanserte oppstartsalternativer for sikker og feilsøking, i tillegg til andre alternativer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Log off</system:String> <system:String x:Key="flowlauncher_plugin_sys_log_off">Logg av</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Lock this computer</system:String> <system:String x:Key="flowlauncher_plugin_sys_lock">Lås denne datamaskinen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Close Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_sys_exit">Lukk Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Restart Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart">Start Flow Launcher på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Tweak Flow Launcher's settings</system:String> <system:String x:Key="flowlauncher_plugin_sys_setting">Juster innstillingene for Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Put computer to sleep</system:String> <system:String x:Key="flowlauncher_plugin_sys_sleep">Sett datamaskinen i hvilemodus</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Empty recycle bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Tøm papirkurven</system:String>
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">Open recycle bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">Åpne papirkurven</system:String>
<system:String x:Key="flowlauncher_plugin_sys_indexoption">Indexing Options</system:String> <system:String x:Key="flowlauncher_plugin_sys_indexoption">Alternativer for indeksering</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate">Hibernate computer</system:String> <system:String x:Key="flowlauncher_plugin_sys_hibernate">Sett datamaskinen i dvalemodus</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Save all Flow Launcher settings</system:String> <system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Lagre alle innstillinger for Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Refreshes plugin data with new content</system:String> <system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Oppdaterer programtilleggdata med nytt innhold</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_log_location">Open Flow Launcher's log location</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_log_location">Åpne Flow Launchers loggplassering</system:String>
<system:String x:Key="flowlauncher_plugin_sys_check_for_update">Check for new Flow Launcher update</system:String> <system:String x:Key="flowlauncher_plugin_sys_check_for_update">Se etter nye oppdateringer for Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_docs_tips">Visit Flow Launcher's documentation for more help and how to use tips</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_docs_tips">Besøk Flow Launcher sin dokumentasjon for mer hjelp og hvordan du bruker tips</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_userdata_location">Open the location where Flow Launcher's settings are stored</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_userdata_location">Åpne plasseringen hvor Flow Launcher sine innstillinger er lagret</system:String>
<system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode">Toggle Game Mode</system:String> <system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode">Vis/Skjul spillmodus</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Success</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Vellykket</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">All Flow Launcher settings saved</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">Alle innstillinger for Flow Launcher er lagret</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Reloaded all applicable plugin data</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Lastet inn alle gjeldende programtilleggdata på nytt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Are you sure you want to shut the computer down?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Er du sikker på at du vil slå av datamaskinen?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Are you sure you want to restart the computer?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Er du sikker på at du vil starte datamaskinen på nytt?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer_advanced">Are you sure you want to restart the computer with Advanced Boot Options?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer_advanced">Er du sikker på at du vil starte datamaskinen på nytt med avanserte oppstartsalternativer?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_logoff_computer">Are you sure you want to log off?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_logoff_computer">Er du sikker på at du vil logge av?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_plugin_name">System Commands</system:String> <system:String x:Key="flowlauncher_plugin_sys_plugin_name">Systemkommandoer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_plugin_description">Provides System related commands. e.g. shutdown, lock, settings etc.</system:String> <system:String x:Key="flowlauncher_plugin_sys_plugin_description">Gir systemrelaterte kommandoer, f.eks. slå av, lås, innstillinger osv.</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -5,31 +5,31 @@
<system:String x:Key="flowlauncher_plugin_sys_command">Komenda</system:String> <system:String x:Key="flowlauncher_plugin_sys_command">Komenda</system:String>
<system:String x:Key="flowlauncher_plugin_sys_desc">Opis</system:String> <system:String x:Key="flowlauncher_plugin_sys_desc">Opis</system:String>
<system:String x:Key="flowlauncher_plugin_sys_shutdown_computer_cmd">Shutdown</system:String> <system:String x:Key="flowlauncher_plugin_sys_shutdown_computer_cmd">Wyłącz komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_computer_cmd">Restart</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_computer_cmd">Restart</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_advanced_cmd">Restart With Advanced Boot Options</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_advanced_cmd">Uruchom ponownie z Zaawansowanymi opcjami rozruchu</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off_cmd">Log Off/Sign Out</system:String> <system:String x:Key="flowlauncher_plugin_sys_log_off_cmd">Wyloguj</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock_cmd">Lock</system:String> <system:String x:Key="flowlauncher_plugin_sys_lock_cmd">Zablokuj</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep_cmd">Sleep</system:String> <system:String x:Key="flowlauncher_plugin_sys_sleep_cmd">Uśpij</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate_cmd">Hibernate</system:String> <system:String x:Key="flowlauncher_plugin_sys_hibernate_cmd">Hibernuj</system:String>
<system:String x:Key="flowlauncher_plugin_sys_indexoption_cmd">Index Option</system:String> <system:String x:Key="flowlauncher_plugin_sys_indexoption_cmd">Opcje indeksowania</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin_cmd">Empty Recycle Bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin_cmd">Opróżnij kosz</system:String>
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin_cmd">Open Recycle Bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_openrecyclebin_cmd">Otwórz kosz</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit_cmd">Wyjdź</system:String> <system:String x:Key="flowlauncher_plugin_sys_exit_cmd">Wyjdź</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings_cmd">Save Settings</system:String> <system:String x:Key="flowlauncher_plugin_sys_save_all_settings_cmd">Zapisz ustawienia</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_cmd">Uruchom ponownie Flow Launchera</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_cmd">Uruchom ponownie Flow Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting_cmd">Ustawienia</system:String> <system:String x:Key="flowlauncher_plugin_sys_setting_cmd">Ustawienia</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data_cmd">Reload Plugin Data</system:String> <system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data_cmd">Odśwież dane wtyczek</system:String>
<system:String x:Key="flowlauncher_plugin_sys_check_for_update_cmd">Check For Update</system:String> <system:String x:Key="flowlauncher_plugin_sys_check_for_update_cmd">Sprawdź aktualizacje</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_log_location_cmd">Open Log Location</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_log_location_cmd">Otwórz lokalizację dziennika</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_docs_tips_cmd">Flow Launcher Tips</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_docs_tips_cmd">Wskazówki Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_userdata_location_cmd">Flow Launcher UserData Folder</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_userdata_location_cmd">Folder danych użytkownika Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode_cmd">Toggle Game Mode</system:String> <system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode_cmd">Przełącz tryb gry</system:String>
<!-- Command Descriptions --> <!-- Command Descriptions -->
<system:String x:Key="flowlauncher_plugin_sys_shutdown_computer">Wyłącz komputer</system:String> <system:String x:Key="flowlauncher_plugin_sys_shutdown_computer">Wyłącz komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Uruchom ponownie komputer</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_computer">Uruchom ponownie komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart_advanced">Restart the computer with Advanced Boot Options for Safe and Debugging modes, as well as other options</system:String> <system:String x:Key="flowlauncher_plugin_sys_restart_advanced">Uruchom ponownie komputer z Zaawansowanymi opcjami rozruchu dla trybów Bezpiecznego i Debugowania oraz innych opcji</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Wyloguj się</system:String> <system:String x:Key="flowlauncher_plugin_sys_log_off">Wyloguj się</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Zablokuj ten komputer</system:String> <system:String x:Key="flowlauncher_plugin_sys_lock">Zablokuj ten komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Wyłącz Flow Launchera</system:String> <system:String x:Key="flowlauncher_plugin_sys_exit">Wyłącz Flow Launchera</system:String>
@ -37,25 +37,25 @@
<system:String x:Key="flowlauncher_plugin_sys_setting">Dostosuj ustawienia</system:String> <system:String x:Key="flowlauncher_plugin_sys_setting">Dostosuj ustawienia</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Przełącz komputer w tryb uśpienia</system:String> <system:String x:Key="flowlauncher_plugin_sys_sleep">Przełącz komputer w tryb uśpienia</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Opróżnij kosz</system:String> <system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Opróżnij kosz</system:String>
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">Open recycle bin</system:String> <system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">Otwórz kosz</system:String>
<system:String x:Key="flowlauncher_plugin_sys_indexoption">Indexing Options</system:String> <system:String x:Key="flowlauncher_plugin_sys_indexoption">Opcje indeksowania</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate">Hibernate computer</system:String> <system:String x:Key="flowlauncher_plugin_sys_hibernate">Hibernuj komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Save all Flow Launcher settings</system:String> <system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Zapisz wszystkie ustawienia Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Refreshes plugin data with new content</system:String> <system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Odświeża dane wtyczek z nową zawartością</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_log_location">Open Flow Launcher's log location</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_log_location">Otwórz lokalizację dziennika Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_check_for_update">Check for new Flow Launcher update</system:String> <system:String x:Key="flowlauncher_plugin_sys_check_for_update">Sprawdź nową aktualizację Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_docs_tips">Visit Flow Launcher's documentation for more help and how to use tips</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_docs_tips">Odwiedź dokumentację Flow Launcher, aby uzyskać więcej pomocy i wskazówek dotyczących użytkowania</system:String>
<system:String x:Key="flowlauncher_plugin_sys_open_userdata_location">Open the location where Flow Launcher's settings are stored</system:String> <system:String x:Key="flowlauncher_plugin_sys_open_userdata_location">Otwórz lokalizację, w której przechowywane są ustawienia Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode">Toggle Game Mode</system:String> <system:String x:Key="flowlauncher_plugin_sys_toggle_game_mode">Przełącz tryb gry</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Sukces</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Sukces</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">All Flow Launcher settings saved</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">Wszystkie ustawienia Flow Launcher zostały zapisane</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Reloaded all applicable plugin data</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Przeładowano dane wszystkich odpowiednich wtyczek</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Are you sure you want to shut the computer down?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Czy na pewno chcesz wyłączyć komputer?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Are you sure you want to restart the computer?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Czy na pewno chcesz zrestartować komputer?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer_advanced">Are you sure you want to restart the computer with Advanced Boot Options?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer_advanced">Czy na pewno chcesz ponownie uruchomić komputer z Zaawansowanymi opcjami rozruchu?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_logoff_computer">Are you sure you want to log off?</system:String> <system:String x:Key="flowlauncher_plugin_sys_dlgtext_logoff_computer">Czy na pewno chcesz się wylogować?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_plugin_name">Komendy systemowe</system:String> <system:String x:Key="flowlauncher_plugin_sys_plugin_name">Komendy systemowe</system:String>
<system:String x:Key="flowlauncher_plugin_sys_plugin_description">Wykonywanie komend systemowych, np. wyłącz, zablokuj komputer, otwórz ustawienia itp.</system:String> <system:String x:Key="flowlauncher_plugin_sys_plugin_description">Wykonywanie komend systemowych, np. wyłącz, zablokuj komputer, otwórz ustawienia itp.</system:String>

View file

@ -4,7 +4,7 @@
"Name": "System Commands", "Name": "System Commands",
"Description": "Provide System related commands. e.g. shutdown,lock, setting etc.", "Description": "Provide System related commands. e.g. shutdown,lock, setting etc.",
"Author": "qianlifeng", "Author": "qianlifeng",
"Version": "3.1.4", "Version": "3.1.6",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Sys.dll", "ExecuteFileName": "Flow.Launcher.Plugin.Sys.dll",

View file

@ -1,9 +1,9 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_url_open_search_in">Open search in:</system:String> <system:String x:Key="flowlauncher_plugin_url_open_search_in">Suche öffnen in:</system:String>
<system:String x:Key="flowlauncher_plugin_new_window">New Window</system:String> <system:String x:Key="flowlauncher_plugin_new_window">Neues Fenster</system:String>
<system:String x:Key="flowlauncher_plugin_new_tab">New Tab</system:String> <system:String x:Key="flowlauncher_plugin_new_tab">Neuer Tab</system:String>
<system:String x:Key="flowlauncher_plugin_url_open_url">Öffne URL:{0}</system:String> <system:String x:Key="flowlauncher_plugin_url_open_url">Öffne URL:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_cannot_open_url">Kann URL nicht öffnen:{0}</system:String> <system:String x:Key="flowlauncher_plugin_url_cannot_open_url">Kann URL nicht öffnen:{0}</system:String>
@ -11,7 +11,7 @@
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Öffne eine eingegebene URL mit Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_description">Öffne eine eingegebene URL mit Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Please set your browser path:</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Bitte legen Sie Ihren Browser-Pfad fest:</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_choose">Auswählen</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_choose">Auswählen</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_filter">Application(*.exe)|*.exe|All files|*.*</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_filter">URL öffnen: {0}</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,17 +1,17 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_url_open_search_in">Open search in:</system:String> <system:String x:Key="flowlauncher_plugin_url_open_search_in">Åpne søk i:</system:String>
<system:String x:Key="flowlauncher_plugin_new_window">New Window</system:String> <system:String x:Key="flowlauncher_plugin_new_window">Nytt vindu</system:String>
<system:String x:Key="flowlauncher_plugin_new_tab">New Tab</system:String> <system:String x:Key="flowlauncher_plugin_new_tab">Ny fane</system:String>
<system:String x:Key="flowlauncher_plugin_url_open_url">Open url:{0}</system:String> <system:String x:Key="flowlauncher_plugin_url_open_url">Åpne nettadresse:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_cannot_open_url">Can't open url:{0}</system:String> <system:String x:Key="flowlauncher_plugin_url_cannot_open_url">Kan ikke åpne nettadresse:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_name">Nettadresse</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Open the typed URL from Flow Launcher</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_description">Åpne den innskrevne nettadressen fra Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Please set your browser path:</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Vennligst angi nettleserens sti:</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_choose">Choose</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_choose">Velg</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_filter">Application(*.exe)|*.exe|All files|*.*</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_filter">Applikasjon(*.exe)|*.exe|Alle filer|*.*</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -1,9 +1,9 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib"> <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_url_open_search_in">Open search in:</system:String> <system:String x:Key="flowlauncher_plugin_url_open_search_in">Otwórz wyszukiwanie w:</system:String>
<system:String x:Key="flowlauncher_plugin_new_window">New Window</system:String> <system:String x:Key="flowlauncher_plugin_new_window">Nowe okno</system:String>
<system:String x:Key="flowlauncher_plugin_new_tab">New Tab</system:String> <system:String x:Key="flowlauncher_plugin_new_tab">Nowa zakładka</system:String>
<system:String x:Key="flowlauncher_plugin_url_open_url">Otwórz adres URL: {0}</system:String> <system:String x:Key="flowlauncher_plugin_url_open_url">Otwórz adres URL: {0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_cannot_open_url">Nie udało się otworzyć adresu: {0}</system:String> <system:String x:Key="flowlauncher_plugin_url_cannot_open_url">Nie udało się otworzyć adresu: {0}</system:String>
@ -11,7 +11,7 @@
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Otwórz wpisany adres URL z poziomu Flow Launchera</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_description">Otwórz wpisany adres URL z poziomu Flow Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Please set your browser path:</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Ustaw ścieżkę przeglądarki:</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_choose">Choose</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_choose">Wybierz</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_filter">Application(*.exe)|*.exe|All files|*.*</system:String> <system:String x:Key="flowlauncher_plugin_url_plugin_filter">Aplikacja(*.exe)|*.exe|Wszystkie pliki|*.*</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -4,7 +4,7 @@
"Name": "URL", "Name": "URL",
"Description": "Open the typed URL from Flow Launcher", "Description": "Open the typed URL from Flow Launcher",
"Author": "qianlifeng", "Author": "qianlifeng",
"Version": "3.0.5", "Version": "3.0.7",
"Language": "csharp", "Language": "csharp",
"Website": "https://github.com/Flow-Launcher/Flow.Launcher", "Website": "https://github.com/Flow-Launcher/Flow.Launcher",
"ExecuteFileName": "Flow.Launcher.Plugin.Url.dll", "ExecuteFileName": "Flow.Launcher.Plugin.Url.dll",

Some files were not shown because too many files have changed in this diff Show more