Merge branch 'dev' into 250223FluentTest2

This commit is contained in:
Jack Ye 2025-03-16 13:22:45 +08:00 committed by GitHub
commit a98b7b72bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
158 changed files with 2396 additions and 1765 deletions

View file

@ -66,7 +66,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Fody" Version="6.5.4"> <PackageReference Include="Fody" Version="6.5.5">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>

View file

@ -64,6 +64,7 @@ namespace Flow.Launcher
.AddSingleton<IPublicAPI, PublicAPIInstance>() .AddSingleton<IPublicAPI, PublicAPIInstance>()
.AddSingleton<MainViewModel>() .AddSingleton<MainViewModel>()
.AddSingleton<Theme>() .AddSingleton<Theme>()
.AddSingleton<WelcomeViewModel>()
).Build(); ).Build();
Ioc.Default.ConfigureServices(host.Services); Ioc.Default.ConfigureServices(host.Services);
} }

View file

@ -103,7 +103,6 @@
HorizontalAlignment="Left" HorizontalAlignment="Left"
VerticalAlignment="Center" VerticalAlignment="Center"
HorizontalContentAlignment="Left" HorizontalContentAlignment="Left"
HotkeySettings="{Binding Settings}"
DefaultHotkey="" /> DefaultHotkey="" />
<TextBlock <TextBlock
Grid.Row="1" Grid.Row="1"

View file

@ -85,7 +85,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="ChefKeys" Version="0.1.2" /> <PackageReference Include="ChefKeys" Version="0.1.2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" /> <PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Fody" Version="6.5.4"> <PackageReference Include="Fody" Version="6.5.5">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>

View file

@ -4,25 +4,16 @@ using System.Collections.ObjectModel;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.Core.Resource; using Flow.Launcher.Core.Resource;
using Flow.Launcher.Helper; using Flow.Launcher.Helper;
using Flow.Launcher.Infrastructure.Hotkey; using Flow.Launcher.Infrastructure.Hotkey;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher namespace Flow.Launcher
{ {
public partial class HotkeyControl public partial class HotkeyControl
{ {
public IHotkeySettings HotkeySettings {
get { return (IHotkeySettings)GetValue(HotkeySettingsProperty); }
set { SetValue(HotkeySettingsProperty, value); }
}
public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register(
nameof(HotkeySettings),
typeof(IHotkeySettings),
typeof(HotkeyControl),
new PropertyMetadata()
);
public string WindowTitle { public string WindowTitle {
get { return (string)GetValue(WindowTitleProperty); } get { return (string)GetValue(WindowTitleProperty); }
set { SetValue(WindowTitleProperty, value); } set { SetValue(WindowTitleProperty, value); }
@ -71,8 +62,7 @@ namespace Flow.Launcher
return; return;
} }
hotkeyControl.SetKeysToDisplay(new HotkeyModel(hotkeyControl.Hotkey)); hotkeyControl.RefreshHotkeyInterface(hotkeyControl.Hotkey);
hotkeyControl.CurrentHotkey = new HotkeyModel(hotkeyControl.Hotkey);
} }
@ -90,17 +80,117 @@ namespace Flow.Launcher
} }
public static readonly DependencyProperty HotkeyProperty = DependencyProperty.Register( public static readonly DependencyProperty TypeProperty = DependencyProperty.Register(
nameof(Hotkey), nameof(Type),
typeof(string), typeof(HotkeyType),
typeof(HotkeyControl), typeof(HotkeyControl),
new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged) new FrameworkPropertyMetadata(HotkeyType.Hotkey, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, OnHotkeyChanged)
); );
public HotkeyType Type
{
get { return (HotkeyType)GetValue(TypeProperty); }
set { SetValue(TypeProperty, value); }
}
public enum HotkeyType
{
Hotkey,
PreviewHotkey,
OpenContextMenuHotkey,
SettingWindowHotkey,
CycleHistoryUpHotkey,
CycleHistoryDownHotkey,
SelectPrevPageHotkey,
SelectNextPageHotkey,
AutoCompleteHotkey,
AutoCompleteHotkey2,
SelectPrevItemHotkey,
SelectPrevItemHotkey2,
SelectNextItemHotkey,
SelectNextItemHotkey2
}
// We can initialize settings in static field because it has been constructed in App constuctor
// and it will not construct settings instances twice
private static readonly Settings _settings = Ioc.Default.GetRequiredService<Settings>();
public string Hotkey public string Hotkey
{ {
get { return (string)GetValue(HotkeyProperty); } get
set { SetValue(HotkeyProperty, value); } {
return Type switch
{
HotkeyType.Hotkey => _settings.Hotkey,
HotkeyType.PreviewHotkey => _settings.PreviewHotkey,
HotkeyType.OpenContextMenuHotkey => _settings.OpenContextMenuHotkey,
HotkeyType.SettingWindowHotkey => _settings.SettingWindowHotkey,
HotkeyType.CycleHistoryUpHotkey => _settings.CycleHistoryUpHotkey,
HotkeyType.CycleHistoryDownHotkey => _settings.CycleHistoryDownHotkey,
HotkeyType.SelectPrevPageHotkey => _settings.SelectPrevPageHotkey,
HotkeyType.SelectNextPageHotkey => _settings.SelectNextPageHotkey,
HotkeyType.AutoCompleteHotkey => _settings.AutoCompleteHotkey,
HotkeyType.AutoCompleteHotkey2 => _settings.AutoCompleteHotkey2,
HotkeyType.SelectPrevItemHotkey => _settings.SelectPrevItemHotkey,
HotkeyType.SelectPrevItemHotkey2 => _settings.SelectPrevItemHotkey2,
HotkeyType.SelectNextItemHotkey => _settings.SelectNextItemHotkey,
HotkeyType.SelectNextItemHotkey2 => _settings.SelectNextItemHotkey2,
_ => string.Empty
};
}
set
{
switch (Type)
{
case HotkeyType.Hotkey:
_settings.Hotkey = value;
break;
case HotkeyType.PreviewHotkey:
_settings.PreviewHotkey = value;
break;
case HotkeyType.OpenContextMenuHotkey:
_settings.OpenContextMenuHotkey = value;
break;
case HotkeyType.SettingWindowHotkey:
_settings.SettingWindowHotkey = value;
break;
case HotkeyType.CycleHistoryUpHotkey:
_settings.CycleHistoryUpHotkey = value;
break;
case HotkeyType.CycleHistoryDownHotkey:
_settings.CycleHistoryDownHotkey = value;
break;
case HotkeyType.SelectPrevPageHotkey:
_settings.SelectPrevPageHotkey = value;
break;
case HotkeyType.SelectNextPageHotkey:
_settings.SelectNextPageHotkey = value;
break;
case HotkeyType.AutoCompleteHotkey:
_settings.AutoCompleteHotkey = value;
break;
case HotkeyType.AutoCompleteHotkey2:
_settings.AutoCompleteHotkey2 = value;
break;
case HotkeyType.SelectPrevItemHotkey:
_settings.SelectPrevItemHotkey = value;
break;
case HotkeyType.SelectNextItemHotkey:
_settings.SelectNextItemHotkey = value;
break;
case HotkeyType.SelectPrevItemHotkey2:
_settings.SelectPrevItemHotkey2 = value;
break;
case HotkeyType.SelectNextItemHotkey2:
_settings.SelectNextItemHotkey2 = value;
break;
default:
return;
}
// After setting the hotkey, we need to refresh the interface
RefreshHotkeyInterface(Hotkey);
}
} }
public HotkeyControl() public HotkeyControl()
@ -108,7 +198,14 @@ namespace Flow.Launcher
InitializeComponent(); InitializeComponent();
HotkeyList.ItemsSource = KeysToDisplay; HotkeyList.ItemsSource = KeysToDisplay;
SetKeysToDisplay(CurrentHotkey);
RefreshHotkeyInterface(Hotkey);
}
private void RefreshHotkeyInterface(string hotkey)
{
SetKeysToDisplay(new HotkeyModel(Hotkey));
CurrentHotkey = new HotkeyModel(Hotkey);
} }
private static bool CheckHotkeyAvailability(HotkeyModel hotkey, bool validateKeyGesture) => private static bool CheckHotkeyAvailability(HotkeyModel hotkey, bool validateKeyGesture) =>
@ -133,7 +230,7 @@ namespace Flow.Launcher
HotKeyMapper.RemoveHotkey(Hotkey); HotKeyMapper.RemoveHotkey(Hotkey);
} }
var dialog = new HotkeyControlDialog(Hotkey, DefaultHotkey, HotkeySettings, WindowTitle); var dialog = new HotkeyControlDialog(Hotkey, DefaultHotkey, WindowTitle);
await dialog.ShowAsync(); await dialog.ShowAsync();
switch (dialog.ResultType) switch (dialog.ResultType)
{ {

View file

@ -4,9 +4,11 @@ using System.Linq;
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using ChefKeys; using ChefKeys;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.Core.Resource; using Flow.Launcher.Core.Resource;
using Flow.Launcher.Helper; using Flow.Launcher.Helper;
using Flow.Launcher.Infrastructure.Hotkey; using Flow.Launcher.Infrastructure.Hotkey;
using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.Plugin; using Flow.Launcher.Plugin;
using ModernWpf.Controls; using ModernWpf.Controls;
@ -16,7 +18,7 @@ namespace Flow.Launcher;
public partial class HotkeyControlDialog : ContentDialog public partial class HotkeyControlDialog : ContentDialog
{ {
private IHotkeySettings _hotkeySettings; private static readonly IHotkeySettings _hotkeySettings = Ioc.Default.GetRequiredService<Settings>();
private Action? _overwriteOtherHotkey; private Action? _overwriteOtherHotkey;
private string DefaultHotkey { get; } private string DefaultHotkey { get; }
public string WindowTitle { get; } public string WindowTitle { get; }
@ -36,7 +38,7 @@ public partial class HotkeyControlDialog : ContentDialog
private static bool isOpenFlowHotkey; private static bool isOpenFlowHotkey;
public HotkeyControlDialog(string hotkey, string defaultHotkey, IHotkeySettings hotkeySettings, string windowTitle = "") public HotkeyControlDialog(string hotkey, string defaultHotkey, string windowTitle = "")
{ {
WindowTitle = windowTitle switch WindowTitle = windowTitle switch
{ {
@ -45,7 +47,6 @@ public partial class HotkeyControlDialog : ContentDialog
}; };
DefaultHotkey = defaultHotkey; DefaultHotkey = defaultHotkey;
CurrentHotkey = new HotkeyModel(hotkey); CurrentHotkey = new HotkeyModel(hotkey);
_hotkeySettings = hotkeySettings;
SetKeysToDisplay(CurrentHotkey); SetKeysToDisplay(CurrentHotkey);
InitializeComponent(); InitializeComponent();

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">فشل في تسجيل مفتاح التشغيل السريع &quot;{0}&quot;. قد يكون المفتاح مستخدمًا من قبل برنامج آخر. قم بتغيير المفتاح، أو قم بإغلاق البرنامج الآخر.</system:String> <system:String x:Key="registerHotkeyFailed">فشل في تسجيل مفتاح التشغيل السريع &quot;{0}&quot;. قد يكون المفتاح مستخدمًا من قبل برنامج آخر. قم بتغيير المفتاح، أو قم بإغلاق البرنامج الآخر.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">تعذر بدء {0}</system:String> <system:String x:Key="couldnotStartCmd">تعذر بدء {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">تنسيق ملف إضافة Flow Launcher غير صالح</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">تنسيق ملف إضافة Flow Launcher غير صالح</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">وضع المحمول</system:String> <system:String x:Key="portableMode">وضع المحمول</system:String>
<system:String x:Key="portableModeToolTIp">تخزين جميع الإعدادات وبيانات المستخدم في مجلد واحد (مفيد عند استخدام الأقراص القابلة للإزالة أو الخدمات السحابية).</system:String> <system:String x:Key="portableModeToolTIp">تخزين جميع الإعدادات وبيانات المستخدم في مجلد واحد (مفيد عند استخدام الأقراص القابلة للإزالة أو الخدمات السحابية).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">تشغيل Flow Launcher عند بدء تشغيل النظام</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">تشغيل Flow Launcher عند بدء تشغيل النظام</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">خطأ في إعداد التشغيل عند بدء التشغيل</system:String> <system:String x:Key="setAutoStartFailed">خطأ في إعداد التشغيل عند بدء التشغيل</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">إخفاء Flow Launcher عند فقدان التركيز</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">إخفاء Flow Launcher عند فقدان التركيز</system:String>
<system:String x:Key="dontPromptUpdateMsg">عدم عرض إشعارات الإصدار الجديد</system:String> <system:String x:Key="dontPromptUpdateMsg">عدم عرض إشعارات الإصدار الجديد</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">الإصدار</system:String> <system:String x:Key="plugin_query_version">الإصدار</system:String>
<system:String x:Key="plugin_query_web">الموقع الإلكتروني</system:String> <system:String x:Key="plugin_query_web">الموقع الإلكتروني</system:String>
<system:String x:Key="plugin_uninstall">إلغاء التثبيت</system:String> <system:String x:Key="plugin_uninstall">إلغاء التثبيت</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">متجر الإضافات</system:String> <system:String x:Key="pluginStore">متجر الإضافات</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">تم تحديث هذه الإضافة في آخر 7 أيام</system:String> <system:String x:Key="LabelNewToolTip">تم تحديث هذه الإضافة في آخر 7 أيام</system:String>
<system:String x:Key="LabelUpdateToolTip">يتوفر تحديث جديد</system:String> <system:String x:Key="LabelUpdateToolTip">يتوفر تحديث جديد</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">السمة</system:String> <system:String x:Key="theme">السمة</system:String>
<system:String x:Key="appearance">المظهر</system:String> <system:String x:Key="appearance">المظهر</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">هذه السمة تدعم الوضعين (فاتح/داكن).</system:String> <system:String x:Key="TypeIsDarkToolTip">هذه السمة تدعم الوضعين (فاتح/داكن).</system:String>
<system:String x:Key="TypeHasBlurToolTip">هذه السمة تدعم الخلفية الضبابية الشفافة.</system:String> <system:String x:Key="TypeHasBlurToolTip">هذه السمة تدعم الخلفية الضبابية الشفافة.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">مفتاح الاختصار</system:String> <system:String x:Key="hotkey">مفتاح الاختصار</system:String>
<system:String x:Key="hotkeys">مفاتيح الاختصار</system:String> <system:String x:Key="hotkeys">مفاتيح الاختصار</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">موقع بيانات المستخدم</system:String> <system:String x:Key="userdatapath">موقع بيانات المستخدم</system:String>
<system:String x:Key="userdatapathToolTip">يتم حفظ إعدادات المستخدم والإضافات المثبتة في مجلد بيانات المستخدم. قد يختلف هذا الموقع اعتمادًا على ما إذا كان في وضع النقل أم لا.</system:String> <system:String x:Key="userdatapathToolTip">يتم حفظ إعدادات المستخدم والإضافات المثبتة في مجلد بيانات المستخدم. قد يختلف هذا الموقع اعتمادًا على ما إذا كان في وضع النقل أم لا.</system:String>
<system:String x:Key="userdatapathButton">فتح المجلد</system:String> <system:String x:Key="userdatapathButton">فتح المجلد</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">اختر مدير الملفات</system:String> <system:String x:Key="fileManagerWindow">اختر مدير الملفات</system:String>
@ -367,6 +371,7 @@
<system:String x:Key="commonOK">حسناً</system:String> <system:String x:Key="commonOK">حسناً</system:String>
<system:String x:Key="commonYes">نعم</system:String> <system:String x:Key="commonYes">نعم</system:String>
<system:String x:Key="commonNo">لا</system:String> <system:String x:Key="commonNo">لا</system:String>
<system:String x:Key="commonBackground">الخلفية</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">الإصدار</system:String> <system:String x:Key="reportWindow_version">الإصدار</system:String>
@ -383,6 +388,9 @@
<system:String x:Key="reportWindow_report_succeed">تم إرسال التقرير بنجاح</system:String> <system:String x:Key="reportWindow_report_succeed">تم إرسال التقرير بنجاح</system:String>
<system:String x:Key="reportWindow_report_failed">فشل في إرسال التقرير</system:String> <system:String x:Key="reportWindow_report_failed">فشل في إرسال التقرير</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">حدث خطأ في Flow Launcher</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">حدث خطأ في Flow Launcher</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">يرجى الانتظار...</system:String> <system:String x:Key="pleaseWait">يرجى الانتظار...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Nepodařilo se zaregistrovat hotkey &quot;{0}&quot;. Klávesová zkratka může být používána jiným programem. Změňte na jinou klávesu nebo ukončíte jiný program.</system:String> <system:String x:Key="registerHotkeyFailed">Nepodařilo se zaregistrovat hotkey &quot;{0}&quot;. Klávesová zkratka může být používána jiným programem. Změňte na jinou klávesu nebo ukončíte jiný program.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Nepodařilo se spustit {0}</system:String> <system:String x:Key="couldnotStartCmd">Nepodařilo se spustit {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Neplatný typ souboru pluginu aplikace Flow Launcher</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Neplatný typ souboru pluginu aplikace Flow Launcher</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Přenosný režim</system:String> <system:String x:Key="portableMode">Přenosný režim</system:String>
<system:String x:Key="portableModeToolTIp">Ukládat všechna nastavení a uživatelská data v jedné složce (Užitečné při užití s přenosnými zařízeními).</system:String> <system:String x:Key="portableModeToolTIp">Ukládat všechna nastavení a uživatelská data v jedné složce (Užitečné při užití s přenosnými zařízeními).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Spustit Flow Launcher při spuštění systému</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Spustit Flow Launcher při spuštění systému</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Při nastavování spouštění došlo k chybě</system:String> <system:String x:Key="setAutoStartFailed">Při nastavování spouštění došlo k chybě</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Skrýt Flow Launcher při vykliknutí</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Skrýt Flow Launcher při vykliknutí</system:String>
<system:String x:Key="dontPromptUpdateMsg">Nezobrazovat oznámení o nové verzi</system:String> <system:String x:Key="dontPromptUpdateMsg">Nezobrazovat oznámení o nové verzi</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Verze</system:String> <system:String x:Key="plugin_query_version">Verze</system:String>
<system:String x:Key="plugin_query_web">Webová stránka</system:String> <system:String x:Key="plugin_query_web">Webová stránka</system:String>
<system:String x:Key="plugin_uninstall">Odinstalovat</system:String> <system:String x:Key="plugin_uninstall">Odinstalovat</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Obchod s pluginy</system:String> <system:String x:Key="pluginStore">Obchod s pluginy</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Tento plugin byl aktualizován během posledních 7 dní</system:String> <system:String x:Key="LabelNewToolTip">Tento plugin byl aktualizován během posledních 7 dní</system:String>
<system:String x:Key="LabelUpdateToolTip">Nová aktualizace je k dispozici</system:String> <system:String x:Key="LabelUpdateToolTip">Nová aktualizace je k dispozici</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Motiv</system:String> <system:String x:Key="theme">Motiv</system:String>
<system:String x:Key="appearance">Vzhled</system:String> <system:String x:Key="appearance">Vzhled</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Klávesová zkratka</system:String> <system:String x:Key="hotkey">Klávesová zkratka</system:String>
<system:String x:Key="hotkeys">Klávesové zkratky</system:String> <system:String x:Key="hotkeys">Klávesové zkratky</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Vybrat správce souborů</system:String> <system:String x:Key="fileManagerWindow">Vybrat správce souborů</system:String>
@ -367,6 +371,7 @@ Pokud před zkratku při zadávání přidáte znak &quot;@&quot;, bude odpovíd
<system:String x:Key="commonOK">Dobře</system:String> <system:String x:Key="commonOK">Dobře</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Pozadí</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Verze</system:String> <system:String x:Key="reportWindow_version">Verze</system:String>
@ -383,6 +388,9 @@ Pokud před zkratku při zadávání přidáte znak &quot;@&quot;, bude odpovíd
<system:String x:Key="reportWindow_report_succeed">Hlášení bylo úspěšně odesláno</system:String> <system:String x:Key="reportWindow_report_succeed">Hlášení bylo úspěšně odesláno</system:String>
<system:String x:Key="reportWindow_report_failed">Nepodařilo se odeslat hlášení</system:String> <system:String x:Key="reportWindow_report_failed">Nepodařilo se odeslat hlášení</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher zaznamenal chybu</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher zaznamenal chybu</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Počkejte prosím...</system:String> <system:String x:Key="pleaseWait">Počkejte prosím...</system:String>

View file

@ -13,6 +13,7 @@
<!-- 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">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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Kunne ikke starte {0}</system:String> <system:String x:Key="couldnotStartCmd">Kunne ikke starte {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Ugyldigt Flow Launcher plugin filformat</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Ugyldigt Flow Launcher plugin filformat</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Portable Mode</system:String> <system:String x:Key="portableMode">Portable Mode</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">Store all settings and user data in one folder (Useful when used with removable drives or cloud services).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher ved system start</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher ved system start</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Skjul Flow Launcher ved mistet fokus</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Skjul Flow Launcher ved mistet fokus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Vis ikke notifikationer om nye versioner</system:String> <system:String x:Key="dontPromptUpdateMsg">Vis ikke notifikationer om nye versioner</system:String>
@ -126,7 +129,8 @@
<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">Website</system:String> <system:String x:Key="plugin_query_web">Website</system:String>
<system:String x:Key="plugin_uninstall">Uninstall</system:String> <system:String x:Key="plugin_uninstall">Uninstall</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Plugin Store</system:String> <system:String x:Key="pluginStore">Plugin Store</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String>
<system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String> <system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Appearance</system:String> <system:String x:Key="appearance">Appearance</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Genvejstast</system:String> <system:String x:Key="hotkey">Genvejstast</system:String>
<system:String x:Key="hotkeys">Genvejstast</system:String> <system:String x:Key="hotkeys">Genvejstast</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Select File Manager</system:String> <system:String x:Key="fileManagerWindow">Select File Manager</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<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">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Background</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Version</system:String> <system:String x:Key="reportWindow_version">Version</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">Rapport sendt korrekt</system:String> <system:String x:Key="reportWindow_report_succeed">Rapport sendt korrekt</system:String>
<system:String x:Key="reportWindow_report_failed">Kunne ikke sende rapport</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 fik en fejl</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher fik en fejl</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Please wait...</system:String> <system:String x:Key="pleaseWait">Please wait...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<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="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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Konnte nicht gestartet werden {0}</system:String> <system:String x:Key="couldnotStartCmd">Konnte nicht gestartet werden {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcher Plug-in-Dateiformat ungültig</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcher Plug-in-Dateiformat ungültig</system:String>
@ -44,6 +45,8 @@
<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 von Wechsellaufwerken oder Cloud-Diensten).</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">Flow Launcher bei Systemstart starten</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Flow Launcher bei Systemstart starten</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Fehler bei Einstellungsstart bei Start</system:String> <system:String x:Key="setAutoStartFailed">Fehler bei Einstellungsstart bei Start</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Flow Launcher ausblenden, wenn Fokus verloren geht</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Flow Launcher ausblenden, wenn Fokus verloren geht</system:String>
<system:String x:Key="dontPromptUpdateMsg">Versionsbenachrichtigungen nicht zeigen</system:String> <system:String x:Key="dontPromptUpdateMsg">Versionsbenachrichtigungen nicht zeigen</system:String>
@ -126,7 +129,8 @@
<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">Website</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>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Plug-in-Store</system:String> <system:String x:Key="pluginStore">Plug-in-Store</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Dieses Plug-in ist innerhalb der letzten 7 Tage aktualisiert worden</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">Neues Update ist 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">Theme</system:String> <system:String x:Key="theme">Theme</system:String>
<system:String x:Key="appearance">Erscheinungsbild</system:String> <system:String x:Key="appearance">Erscheinungsbild</system:String>
@ -194,7 +196,6 @@
<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 Unschärfe und transparenten 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">Hotkey</system:String> <system:String x:Key="hotkey">Hotkey</system:String>
<system:String x:Key="hotkeys">Hotkeys</system:String> <system:String x:Key="hotkeys">Hotkeys</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Speicherort für Benutzerdaten</system:String> <system:String x:Key="userdatapath">Speicherort für Benutzerdaten</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="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>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</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>
@ -367,6 +371,7 @@ Wenn Sie bei der Eingabe eines Shortcuts ein '@'-Präfix hinzufügen, stimmt die
<system:String x:Key="commonOK">OK</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>
<system:String x:Key="commonBackground">Hintergrund</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Version</system:String> <system:String x:Key="reportWindow_version">Version</system:String>
@ -383,6 +388,9 @@ Wenn Sie bei der Eingabe eines Shortcuts ein '@'-Präfix hinzufügen, stimmt die
<system:String x:Key="reportWindow_report_succeed">Bericht erfolgreich gesendet</system:String> <system:String x:Key="reportWindow_report_succeed">Bericht erfolgreich gesendet</system:String>
<system:String x:Key="reportWindow_report_failed">Bericht konnte nicht gesendet werden</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>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Bitte warten Sie ...</system:String> <system:String x:Key="pleaseWait">Bitte warten Sie ...</system:String>

View file

@ -13,6 +13,7 @@
<!-- 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">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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">No se pudo iniciar {0}</system:String> <system:String x:Key="couldnotStartCmd">No se pudo iniciar {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato de archivo de plugin Flow Launcher inválido</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato de archivo de plugin Flow Launcher inválido</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Modo portable</system:String> <system:String x:Key="portableMode">Modo portable</system:String>
<system:String x:Key="portableModeToolTIp">Almacena todos los ajustes y datos de usuario en una sola carpeta (útil cuando se utiliza con unidades extraíbles o servicios en la nube).</system:String> <system:String x:Key="portableModeToolTIp">Almacena todos los ajustes y datos de usuario en una sola carpeta (útil cuando se utiliza con unidades extraíbles o servicios en la nube).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Iniciar Flow Launcher al arrancar el sistema</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Iniciar Flow Launcher al arrancar el sistema</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Ocultar Flow Launcher cuando se pierde el enfoque</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Ocultar Flow Launcher cuando se pierde el enfoque</system:String>
<system:String x:Key="dontPromptUpdateMsg">No mostrar notificaciones de nuevas versiones</system:String> <system:String x:Key="dontPromptUpdateMsg">No mostrar notificaciones de nuevas versiones</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Versión</system:String> <system:String x:Key="plugin_query_version">Versión</system:String>
<system:String x:Key="plugin_query_web">Sitio web</system:String> <system:String x:Key="plugin_query_web">Sitio web</system:String>
<system:String x:Key="plugin_uninstall">Uninstall</system:String> <system:String x:Key="plugin_uninstall">Uninstall</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Tienda de Plugins</system:String> <system:String x:Key="pluginStore">Tienda de Plugins</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String>
<system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String> <system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Appearance</system:String> <system:String x:Key="appearance">Appearance</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Tecla Rápida</system:String> <system:String x:Key="hotkey">Tecla Rápida</system:String>
<system:String x:Key="hotkeys">Tecla Rápida</system:String> <system:String x:Key="hotkeys">Tecla Rápida</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Seleccionar Gestor de Archivos</system:String> <system:String x:Key="fileManagerWindow">Seleccionar Gestor de Archivos</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<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">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Background</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versión</system:String> <system:String x:Key="reportWindow_version">Versión</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">Informe enviado correctamente</system:String> <system:String x:Key="reportWindow_report_succeed">Informe enviado correctamente</system:String>
<system:String x:Key="reportWindow_report_failed">Error al enviar el informe</system:String> <system:String x:Key="reportWindow_report_failed">Error al enviar el informe</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha tenido un error</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha tenido un error</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Por favor espere...</system:String> <system:String x:Key="pleaseWait">Por favor espere...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">No se ha podido registrar el atajo de teclado &quot;{0}&quot;. El atajo de teclado puede estar siendo utilizado por otro programa. Seleccione un atajo de teclado diferente o salga del otro programa.</system:String> <system:String x:Key="registerHotkeyFailed">No se ha podido registrar el atajo de teclado &quot;{0}&quot;. El atajo de teclado puede estar siendo utilizado por otro programa. Seleccione un atajo de teclado diferente o salga del otro programa.</system:String>
<system:String x:Key="unregisterHotkeyFailed">No se ha podido anular el registro de la tecla de acceso rápido «{0}». Inténtelo de nuevo o consulte el registro para obtener más detalles</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">No se ha podido iniciar {0}</system:String> <system:String x:Key="couldnotStartCmd">No se ha podido iniciar {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato de archivo del complemento de Flow Launcher no válido</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato de archivo del complemento de Flow Launcher no válido</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Modo Portable</system:String> <system:String x:Key="portableMode">Modo Portable</system:String>
<system:String x:Key="portableModeToolTIp">Guarda toda la configuración y datos de usuario en una carpeta (Útil cuando se utiliza con unidades extraíbles o servicios en la nube).</system:String> <system:String x:Key="portableModeToolTIp">Guarda toda la configuración y datos de usuario en una carpeta (Útil cuando se utiliza con unidades extraíbles o servicios en la nube).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Cargar Flow Launcher al iniciar el sistema</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Cargar Flow Launcher al iniciar el sistema</system:String>
<system:String x:Key="useLogonTaskForStartup">Usar la tarea de inicio de sesión en lugar de la entrada de inicio para una experiencia de inicio más rápida</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">Después de la desinstalación, es necesario eliminar manualmente la tarea (Flow.Launcher Startup) mediante el Programador de Tareas</system:String>
<system:String x:Key="setAutoStartFailed">Error de configuración de arranque al iniciar</system:String> <system:String x:Key="setAutoStartFailed">Error de configuración de arranque al iniciar</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Ocultar Flow Launcher cuando se pierde el foco</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Ocultar Flow Launcher cuando se pierde el foco</system:String>
<system:String x:Key="dontPromptUpdateMsg">No mostrar notificaciones de nuevas versiones</system:String> <system:String x:Key="dontPromptUpdateMsg">No mostrar notificaciones de nuevas versiones</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Versión</system:String> <system:String x:Key="plugin_query_version">Versión</system:String>
<system:String x:Key="plugin_query_web">Sitio web</system:String> <system:String x:Key="plugin_query_web">Sitio web</system:String>
<system:String x:Key="plugin_uninstall">Desinstalar</system:String> <system:String x:Key="plugin_uninstall">Desinstalar</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fallo al eliminar la configuración del complemento</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Complementos: {0} - Fallo al eliminar los archivos de configuración del complemento, por favor elimínelos manualmente</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Tienda complementos</system:String> <system:String x:Key="pluginStore">Tienda complementos</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Este complemento ha sido actualizado en los últimos 7 días</system:String> <system:String x:Key="LabelNewToolTip">Este complemento ha sido actualizado en los últimos 7 días</system:String>
<system:String x:Key="LabelUpdateToolTip">Nueva actualización disponible</system:String> <system:String x:Key="LabelUpdateToolTip">Nueva actualización disponible</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Apariencia</system:String> <system:String x:Key="appearance">Apariencia</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">Este tema soporta dos modos (claro/oscuro).</system:String> <system:String x:Key="TypeIsDarkToolTip">Este tema soporta dos modos (claro/oscuro).</system:String>
<system:String x:Key="TypeHasBlurToolTip">Este tema soporta fondo transparente desenfocado.</system:String> <system:String x:Key="TypeHasBlurToolTip">Este tema soporta fondo transparente desenfocado.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Atajo de teclado</system:String> <system:String x:Key="hotkey">Atajo de teclado</system:String>
<system:String x:Key="hotkeys">Atajos de teclado</system:String> <system:String x:Key="hotkeys">Atajos de teclado</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Ubicación de datos del usuario</system:String> <system:String x:Key="userdatapath">Ubicación de datos del usuario</system:String>
<system:String x:Key="userdatapathToolTip">La configuración del usuario y los complementos instalados se guardan en la carpeta de datos del usuario. Esta ubicación puede variar dependiendo de si está en modo portable o no.</system:String> <system:String x:Key="userdatapathToolTip">La configuración del usuario y los complementos instalados se guardan en la carpeta de datos del usuario. Esta ubicación puede variar dependiendo de si está en modo portable o no.</system:String>
<system:String x:Key="userdatapathButton">Abrir carpeta</system:String> <system:String x:Key="userdatapathButton">Abrir carpeta</system:String>
<system:String x:Key="logLevel">Nivel de registro</system:String>
<system:String x:Key="LogLevelDEBUG">Depurar</system:String>
<system:String x:Key="LogLevelINFO">Información</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Seleccionar administrador de archivos</system:String> <system:String x:Key="fileManagerWindow">Seleccionar administrador de archivos</system:String>
@ -367,6 +371,7 @@ Si añade un prefijo &quot;@&quot; al introducir un acceso directo, éste coinci
<system:String x:Key="commonOK">Aceptar</system:String> <system:String x:Key="commonOK">Aceptar</system:String>
<system:String x:Key="commonYes">Si</system:String> <system:String x:Key="commonYes">Si</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Fondo</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versión</system:String> <system:String x:Key="reportWindow_version">Versión</system:String>
@ -383,6 +388,9 @@ Si añade un prefijo &quot;@&quot; al introducir un acceso directo, éste coinci
<system:String x:Key="reportWindow_report_succeed">Informe enviado correctamente</system:String> <system:String x:Key="reportWindow_report_succeed">Informe enviado correctamente</system:String>
<system:String x:Key="reportWindow_report_failed">No se ha podido enviar el informe</system:String> <system:String x:Key="reportWindow_report_failed">No se ha podido enviar el informe</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha tenido un error</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha tenido un error</system:String>
<system:String x:Key="reportWindow_please_open_issue">Por favor, abra un nuevo tema en</system:String>
<system:String x:Key="reportWindow_upload_log">1. Subir archivo de registro: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copiar el siguiente mensaje de excepción</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Por favor espere...</system:String> <system:String x:Key="pleaseWait">Por favor espere...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Échec lors de l'enregistrement du raccourci : {0}</system:String> <system:String x:Key="registerHotkeyFailed">Échec lors de l'enregistrement du raccourci : {0}</system:String>
<system:String x:Key="unregisterHotkeyFailed">Échec de la réinitialisation du raccourci &quot;{0}&quot;. Veuillez réessayer ou consulter le journal pour plus de détails</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">Impossible de lancer {0}</system:String> <system:String x:Key="couldnotStartCmd">Impossible de lancer {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Le format de fichier n'est pas un plugin Flow Launcher valide</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Le format de fichier n'est pas un plugin Flow Launcher valide</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Mode Portable</system:String> <system:String x:Key="portableMode">Mode Portable</system:String>
<system:String x:Key="portableModeToolTIp">Stocker tous les paramètres et données utilisateur dans un seul dossier (Pratique en cas d'utilisation de disques amovibles ou de services cloud).</system:String> <system:String x:Key="portableModeToolTIp">Stocker tous les paramètres et données utilisateur dans un seul dossier (Pratique en cas d'utilisation de disques amovibles ou de services cloud).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Lancer Flow Launcher au démarrage du système</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Lancer Flow Launcher au démarrage du système</system:String>
<system:String x:Key="useLogonTaskForStartup">Utilisez la tâche de connexion au lieu de l'entrée de démarrage pour une expérience de démarrage plus rapide</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">Après une désinstallation, vous devez supprimer manuellement cette tâche (Flow.Launcher Startup) via le planificateur de tâches</system:String>
<system:String x:Key="setAutoStartFailed">Erreur lors de la configuration du lancement au démarrage</system:String> <system:String x:Key="setAutoStartFailed">Erreur lors de la configuration du lancement au démarrage</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Cacher Flow Launcher lors de la perte de focus</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Cacher Flow Launcher lors de la perte de focus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Ne pas afficher le message de mise à jour pour les nouvelles versions</system:String> <system:String x:Key="dontPromptUpdateMsg">Ne pas afficher le message de mise à jour pour les nouvelles versions</system:String>
@ -126,7 +129,8 @@
<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">Site Web</system:String> <system:String x:Key="plugin_query_web">Site Web</system:String>
<system:String x:Key="plugin_uninstall">Désinstaller</system:String> <system:String x:Key="plugin_uninstall">Désinstaller</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Échec de la suppression des paramètres du plugin</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins : {0} - Échec de la suppression des fichiers de configuration des plugins, veuillez les supprimer manuellement</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Magasin des Plugins</system:String> <system:String x:Key="pluginStore">Magasin des Plugins</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Cette extension a été mis à jour au cours des 7 derniers jours</system:String> <system:String x:Key="LabelNewToolTip">Cette extension a été mis à jour au cours des 7 derniers jours</system:String>
<system:String x:Key="LabelUpdateToolTip">Une nouvelle mise à jour est disponible</system:String> <system:String x:Key="LabelUpdateToolTip">Une nouvelle mise à jour est disponible</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Thèmes</system:String> <system:String x:Key="theme">Thèmes</system:String>
<system:String x:Key="appearance">Apparence</system:String> <system:String x:Key="appearance">Apparence</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">Ce thème prend en charge deux modes (clair/sombre).</system:String> <system:String x:Key="TypeIsDarkToolTip">Ce thème prend en charge deux modes (clair/sombre).</system:String>
<system:String x:Key="TypeHasBlurToolTip">Ce thème prend en charge l'arrière-plan flou et transparent.</system:String> <system:String x:Key="TypeHasBlurToolTip">Ce thème prend en charge l'arrière-plan flou et transparent.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Raccourcis</system:String> <system:String x:Key="hotkey">Raccourcis</system:String>
<system:String x:Key="hotkeys">Raccourcis</system:String> <system:String x:Key="hotkeys">Raccourcis</system:String>
@ -296,6 +297,9 @@
<system:String x:Key="userdatapath">Emplacement des données utilisateur</system:String> <system:String x:Key="userdatapath">Emplacement des données utilisateur</system:String>
<system:String x:Key="userdatapathToolTip">Les paramètres utilisateur et les plugins installés sont enregistrés dans le dossier des données utilisateur. Cet emplacement peut varier selon que vous soyez en mode portable ou non.</system:String> <system:String x:Key="userdatapathToolTip">Les paramètres utilisateur et les plugins installés sont enregistrés dans le dossier des données utilisateur. Cet emplacement peut varier selon que vous soyez en mode portable ou non.</system:String>
<system:String x:Key="userdatapathButton">Ouvrir le dossier</system:String> <system:String x:Key="userdatapathButton">Ouvrir le dossier</system:String>
<system:String x:Key="logLevel">Niveau de journalisation</system:String>
<system:String x:Key="LogLevelDEBUG">Débogage</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Sélectionner le gestionnaire de fichiers</system:String> <system:String x:Key="fileManagerWindow">Sélectionner le gestionnaire de fichiers</system:String>
@ -326,7 +330,7 @@
<system:String x:Key="oldActionKeywords">Ancien mot-clé d'action</system:String> <system:String x:Key="oldActionKeywords">Ancien mot-clé d'action</system:String>
<system:String x:Key="newActionKeywords">Nouveau mot-clé d'action</system:String> <system:String x:Key="newActionKeywords">Nouveau mot-clé d'action</system:String>
<system:String x:Key="cancel">Annuler</system:String> <system:String x:Key="cancel">Annuler</system:String>
<system:String x:Key="done">Termin</system:String> <system:String x:Key="done">Terminé</system:String>
<system:String x:Key="cannotFindSpecifiedPlugin">Impossible de trouver le module spécifi</system:String> <system:String x:Key="cannotFindSpecifiedPlugin">Impossible de trouver le module spécifi</system:String>
<system:String x:Key="newActionKeywordsCannotBeEmpty">Le nouveau mot-clé d'action doit être spécifi</system:String> <system:String x:Key="newActionKeywordsCannotBeEmpty">Le nouveau mot-clé d'action doit être spécifi</system:String>
<system:String x:Key="newActionKeywordsHasBeenAssigned">Le nouveau mot-clé d'action a été assigné à un autre module, veuillez en choisir un autre</system:String> <system:String x:Key="newActionKeywordsHasBeenAssigned">Le nouveau mot-clé d'action a été assigné à un autre module, veuillez en choisir un autre</system:String>
@ -366,6 +370,7 @@ Si vous ajoutez un préfixe &quot;@&quot; lors de la saisie d'un raccourci, celu
<system:String x:Key="commonOK">Ok</system:String> <system:String x:Key="commonOK">Ok</system:String>
<system:String x:Key="commonYes">Oui</system:String> <system:String x:Key="commonYes">Oui</system:String>
<system:String x:Key="commonNo">Non</system:String> <system:String x:Key="commonNo">Non</system:String>
<system:String x:Key="commonBackground">Arrière-plan</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Version</system:String> <system:String x:Key="reportWindow_version">Version</system:String>
@ -382,6 +387,9 @@ Si vous ajoutez un préfixe &quot;@&quot; lors de la saisie d'un raccourci, celu
<system:String x:Key="reportWindow_report_succeed">Signalement envoy</system:String> <system:String x:Key="reportWindow_report_succeed">Signalement envoy</system:String>
<system:String x:Key="reportWindow_report_failed">Échec de l'envoi du signalement</system:String> <system:String x:Key="reportWindow_report_failed">Échec de l'envoi du signalement</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher a rencontré une erreur</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher a rencontré une erreur</system:String>
<system:String x:Key="reportWindow_please_open_issue">Veuillez ouvrir un nouveau ticket dans</system:String>
<system:String x:Key="reportWindow_upload_log">1. Télécharger le fichier journal : {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copiez le message dexception ci-dessous</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Veuillez patienter...</system:String> <system:String x:Key="pleaseWait">Veuillez patienter...</system:String>

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 זיהה שהתקנת את התוסף {0}, אשר דורש את {1} כדי לפעול. האם תרצה להוריד את {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 אם זה כבר מותקן, לחץ על 'לא' ותתבקש לבחור את התיקיה המכילה את קובץ ההפעלה {1}
</system:String> </system:String>
<system:String x:Key="runtimePluginChooseRuntimeExecutable">אנא בחר את קובץ ההפעלה {0}</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">אנא בחר את קובץ ההפעלה {0}</system:String>
<system:String x:Key="runtimePluginUnableToSetExecutablePath">לא ניתן להגדיר נתיב הפעלה {0}, אנא נסה שוב בהגדרות Flow (גלול עד למטה).</system:String> <system:String x:Key="runtimePluginUnableToSetExecutablePath">לא ניתן להגדיר נתיב הפעלה {0}, אנא נסה שוב בהגדרות Flow (גלול עד למטה).</system:String>
@ -13,13 +13,14 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">רישום מקש הקיצור &quot;{0}&quot; נכשל. ייתכן שמקש הקיצור נמצא בשימוש על ידי תוכנה אחרת. שנה למקש קיצור אחר, או צא מהתוכנה האחרת.</system:String> <system:String x:Key="registerHotkeyFailed">רישום מקש הקיצור &quot;{0}&quot; נכשל. ייתכן שמקש הקיצור נמצא בשימוש על ידי תוכנה אחרת. שנה למקש קיצור אחר, או צא מהתוכנה האחרת.</system:String>
<system:String x:Key="unregisterHotkeyFailed">ביטול הרישום של מקש קיצור &quot;{0}&quot; נכשל. אנא נסה שוב או עיין ביומן הרישום לפרטים נוספים</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">לא ניתן היה להפעיל את {0}</system:String> <system:String x:Key="couldnotStartCmd">לא ניתן היה להפעיל את {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">פורמט קובץ תוסף Flow Launcher לא חוקי</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">פורמט קובץ תוסף Flow Launcher לא חוקי</system:String>
<system:String x:Key="setAsTopMostInThisQuery">הגדר כגבוה ביותר בשאילתה זו</system:String> <system:String x:Key="setAsTopMostInThisQuery">הגדר כגבוה ביותר בשאילתה זו</system:String>
<system:String x:Key="cancelTopMostInThisQuery">בטל העלאה בשאילתה זו</system:String> <system:String x:Key="cancelTopMostInThisQuery">בטל העלאה בשאילתה זו</system:String>
<system:String x:Key="executeQuery">בצע שאילתה: {0}</system:String> <system:String x:Key="executeQuery">בצע שאילתה: {0}</system:String>
<system:String x:Key="lastExecuteTime">Last execution time: {0}</system:String> <system:String x:Key="lastExecuteTime">זמן ביצוע אחרון: {0}</system:String>
<system:String x:Key="iconTrayOpen">פתח</system:String> <system:String x:Key="iconTrayOpen">פתח</system:String>
<system:String x:Key="iconTraySettings">הגדרות</system:String> <system:String x:Key="iconTraySettings">הגדרות</system:String>
<system:String x:Key="iconTrayAbout">אודות</system:String> <system:String x:Key="iconTrayAbout">אודות</system:String>
@ -28,15 +29,15 @@
<system:String x:Key="copy">העתק</system:String> <system:String x:Key="copy">העתק</system:String>
<system:String x:Key="cut">גזור</system:String> <system:String x:Key="cut">גזור</system:String>
<system:String x:Key="paste">הדבק</system:String> <system:String x:Key="paste">הדבק</system:String>
<system:String x:Key="undo">Undo</system:String> <system:String x:Key="undo">בטל</system:String>
<system:String x:Key="selectAll">בחר הכל</system:String> <system:String x:Key="selectAll">בחר הכל</system:String>
<system:String x:Key="fileTitle">קובץ</system:String> <system:String x:Key="fileTitle">קובץ</system:String>
<system:String x:Key="folderTitle">תיקייה</system:String> <system:String x:Key="folderTitle">תיקייה</system:String>
<system:String x:Key="textTitle">טקסט</system:String> <system:String x:Key="textTitle">טקסט</system:String>
<system:String x:Key="GameMode">מצב משחק</system:String> <system:String x:Key="GameMode">מצב משחק</system:String>
<system:String x:Key="GameModeToolTip">השהה את השימוש במקשי קיצור.</system:String> <system:String x:Key="GameModeToolTip">השהה את השימוש במקשי קיצור.</system:String>
<system:String x:Key="PositionReset">Position Reset</system:String> <system:String x:Key="PositionReset">איפוס מיקום</system:String>
<system:String x:Key="PositionResetToolTip">Reset search window position</system:String> <system:String x:Key="PositionResetToolTip">אפס את מיקום חלון החיפוש</system:String>
<!-- Setting General --> <!-- Setting General -->
<system:String x:Key="flowlauncher_settings">הגדרות</system:String> <system:String x:Key="flowlauncher_settings">הגדרות</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">מצב נייד</system:String> <system:String x:Key="portableMode">מצב נייד</system:String>
<system:String x:Key="portableModeToolTIp">אחסן את כל ההגדרות ונתוני המשתמש בתיקייה אחת (שימושי בשימוש עם כוננים נשלפים או שירותי ענן).</system:String> <system:String x:Key="portableModeToolTIp">אחסן את כל ההגדרות ונתוני המשתמש בתיקייה אחת (שימושי בשימוש עם כוננים נשלפים או שירותי ענן).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">הפעל את Flow Launcher בעת הפעלת Window</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">הפעל את Flow Launcher בעת הפעלת Window</system:String>
<system:String x:Key="useLogonTaskForStartup">השתמש במשימת כניסה במקום בכניסה בעת האתחול, לחוויית הפעלה מהירה יותר</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">לאחר הסרת ההתקנה, עליך להסיר ידנית משימה זו (Flow.Launcher Startup) דרך מתזמן המשימות</system:String>
<system:String x:Key="setAutoStartFailed">שגיאה בהגדרת ההפעלה בעת הפעלת windows</system:String> <system:String x:Key="setAutoStartFailed">שגיאה בהגדרת ההפעלה בעת הפעלת windows</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">הסתר את Flow Launcher כאשר הוא אינו החלון הפעיל</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">הסתר את Flow Launcher כאשר הוא אינו החלון הפעיל</system:String>
<system:String x:Key="dontPromptUpdateMsg">אל תציג התראות על גרסה חדשה</system:String> <system:String x:Key="dontPromptUpdateMsg">אל תציג התראות על גרסה חדשה</system:String>
@ -60,179 +63,177 @@
<system:String x:Key="SearchWindowAlignRightTop">ימין עליון</system:String> <system:String x:Key="SearchWindowAlignRightTop">ימין עליון</system:String>
<system:String x:Key="SearchWindowAlignCustom">Custom Position</system:String> <system:String x:Key="SearchWindowAlignCustom">Custom Position</system:String>
<system:String x:Key="language">שפה</system:String> <system:String x:Key="language">שפה</system:String>
<system:String x:Key="lastQueryMode">Last Query Style</system:String> <system:String x:Key="lastQueryMode">סגנון שאילתה אחרונה</system:String>
<system:String x:Key="lastQueryModeToolTip">Show/Hide previous results when Flow Launcher is reactivated.</system:String> <system:String x:Key="lastQueryModeToolTip">הצג/הסתר תוצאות קודמות כאשר Flow Launcher מופעל מחדש.</system:String>
<system:String x:Key="LastQueryPreserved">Preserve Last Query</system:String> <system:String x:Key="LastQueryPreserved">שמור את השאילתה האחרונה</system:String>
<system:String x:Key="LastQuerySelected">Select last Query</system:String> <system:String x:Key="LastQuerySelected">בחר שאילתא אחרונה</system:String>
<system:String x:Key="LastQueryEmpty">Empty last Query</system:String> <system:String x:Key="LastQueryEmpty">נקה שאילתא אחרונה</system:String>
<system:String x:Key="LastQueryActionKeywordPreserved">Preserve Last Action Keyword</system:String> <system:String x:Key="LastQueryActionKeywordPreserved">שמור מילת מפתח לפעולה האחרונה</system:String>
<system:String x:Key="LastQueryActionKeywordSelected">Select Last Action Keyword</system:String> <system:String x:Key="LastQueryActionKeywordSelected">בחר מילת מפתח לפעולה האחרונה</system:String>
<system:String x:Key="KeepMaxResults">Fixed Window Height</system:String> <system:String x:Key="KeepMaxResults">גובה חלון קבוע</system:String>
<system:String x:Key="KeepMaxResultsToolTip">The window height is not adjustable by dragging.</system:String> <system:String x:Key="KeepMaxResultsToolTip">גובה החלון אינו ניתן להתאמה באמצעות גרירה.</system:String>
<system:String x:Key="maxShowResults">Maximum results shown</system:String> <system:String x:Key="maxShowResults">כמות תוצאות מרבית</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">ניתן גם להתאים במהירות באמצעות CTRL+פלוס ו-CTRL+מינוס.</system:String>
<system:String x:Key="ignoreHotkeysOnFullscreen">Ignore hotkeys in fullscreen mode</system:String> <system:String x:Key="ignoreHotkeysOnFullscreen">התעלם מקיצורי מקשים במצב מסך מלא</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">השבת את הפעלת Flow Launcher כאשר יישום מסך מלא פעיל (מומלץ למשחקים).</system:String>
<system:String x:Key="defaultFileManager">Default File Manager</system:String> <system:String x:Key="defaultFileManager">מנהל הקבצים המוגדר כברירת מחדל</system:String>
<system:String x:Key="defaultFileManagerToolTip">Select the file manager to use when opening the folder.</system:String> <system:String x:Key="defaultFileManagerToolTip">בחר את מנהל הקבצים לשימוש בעת פתיחת תיקיה.</system:String>
<system:String x:Key="defaultBrowser">Default Web Browser</system:String> <system:String x:Key="defaultBrowser">דפדפן ברירת מחדל</system:String>
<system:String x:Key="defaultBrowserToolTip">Setting for New Tab, New Window, Private Mode.</system:String> <system:String x:Key="defaultBrowserToolTip">הגדרה ללשונית חדשה, חלון חדש, מצב פרטי.</system:String>
<system:String x:Key="pythonFilePath">Python Path</system:String> <system:String x:Key="pythonFilePath">נתיב Python</system:String>
<system:String x:Key="nodeFilePath">Node.js Path</system:String> <system:String x:Key="nodeFilePath">נתיב Node.js</system:String>
<system:String x:Key="selectNodeExecutable">Please select the Node.js executable</system:String> <system:String x:Key="selectNodeExecutable">בחר את קובץ ההפעלה של Node.js</system:String>
<system:String x:Key="selectPythonExecutable">Please select pythonw.exe</system:String> <system:String x:Key="selectPythonExecutable">בחר את pythonw.exe</system:String>
<system:String x:Key="typingStartEn">Always Start Typing in English Mode</system:String> <system:String x:Key="typingStartEn">תמיד התחל להקליד במצב אנגלית</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">שנה זמנית את שיטת הקלט שלך למצב אנגלית בעת הפעלת Flow.</system:String>
<system:String x:Key="autoUpdates">עדכון אוטומטי</system:String> <system:String x:Key="autoUpdates">עדכון אוטומטי</system:String>
<system:String x:Key="select">בחר</system:String> <system:String x:Key="select">בחר</system:String>
<system:String x:Key="hideOnStartup">Hide Flow Launcher on startup</system:String> <system:String x:Key="hideOnStartup">הסתר את Flow Launcher בהפעלת המחשב</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 מוסתר במגש לאחר ההפעלה.</system:String>
<system:String x:Key="hideNotifyIcon">Hide tray icon</system:String> <system:String x:Key="hideNotifyIcon">הסתר אייקון מגש</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">כאשר האייקון מוסתר מהמגש, ניתן לפתוח את תפריט ההגדרות על ידי לחיצה ימנית על חלון החיפוש.</system:String>
<system:String x:Key="querySearchPrecision">Query Search Precision</system:String> <system:String x:Key="querySearchPrecision">דיוק חיפוש שאילתה</system:String>
<system:String x:Key="querySearchPrecisionToolTip">Changes minimum match score required for results.</system:String> <system:String x:Key="querySearchPrecisionToolTip">משנה את ציון ההתאמה המינימלי הנדרש לתוצאות.</system:String>
<system:String x:Key="SearchPrecisionNone">ללא</system:String> <system:String x:Key="SearchPrecisionNone">ללא</system:String>
<system:String x:Key="SearchPrecisionLow">נמוך</system:String> <system:String x:Key="SearchPrecisionLow">נמוך</system:String>
<system:String x:Key="SearchPrecisionRegular">Regular</system:String> <system:String x:Key="SearchPrecisionRegular">Regular</system:String>
<system:String x:Key="ShouldUsePinyin">Search with Pinyin</system:String> <system:String x:Key="ShouldUsePinyin">Search with 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">Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.</system:String>
<system:String x:Key="AlwaysPreview">Always Preview</system:String> <system:String x:Key="AlwaysPreview">הצג תמיד תצוגה מקדימה</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">פתח תמיד את לוח התצוגה המקדימה כאשר Flow מופעל. הקש על {0} כדי להחליף את התצוגה המקדימה.</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">לא ניתן להחיל אפקט צל כאשר העיצוב הנוכחי מוגדר לאפקט טשטוש</system:String>
<!-- Setting Plugin --> <!-- Setting Plugin -->
<system:String x:Key="searchplugin">Search Plugin</system:String> <system:String x:Key="searchplugin">חפש תוסף</system:String>
<system:String x:Key="searchpluginToolTip">Ctrl+F to search plugins</system:String> <system:String x:Key="searchpluginToolTip">Ctrl+F לחיפוש תוסף</system:String>
<system:String x:Key="searchplugin_Noresult_Title">No results found</system:String> <system:String x:Key="searchplugin_Noresult_Title">לא נמצאו תוצאות</system:String>
<system:String x:Key="searchplugin_Noresult_Subtitle">Please try a different search.</system:String> <system:String x:Key="searchplugin_Noresult_Subtitle">Please try a different search.</system:String>
<system:String x:Key="plugin">Plugin</system:String> <system:String x:Key="plugin">תוסף</system:String>
<system:String x:Key="plugins">תוספים</system:String> <system:String x:Key="plugins">תוספים</system:String>
<system:String x:Key="browserMorePlugins">מצא תוספים נוספים</system:String> <system:String x:Key="browserMorePlugins">מצא תוספים נוספים</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">כבוי</system:String>
<system:String x:Key="actionKeywordsTitle">Action keyword Setting</system:String> <system:String x:Key="actionKeywordsTitle">הגדרת מילת מפתח לפעולה</system:String>
<system:String x:Key="actionKeywords">Action keyword</system:String> <system:String x:Key="actionKeywords">מילת מפתח לפעולה</system:String>
<system:String x:Key="currentActionKeywords">Current action keyword</system:String> <system:String x:Key="currentActionKeywords">מילת מפתח נוכחית לפעולה</system:String>
<system:String x:Key="newActionKeyword">New action keyword</system:String> <system:String x:Key="newActionKeyword">מילת מפתח חדשה לפעולה</system:String>
<system:String x:Key="actionKeywordsTooltip">Change Action Keywords</system:String> <system:String x:Key="actionKeywordsTooltip">שנה מילות מפתח לפעולה</system:String>
<system:String x:Key="currentPriority">Current Priority</system:String> <system:String x:Key="currentPriority">עדיפות נוכחית</system:String>
<system:String x:Key="newPriority">New Priority</system:String> <system:String x:Key="newPriority">עדיפות חדשה</system:String>
<system:String x:Key="priority">Priority</system:String> <system:String x:Key="priority">עדיפות</system:String>
<system:String x:Key="priorityToolTip">Change Plugin Results Priority</system:String> <system:String x:Key="priorityToolTip">שנה עדיפות תוצאות תוסף</system:String>
<system:String x:Key="pluginDirectory">Plugin Directory</system:String> <system:String x:Key="pluginDirectory">ספריית תוספים</system:String>
<system:String x:Key="author">מאת</system:String> <system:String x:Key="author">מאת</system:String>
<system:String x:Key="plugin_init_time">Init time:</system:String> <system:String x:Key="plugin_init_time">זמן פתיחה:</system:String>
<system:String x:Key="plugin_query_time">Query time:</system:String> <system:String x:Key="plugin_query_time">זמן שאילתא:</system:String>
<system:String x:Key="plugin_query_version">גרסה</system:String> <system:String x:Key="plugin_query_version">גרסה</system:String>
<system:String x:Key="plugin_query_web">אתר</system:String> <system:String x:Key="plugin_query_web">אתר</system:String>
<system:String x:Key="plugin_uninstall">הסר התקנה</system:String> <system:String x:Key="plugin_uninstall">הסר התקנה</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">נכשל בהסרת הגדרות התוסף</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">תוספים: {0} - נכשל בהסרת קבצי הגדרות התוסף, יש להסירם ידנית</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">חנות תוספים</system:String> <system:String x:Key="pluginStore">חנות תוספים</system:String>
<system:String x:Key="pluginStore_NewRelease">שחרור חדש</system:String> <system:String x:Key="pluginStore_NewRelease">שחרור חדש</system:String>
<system:String x:Key="pluginStore_RecentlyUpdated">Recently Updated</system:String> <system:String x:Key="pluginStore_RecentlyUpdated">עודכן לאחרונה</system:String>
<system:String x:Key="pluginStore_None">תוספים</system:String> <system:String x:Key="pluginStore_None">תוספים</system:String>
<system:String x:Key="pluginStore_Installed">מותקן</system:String> <system:String x:Key="pluginStore_Installed">מותקן</system:String>
<system:String x:Key="refresh">רענן</system:String> <system:String x:Key="refresh">רענן</system:String>
<system:String x:Key="installbtn">התקן</system:String> <system:String x:Key="installbtn">התקן</system:String>
<system:String x:Key="uninstallbtn">הסר התקנה</system:String> <system:String x:Key="uninstallbtn">הסר התקנה</system:String>
<system:String x:Key="updatebtn">עדכון</system:String> <system:String x:Key="updatebtn">עדכון</system:String>
<system:String x:Key="LabelInstalledToolTip">Plugin already installed</system:String> <system:String x:Key="LabelInstalledToolTip">התוסף כבר מותקן</system:String>
<system:String x:Key="LabelNew">גרסה חדשה</system:String> <system:String x:Key="LabelNew">גרסה חדשה</system:String>
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">תוסף זה עודכן במהלך 7 הימים האחרונים</system:String>
<system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String> <system:String x:Key="LabelUpdateToolTip">עדכון חדש זמין</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">ערכת נושא</system:String> <system:String x:Key="theme">ערכת נושא</system:String>
<system:String x:Key="appearance">Appearance</system:String> <system:String x:Key="appearance">מראה</system:String>
<system:String x:Key="browserMoreThemes">גלריית ערכות נושא</system:String> <system:String x:Key="browserMoreThemes">גלריית ערכות נושא</system:String>
<system:String x:Key="howToCreateTheme">How to create a theme</system:String> <system:String x:Key="howToCreateTheme">איך ליצור ערכת נושא</system:String>
<system:String x:Key="hiThere">Hi There</system:String> <system:String x:Key="hiThere">שלום</system:String>
<system:String x:Key="SampleTitleExplorer">Explorer</system:String> <system:String x:Key="SampleTitleExplorer">סייר</system:String>
<system:String x:Key="SampleSubTitleExplorer">Search for files, folders and file contents</system:String> <system:String x:Key="SampleSubTitleExplorer">חפש קבצים, תיקיות ובתוכן הקבצים</system:String>
<system:String x:Key="SampleTitleWebSearch">WebSearch</system:String> <system:String x:Key="SampleTitleWebSearch">חיפוש באינטרנט</system:String>
<system:String x:Key="SampleSubTitleWebSearch">Search the web with different search engine support</system:String> <system:String x:Key="SampleSubTitleWebSearch">Search the web with different search engine support</system:String>
<system:String x:Key="SampleTitleProgram">Program</system:String> <system:String x:Key="SampleTitleProgram">תוכנה</system:String>
<system:String x:Key="SampleSubTitleProgram">Launch programs as admin or a different user</system:String> <system:String x:Key="SampleSubTitleProgram">הפעל תוכנות כמנהל או כמשתמש אחר</system:String>
<system:String x:Key="SampleTitleProcessKiller">ProcessKiller</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">הפסקת תהליכים לא רצויים</system:String>
<system:String x:Key="SearchBarHeight">Search Bar Height</system:String> <system:String x:Key="SearchBarHeight">גובה סרגל החיפוש</system:String>
<system:String x:Key="ItemHeight">Item Height</system:String> <system:String x:Key="ItemHeight">גובה פריט</system:String>
<system:String x:Key="queryBoxFont">Query Box Font</system:String> <system:String x:Key="queryBoxFont">גופן תיבת שאילתות</system:String>
<system:String x:Key="resultItemFont">Result Title Font</system:String> <system:String x:Key="resultItemFont">גופן הכותרת לתוצאה</system:String>
<system:String x:Key="resultSubItemFont">Result Subtitle Font</system:String> <system:String x:Key="resultSubItemFont">גופן כותרת המשנה לתוצאה</system:String>
<system:String x:Key="resetCustomize">אפס</system:String> <system:String x:Key="resetCustomize">אפס</system:String>
<system:String x:Key="CustomizeToolTip">Customize</system:String> <system:String x:Key="CustomizeToolTip">התאם אישית</system:String>
<system:String x:Key="windowMode">Window Mode</system:String> <system:String x:Key="windowMode">מצב חלון</system:String>
<system:String x:Key="opacity">Opacity</system:String> <system:String x:Key="opacity">שקיפות</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">ערכת הנושא {0} אינה קיימת, חוזר לערכת ברירת המחדל</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">נכשל בטעינת העיצוב {0}, חוזר לערכת ברירת המחדל</system:String>
<system:String x:Key="ThemeFolder">Theme Folder</system:String> <system:String x:Key="ThemeFolder">תיקיית ערכת נושא</system:String>
<system:String x:Key="OpenThemeFolder">Open Theme Folder</system:String> <system:String x:Key="OpenThemeFolder">פתח תיקיית ערכת נושא</system:String>
<system:String x:Key="ColorScheme">Color Scheme</system:String> <system:String x:Key="ColorScheme">ערכת צבעים</system:String>
<system:String x:Key="ColorSchemeSystem">System Default</system:String> <system:String x:Key="ColorSchemeSystem">ברירת המחדל של המערכת</system:String>
<system:String x:Key="ColorSchemeLight">בהיר</system:String> <system:String x:Key="ColorSchemeLight">בהיר</system:String>
<system:String x:Key="ColorSchemeDark">כהה</system:String> <system:String x:Key="ColorSchemeDark">כהה</system:String>
<system:String x:Key="SoundEffect">Sound Effect</system:String> <system:String x:Key="SoundEffect">אפקט צליל</system:String>
<system:String x:Key="SoundEffectTip">Play a small sound when the search window opens</system:String> <system:String x:Key="SoundEffectTip">השמע צליל קטן כאשר חלון החיפוש נפתח</system:String>
<system:String x:Key="SoundEffectVolume">Sound Effect Volume</system:String> <system:String x:Key="SoundEffectVolume">עוצמת אפקט הקול</system:String>
<system:String x:Key="SoundEffectVolumeTip">Adjust the volume of the sound effect</system:String> <system:String x:Key="SoundEffectVolumeTip">התאם את עוצמת אפקט הקול</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 אינו זמין, והוא נדרש להתאמת עוצמת הקול של Flow. אנא בדוק את ההתקנה שלך אם אתה צריך להתאים את עוצמת הקול.</system:String>
<system:String x:Key="Animation">Animation</system:String> <system:String x:Key="Animation">אנימציה</system:String>
<system:String x:Key="AnimationTip">Use Animation in UI</system:String> <system:String x:Key="AnimationTip">השתמש באנימציה בממשק המשתמש</system:String>
<system:String x:Key="AnimationSpeed">Animation Speed</system:String> <system:String x:Key="AnimationSpeed">מהירות אנימציה</system:String>
<system:String x:Key="AnimationSpeedTip">The speed of the UI animation</system:String> <system:String x:Key="AnimationSpeedTip">מהירות האנימציה של ממשק המשתמש</system:String>
<system:String x:Key="AnimationSpeedSlow">Slow</system:String> <system:String x:Key="AnimationSpeedSlow">איטי</system:String>
<system:String x:Key="AnimationSpeedMedium">Medium</system:String> <system:String x:Key="AnimationSpeedMedium">בינוני</system:String>
<system:String x:Key="AnimationSpeedFast">Fast</system:String> <system:String x:Key="AnimationSpeedFast">מהיר</system:String>
<system:String x:Key="AnimationSpeedCustom">Custom</system:String> <system:String x:Key="AnimationSpeedCustom">מותאם אישית</system:String>
<system:String x:Key="Clock">Clock</system:String> <system:String x:Key="Clock">שעון</system:String>
<system:String x:Key="Date">Date</system:String> <system:String x:Key="Date">תאריך</system:String>
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">ערכת נושא זאת תומך בשני מצבים (בהיר/כהה).</system:String>
<system:String x:Key="TypeHasBlurToolTip">This theme supports Blur Transparent Background.</system:String> <system:String x:Key="TypeHasBlurToolTip">ערכת נושא זו תומכת בטשטוש רקע שקוף.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">מקש קיצור</system:String> <system:String x:Key="hotkey">מקש קיצור</system:String>
<system:String x:Key="hotkeys">מקשי קיצור</system:String> <system:String x:Key="hotkeys">מקשי קיצור</system:String>
<system:String x:Key="flowlauncherHotkey">פתח את Flow Launcher</system:String> <system:String x:Key="flowlauncherHotkey">פתח את Flow Launcher</system:String>
<system:String x:Key="flowlauncherHotkeyToolTip">Enter shortcut to show/hide Flow Launcher.</system:String> <system:String x:Key="flowlauncherHotkeyToolTip">הזן קיצור דרך להצגה/הסתרה של Flow Launcher.</system:String>
<system:String x:Key="previewHotkey">Toggle Preview</system:String> <system:String x:Key="previewHotkey">הצג/הסתר תצוגה מקדימה</system:String>
<system:String x:Key="previewHotkeyToolTip">Enter shortcut to show/hide preview in search window.</system:String> <system:String x:Key="previewHotkeyToolTip">הזן קיצור דרך להצגה/הסתרה של התצוגה המקדימה בחלון החיפוש.</system:String>
<system:String x:Key="hotkeyPresets">Hotkey Presets</system:String> <system:String x:Key="hotkeyPresets">קיצורי דרך מוגדרים</system:String>
<system:String x:Key="hotkeyPresetsToolTip">List of currently registered hotkeys</system:String> <system:String x:Key="hotkeyPresetsToolTip">רשימת קיצורי הדרך הרשומים כעת</system:String>
<system:String x:Key="openResultModifiers">Open Result Modifier Key</system:String> <system:String x:Key="openResultModifiers">מקש משני לפתיחת תוצאה</system:String>
<system:String x:Key="openResultModifiersToolTip">Select a modifier key to open selected result via keyboard.</system:String> <system:String x:Key="openResultModifiersToolTip">בחר מקש משני לפתיחת התוצאה שנבחרה דרך המקלדת.</system:String>
<system:String x:Key="showOpenResultHotkey">הצג מקש קיצור</system:String> <system:String x:Key="showOpenResultHotkey">הצג מקש קיצור</system:String>
<system:String x:Key="showOpenResultHotkeyToolTip">Show result selection hotkey with results.</system:String> <system:String x:Key="showOpenResultHotkeyToolTip">הצג מקש קיצור לבחירת תוצאה עם התוצאות.</system:String>
<system:String x:Key="autoCompleteHotkey">Auto Complete</system:String> <system:String x:Key="autoCompleteHotkey">השלמה אוטומטית</system:String>
<system:String x:Key="autoCompleteHotkeyToolTip">Runs autocomplete for the selected items.</system:String> <system:String x:Key="autoCompleteHotkeyToolTip">מבצע השלמה אוטומטית לפריטים שנבחרו.</system:String>
<system:String x:Key="SelectNextItemHotkey">Select Next Item</system:String> <system:String x:Key="SelectNextItemHotkey">בחר את הפריט הבא</system:String>
<system:String x:Key="SelectPrevItemHotkey">Select Previous Item</system:String> <system:String x:Key="SelectPrevItemHotkey">בחר את הפריט הקודם</system:String>
<system:String x:Key="SelectNextPageHotkey">הדף הבא</system:String> <system:String x:Key="SelectNextPageHotkey">הדף הבא</system:String>
<system:String x:Key="SelectPrevPageHotkey">הדף הקודם</system:String> <system:String x:Key="SelectPrevPageHotkey">הדף הקודם</system:String>
<system:String x:Key="CycleHistoryUpHotkey">Cycle Previous Query</system:String> <system:String x:Key="CycleHistoryUpHotkey">עבור לשאילתה הקודמת</system:String>
<system:String x:Key="CycleHistoryDownHotkey">Cycle Next Query</system:String> <system:String x:Key="CycleHistoryDownHotkey">עבור לשאילתה הבאה</system:String>
<system:String x:Key="OpenContextMenuHotkey">Open Context Menu</system:String> <system:String x:Key="OpenContextMenuHotkey">פתח תפריט הקשר</system:String>
<system:String x:Key="OpenNativeContextMenuHotkey">Open Native Context Menu</system:String> <system:String x:Key="OpenNativeContextMenuHotkey">פתח תפריט הקשר מקומי</system:String>
<system:String x:Key="SettingWindowHotkey">Open Setting Window</system:String> <system:String x:Key="SettingWindowHotkey">פתח חלון הגדרות</system:String>
<system:String x:Key="CopyFilePathHotkey">העתק את נתיב הקובץ</system:String> <system:String x:Key="CopyFilePathHotkey">העתק את נתיב הקובץ</system:String>
<system:String x:Key="ToggleGameModeHotkey">Toggle Game Mode</system:String> <system:String x:Key="ToggleGameModeHotkey">הפעל או כבה מצב משחק</system:String>
<system:String x:Key="ToggleHistoryHotkey">Toggle History</system:String> <system:String x:Key="ToggleHistoryHotkey">הפעל או כבה היסטוריה</system:String>
<system:String x:Key="OpenContainFolderHotkey">Open Containing Folder</system:String> <system:String x:Key="OpenContainFolderHotkey">פתח תיקייה מכילה</system:String>
<system:String x:Key="RunAsAdminHotkey">הרץ כמנהל</system:String> <system:String x:Key="RunAsAdminHotkey">הרץ כמנהל</system:String>
<system:String x:Key="RequeryHotkey">Refresh Search Results</system:String> <system:String x:Key="RequeryHotkey">רענן תוצאות חיפוש</system:String>
<system:String x:Key="ReloadPluginHotkey">Reload Plugins Data</system:String> <system:String x:Key="ReloadPluginHotkey">טען מחדש נתוני תוספים</system:String>
<system:String x:Key="QuickWidthHotkey">Quick Adjust Window Width</system:String> <system:String x:Key="QuickWidthHotkey">כוונון מהיר של רוחב החלון</system:String>
<system:String x:Key="QuickHeightHotkey">Quick Adjust Window Height</system:String> <system:String x:Key="QuickHeightHotkey">כוונון מהיר של גובה החלון</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">השתמש כאשר יש צורך בטעינה מחדש של תוספים ובעדכון הנתונים שלהם.</system:String>
<system:String x:Key="AdditionalHotkeyToolTip">You can add one more hotkey for this function.</system:String> <system:String x:Key="AdditionalHotkeyToolTip">באפשרותך להוסיף מקש קיצור נוסף לפעולה זו.</system:String>
<system:String x:Key="customQueryHotkey">Custom Query Hotkeys</system:String> <system:String x:Key="customQueryHotkey">מקשי קיצור לשאילתות מותאמות אישית</system:String>
<system:String x:Key="customQueryShortcut">Custom Query Shortcuts</system:String> <system:String x:Key="customQueryShortcut">קיצורי דרך לשאילתות מותאמות אישית</system:String>
<system:String x:Key="builtinShortcuts">Built-in Shortcuts</system:String> <system:String x:Key="builtinShortcuts">קיצורי דרך מובנים</system:String>
<system:String x:Key="customQuery">שאילתה</system:String> <system:String x:Key="customQuery">שאילתה</system:String>
<system:String x:Key="customShortcut">קיצור דרך</system:String> <system:String x:Key="customShortcut">קיצור דרך</system:String>
<system:String x:Key="customShortcutExpansion">הרחבה</system:String> <system:String x:Key="customShortcutExpansion">הרחבה</system:String>
@ -242,33 +243,33 @@
<system:String x:Key="add">הוסף</system:String> <system:String x:Key="add">הוסף</system:String>
<system:String x:Key="none">ללא</system:String> <system:String x:Key="none">ללא</system:String>
<system:String x:Key="pleaseSelectAnItem">אנא בחר פריט</system:String> <system:String x:Key="pleaseSelectAnItem">אנא בחר פריט</system:String>
<system:String x:Key="deleteCustomHotkeyWarning">Are you sure you want to delete {0} plugin hotkey?</system:String> <system:String x:Key="deleteCustomHotkeyWarning">האם אתה בטוח שברצונך למחוק את מקש הקיצור של התוסף {0}?</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">האם אתה בטוח שברצונך למחוק את הקיצור: {0} עם ההרחבה {1}?</system:String>
<system:String x:Key="shortcut_clipboard_description">Get text from clipboard.</system:String> <system:String x:Key="shortcut_clipboard_description">קבל טקסט מהלוח.</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">קבל נתיב מסייר הקבצים הפעיל.</system:String>
<system:String x:Key="queryWindowShadowEffect">Query window shadow effect</system:String> <system:String x:Key="queryWindowShadowEffect">אפקט צל לחלון השאילתה</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">לאפקט הצל יש שימוש ניכר ב-GPU. לא מומלץ אם ביצועי המחשב שלך מוגבלים.</system:String>
<system:String x:Key="windowWidthSize">Window Width Size</system:String> <system:String x:Key="windowWidthSize">רוחב החלון</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">ניתן גם להתאים במהירות באמצעות Ctrl+[ ו-Ctrl+]</system:String>
<system:String x:Key="useGlyphUI">Use Segoe Fluent Icons</system:String> <system:String x:Key="useGlyphUI">השתמש ב-Segoe Fluent Icons</system:String>
<system:String x:Key="useGlyphUIEffect">Use Segoe Fluent Icons for query results where supported</system:String> <system:String x:Key="useGlyphUIEffect">השתמש ב-Segoe Fluent Icons לתוצאות חיפוש כאשר נתמך</system:String>
<system:String x:Key="flowlauncherPressHotkey">Press Key</system:String> <system:String x:Key="flowlauncherPressHotkey">הקש על מקש</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">הפעל HTTP Proxy</system:String>
<system:String x:Key="server">HTTP Server</system:String> <system:String x:Key="server">שרת HTTP</system:String>
<system:String x:Key="port">Port</system:String> <system:String x:Key="port">Port</system:String>
<system:String x:Key="userName">שם משתמש</system:String> <system:String x:Key="userName">שם משתמש</system:String>
<system:String x:Key="password">סיסמא</system:String> <system:String x:Key="password">סיסמא</system:String>
<system:String x:Key="testProxy">Test Proxy</system:String> <system:String x:Key="testProxy">בדוק Proxy</system:String>
<system:String x:Key="save">שמור</system:String> <system:String x:Key="save">שמור</system:String>
<system:String x:Key="serverCantBeEmpty">Server field can't be empty</system:String> <system:String x:Key="serverCantBeEmpty">שדה השרת לא יכול להיות ריק</system:String>
<system:String x:Key="portCantBeEmpty">Port field can't be empty</system:String> <system:String x:Key="portCantBeEmpty">שדה ה-Port לא יכול להיות ריק</system:String>
<system:String x:Key="invalidPortFormat">Invalid port format</system:String> <system:String x:Key="invalidPortFormat">פורמט ה-Port לא תקין</system:String>
<system:String x:Key="saveProxySuccessfully">Proxy configuration saved successfully</system:String> <system:String x:Key="saveProxySuccessfully">תצורת ה-Proxy נשמרה בהצלחה</system:String>
<system:String x:Key="proxyIsCorrect">Proxy configured correctly</system:String> <system:String x:Key="proxyIsCorrect">ה-Proxy הוגדר בהצלחה</system:String>
<system:String x:Key="proxyConnectFailed">Proxy connection failed</system:String> <system:String x:Key="proxyConnectFailed">החיבור ל- Proxy נכשל</system:String>
<!-- Setting About --> <!-- Setting About -->
<system:String x:Key="about">אודות</system:String> <system:String x:Key="about">אודות</system:String>
@ -277,182 +278,189 @@
<system:String x:Key="docs">תיעוד</system:String> <system:String x:Key="docs">תיעוד</system:String>
<system:String x:Key="version">גרסה</system:String> <system:String x:Key="version">גרסה</system:String>
<system:String x:Key="icons">סמלים</system:String> <system:String x:Key="icons">סמלים</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">הפעלת את Flow Launcher {0} פעמים</system:String>
<system:String x:Key="checkUpdates">Check for Updates</system:String> <system:String x:Key="checkUpdates">בדוק עדכונים</system:String>
<system:String x:Key="BecomeASponsor">Become A Sponsor</system:String> <system:String x:Key="BecomeASponsor">תן חסות</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">גרסה חדשה {0} זמינה, האם ברצונך להפעיל מחדש את Flow Launcher כדי להשתמש בעדכון?</system:String>
<system:String x:Key="checkUpdatesFailed">בדיקת העדכונים נכשלה, אנא בדוק את הגדרות החיבור ואת הגדרות ה-Proxy שלך לכתובת api.github.com.</system:String> <system:String x:Key="checkUpdatesFailed">בדיקת העדכונים נכשלה, אנא בדוק את הגדרות החיבור ואת הגדרות ה-Proxy שלך לכתובת 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, הורדת העדכונים נכשלה, אנא בדוק את הגדרות החיבור ואת ה-proxy שלך אל github-cloud.s3.amazonaws.com,
or go to https://github.com/Flow-Launcher/Flow.Launcher/releases to download updates manually. או עבור אל https://github.com/Flow-Launcher/Flow.Launcher/releases כדי להוריד עדכונים באופן ידני.
</system:String> </system:String>
<system:String x:Key="releaseNotes">Release Notes</system:String> <system:String x:Key="releaseNotes">הערות שחרור</system:String>
<system:String x:Key="documentation">Usage Tips</system:String> <system:String x:Key="documentation">טיפים לשימוש</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">תיקיית ההגדרות</system:String>
<system:String x:Key="logfolder">Log Folder</system:String> <system:String x:Key="logfolder">תיקיית יומני רישום</system:String>
<system:String x:Key="clearlogfolder">Clear Logs</system:String> <system:String x:Key="clearlogfolder">נקה יומני רישום</system:String>
<system:String x:Key="clearlogfolderMessage">Are you sure you want to delete all logs?</system:String> <system:String x:Key="clearlogfolderMessage">האם אתה בטוח שברצונך למחוק את כל היומנים?</system:String>
<system:String x:Key="welcomewindow">אשף</system:String> <system:String x:Key="welcomewindow">אשף</system:String>
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">מיקום נתוני משתמש</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">הגדרות המשתמש והתוספים המותקנים נשמרים בתיקיית נתוני המשתמש. מיקום זה עשוי להשתנות אם התוכנה במצב נייד.</system:String>
<system:String x:Key="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">פתח תיקיה</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Select File Manager</system:String> <system:String x:Key="fileManagerWindow">בחר מנהל קבצים</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">אנא ציין את מיקום הקובץ של מנהל הקבצים שבו אתה משתמש והוסף ארגומנטים כנדרש. &quot;%d&quot; מייצג את נתיב התיקייה שיש לפתוח, ומשמש בשדה ארגומנט לתיקייה ובפקודות לפתיחת תיקיות מסוימות. &quot;%f&quot; מייצג את נתיב הקובץ שיש לפתוח, ומשמש בשדה ארגומנט לקובץ ובפקודות לפתיחת קבצים מסוימים.</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">לדוגמה, אם מנהל הקבצים משתמש בפקודה כגון &quot;totalcmd.exe /A c:\windows&quot; כדי לפתוח את התיקייה c:\windows, נתיב מנהל הקבצים יהיה totalcmd.exe, והארגומנט לתיקייה יהיה /A &quot;%d&quot;. מנהלי קבצים מסוימים, כגון QTTabBar, עשויים לדרוש רק ציון נתיב, במקרה כזה השתמש ב-&quot;%d&quot; כנתיב מנהל הקבצים והשאר את שאר השדות ריקים.</system:String>
<system:String x:Key="fileManager_name">מנהל קבצים</system:String> <system:String x:Key="fileManager_name">מנהל קבצים</system:String>
<system:String x:Key="fileManager_profile_name">שם פרופיל</system:String> <system:String x:Key="fileManager_profile_name">שם פרופיל</system:String>
<system:String x:Key="fileManager_path">File Manager Path</system:String> <system:String x:Key="fileManager_path">נתיב מנהל קבצים</system:String>
<system:String x:Key="fileManager_directory_arg">Arg For Folder</system:String> <system:String x:Key="fileManager_directory_arg">ארגומנט לתיקייה</system:String>
<system:String x:Key="fileManager_file_arg">Arg For File</system:String> <system:String x:Key="fileManager_file_arg">ארגומנט לקובץ</system:String>
<!-- DefaultBrowser Setting Dialog --> <!-- DefaultBrowser Setting Dialog -->
<system:String x:Key="defaultBrowserTitle">Default Web Browser</system:String> <system:String x:Key="defaultBrowserTitle">דפדפן ברירת מחדל</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">ההגדרה המוגדרת כברירת מחדל עוקבת אחר הדפדפן המוגדר כברירת מחדל במערכת ההפעלה. אם צוין דפדפן אחר, Flow Launcher ישתמש בו.</system:String>
<system:String x:Key="defaultBrowser_name">Browser</system:String> <system:String x:Key="defaultBrowser_name">דפדפן</system:String>
<system:String x:Key="defaultBrowser_profile_name">Browser Name</system:String> <system:String x:Key="defaultBrowser_profile_name">שם דפדפן</system:String>
<system:String x:Key="defaultBrowser_path">Browser Path</system:String> <system:String x:Key="defaultBrowser_path">נתיב דפדפן</system:String>
<system:String x:Key="defaultBrowser_newWindow">חלון חדש</system:String> <system:String x:Key="defaultBrowser_newWindow">חלון חדש</system:String>
<system:String x:Key="defaultBrowser_newTab">כרטיסייה חדשה</system:String> <system:String x:Key="defaultBrowser_newTab">כרטיסייה חדשה</system:String>
<system:String x:Key="defaultBrowser_parameter">מצב פרטיות</system:String> <system:String x:Key="defaultBrowser_parameter">מצב פרטיות</system:String>
<!-- Priority Setting Dialog --> <!-- Priority Setting Dialog -->
<system:String x:Key="changePriorityWindow">Change Priority</system:String> <system:String x:Key="changePriorityWindow">שנה עדיפות</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">ככל שהמספר גבוה יותר, התוצאה תדורג גבוה יותר ברשימת החיפוש. נסה להגדיר את הערך ל-5. אם ברצונך שהתוצאות יופיעו אחרי תוצאות של כל תוסף אחר, הזן מספר שלילי.</system:String>
<system:String x:Key="invalidPriority">Please provide an valid integer for Priority!</system:String> <system:String x:Key="invalidPriority">אנא הזן מספר שלם תקף עבור העדיפות!</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">מילת פעולה ישנה</system:String>
<system:String x:Key="newActionKeywords">New Action Keyword</system:String> <system:String x:Key="newActionKeywords">מילת פעולה חדשה</system:String>
<system:String x:Key="cancel">ביטול</system:String> <system:String x:Key="cancel">ביטול</system:String>
<system:String x:Key="done">בוצע</system:String> <system:String x:Key="done">בוצע</system:String>
<system:String x:Key="cannotFindSpecifiedPlugin">Can't find specified plugin</system:String> <system:String x:Key="cannotFindSpecifiedPlugin">לא ניתן למצוא את התוסף שצוין</system:String>
<system:String x:Key="newActionKeywordsCannotBeEmpty">New Action Keyword can't be empty</system:String> <system:String x:Key="newActionKeywordsCannotBeEmpty">מילת הפעולה החדשה לא יכולה להיות ריקה</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">מילת הפעולה החדשה כבר מוקצה לתוסף אחר, אנא בחר אחת שונה</system:String>
<system:String x:Key="success">הצליח</system:String> <system:String x:Key="success">הצליח</system:String>
<system:String x:Key="completedSuccessfully">הושלם בהצלחה</system:String> <system:String x:Key="completedSuccessfully">הושלם בהצלחה</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">הזן את מילת הפעולה שברצונך להשתמש בה להפעלת התוסף. השתמש ב-* אם אינך רוצה לציין מילה כלשהי, והתוסף יופעל ללא צורך במילת פעולה.</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">מקש קיצור לשאילתה מותאמת אישית</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">הקש על מקש קיצור מותאם אישית כדי לפתוח את Flow Launcher ולהזין את השאילתה שצוינה באופן אוטומטי.</system:String>
<system:String x:Key="preview">תצוגה מקדימה</system:String> <system:String x:Key="preview">תצוגה מקדימה</system:String>
<system:String x:Key="hotkeyIsNotUnavailable">Hotkey is unavailable, please select a new hotkey</system:String> <system:String x:Key="hotkeyIsNotUnavailable">מקש הקיצור אינו זמין, אנא בחר מקש קיצור חדש</system:String>
<system:String x:Key="invalidPluginHotkey">Invalid plugin hotkey</system:String> <system:String x:Key="invalidPluginHotkey">מקש קיצור לא חוקי לתוסף</system:String>
<system:String x:Key="update">עדכון</system:String> <system:String x:Key="update">עדכון</system:String>
<system:String x:Key="hotkeyRegTitle">Binding Hotkey</system:String> <system:String x:Key="hotkeyRegTitle">שיוך מקש קיצור</system:String>
<system:String x:Key="hotkeyUnavailable">Current hotkey is unavailable.</system:String> <system:String x:Key="hotkeyUnavailable">מקש הקיצור הנוכחי אינו זמין.</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">מקש קיצור זה שמור עבור &quot;{0}&quot; ואינו ניתן לשימוש. אנא בחר מקש קיצור אחר.</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">מקש קיצור זה כבר נמצא בשימוש על ידי &quot;{0}&quot;. אם תלחץ על &quot;החלף&quot;, הוא יוסר מ-&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">הקש על המקשים שברצונך להשתמש בהם עבור פעולה זו.</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">קיצור דרך לשאילתה מותאמת אישית</system:String>
<system:String x:Key="customeQueryShortcutTips">Enter a shortcut that automatically expands to the specified query.</system:String> <system:String x:Key="customeQueryShortcutTips">הזן קיצור דרך שיוחלף אוטומטית בשאילתה שצוינה.</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">קיצור דרך מוחלף כאשר הוא תואם בדיוק לשאילתה.
If you add an '@' prefix while inputting a shortcut, it matches any position in the query. Builtin shortcuts match any position in a query. אם תוסיף תחילית '@' בעת הזנת קיצור דרך, הוא יתאים לכל מיקום בשאילתה. קיצורי דרך מובנים מתאימים לכל מיקום בשאילתה.
</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">קיצור דרך כבר קיים, אנא הזן קיצור דרך חדש או ערוך את הקיים.</system:String>
<system:String x:Key="emptyShortcut">Shortcut and/or its expansion is empty.</system:String> <system:String x:Key="emptyShortcut">קיצור הדרך ו/או ההרחבה שלו ריקים.</system:String>
<!-- Common Action --> <!-- Common Action -->
<system:String x:Key="commonSave">שמור</system:String> <system:String x:Key="commonSave">שמור</system:String>
<system:String x:Key="commonOverwrite">Overwrite</system:String> <system:String x:Key="commonOverwrite">שכתב</system:String>
<system:String x:Key="commonCancel">ביטול</system:String> <system:String x:Key="commonCancel">ביטול</system:String>
<system:String x:Key="commonReset">אפס</system:String> <system:String x:Key="commonReset">אפס</system:String>
<system:String x:Key="commonDelete">מחק</system:String> <system:String x:Key="commonDelete">מחק</system:String>
<system:String x:Key="commonOK">אישור</system:String> <system:String x:Key="commonOK">אישור</system:String>
<system:String x:Key="commonYes">כן</system:String> <system:String x:Key="commonYes">כן</system:String>
<system:String x:Key="commonNo">לא</system:String> <system:String x:Key="commonNo">לא</system:String>
<system:String x:Key="commonBackground">רקע</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">גרסה</system:String> <system:String x:Key="reportWindow_version">גרסה</system:String>
<system:String x:Key="reportWindow_time">זמן</system:String> <system:String x:Key="reportWindow_time">זמן</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">אנא תאר כיצד האפליקציה קרסה כדי שנוכל לתקן זאת</system:String>
<system:String x:Key="reportWindow_send_report">שלח דיווח</system:String> <system:String x:Key="reportWindow_send_report">שלח דיווח</system:String>
<system:String x:Key="reportWindow_cancel">ביטול</system:String> <system:String x:Key="reportWindow_cancel">ביטול</system:String>
<system:String x:Key="reportWindow_general">כללי</system:String> <system:String x:Key="reportWindow_general">כללי</system:String>
<system:String x:Key="reportWindow_exceptions">חריגים</system:String> <system:String x:Key="reportWindow_exceptions">חריגים</system:String>
<system:String x:Key="reportWindow_exception_type">Exception Type</system:String> <system:String x:Key="reportWindow_exception_type">סוג החריגה</system:String>
<system:String x:Key="reportWindow_source">מקור</system:String> <system:String x:Key="reportWindow_source">מקור</system:String>
<system:String x:Key="reportWindow_stack_trace">Stack Trace</system:String> <system:String x:Key="reportWindow_stack_trace">מעקב מחסנית</system:String>
<system:String x:Key="reportWindow_sending">שולח</system:String> <system:String x:Key="reportWindow_sending">שולח</system:String>
<system:String x:Key="reportWindow_report_succeed">Report sent successfully</system:String> <system:String x:Key="reportWindow_report_succeed">הדוח נשלח בהצלחה</system:String>
<system:String x:Key="reportWindow_report_failed">Failed to send report</system:String> <system:String x:Key="reportWindow_report_failed">שליחת הדוח נכשלה</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</system:String>
<system:String x:Key="reportWindow_please_open_issue">אנא פתח דיווח חדש ב</system:String>
<system:String x:Key="reportWindow_upload_log">1. העלה קובץ יומן: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. העתק את הודעת החריגה למטה</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">אנא המתן...</system:String> <system:String x:Key="pleaseWait">אנא המתן...</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">בודק עדכון חדש</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">כבר מותקנת אצלך הגרסה העדכנית של Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_found">עדכון נמצא</system:String> <system:String x:Key="update_flowlauncher_update_found">עדכון נמצא</system:String>
<system:String x:Key="update_flowlauncher_updating">מעדכן...</system:String> <system:String x:Key="update_flowlauncher_updating">מעדכן...</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 לא הצליח להעביר את נתוני פרופיל המשתמש שלך לגרסת העדכון החדשה.
Please manually move your profile data folder from {0} to {1} אנא העבר ידנית את תיקיית נתוני הפרופיל שלך מ-{0} אל-{1}
</system:String> </system:String>
<system:String x:Key="update_flowlauncher_new_update">עדכון חדש</system:String> <system:String x:Key="update_flowlauncher_new_update">עדכון חדש</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">גרסה חדשה {0} של Flow Launcher זמינה כעת</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">אירעה שגיאה במהלך ניסיון התקנת עדכוני התוכנה</system:String>
<system:String x:Key="update_flowlauncher_update">עדכון</system:String> <system:String x:Key="update_flowlauncher_update">עדכון</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">ביטול</system:String> <system:String x:Key="update_flowlauncher_update_cancel">ביטול</system:String>
<system:String x:Key="update_flowlauncher_fail">העדכון נכשל</system:String> <system:String x:Key="update_flowlauncher_fail">העדכון נכשל</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">בדוק את החיבור שלך ונסה לעדכן את הגדרות הפרוקסי ל-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">שדרוג זה יאתחל את Flow Launcher</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">הקבצים הבאים יעודכנו</system:String>
<system:String x:Key="update_flowlauncher_update_files">עדכן קבצים</system:String> <system:String x:Key="update_flowlauncher_update_files">עדכן קבצים</system:String>
<system:String x:Key="update_flowlauncher_update_update_description">Update description</system:String> <system:String x:Key="update_flowlauncher_update_update_description">עדכן תיאור</system:String>
<!-- Welcome Window --> <!-- Welcome Window -->
<system:String x:Key="Skip">דלג</system:String> <system:String x:Key="Skip">דלג</system:String>
<system:String x:Key="Welcome_Page1_Title">Welcome to Flow Launcher</system:String> <system:String x:Key="Welcome_Page1_Title">ברוך הבא אל 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">שלום, זו הפעם הראשונה שבה 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">לפני שתתחיל, אשף זה יסייע בהגדרת Flow Launcher. אתה יכול לדלג על שלב זה. בחר שפה</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">חפש והפעל את כל הקבצים והיישומים במחשב שלך</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">חפש הכל מיישומים, קבצים, סימניות, YouTube, ועד טוויטר ועוד. הכל מהנוחות של המקלדת מבלי לגעת בעכבר.</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בקיצור המקש שלמטה, קדימה נסה אותו כעת! כדי לשנות אותו, לחץ על מקש הקיצור הרצוי במקלדת.</system:String>
<system:String x:Key="Welcome_Page3_Title">מקשי קיצור</system:String> <system:String x:Key="Welcome_Page3_Title">מקשי קיצור</system:String>
<system:String x:Key="Welcome_Page4_Title">Action Keyword and Commands</system:String> <system:String x:Key="Welcome_Page4_Title">מילת מפתח ופקודות פעולה</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">חפש באינטרנט, הפעל אפליקציות או הפעל פונקציות שונות באמצעות תוספים של Flow Launcher. פונקציות מסוימות מתחילות במילת מפתח פעולה, ובמידת הצורך, ניתן להשתמש בהן ללא מילות מפתח פעולה. נסה את השאילתות למטה ב-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">בואו נתחיל עם 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">סיימנו. תהנה מ-Flow Launcher. אל תשכח את מקש הקיצור כדי להתחיל :)</system:String>
<!-- General Guide & Hotkey --> <!-- General Guide & Hotkey -->
<system:String x:Key="HotkeyUpDownDesc">Back / Context Menu</system:String> <system:String x:Key="HotkeyUpDownDesc">חזור / תפריט הקשר</system:String>
<system:String x:Key="HotkeyLeftRightDesc">Item Navigation</system:String> <system:String x:Key="HotkeyLeftRightDesc">ניווט בין פריטים</system:String>
<system:String x:Key="HotkeyShiftEnterDesc">Open Context Menu</system:String> <system:String x:Key="HotkeyShiftEnterDesc">פתח תפריט הקשר</system:String>
<system:String x:Key="HotkeyCtrlEnterDesc">Open Containing Folder</system:String> <system:String x:Key="HotkeyCtrlEnterDesc">פתח תיקייה מכילה</system:String>
<system:String x:Key="HotkeyCtrlShiftEnterDesc">Run as Admin / Open Folder in Default File Manager</system:String> <system:String x:Key="HotkeyCtrlShiftEnterDesc">הפעל כמנהל / פתח תיקייה במנהל הקבצים ברירת מחדל</system:String>
<system:String x:Key="HotkeyCtrlHDesc">Query History</system:String> <system:String x:Key="HotkeyCtrlHDesc">היסטוריית שאילתות</system:String>
<system:String x:Key="HotkeyESCDesc">Back to Result in Context Menu</system:String> <system:String x:Key="HotkeyESCDesc">חזור לתוצאה בתפריט הקשר</system:String>
<system:String x:Key="HotkeyTabDesc">Autocomplete</system:String> <system:String x:Key="HotkeyTabDesc">השלמה אוטומטית</system:String>
<system:String x:Key="HotkeyRunDesc">Open / Run Selected Item</system:String> <system:String x:Key="HotkeyRunDesc">פתח / הפעל פריט נבחר</system:String>
<system:String x:Key="HotkeyCtrlIDesc">Open Setting Window</system:String> <system:String x:Key="HotkeyCtrlIDesc">פתח חלון הגדרות</system:String>
<system:String x:Key="HotkeyF5Desc">Reload Plugin Data</system:String> <system:String x:Key="HotkeyF5Desc">טען מחדש נתוני תוסף</system:String>
<system:String x:Key="HotkeySelectFirstResult">Select first result</system:String> <system:String x:Key="HotkeySelectFirstResult">בחר בתוצאה הראשונה</system:String>
<system:String x:Key="HotkeySelectLastResult">Select last result</system:String> <system:String x:Key="HotkeySelectLastResult">בחר בתוצאה האחרונה</system:String>
<system:String x:Key="HotkeyRequery">Run current query again</system:String> <system:String x:Key="HotkeyRequery">הפעל מחדש את השאילתה הנוכחית</system:String>
<system:String x:Key="HotkeyOpenResult">Open result</system:String> <system:String x:Key="HotkeyOpenResult">פתח תוצאה</system:String>
<system:String x:Key="HotkeyOpenResultN">Open result #{0}</system:String> <system:String x:Key="HotkeyOpenResultN">פתח תוצאה #{0}</system:String>
<system:String x:Key="RecommendWeather">Weather</system:String> <system:String x:Key="RecommendWeather">מזג אוויר</system:String>
<system:String x:Key="RecommendWeatherDesc">Weather in Google Result</system:String> <system:String x:Key="RecommendWeatherDesc">מזג אוויר מתוצאות 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">פקודת Shell</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 בהגדרות 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">פתקים נדבקים</system:String>
<!-- Preview Area --> <!-- Preview Area -->
<system:String x:Key="FileSize">File Size</system:String> <system:String x:Key="FileSize">גודל קובץ</system:String>
<system:String x:Key="Created">Created</system:String> <system:String x:Key="Created">נוצר</system:String>
<system:String x:Key="LastModified">Last Modified</system:String> <system:String x:Key="LastModified">תאריך שינוי אחרון</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Registrazione del tasto di scelta rapida &quot;{0}&quot; non riuscita. Il tasto di scelta rapida potrebbe essere in uso da un altro programma. Passa a un altro tasto di scelta rapida o esci da un altro programma.</system:String> <system:String x:Key="registerHotkeyFailed">Registrazione del tasto di scelta rapida &quot;{0}&quot; non riuscita. Il tasto di scelta rapida potrebbe essere in uso da un altro programma. Passa a un altro tasto di scelta rapida o esci da un altro programma.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Avvio fallito {0}</system:String> <system:String x:Key="couldnotStartCmd">Avvio fallito {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato file plugin non valido</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato file plugin non valido</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Modalità portatile</system:String> <system:String x:Key="portableMode">Modalità portatile</system:String>
<system:String x:Key="portableModeToolTIp">Memorizzare tutte le impostazioni e i dati dell'utente in un'unica cartella (utile se utilizzato con unità rimovibili o servizi cloud).</system:String> <system:String x:Key="portableModeToolTIp">Memorizzare tutte le impostazioni e i dati dell'utente in un'unica cartella (utile se utilizzato con unità rimovibili o servizi cloud).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Avvia Wow all'avvio di Windows</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Avvia Wow all'avvio di Windows</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Errore nell'impostazione del lancio all'avvio</system:String> <system:String x:Key="setAutoStartFailed">Errore nell'impostazione del lancio all'avvio</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Nascondi Flow Launcher quando perde il focus</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Nascondi Flow Launcher quando perde il focus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Non mostrare le notifiche per una nuova versione</system:String> <system:String x:Key="dontPromptUpdateMsg">Non mostrare le notifiche per una nuova versione</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Versione</system:String> <system:String x:Key="plugin_query_version">Versione</system:String>
<system:String x:Key="plugin_query_web">Sito Web</system:String> <system:String x:Key="plugin_query_web">Sito Web</system:String>
<system:String x:Key="plugin_uninstall">Disinstalla</system:String> <system:String x:Key="plugin_uninstall">Disinstalla</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Negozio dei Plugin</system:String> <system:String x:Key="pluginStore">Negozio dei Plugin</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Questo plugin è stato aggiornato negli ultimi 7 giorni</system:String> <system:String x:Key="LabelNewToolTip">Questo plugin è stato aggiornato negli ultimi 7 giorni</system:String>
<system:String x:Key="LabelUpdateToolTip">Nuovo aggiornamento disponibile</system:String> <system:String x:Key="LabelUpdateToolTip">Nuovo aggiornamento disponibile</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Aspetto</system:String> <system:String x:Key="appearance">Aspetto</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">Questo tema supporta due (chiaro/scuro) varianti.</system:String> <system:String x:Key="TypeIsDarkToolTip">Questo tema supporta due (chiaro/scuro) varianti.</system:String>
<system:String x:Key="TypeHasBlurToolTip">Questo tema supporta lo sfondo trasparente blurrato.</system:String> <system:String x:Key="TypeHasBlurToolTip">Questo tema supporta lo sfondo trasparente blurrato.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Tasti scelta rapida</system:String> <system:String x:Key="hotkey">Tasti scelta rapida</system:String>
<system:String x:Key="hotkeys">Tasti scelta rapida</system:String> <system:String x:Key="hotkeys">Tasti scelta rapida</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Posizione Dati Utente</system:String> <system:String x:Key="userdatapath">Posizione Dati Utente</system:String>
<system:String x:Key="userdatapathToolTip">Le impostazioni dell'utente e i plugin installati sono salvati nella cartella dati utente. Questa posizione può variare se è in modalità portable o no.</system:String> <system:String x:Key="userdatapathToolTip">Le impostazioni dell'utente e i plugin installati sono salvati nella cartella dati utente. Questa posizione può variare se è in modalità portable o no.</system:String>
<system:String x:Key="userdatapathButton">Apri Cartella</system:String> <system:String x:Key="userdatapathButton">Apri Cartella</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Seleziona Gestore File</system:String> <system:String x:Key="fileManagerWindow">Seleziona Gestore File</system:String>
@ -367,6 +371,7 @@ Se si aggiunge un prefisso '@' mentre si inserisce una scorciatoia, corrisponde
<system:String x:Key="commonOK">OK</system:String> <system:String x:Key="commonOK">OK</system:String>
<system:String x:Key="commonYes">Sì</system:String> <system:String x:Key="commonYes">Sì</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Sfondo</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versione</system:String> <system:String x:Key="reportWindow_version">Versione</system:String>
@ -383,6 +388,9 @@ Se si aggiunge un prefisso '@' mentre si inserisce una scorciatoia, corrisponde
<system:String x:Key="reportWindow_report_succeed">Rapporto inviato correttamente</system:String> <system:String x:Key="reportWindow_report_succeed">Rapporto inviato correttamente</system:String>
<system:String x:Key="reportWindow_report_failed">Invio rapporto fallito</system:String> <system:String x:Key="reportWindow_report_failed">Invio rapporto fallito</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha riportato un errore</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha riportato un errore</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Attendere prego...</system:String> <system:String x:Key="pleaseWait">Attendere prego...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">ホットキー &quot;{0}&quot; の登録に失敗しました。このホットキーは別のプログラムで使用されている可能性があります。別のホットキーに変更するか、このホットキーを使用しているプログラムを終了してください。</system:String> <system:String x:Key="registerHotkeyFailed">ホットキー &quot;{0}&quot; の登録に失敗しました。このホットキーは別のプログラムで使用されている可能性があります。別のホットキーに変更するか、このホットキーを使用しているプログラムを終了してください。</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">{0}の起動に失敗しました</system:String> <system:String x:Key="couldnotStartCmd">{0}の起動に失敗しました</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcherプラグインの形式が正しくありません</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcherプラグインの形式が正しくありません</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">ポータブルモード</system:String> <system:String x:Key="portableMode">ポータブルモード</system:String>
<system:String x:Key="portableModeToolTIp">すべての設定とユーザーデータを1つのフォルダに保存します(リムーバブルドライブやクラウドサービスで使用する場合に便利です)。</system:String> <system:String x:Key="portableModeToolTIp">すべての設定とユーザーデータを1つのフォルダに保存します(リムーバブルドライブやクラウドサービスで使用する場合に便利です)。</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">スタートアップ時にFlow Launcherを起動する</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">スタートアップ時にFlow Launcherを起動する</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">フォーカスを失った時にFlow Launcherを隠す</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">フォーカスを失った時にFlow Launcherを隠す</system:String>
<system:String x:Key="dontPromptUpdateMsg">最新版が入手可能であっても、アップグレードメッセージを表示しない</system:String> <system:String x:Key="dontPromptUpdateMsg">最新版が入手可能であっても、アップグレードメッセージを表示しない</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">バージョン</system:String> <system:String x:Key="plugin_query_version">バージョン</system:String>
<system:String x:Key="plugin_query_web">ウェブサイト</system:String> <system:String x:Key="plugin_query_web">ウェブサイト</system:String>
<system:String x:Key="plugin_uninstall">アンインストール</system:String> <system:String x:Key="plugin_uninstall">アンインストール</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">プラグインストア</system:String> <system:String x:Key="pluginStore">プラグインストア</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String>
<system:String x:Key="LabelUpdateToolTip">新しいアップデートが利用可能です</system:String> <system:String x:Key="LabelUpdateToolTip">新しいアップデートが利用可能です</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">テーマ</system:String> <system:String x:Key="theme">テーマ</system:String>
<system:String x:Key="appearance">外観</system:String> <system:String x:Key="appearance">外観</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">ホットキー</system:String> <system:String x:Key="hotkey">ホットキー</system:String>
<system:String x:Key="hotkeys">ホットキー</system:String> <system:String x:Key="hotkeys">ホットキー</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Select File Manager</system:String> <system:String x:Key="fileManagerWindow">Select File Manager</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="commonOK">Update</system:String> <system:String x:Key="commonOK">Update</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">バックグラウンド</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">バージョン</system:String> <system:String x:Key="reportWindow_version">バージョン</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">クラッシュレポートの送信に成功しました</system:String> <system:String x:Key="reportWindow_report_succeed">クラッシュレポートの送信に成功しました</system:String>
<system:String x:Key="reportWindow_report_failed">クラッシュレポートの送信に失敗しました</system:String> <system:String x:Key="reportWindow_report_failed">クラッシュレポートの送信に失敗しました</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcherにエラーが発生しました</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcherにエラーが発生しました</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Please wait...</system:String> <system:String x:Key="pleaseWait">Please wait...</system:String>

View file

@ -13,6 +13,7 @@
<!-- 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">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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">{0}을 실행할 수 없습니다.</system:String> <system:String x:Key="couldnotStartCmd">{0}을 실행할 수 없습니다.</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcher 플러그인 파일 형식이 유효하지 않습니다.</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Flow Launcher 플러그인 파일 형식이 유효하지 않습니다.</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">포터블 모드</system:String> <system:String x:Key="portableMode">포터블 모드</system:String>
<system:String x:Key="portableModeToolTIp">모든 설정이 폴더안에 들어갑니다. USB 드라이브나 클라우드로 사용 가능합니다.</system:String> <system:String x:Key="portableModeToolTIp">모든 설정이 폴더안에 들어갑니다. USB 드라이브나 클라우드로 사용 가능합니다.</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">시스템 시작 시 Flow Launcher 실행</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">시스템 시작 시 Flow Launcher 실행</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">포커스 잃으면 Flow Launcher 숨김</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">포커스 잃으면 Flow Launcher 숨김</system:String>
<system:String x:Key="dontPromptUpdateMsg">새 버전 알림 끄기</system:String> <system:String x:Key="dontPromptUpdateMsg">새 버전 알림 끄기</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">버전</system:String> <system:String x:Key="plugin_query_version">버전</system:String>
<system:String x:Key="plugin_query_web">웹사이트</system:String> <system:String x:Key="plugin_query_web">웹사이트</system:String>
<system:String x:Key="plugin_uninstall">제거</system:String> <system:String x:Key="plugin_uninstall">제거</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">플러그인 스토어</system:String> <system:String x:Key="pluginStore">플러그인 스토어</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">이 플러그인은 최근 7일 사이 업데이트 되었습니다</system:String> <system:String x:Key="LabelNewToolTip">이 플러그인은 최근 7일 사이 업데이트 되었습니다</system:String>
<system:String x:Key="LabelUpdateToolTip">새 업데이트 설치 가능</system:String> <system:String x:Key="LabelUpdateToolTip">새 업데이트 설치 가능</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">테마</system:String> <system:String x:Key="theme">테마</system:String>
<system:String x:Key="appearance">외관</system:String> <system:String x:Key="appearance">외관</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">단축키</system:String> <system:String x:Key="hotkey">단축키</system:String>
<system:String x:Key="hotkeys">단축키</system:String> <system:String x:Key="hotkeys">단축키</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">사용자 데이터 위치</system:String> <system:String x:Key="userdatapath">사용자 데이터 위치</system:String>
<system:String x:Key="userdatapathToolTip">사용자 설정과 설치된 플러그인은 사용자 데이터 폴더에 저장됩니다. 이 위치는 휴대용 모드 활성화 여부에 따라 달라질 수 있습니다.</system:String> <system:String x:Key="userdatapathToolTip">사용자 설정과 설치된 플러그인은 사용자 데이터 폴더에 저장됩니다. 이 위치는 휴대용 모드 활성화 여부에 따라 달라질 수 있습니다.</system:String>
<system:String x:Key="userdatapathButton">폴더 열기</system:String> <system:String x:Key="userdatapathButton">폴더 열기</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">파일관리자 선택</system:String> <system:String x:Key="fileManagerWindow">파일관리자 선택</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="commonOK">확인</system:String> <system:String x:Key="commonOK">확인</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">배경</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">버전</system:String> <system:String x:Key="reportWindow_version">버전</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">보고서를 정상적으로 보냈습니다.</system:String> <system:String x:Key="reportWindow_report_succeed">보고서를 정상적으로 보냈습니다.</system:String>
<system:String x:Key="reportWindow_report_failed">보고서를 보내지 못했습니다.</system:String> <system:String x:Key="reportWindow_report_failed">보고서를 보내지 못했습니다.</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher에 문제가 발생했습니다.</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher에 문제가 발생했습니다.</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">잠시 기다려주세요...</system:String> <system:String x:Key="pleaseWait">잠시 기다려주세요...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<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="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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Kunne ikke starte {0}</system:String> <system:String x:Key="couldnotStartCmd">Kunne ikke starte {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Ugyldig Flow Launcher programtillegg filformat</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Ugyldig Flow Launcher programtillegg filformat</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Portabel modus</system:String> <system:String x:Key="portableMode">Portabel modus</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="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 ved systemoppstart</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher ved systemoppstart</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Feil ved å sette kjør ved oppstart</system:String> <system:String x:Key="setAutoStartFailed">Feil ved å sette kjør ved oppstart</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Skjul Flow Launcher når fokus forsvinner</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Skjul Flow Launcher når fokus forsvinner</system:String>
<system:String x:Key="dontPromptUpdateMsg">Ikke vis varsler om nye versjoner</system:String> <system:String x:Key="dontPromptUpdateMsg">Ikke vis varsler om nye versjoner</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Versjon</system:String> <system:String x:Key="plugin_query_version">Versjon</system:String>
<system:String x:Key="plugin_query_web">Nettsted</system:String> <system:String x:Key="plugin_query_web">Nettsted</system:String>
<system:String x:Key="plugin_uninstall">Avinstaller</system:String> <system:String x:Key="plugin_uninstall">Avinstaller</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Programtillegg butikk</system:String> <system:String x:Key="pluginStore">Programtillegg butikk</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Dette programtillegget er oppdatert i løpet av de siste 7 dagene</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">Ny oppdatering er tilgjengelig</system:String> <system:String x:Key="LabelUpdateToolTip">Ny oppdatering er tilgjengelig</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Drakt</system:String> <system:String x:Key="theme">Drakt</system:String>
<system:String x:Key="appearance">Utseende</system:String> <system:String x:Key="appearance">Utseende</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">Dette temaet støtter to (lys/mørk) moduser.</system:String> <system:String x:Key="TypeIsDarkToolTip">Dette temaet støtter to (lys/mørk) moduser.</system:String>
<system:String x:Key="TypeHasBlurToolTip">Dette temaet støtter uskarp gjennomsiktig bakgrunn.</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">Hurtigtast</system:String> <system:String x:Key="hotkey">Hurtigtast</system:String>
<system:String x:Key="hotkeys">Hurtigtaster</system:String> <system:String x:Key="hotkeys">Hurtigtaster</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Plassering av brukerdata</system:String> <system:String x:Key="userdatapath">Plassering av brukerdata</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="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">Åpne mappe</system:String> <system:String x:Key="userdatapathButton">Åpne mappe</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Velg filbehandler</system:String> <system:String x:Key="fileManagerWindow">Velg filbehandler</system:String>
@ -367,6 +371,7 @@ Hvis du legger til et @-prefiks mens du legger inn en snarvei, samsvarer det med
<system:String x:Key="commonOK">OK</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">Nei</system:String> <system:String x:Key="commonNo">Nei</system:String>
<system:String x:Key="commonBackground">Bakgrunn</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versjon</system:String> <system:String x:Key="reportWindow_version">Versjon</system:String>
@ -383,6 +388,9 @@ Hvis du legger til et @-prefiks mens du legger inn en snarvei, samsvarer det med
<system:String x:Key="reportWindow_report_succeed">Rapporten ble sendt</system:String> <system:String x:Key="reportWindow_report_succeed">Rapporten ble sendt</system:String>
<system:String x:Key="reportWindow_report_failed">Kunne ikke sende rapport</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 fikk en feil</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher fikk en feil</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Vennligst vent...</system:String> <system:String x:Key="pleaseWait">Vennligst vent...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Sneltoets &quot;{0}&quot; registreren. De sneltoets kan in gebruik zijn door een ander programma. Verander naar een andere sneltoets of sluit een ander programma.</system:String> <system:String x:Key="registerHotkeyFailed">Sneltoets &quot;{0}&quot; registreren. De sneltoets kan in gebruik zijn door een ander programma. Verander naar een andere sneltoets of sluit een ander programma.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Kan {0} niet starten</system:String> <system:String x:Key="couldnotStartCmd">Kan {0} niet starten</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Ongeldige Flow Launcher plugin bestandsextensie</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Ongeldige Flow Launcher plugin bestandsextensie</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Draagbare Modus</system:String> <system:String x:Key="portableMode">Draagbare Modus</system:String>
<system:String x:Key="portableModeToolTIp">Alle instellingen en gebruikersgegevens opslaan in één map (Nuttig bij het gebruik van verwijderbare schijven of cloud services).</system:String> <system:String x:Key="portableModeToolTIp">Alle instellingen en gebruikersgegevens opslaan in één map (Nuttig bij het gebruik van verwijderbare schijven of cloud services).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher als systeem opstart</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Start Flow Launcher als systeem opstart</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Fout bij het instellen van uitvoeren bij opstarten</system:String> <system:String x:Key="setAutoStartFailed">Fout bij het instellen van uitvoeren bij opstarten</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Verberg Flow Launcher als focus verloren is</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Verberg Flow Launcher als focus verloren is</system:String>
<system:String x:Key="dontPromptUpdateMsg">Laat geen nieuwe versie notificaties zien</system:String> <system:String x:Key="dontPromptUpdateMsg">Laat geen nieuwe versie notificaties zien</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Versie</system:String> <system:String x:Key="plugin_query_version">Versie</system:String>
<system:String x:Key="plugin_query_web">Website</system:String> <system:String x:Key="plugin_query_web">Website</system:String>
<system:String x:Key="plugin_uninstall">Verwijderen</system:String> <system:String x:Key="plugin_uninstall">Verwijderen</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Plugin Winkel</system:String> <system:String x:Key="pluginStore">Plugin Winkel</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Deze plug-in is in de laatste 7 dagen bijgewerkt</system:String> <system:String x:Key="LabelNewToolTip">Deze plug-in is in de laatste 7 dagen bijgewerkt</system:String>
<system:String x:Key="LabelUpdateToolTip">Nieuwe update beschikbaar</system:String> <system:String x:Key="LabelUpdateToolTip">Nieuwe update beschikbaar</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Thema</system:String> <system:String x:Key="theme">Thema</system:String>
<system:String x:Key="appearance">Uiterlijk</system:String> <system:String x:Key="appearance">Uiterlijk</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">Dit thema ondersteunt twee (licht/donker) modi.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Sneltoets</system:String> <system:String x:Key="hotkey">Sneltoets</system:String>
<system:String x:Key="hotkeys">Sneltoets</system:String> <system:String x:Key="hotkeys">Sneltoets</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Gegevenslocatie van gebruiker</system:String> <system:String x:Key="userdatapath">Gegevenslocatie van gebruiker</system:String>
<system:String x:Key="userdatapathToolTip">Gebruikersinstellingen en geïnstalleerde plug-ins worden opgeslagen in de gebruikersgegevensmap. Deze locatie kan variëren afhankelijk van of het in draagbare modus is of niet.</system:String> <system:String x:Key="userdatapathToolTip">Gebruikersinstellingen en geïnstalleerde plug-ins worden opgeslagen in de gebruikersgegevensmap. Deze locatie kan variëren afhankelijk van of het in draagbare modus is of niet.</system:String>
<system:String x:Key="userdatapathButton">Map openen</system:String> <system:String x:Key="userdatapathButton">Map openen</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Bestandsbeheerder selecteren</system:String> <system:String x:Key="fileManagerWindow">Bestandsbeheerder selecteren</system:String>
@ -367,6 +371,7 @@ Als u een '@' voorvoegsel toevoegt tijdens het invoeren van een snelkoppeling, m
<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">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Background</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versie</system:String> <system:String x:Key="reportWindow_version">Versie</system:String>
@ -383,6 +388,9 @@ Als u een '@' voorvoegsel toevoegt tijdens het invoeren van een snelkoppeling, m
<system:String x:Key="reportWindow_report_succeed">Rapport succesvol verzonden</system:String> <system:String x:Key="reportWindow_report_succeed">Rapport succesvol verzonden</system:String>
<system:String x:Key="reportWindow_report_failed">Verzenden van rapport mislukt</system:String> <system:String x:Key="reportWindow_report_failed">Verzenden van rapport mislukt</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher heeft een error</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher heeft een error</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Please wait...</system:String> <system:String x:Key="pleaseWait">Please wait...</system:String>

View file

@ -6,13 +6,14 @@
{2}{2} {2}{2}
Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy poproszony o wybranie folderu zawierającego plik wykonywalny {1} 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">Proszę wybrać plik wykonywalny {0}</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">Wybierz plik wykonywalny {0}</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="runtimePluginUnableToSetExecutablePath">Nie można ustawić ścieżki do pliku wykonywalnego {0}. Spróbuj ponownie w ustawieniach Flow (przewiń na sam dół).</system:String>
<system:String x:Key="failedToInitializePluginsTitle">Nie udało się zainicjować wtyczek</system:String> <system:String x:Key="failedToInitializePluginsTitle">Nie udało się zainicjować wtyczek</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> <system:String x:Key="failedToInitializePluginsMessage">Wtyczki: {0} nie udało się ich wczytać i zostaną wyłączone. Skontaktuj się z twórcą wtyczki, aby uzyskać pomoc</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 „{0}”. Skrót może być używany przez inny program. Zmień skrót na inny lub zamknij program, który go używa.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Nie udało się wyrejestrować skrótu „{0}”. Spróbuj ponownie lub sprawdź szczegóły w dzienniku</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">Nie udało się uruchomić: {0}</system:String> <system:String x:Key="couldnotStartCmd">Nie udało się uruchomić: {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Niepoprawny format pliku wtyczki</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Niepoprawny format pliku wtyczki</system:String>
@ -44,6 +45,8 @@ Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy popros
<system:String x:Key="portableMode">Tryb przenośny</system:String> <system:String x:Key="portableMode">Tryb przenośny</system:String>
<system:String x:Key="portableModeToolTIp">Przechowuj wszystkie ustawienia i dane użytkownika w jednym folderze (Przydatne, gdy używane na dyskach wymiennych lub usługach chmurowych).</system:String> <system:String x:Key="portableModeToolTIp">Przechowuj wszystkie ustawienia i dane użytkownika w jednym folderze (Przydatne, gdy używane na dyskach wymiennych lub usługach chmurowych).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Uruchamiaj Flow Launcher przy starcie systemu</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Uruchamiaj Flow Launcher przy starcie systemu</system:String>
<system:String x:Key="useLogonTaskForStartup">Użyj zadania logowania zamiast wpisu autostartu, aby przyspieszyć uruchamianie</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">Po odinstalowaniu musisz ręcznie usunąć to zadanie (Flow.Launcher Startup) za pomocą Harmonogramu zadań</system:String>
<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>
@ -65,8 +68,8 @@ Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy popros
<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="LastQueryActionKeywordPreserved">Preserve Last Action Keyword</system:String> <system:String x:Key="LastQueryActionKeywordPreserved">Zachowaj ostatnie słowo kluczowe akcji</system:String>
<system:String x:Key="LastQueryActionKeywordSelected">Select Last Action Keyword</system:String> <system:String x:Key="LastQueryActionKeywordSelected">Wybierz ostatnie słowo kluczowe akcji</system:String>
<system:String x:Key="KeepMaxResults">Stała wysokość okna</system:String> <system:String x:Key="KeepMaxResults">Stała wysokość okna</system:String>
<system:String x:Key="KeepMaxResultsToolTip">Wysokość okna nie jest regulowana poprzez przeciąganie.</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>
@ -126,7 +129,8 @@ Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy popros
<system:String x:Key="plugin_query_version">Wersja</system:String> <system:String x:Key="plugin_query_version">Wersja</system:String>
<system:String x:Key="plugin_query_web">Strona</system:String> <system:String x:Key="plugin_query_web">Strona</system:String>
<system:String x:Key="plugin_uninstall">Odinstalowywanie</system:String> <system:String x:Key="plugin_uninstall">Odinstalowywanie</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Nie udało się usunąć ustawień wtyczki</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Wtyczki: {0} nie udało się usunąć plików ustawień wtyczek, usuń je ręcznie</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Sklep z wtyczkami</system:String> <system:String x:Key="pluginStore">Sklep z wtyczkami</system:String>
@ -143,8 +147,6 @@ Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy popros
<system:String x:Key="LabelNewToolTip">Ta wtyczka została zaktualizowana w ciągu ostatnich 7 dni</system:String> <system:String x:Key="LabelNewToolTip">Ta wtyczka została zaktualizowana w ciągu ostatnich 7 dni</system:String>
<system:String x:Key="LabelUpdateToolTip">Dostępna jest nowa aktualizacja</system:String> <system:String x:Key="LabelUpdateToolTip">Dostępna jest nowa aktualizacja</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Skórka</system:String> <system:String x:Key="theme">Skórka</system:String>
<system:String x:Key="appearance">Wygląd</system:String> <system:String x:Key="appearance">Wygląd</system:String>
@ -194,7 +196,6 @@ Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy popros
<system:String x:Key="TypeIsDarkToolTip">Ten motyw obsługuje dwa tryby (jasny/ciemny).</system:String> <system:String x:Key="TypeIsDarkToolTip">Ten motyw obsługuje dwa tryby (jasny/ciemny).</system:String>
<system:String x:Key="TypeHasBlurToolTip">Ten motyw obsługuje rozmyte przezroczyste tło.</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>
@ -297,6 +298,9 @@ Kliknij &quot;nie&quot;, jeśli jest już zainstalowany. Zostaniesz wtedy popros
<system:String x:Key="userdatapath">Lokalizacja danych użytkownika</system:String> <system:String x:Key="userdatapath">Lokalizacja danych użytkownika</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="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">Otwórz folder</system:String> <system:String x:Key="userdatapathButton">Otwórz folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Wybierz menedżer plików</system:String> <system:String x:Key="fileManagerWindow">Wybierz menedżer plików</system:String>
@ -367,6 +371,7 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d
<system:String x:Key="commonOK">Aktualizuj</system:String> <system:String x:Key="commonOK">Aktualizuj</system:String>
<system:String x:Key="commonYes">Tak</system:String> <system:String x:Key="commonYes">Tak</system:String>
<system:String x:Key="commonNo">Nie</system:String> <system:String x:Key="commonNo">Nie</system:String>
<system:String x:Key="commonBackground">Tło</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Wersja</system:String> <system:String x:Key="reportWindow_version">Wersja</system:String>
@ -383,6 +388,9 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d
<system:String x:Key="reportWindow_report_succeed">Raport wysłany pomyślnie</system:String> <system:String x:Key="reportWindow_report_succeed">Raport wysłany pomyślnie</system:String>
<system:String x:Key="reportWindow_report_failed">Nie udało się wysłać raportu</system:String> <system:String x:Key="reportWindow_report_failed">Nie udało się wysłać raportu</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">W programie Flow Launcher wystąpił błąd</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">W programie Flow Launcher wystąpił błąd</system:String>
<system:String x:Key="reportWindow_please_open_issue">Otwórz nowe zgłoszenie w</system:String>
<system:String x:Key="reportWindow_upload_log">1. Prześlij plik dziennika: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Skopiuj poniższą wiadomość wyjątku</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Proszę czekać...</system:String> <system:String x:Key="pleaseWait">Proszę czekać...</system:String>
@ -413,8 +421,8 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d
<system:String x:Key="Welcome_Page1_Title">Witamy w Flow Launcher</system:String> <system:String x:Key="Welcome_Page1_Title">Witamy w Flow Launcher</system:String>
<system:String x:Key="Welcome_Page1_Text01">Witaj, po raz pierwszy uruchamiasz Flow Launcher!</system:String> <system:String x:Key="Welcome_Page1_Text01">Witaj, po raz pierwszy uruchamiasz Flow Launcher!</system:String>
<system:String x:Key="Welcome_Page1_Text02">Przed rozpoczęciem ten kreator pomoże skonfigurować Flow Launcher. Jeśli chcesz, możesz to pominąć. Proszę wybierz język</system:String> <system:String x:Key="Welcome_Page1_Text02">Przed rozpoczęciem ten kreator pomoże skonfigurować Flow Launcher. Jeśli chcesz, możesz to pominąć. Proszę wybierz język</system:String>
<system:String x:Key="Welcome_Page2_Title">Wyszukiwanie i uruchamianie wszystkich plików i aplikacji na PC</system:String> <system:String x:Key="Welcome_Page2_Title">Wyszukuj i uruchamiaj pliki oraz aplikacje na komputerze</system:String>
<system:String x:Key="Welcome_Page2_Text01">Przeszukuj wszystko, od aplikacji, plików, zakładek, YouTube, X i nie tylko. Wszystko to z komfortowej klawiatury, bez konieczności dotykania myszy.</system:String> <system:String x:Key="Welcome_Page2_Text01">Wyszukuj wszystko aplikacje, pliki, zakładki, YouTube, Twitter i nie tylko. Wszystko wygodnie z klawiatury, bez używania myszy.</system:String>
<system:String x:Key="Welcome_Page2_Text02">Flow Launcher uruchamia się za pomocą poniższego skrótu klawiszowego, śmiało i wypróbuj go teraz. Aby to zmienić, kliknij dane wejściowe i naciśnij żądany klawisz skrótu na klawiaturze.</system:String> <system:String x:Key="Welcome_Page2_Text02">Flow Launcher uruchamia się za pomocą poniższego skrótu klawiszowego, śmiało i wypróbuj go teraz. Aby to zmienić, kliknij dane wejściowe i naciśnij żądany klawisz skrótu na klawiaturze.</system:String>
<system:String x:Key="Welcome_Page3_Title">Skróty klawiszowe</system:String> <system:String x:Key="Welcome_Page3_Title">Skróty klawiszowe</system:String>
<system:String x:Key="Welcome_Page4_Title">Słowo kluczowe akcji i polecenia</system:String> <system:String x:Key="Welcome_Page4_Title">Słowo kluczowe akcji i polecenia</system:String>
@ -425,7 +433,7 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d
<!-- General Guide & Hotkey --> <!-- General Guide & Hotkey -->
<system:String x:Key="HotkeyUpDownDesc">Powrót / Menu kontekstowe</system:String> <system:String x:Key="HotkeyUpDownDesc">Powrót / Menu kontekstowe</system:String>
<system:String x:Key="HotkeyLeftRightDesc">Nawigacja pozycji</system:String> <system:String x:Key="HotkeyLeftRightDesc">Nawigacja po elementach</system:String>
<system:String x:Key="HotkeyShiftEnterDesc">Otwórz menu kontekstowe</system:String> <system:String x:Key="HotkeyShiftEnterDesc">Otwórz menu kontekstowe</system:String>
<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>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Falha em registrar a tecla de atalho &quot;{0}&quot;. A combinação pode estar em uso por outro programa. Mude para uma tecla de atalho diferente, ou encerre o outro programa.</system:String> <system:String x:Key="registerHotkeyFailed">Falha em registrar a tecla de atalho &quot;{0}&quot;. A combinação pode estar em uso por outro programa. Mude para uma tecla de atalho diferente, ou encerre o outro programa.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Não foi possível iniciar {0}</system:String> <system:String x:Key="couldnotStartCmd">Não foi possível iniciar {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato de plugin Flow Launcher inválido</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato de plugin Flow Launcher inválido</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Modo Portátil</system:String> <system:String x:Key="portableMode">Modo Portátil</system:String>
<system:String x:Key="portableModeToolTIp">Armazene todas as configurações e dados do usuário em uma pasta (útil quando usado com unidades removíveis ou serviços em nuvem).</system:String> <system:String x:Key="portableModeToolTIp">Armazene todas as configurações e dados do usuário em uma pasta (útil quando usado com unidades removíveis ou serviços em nuvem).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Iniciar Flow Launcher com inicialização do sistema</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Iniciar Flow Launcher com inicialização do sistema</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Erro ao ativar início com o sistema</system:String> <system:String x:Key="setAutoStartFailed">Erro ao ativar início com o sistema</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Esconder Flow Launcher quando foco for perdido</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Esconder Flow Launcher quando foco for perdido</system:String>
<system:String x:Key="dontPromptUpdateMsg">Não mostrar notificações de novas versões</system:String> <system:String x:Key="dontPromptUpdateMsg">Não mostrar notificações de novas versões</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Versão</system:String> <system:String x:Key="plugin_query_version">Versão</system:String>
<system:String x:Key="plugin_query_web">Site</system:String> <system:String x:Key="plugin_query_web">Site</system:String>
<system:String x:Key="plugin_uninstall">Desinstalar</system:String> <system:String x:Key="plugin_uninstall">Desinstalar</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Loja de Plugins</system:String> <system:String x:Key="pluginStore">Loja de Plugins</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Este plugin foi atualizado nos últimos 7 dias</system:String> <system:String x:Key="LabelNewToolTip">Este plugin foi atualizado nos últimos 7 dias</system:String>
<system:String x:Key="LabelUpdateToolTip">Nova Atualização Disponível</system:String> <system:String x:Key="LabelUpdateToolTip">Nova Atualização Disponível</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Aparência</system:String> <system:String x:Key="appearance">Aparência</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Atalho</system:String> <system:String x:Key="hotkey">Atalho</system:String>
<system:String x:Key="hotkeys">Atalho</system:String> <system:String x:Key="hotkeys">Atalho</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Selecione o Gerenciador de Arquivos</system:String> <system:String x:Key="fileManagerWindow">Selecione o Gerenciador de Arquivos</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<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">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Plano de fundo</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versão</system:String> <system:String x:Key="reportWindow_version">Versão</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">Relatório enviado com sucesso</system:String> <system:String x:Key="reportWindow_report_succeed">Relatório enviado com sucesso</system:String>
<system:String x:Key="reportWindow_report_failed">Falha ao enviar relatório</system:String> <system:String x:Key="reportWindow_report_failed">Falha ao enviar relatório</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher apresentou um erro</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher apresentou um erro</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Por favor, aguarde...</system:String> <system:String x:Key="pleaseWait">Por favor, aguarde...</system:String>

View file

@ -2,17 +2,18 @@
<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 Launcher detetou que tem instalados {0} plugins e que necessitam de {1} para serem executados. Gostaria de descarregar {1}? Flow Launcher detetou que tem instalou os plugins {0}, que necessitam de {1} para serem executados. Gostaria de descarregar {1}?
{2}{2} {2}{2}
Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicitada a pasta que contém o executável {1}. Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicitada a pasta que contém o executável {1}.
</system:String> </system:String>
<system:String x:Key="runtimePluginChooseRuntimeExecutable">Por favor, selecione o executável {0}</system:String> <system:String x:Key="runtimePluginChooseRuntimeExecutable">Por favor, selecione o executável {0}</system:String>
<system:String x:Key="runtimePluginUnableToSetExecutablePath">Não foi possível definir o caminho do executável {0}. Experimente definir o caminho nas definições (desloque até ao fundo).</system:String> <system:String x:Key="runtimePluginUnableToSetExecutablePath">Não foi possível definir o caminho do executável {0}. Experimente definir o caminho nas definições (desloque até ao fundo).</system:String>
<system:String x:Key="failedToInitializePluginsTitle">Falha ao iniciar os plugins</system:String> <system:String x:Key="failedToInitializePluginsTitle">Falha ao iniciar os plugins</system:String>
<system:String x:Key="failedToInitializePluginsMessage">Plugins: {0} - não foi possível iniciar e serão desativados. Contacte o criador dos plugin para obter ajuda.</system:String> <system:String x:Key="failedToInitializePluginsMessage">Plugin: {0} - não foi possível iniciar e será desativado. Contacte o criador do plugin para obter ajuda.</system:String>
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Falha ao registar a tecla de atalho &quot;{0}&quot;. A tecla de atalho pode estar a ser usada por outra aplicação. Utilize uma tecla de atalho diferente ou feche o outro programa.</system:String> <system:String x:Key="registerHotkeyFailed">Falha ao registar a tecla de atalho &quot;{0}&quot;. A tecla de atalho pode estar a ser usada por outra aplicação. Utilize uma tecla de atalho diferente ou feche o outro programa.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Falha ao cancelar a atribuição da tecla de atalho &quot;{0}&quot;. Tente novamente ou consulte o registo para mais detalhes.</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">Não foi possível iniciar {0}</system:String> <system:String x:Key="couldnotStartCmd">Não foi possível iniciar {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato do ficheiro inválido como plugin</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Formato do ficheiro inválido como plugin</system:String>
@ -44,6 +45,8 @@ Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicit
<system:String x:Key="portableMode">Modo portátil</system:String> <system:String x:Key="portableMode">Modo portátil</system:String>
<system:String x:Key="portableModeToolTIp">Guardar todas as definições e dados do utilizador numa pasta (indicado se utilizar discos amovíveis ou serviços cloud)</system:String> <system:String x:Key="portableModeToolTIp">Guardar todas as definições e dados do utilizador numa pasta (indicado se utilizar discos amovíveis ou serviços cloud)</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Iniciar Flow Launcher ao arrancar o sistema</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Iniciar Flow Launcher ao arrancar o sistema</system:String>
<system:String x:Key="useLogonTaskForStartup">Utilizar tarefa de arranque em vez de uma entrada de arranque para uma experiência mais rápida</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">Se desinstalar a aplicação, tem que remover manualmente a tarefa (Flow.Launcher Startup) no agendamento de tarefas</system:String>
<system:String x:Key="setAutoStartFailed">Erro ao definir para iniciar ao arrancar</system:String> <system:String x:Key="setAutoStartFailed">Erro ao definir para iniciar ao arrancar</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Ocultar Flow Launcher ao perder o foco</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Ocultar Flow Launcher ao perder o foco</system:String>
<system:String x:Key="dontPromptUpdateMsg">Não notificar acerca de novas versões</system:String> <system:String x:Key="dontPromptUpdateMsg">Não notificar acerca de novas versões</system:String>
@ -126,7 +129,8 @@ Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicit
<system:String x:Key="plugin_query_version">Versão</system:String> <system:String x:Key="plugin_query_version">Versão</system:String>
<system:String x:Key="plugin_query_web">Site</system:String> <system:String x:Key="plugin_query_web">Site</system:String>
<system:String x:Key="plugin_uninstall">Desinstalar</system:String> <system:String x:Key="plugin_uninstall">Desinstalar</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Falha ao remover as definições do plugin</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugin: {0} - Falha ao remover o ficheiro de definições do plugin. Experimente remover manualmente.</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Loja de plugins</system:String> <system:String x:Key="pluginStore">Loja de plugins</system:String>
@ -143,8 +147,6 @@ Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicit
<system:String x:Key="LabelNewToolTip">Este plugin foi atualizado nos últimos 7 dias</system:String> <system:String x:Key="LabelNewToolTip">Este plugin foi atualizado nos últimos 7 dias</system:String>
<system:String x:Key="LabelUpdateToolTip">Atualização disponível</system:String> <system:String x:Key="LabelUpdateToolTip">Atualização disponível</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Aparência</system:String> <system:String x:Key="appearance">Aparência</system:String>
@ -194,7 +196,6 @@ Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicit
<system:String x:Key="TypeIsDarkToolTip">Este tema tem suporte a dois modos (claro/escuro).</system:String> <system:String x:Key="TypeIsDarkToolTip">Este tema tem suporte a dois modos (claro/escuro).</system:String>
<system:String x:Key="TypeHasBlurToolTip">Este tema tem suporte a fundo transparente desfocado.</system:String> <system:String x:Key="TypeHasBlurToolTip">Este tema tem suporte a fundo transparente desfocado.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Tecla de atalho</system:String> <system:String x:Key="hotkey">Tecla de atalho</system:String>
<system:String x:Key="hotkeys">Teclas de atalho</system:String> <system:String x:Key="hotkeys">Teclas de atalho</system:String>
@ -296,6 +297,9 @@ Clique &quot;Não&quot; se já tiver instalado e, de seguida, ser-lhe-á solicit
<system:String x:Key="userdatapath">Localização dos dados do utilizador</system:String> <system:String x:Key="userdatapath">Localização dos dados do utilizador</system:String>
<system:String x:Key="userdatapathToolTip">As definições e os plugins instalados são guardados na pasta de dados do utilizador. A localização pode variar, tendo em conta se a aplicação está instalada ou no modo portátil</system:String> <system:String x:Key="userdatapathToolTip">As definições e os plugins instalados são guardados na pasta de dados do utilizador. A localização pode variar, tendo em conta se a aplicação está instalada ou no modo portátil</system:String>
<system:String x:Key="userdatapathButton">Abrir pasta</system:String> <system:String x:Key="userdatapathButton">Abrir pasta</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Selecione o gestor de ficheiros</system:String> <system:String x:Key="fileManagerWindow">Selecione o gestor de ficheiros</system:String>
@ -366,6 +370,7 @@ Se adicionar o prefixo '@' durante a introdução do atalho, será utilizada qua
<system:String x:Key="commonOK">OK</system:String> <system:String x:Key="commonOK">OK</system:String>
<system:String x:Key="commonYes">Sim</system:String> <system:String x:Key="commonYes">Sim</system:String>
<system:String x:Key="commonNo">Não</system:String> <system:String x:Key="commonNo">Não</system:String>
<system:String x:Key="commonBackground">Fundo</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Versão</system:String> <system:String x:Key="reportWindow_version">Versão</system:String>
@ -382,6 +387,9 @@ Se adicionar o prefixo '@' durante a introdução do atalho, será utilizada qua
<system:String x:Key="reportWindow_report_succeed">Relatório enviado com sucesso</system:String> <system:String x:Key="reportWindow_report_succeed">Relatório enviado com sucesso</system:String>
<system:String x:Key="reportWindow_report_failed">Falha ao enviar o relatório</system:String> <system:String x:Key="reportWindow_report_failed">Falha ao enviar o relatório</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Ocorreu um erro</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Ocorreu um erro</system:String>
<system:String x:Key="reportWindow_please_open_issue">Abra um relatório de erro em</system:String>
<system:String x:Key="reportWindow_upload_log">1. Carregue o ficheiro de registos: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copie a mensagem abaixo</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Por favor aguarde...</system:String> <system:String x:Key="pleaseWait">Por favor aguarde...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Не удалось зарегистрировать сочетание клавиш &quot;{0}&quot;. Возможно, оно используется другой программой. Измените сочетание клавиш или закройте другую программу.</system:String> <system:String x:Key="registerHotkeyFailed">Не удалось зарегистрировать сочетание клавиш &quot;{0}&quot;. Возможно, оно используется другой программой. Измените сочетание клавиш или закройте другую программу.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Не удалось запустить {0}</system:String> <system:String x:Key="couldnotStartCmd">Не удалось запустить {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Недопустимый формат файла плагина Flow Launcher</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Недопустимый формат файла плагина Flow Launcher</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Портативный режим</system:String> <system:String x:Key="portableMode">Портативный режим</system:String>
<system:String x:Key="portableModeToolTIp">Храните все настройки и данные пользователя в одной папке (полезно при использовании со съёмными дисками или облачными сервисами).</system:String> <system:String x:Key="portableModeToolTIp">Храните все настройки и данные пользователя в одной папке (полезно при использовании со съёмными дисками или облачными сервисами).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Запускать Flow Launcher при запуске системы</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Запускать Flow Launcher при запуске системы</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Ошибка настройки запуска при запуске</system:String> <system:String x:Key="setAutoStartFailed">Ошибка настройки запуска при запуске</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Скрывать Flow Launcher, если потерян фокуc</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Скрывать Flow Launcher, если потерян фокуc</system:String>
<system:String x:Key="dontPromptUpdateMsg">Не отображать сообщение об обновлении, когда доступна новая версия</system:String> <system:String x:Key="dontPromptUpdateMsg">Не отображать сообщение об обновлении, когда доступна новая версия</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Версия</system:String> <system:String x:Key="plugin_query_version">Версия</system:String>
<system:String x:Key="plugin_query_web">Веб-сайт</system:String> <system:String x:Key="plugin_query_web">Веб-сайт</system:String>
<system:String x:Key="plugin_uninstall">Удалить</system:String> <system:String x:Key="plugin_uninstall">Удалить</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Магазин плагинов</system:String> <system:String x:Key="pluginStore">Магазин плагинов</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Этот плагин был обновлён за последние 7 дней</system:String> <system:String x:Key="LabelNewToolTip">Этот плагин был обновлён за последние 7 дней</system:String>
<system:String x:Key="LabelUpdateToolTip">Доступно новое обновление</system:String> <system:String x:Key="LabelUpdateToolTip">Доступно новое обновление</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Тема</system:String> <system:String x:Key="theme">Тема</system:String>
<system:String x:Key="appearance">Внешний вид</system:String> <system:String x:Key="appearance">Внешний вид</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Горячая клавиша</system:String> <system:String x:Key="hotkey">Горячая клавиша</system:String>
<system:String x:Key="hotkeys">Горячая клавиша</system:String> <system:String x:Key="hotkeys">Горячая клавиша</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Выбор менеджера файлов</system:String> <system:String x:Key="fileManagerWindow">Выбор менеджера файлов</system:String>
@ -367,6 +371,7 @@
<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">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Фон</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Версия</system:String> <system:String x:Key="reportWindow_version">Версия</system:String>
@ -383,6 +388,9 @@
<system:String x:Key="reportWindow_report_succeed">Отчёт успешно отправлен</system:String> <system:String x:Key="reportWindow_report_succeed">Отчёт успешно отправлен</system:String>
<system:String x:Key="reportWindow_report_failed">Не удалось отправить отчёт</system:String> <system:String x:Key="reportWindow_report_failed">Не удалось отправить отчёт</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Произошёл сбой в Flow Launcher</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Произошёл сбой в Flow Launcher</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Пожалуйста, подождите...</system:String> <system:String x:Key="pleaseWait">Пожалуйста, подождите...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Nepodarilo sa zaregistrovať klávesovú skratku &quot;{0}&quot;. Klávesová skratka môže byť používaná iným programom. Zmeňte klávesovú skratku na inú alebo ukončite iný program.</system:String> <system:String x:Key="registerHotkeyFailed">Nepodarilo sa zaregistrovať klávesovú skratku &quot;{0}&quot;. Klávesová skratka môže byť používaná iným programom. Zmeňte klávesovú skratku na inú alebo ukončite iný program.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Nepodarilo sa registrovať klávesovú skratku &quot;{0}&quot;. Skúste to znova alebo si pozrite podrobnosti v denníku</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">Nepodarilo sa spustiť {0}</system:String> <system:String x:Key="couldnotStartCmd">Nepodarilo sa spustiť {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Neplatný formát súboru pre plugin Flow Launchera</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Neplatný formát súboru pre plugin Flow Launchera</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Prenosný režim</system:String> <system:String x:Key="portableMode">Prenosný režim</system:String>
<system:String x:Key="portableModeToolTIp">Uloží všetky nastavenia a používateľské údaje do jedného priečinka (Užitočné pri vymeniteľných diskoch a cloudových službách).</system:String> <system:String x:Key="portableModeToolTIp">Uloží všetky nastavenia a používateľské údaje do jedného priečinka (Užitočné pri vymeniteľných diskoch a cloudových službách).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Spustiť Flow Launcher pri spustení systému</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Spustiť Flow Launcher pri spustení systému</system:String>
<system:String x:Key="useLogonTaskForStartup">Pre rýchlejšie spustenie použiť úlohu pri prihlásení namiesto položky po spustení</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">Po odinštalovaní musíte úlohu manuálne odstrániť (Flow.Launcher Startup) cez Plánovač úloh</system:String>
<system:String x:Key="setAutoStartFailed">Chybné nastavenie spustenia pri spustení</system:String> <system:String x:Key="setAutoStartFailed">Chybné nastavenie spustenia pri spustení</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Schovať Flow Launcher po strate fokusu</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Schovať Flow Launcher po strate fokusu</system:String>
<system:String x:Key="dontPromptUpdateMsg">Nezobrazovať upozornenia na novú verziu</system:String> <system:String x:Key="dontPromptUpdateMsg">Nezobrazovať upozornenia na novú verziu</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Verzia</system:String> <system:String x:Key="plugin_query_version">Verzia</system:String>
<system:String x:Key="plugin_query_web">Webstránka</system:String> <system:String x:Key="plugin_query_web">Webstránka</system:String>
<system:String x:Key="plugin_uninstall">Odinštalovať</system:String> <system:String x:Key="plugin_uninstall">Odinštalovať</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Nepodarilo sa odstrániť nastavenia pluginu</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Pluginy: {0} Nepodarilo sa odstrániť súbory s nastaveniami pluginu, odstráňte ich manuálne</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Repozitár pluginov</system:String> <system:String x:Key="pluginStore">Repozitár pluginov</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Tento plugin bol aktualizovaný za posledných 7 dní</system:String> <system:String x:Key="LabelNewToolTip">Tento plugin bol aktualizovaný za posledných 7 dní</system:String>
<system:String x:Key="LabelUpdateToolTip">K dispozícii je nová aktualizácia</system:String> <system:String x:Key="LabelUpdateToolTip">K dispozícii je nová aktualizácia</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Motív</system:String> <system:String x:Key="theme">Motív</system:String>
<system:String x:Key="appearance">Vzhľad</system:String> <system:String x:Key="appearance">Vzhľad</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">Tento motív podporuje 2 režimy (svetlý/tmavý).</system:String> <system:String x:Key="TypeIsDarkToolTip">Tento motív podporuje 2 režimy (svetlý/tmavý).</system:String>
<system:String x:Key="TypeHasBlurToolTip">Tento motív podporuje rozostrenie priehľadného pozadia.</system:String> <system:String x:Key="TypeHasBlurToolTip">Tento motív podporuje rozostrenie priehľadného pozadia.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Klávesové skratky</system:String> <system:String x:Key="hotkey">Klávesové skratky</system:String>
<system:String x:Key="hotkeys">Klávesové skratky</system:String> <system:String x:Key="hotkeys">Klávesové skratky</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Cesta k používateľskému priečinku</system:String> <system:String x:Key="userdatapath">Cesta k používateľskému priečinku</system:String>
<system:String x:Key="userdatapathToolTip">Nastavenia používateľa a nainštalované pluginy sa ukladajú do používateľského priečinka. Toto umiestnenie sa môže líšiť v závislosti od toho, či je v prenosnom režime alebo nie.</system:String> <system:String x:Key="userdatapathToolTip">Nastavenia používateľa a nainštalované pluginy sa ukladajú do používateľského priečinka. Toto umiestnenie sa môže líšiť v závislosti od toho, či je v prenosnom režime alebo nie.</system:String>
<system:String x:Key="userdatapathButton">Otvoriť priečinok</system:String> <system:String x:Key="userdatapathButton">Otvoriť priečinok</system:String>
<system:String x:Key="logLevel">Úroveň logovania</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Vyberte správcu súborov</system:String> <system:String x:Key="fileManagerWindow">Vyberte správcu súborov</system:String>
@ -367,6 +371,7 @@ Ak pri zadávaní skratky pred ňu pridáte &quot;@&quot;, bude sa zhodovať s
<system:String x:Key="commonOK">Aktualizovať</system:String> <system:String x:Key="commonOK">Aktualizovať</system:String>
<system:String x:Key="commonYes">Áno</system:String> <system:String x:Key="commonYes">Áno</system:String>
<system:String x:Key="commonNo">Nie</system:String> <system:String x:Key="commonNo">Nie</system:String>
<system:String x:Key="commonBackground">Pozadie</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Verzia</system:String> <system:String x:Key="reportWindow_version">Verzia</system:String>
@ -383,6 +388,9 @@ Ak pri zadávaní skratky pred ňu pridáte &quot;@&quot;, bude sa zhodovať s
<system:String x:Key="reportWindow_report_succeed">Hlásenie bolo úspešne odoslané</system:String> <system:String x:Key="reportWindow_report_succeed">Hlásenie bolo úspešne odoslané</system:String>
<system:String x:Key="reportWindow_report_failed">Odoslanie hlásenia zlyhalo</system:String> <system:String x:Key="reportWindow_report_failed">Odoslanie hlásenia zlyhalo</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher zaznamenal chybu</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher zaznamenal chybu</system:String>
<system:String x:Key="reportWindow_please_open_issue">Prosím, otvorte nové issue na</system:String>
<system:String x:Key="reportWindow_upload_log">1. Nahrajte súbor logu: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Skopírujte nižšie uvedenú správu o výnimke</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Čakajte, prosím...</system:String> <system:String x:Key="pleaseWait">Čakajte, prosím...</system:String>

View file

@ -13,6 +13,7 @@
<!-- 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">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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Neuspešno pokretanje {0}</system:String> <system:String x:Key="couldnotStartCmd">Neuspešno pokretanje {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Nepravilni Flow Launcher plugin format datoteke</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Nepravilni Flow Launcher plugin format datoteke</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Portable Mode</system:String> <system:String x:Key="portableMode">Portable Mode</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">Store all settings and user data in one folder (Useful when used with removable drives or cloud services).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Pokreni Flow Launcher pri podizanju sistema</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Pokreni Flow Launcher pri podizanju sistema</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Sakri Flow Launcher kada se izgubi fokus</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Sakri Flow Launcher kada se izgubi fokus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Ne prikazuj obaveštenje o novoj verziji</system:String> <system:String x:Key="dontPromptUpdateMsg">Ne prikazuj obaveštenje o novoj verziji</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Verzija</system:String> <system:String x:Key="plugin_query_version">Verzija</system:String>
<system:String x:Key="plugin_query_web">Website</system:String> <system:String x:Key="plugin_query_web">Website</system:String>
<system:String x:Key="plugin_uninstall">Uninstall</system:String> <system:String x:Key="plugin_uninstall">Uninstall</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Plugin Store</system:String> <system:String x:Key="pluginStore">Plugin Store</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String>
<system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String> <system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Tema</system:String> <system:String x:Key="theme">Tema</system:String>
<system:String x:Key="appearance">Appearance</system:String> <system:String x:Key="appearance">Appearance</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Prečica</system:String> <system:String x:Key="hotkey">Prečica</system:String>
<system:String x:Key="hotkeys">Prečica</system:String> <system:String x:Key="hotkeys">Prečica</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Select File Manager</system:String> <system:String x:Key="fileManagerWindow">Select File Manager</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<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">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Background</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Verzija</system:String> <system:String x:Key="reportWindow_version">Verzija</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">Izveštaj uspešno poslat</system:String> <system:String x:Key="reportWindow_report_succeed">Izveštaj uspešno poslat</system:String>
<system:String x:Key="reportWindow_report_failed">Izveštaj neuspešno poslat</system:String> <system:String x:Key="reportWindow_report_failed">Izveštaj neuspešno poslat</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher je dobio grešku</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher je dobio grešku</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Please wait...</system:String> <system:String x:Key="pleaseWait">Please wait...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">&quot;{0}&quot; kısayolunu atama başarısız oldu. Kısayolu başka bir program kullanıyorsa kapatmayı deneyin veya kısayolu değiştirin.</system:String> <system:String x:Key="registerHotkeyFailed">&quot;{0}&quot; kısayolunu atama başarısız oldu. Kısayolu başka bir program kullanıyorsa kapatmayı deneyin veya kısayolu değiştirin.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">{0} başlatılamıyor</system:String> <system:String x:Key="couldnotStartCmd">{0} başlatılamıyor</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Geçersiz Flow Launcher eklenti dosyası formatı</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Geçersiz Flow Launcher eklenti dosyası formatı</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Taşınabilir Mod</system:String> <system:String x:Key="portableMode">Taşınabilir Mod</system:String>
<system:String x:Key="portableModeToolTIp">Tüm ayarları ve kullanıcı verilerini tek bir klasörde saklayın (Çıkarılabilir sürücüler veya bulut hizmetleri ile kullanıldığında kullanışlıdır).</system:String> <system:String x:Key="portableModeToolTIp">Tüm ayarları ve kullanıcı verilerini tek bir klasörde saklayın (Çıkarılabilir sürücüler veya bulut hizmetleri ile kullanıldığında kullanışlıdır).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Sistem ile Başlat</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Sistem ile Başlat</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Sistemle başlatma ayarı başarısız oldu</system:String> <system:String x:Key="setAutoStartFailed">Sistemle başlatma ayarı başarısız oldu</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Odak Pencereden Ayrıldığında Gizle</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Odak Pencereden Ayrıldığında Gizle</system:String>
<system:String x:Key="dontPromptUpdateMsg">Güncelleme bildirimlerini gösterme</system:String> <system:String x:Key="dontPromptUpdateMsg">Güncelleme bildirimlerini gösterme</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Sürüm</system:String> <system:String x:Key="plugin_query_version">Sürüm</system:String>
<system:String x:Key="plugin_query_web">İnternet Sitesi</system:String> <system:String x:Key="plugin_query_web">İnternet Sitesi</system:String>
<system:String x:Key="plugin_uninstall">Kaldır</system:String> <system:String x:Key="plugin_uninstall">Kaldır</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Eklenti Mağazası</system:String> <system:String x:Key="pluginStore">Eklenti Mağazası</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Bu eklenti son 7 gün içerisinde güncellenmiş.</system:String> <system:String x:Key="LabelNewToolTip">Bu eklenti son 7 gün içerisinde güncellenmiş.</system:String>
<system:String x:Key="LabelUpdateToolTip">Yeni Bir Güncelleme Mevcut</system:String> <system:String x:Key="LabelUpdateToolTip">Yeni Bir Güncelleme Mevcut</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Temalar</system:String> <system:String x:Key="theme">Temalar</system:String>
<system:String x:Key="appearance">Görünüm</system:String> <system:String x:Key="appearance">Görünüm</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Kısayol Tuşu</system:String> <system:String x:Key="hotkey">Kısayol Tuşu</system:String>
<system:String x:Key="hotkeys">Kısayol Tuşu</system:String> <system:String x:Key="hotkeys">Kısayol Tuşu</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Kullanıcı Verisi Dizini</system:String> <system:String x:Key="userdatapath">Kullanıcı Verisi Dizini</system:String>
<system:String x:Key="userdatapathToolTip">Kullanıcı ayarları ve yüklü eklentiler bu klasörde saklanır. Klasörün konumu taşınabilir moda bağlı olarak değişebilir.</system:String> <system:String x:Key="userdatapathToolTip">Kullanıcı ayarları ve yüklü eklentiler bu klasörde saklanır. Klasörün konumu taşınabilir moda bağlı olarak değişebilir.</system:String>
<system:String x:Key="userdatapathButton">Klasörü Aç</system:String> <system:String x:Key="userdatapathButton">Klasörü Aç</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Dosya Yöneticisi Seçenekleri</system:String> <system:String x:Key="fileManagerWindow">Dosya Yöneticisi Seçenekleri</system:String>
@ -365,6 +369,7 @@
<system:String x:Key="commonOK">Güncelle</system:String> <system:String x:Key="commonOK">Güncelle</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">Arka plan</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Sürüm</system:String> <system:String x:Key="reportWindow_version">Sürüm</system:String>
@ -381,6 +386,9 @@
<system:String x:Key="reportWindow_report_succeed">Hata raporu başarıyla gönderildi</system:String> <system:String x:Key="reportWindow_report_succeed">Hata raporu başarıyla gönderildi</system:String>
<system:String x:Key="reportWindow_report_failed">Hata raporu gönderimi başarısız oldu</system:String> <system:String x:Key="reportWindow_report_failed">Hata raporu gönderimi başarısız oldu</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher'da bir hata oluştu</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher'da bir hata oluştu</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Lütfen bekleyin...</system:String> <system:String x:Key="pleaseWait">Lütfen bekleyin...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">Не вдалося зареєструвати гарячу клавішу &quot;{0}&quot;. Можливо, гаряча клавіша використовується іншою програмою. Змініть її на іншу гарячу клавішу або вийдіть з програми, де вона використовується.</system:String> <system:String x:Key="registerHotkeyFailed">Не вдалося зареєструвати гарячу клавішу &quot;{0}&quot;. Можливо, гаряча клавіша використовується іншою програмою. Змініть її на іншу гарячу клавішу або вийдіть з програми, де вона використовується.</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">Не вдалося запустити {0}</system:String> <system:String x:Key="couldnotStartCmd">Не вдалося запустити {0}</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">Невірний формат файлу плагіна Flow Launcher</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">Невірний формат файлу плагіна Flow Launcher</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Портативний режим</system:String> <system:String x:Key="portableMode">Портативний режим</system:String>
<system:String x:Key="portableModeToolTIp">Зберігати всі налаштування і дані користувача в одній теці (буде корисно при видаленні дисків або хмарних сервісах).</system:String> <system:String x:Key="portableModeToolTIp">Зберігати всі налаштування і дані користувача в одній теці (буде корисно при видаленні дисків або хмарних сервісах).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Запускати Flow Launcher при запуску системи</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Запускати Flow Launcher при запуску системи</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Помилка запуску налаштування під час запуску</system:String> <system:String x:Key="setAutoStartFailed">Помилка запуску налаштування під час запуску</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Сховати Flow Launcher, якщо втрачено фокус</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Сховати Flow Launcher, якщо втрачено фокус</system:String>
<system:String x:Key="dontPromptUpdateMsg">Не повідомляти про доступні нові версії</system:String> <system:String x:Key="dontPromptUpdateMsg">Не повідомляти про доступні нові версії</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Версія</system:String> <system:String x:Key="plugin_query_version">Версія</system:String>
<system:String x:Key="plugin_query_web">Сайт</system:String> <system:String x:Key="plugin_query_web">Сайт</system:String>
<system:String x:Key="plugin_uninstall">Видалити</system:String> <system:String x:Key="plugin_uninstall">Видалити</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Магазин плагінів</system:String> <system:String x:Key="pluginStore">Магазин плагінів</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Цей плагін було оновлено протягом останніх 7 днів</system:String> <system:String x:Key="LabelNewToolTip">Цей плагін було оновлено протягом останніх 7 днів</system:String>
<system:String x:Key="LabelUpdateToolTip">Доступне нове оновлення</system:String> <system:String x:Key="LabelUpdateToolTip">Доступне нове оновлення</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Тема</system:String> <system:String x:Key="theme">Тема</system:String>
<system:String x:Key="appearance">Зовнішній вигляд</system:String> <system:String x:Key="appearance">Зовнішній вигляд</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String>
<system:String x:Key="TypeHasBlurToolTip">Ця тема підтримує розмитий прозорий фон.</system:String> <system:String x:Key="TypeHasBlurToolTip">Ця тема підтримує розмитий прозорий фон.</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Гаряча клавіша</system:String> <system:String x:Key="hotkey">Гаряча клавіша</system:String>
<system:String x:Key="hotkeys">Гарячі клавіші</system:String> <system:String x:Key="hotkeys">Гарячі клавіші</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">Розташування даних користувача</system:String> <system:String x:Key="userdatapath">Розташування даних користувача</system:String>
<system:String x:Key="userdatapathToolTip">Налаштування користувача та встановлені плагіни зберігаються у теці даних користувача. Це місце може змінюватися залежно від того, чи перебуває програма в портативному режимі, чи ні.</system:String> <system:String x:Key="userdatapathToolTip">Налаштування користувача та встановлені плагіни зберігаються у теці даних користувача. Це місце може змінюватися залежно від того, чи перебуває програма в портативному режимі, чи ні.</system:String>
<system:String x:Key="userdatapathButton">Відкрити теку</system:String> <system:String x:Key="userdatapathButton">Відкрити теку</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Виберіть файловий менеджер</system:String> <system:String x:Key="fileManagerWindow">Виберіть файловий менеджер</system:String>
@ -367,6 +371,7 @@
<system:String x:Key="commonOK">Добре</system:String> <system:String x:Key="commonOK">Добре</system:String>
<system:String x:Key="commonYes">Так</system:String> <system:String x:Key="commonYes">Так</system:String>
<system:String x:Key="commonNo">Ні</system:String> <system:String x:Key="commonNo">Ні</system:String>
<system:String x:Key="commonBackground">Тло</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">Версія</system:String> <system:String x:Key="reportWindow_version">Версія</system:String>
@ -383,6 +388,9 @@
<system:String x:Key="reportWindow_report_succeed">Звіт успішно відправлено</system:String> <system:String x:Key="reportWindow_report_succeed">Звіт успішно відправлено</system:String>
<system:String x:Key="reportWindow_report_failed">Не вдалося відправити звіт</system:String> <system:String x:Key="reportWindow_report_failed">Не вдалося відправити звіт</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Стався збій в додатку Flow Launcher</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Стався збій в додатку Flow Launcher</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Будь ласка, зачекайте...</system:String> <system:String x:Key="pleaseWait">Будь ласка, зачекайте...</system:String>

View file

@ -13,6 +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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">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>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">Chế độ Portabler</system:String> <system:String x:Key="portableMode">Chế độ Portabler</system:String>
<system:String x:Key="portableModeToolTIp">Lưu trữ tất cả cài đặt và dữ liệu người dùng trong một thư mục (hữu ích khi sử dụng với thiết bị lưu trữ di động hoặc dịch vụ đám mây).</system:String> <system:String x:Key="portableModeToolTIp">Lưu trữ tất cả cài đặt và dữ liệu người dùng trong một thư mục (hữu ích khi sử dụng với thiết bị lưu trữ di động hoặc dịch vụ đám mây).</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">Khởi động Flow Launcher khi khởi động hệ thống</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">Khởi động Flow Launcher khi khởi động hệ thống</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Không lưu được tính năng tự khởi động khi khởi động hệ thống</system:String> <system:String x:Key="setAutoStartFailed">Không lưu được tính năng tự khởi động khi khởi động hệ thống</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">Ẩn Flow Launcher khi mất tiêu điểm</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">Ẩn Flow Launcher khi mất tiêu điểm</system:String>
<system:String x:Key="dontPromptUpdateMsg">Không hiển thị thông báo khi có phiên bản mới</system:String> <system:String x:Key="dontPromptUpdateMsg">Không hiển thị thông báo khi có phiên bản mới</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">Phiên bản</system:String> <system:String x:Key="plugin_query_version">Phiên bản</system:String>
<system:String x:Key="plugin_query_web">Trang web</system:String> <system:String x:Key="plugin_query_web">Trang web</system:String>
<system:String x:Key="plugin_uninstall">Gỡ cài đặt</system:String> <system:String x:Key="plugin_uninstall">Gỡ cài đặt</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">Tải tiện ích mở rộng</system:String> <system:String x:Key="pluginStore">Tải tiện ích mở rộng</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">Plugin này đã được cập nhật trong vòng 7 ngày qua</system:String> <system:String x:Key="LabelNewToolTip">Plugin này đã được cập nhật trong vòng 7 ngày qua</system:String>
<system:String x:Key="LabelUpdateToolTip">Đã có bản cập nhật mới</system:String> <system:String x:Key="LabelUpdateToolTip">Đã có bản cập nhật mới</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">Giao Diện</system:String> <system:String x:Key="theme">Giao Diện</system:String>
<system:String x:Key="appearance">Giao diện</system:String> <system:String x:Key="appearance">Giao diện</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">Phím tắt</system:String> <system:String x:Key="hotkey">Phím tắt</system:String>
<system:String x:Key="hotkeys">Phím tắt</system:String> <system:String x:Key="hotkeys">Phím tắt</system:String>
@ -299,6 +300,9 @@
<system:String x:Key="userdatapath">Vị trí dữ liệu người dùng</system:String> <system:String x:Key="userdatapath">Vị trí dữ liệu người dùng</system:String>
<system:String x:Key="userdatapathToolTip">Thiết đặt người dùng và plugin đã cài đặt sẽ được lưu trong thư mục dữ liệu người dùng. Vị trí này có thể thay đổi tùy thuộc vào việc nó có ở chế độ di động hay không.</system:String> <system:String x:Key="userdatapathToolTip">Thiết đặt người dùng và plugin đã cài đặt sẽ được lưu trong thư mục dữ liệu người dùng. Vị trí này có thể thay đổi tùy thuộc vào việc nó có ở chế độ di động hay không.</system:String>
<system:String x:Key="userdatapathButton">Mở thư mục</system:String> <system:String x:Key="userdatapathButton">Mở thư mục</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">Chọn trình quản lý tệp</system:String> <system:String x:Key="fileManagerWindow">Chọn trình quản lý tệp</system:String>
@ -371,6 +375,7 @@
<system:String x:Key="commonOK">OK</system:String> <system:String x:Key="commonOK">OK</system:String>
<system:String x:Key="commonYes">Có</system:String> <system:String x:Key="commonYes">Có</system:String>
<system:String x:Key="commonNo">Không</system:String> <system:String x:Key="commonNo">Không</system:String>
<system:String x:Key="commonBackground">Nền</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>
@ -387,6 +392,9 @@
<system:String x:Key="reportWindow_report_succeed">Đã gửi báo cáo thành công</system:String> <system:String x:Key="reportWindow_report_succeed">Đã gửi báo cáo thành công</system:String>
<system:String x:Key="reportWindow_report_failed">Báo cáo lỗi</system:String> <system:String x:Key="reportWindow_report_failed">Báo cáo lỗi</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Trình khởi chạy luồng có lỗi</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Trình khởi chạy luồng có lỗi</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">Cảnh báo nhỏ...</system:String> <system:String x:Key="pleaseWait">Cảnh báo nhỏ...</system:String>

View file

@ -13,6 +13,7 @@
<!-- MainWindow --> <!-- MainWindow -->
<system:String x:Key="registerHotkeyFailed">无法注册热键“{0}”。该热键可能正在被其他程序使用。更改为不同的热键,或退出其他程序。</system:String> <system:String x:Key="registerHotkeyFailed">无法注册热键“{0}”。该热键可能正在被其他程序使用。更改为不同的热键,或退出其他程序。</system:String>
<system:String x:Key="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">启动命令 {0} 失败</system:String> <system:String x:Key="couldnotStartCmd">启动命令 {0} 失败</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">无效的 Flow Launcher 插件文件格式</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">无效的 Flow Launcher 插件文件格式</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">便携模式</system:String> <system:String x:Key="portableMode">便携模式</system:String>
<system:String x:Key="portableModeToolTIp">将所有设置和用户数据存储在一个文件夹中 (可用于可移除驱动器或云服务)。</system:String> <system:String x:Key="portableModeToolTIp">将所有设置和用户数据存储在一个文件夹中 (可用于可移除驱动器或云服务)。</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">开机自启</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">开机自启</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">设置开机自启时出错</system:String> <system:String x:Key="setAutoStartFailed">设置开机自启时出错</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">失去焦点时自动隐藏 Flow Launcher</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">失去焦点时自动隐藏 Flow Launcher</system:String>
<system:String x:Key="dontPromptUpdateMsg">不显示新版本提示</system:String> <system:String x:Key="dontPromptUpdateMsg">不显示新版本提示</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">版本</system:String> <system:String x:Key="plugin_query_version">版本</system:String>
<system:String x:Key="plugin_query_web">官方网站</system:String> <system:String x:Key="plugin_query_web">官方网站</system:String>
<system:String x:Key="plugin_uninstall">卸载</system:String> <system:String x:Key="plugin_uninstall">卸载</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">插件商店</system:String> <system:String x:Key="pluginStore">插件商店</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">此插件在过去7天内有更新</system:String> <system:String x:Key="LabelNewToolTip">此插件在过去7天内有更新</system:String>
<system:String x:Key="LabelUpdateToolTip">有可用的更新</system:String> <system:String x:Key="LabelUpdateToolTip">有可用的更新</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">主题</system:String> <system:String x:Key="theme">主题</system:String>
<system:String x:Key="appearance">外观</system:String> <system:String x:Key="appearance">外观</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">该主题支持两种(浅色/深色)模式。</system:String> <system:String x:Key="TypeIsDarkToolTip">该主题支持两种(浅色/深色)模式。</system:String>
<system:String x:Key="TypeHasBlurToolTip">该主题支持模糊透明背景。</system:String> <system:String x:Key="TypeHasBlurToolTip">该主题支持模糊透明背景。</system:String>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">热键</system:String> <system:String x:Key="hotkey">热键</system:String>
<system:String x:Key="hotkeys">热键</system:String> <system:String x:Key="hotkeys">热键</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">用户数据位置</system:String> <system:String x:Key="userdatapath">用户数据位置</system:String>
<system:String x:Key="userdatapathToolTip">用户设置和已安装的插件保存在用户数据文件夹中。此位置可能因是否处于便携模式而异。</system:String> <system:String x:Key="userdatapathToolTip">用户设置和已安装的插件保存在用户数据文件夹中。此位置可能因是否处于便携模式而异。</system:String>
<system:String x:Key="userdatapathButton">打开文件夹</system:String> <system:String x:Key="userdatapathButton">打开文件夹</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">默认文件管理器</system:String> <system:String x:Key="fileManagerWindow">默认文件管理器</system:String>
@ -367,6 +371,7 @@
<system:String x:Key="commonOK">更新</system:String> <system:String x:Key="commonOK">更新</system:String>
<system:String x:Key="commonYes">是</system:String> <system:String x:Key="commonYes">是</system:String>
<system:String x:Key="commonNo">否</system:String> <system:String x:Key="commonNo">否</system:String>
<system:String x:Key="commonBackground">背景</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">版本</system:String> <system:String x:Key="reportWindow_version">版本</system:String>
@ -383,6 +388,9 @@
<system:String x:Key="reportWindow_report_succeed">发送成功</system:String> <system:String x:Key="reportWindow_report_succeed">发送成功</system:String>
<system:String x:Key="reportWindow_report_failed">发送失败</system:String> <system:String x:Key="reportWindow_report_failed">发送失败</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher 出错啦</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher 出错啦</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">请稍等...</system:String> <system:String x:Key="pleaseWait">请稍等...</system:String>

View file

@ -13,6 +13,7 @@
<!-- 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">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="unregisterHotkeyFailed">Failed to unregister hotkey &quot;{0}&quot;. Please try again or see log for details</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">啟動命令 {0} 失敗</system:String> <system:String x:Key="couldnotStartCmd">啟動命令 {0} 失敗</system:String>
<system:String x:Key="invalidFlowLauncherPluginFileFormat">無效的 Flow Launcher 外掛格式</system:String> <system:String x:Key="invalidFlowLauncherPluginFileFormat">無效的 Flow Launcher 外掛格式</system:String>
@ -44,6 +45,8 @@
<system:String x:Key="portableMode">便攜模式</system:String> <system:String x:Key="portableMode">便攜模式</system:String>
<system:String x:Key="portableModeToolTIp">將所有設定和使用者資料存儲在一個資料夾中(當與可移動磁碟或雲服務一起使用時很有用)。</system:String> <system:String x:Key="portableModeToolTIp">將所有設定和使用者資料存儲在一個資料夾中(當與可移動磁碟或雲服務一起使用時很有用)。</system:String>
<system:String x:Key="startFlowLauncherOnSystemStartup">開機時啟動</system:String> <system:String x:Key="startFlowLauncherOnSystemStartup">開機時啟動</system:String>
<system:String x:Key="useLogonTaskForStartup">Use logon task instead of startup entry for faster startup experience</system:String>
<system:String x:Key="useLogonTaskForStartupTooltip">After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler</system:String>
<system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String> <system:String x:Key="setAutoStartFailed">Error setting launch on startup</system:String>
<system:String x:Key="hideFlowLauncherWhenLoseFocus">失去焦點時自動隱藏 Flow Launcher</system:String> <system:String x:Key="hideFlowLauncherWhenLoseFocus">失去焦點時自動隱藏 Flow Launcher</system:String>
<system:String x:Key="dontPromptUpdateMsg">不顯示新版本提示</system:String> <system:String x:Key="dontPromptUpdateMsg">不顯示新版本提示</system:String>
@ -126,7 +129,8 @@
<system:String x:Key="plugin_query_version">版本</system:String> <system:String x:Key="plugin_query_version">版本</system:String>
<system:String x:Key="plugin_query_web">官方網站</system:String> <system:String x:Key="plugin_query_web">官方網站</system:String>
<system:String x:Key="plugin_uninstall">解除安裝</system:String> <system:String x:Key="plugin_uninstall">解除安裝</system:String>
<system:String x:Key="failedToRemovePluginSettingsTitle">Fail to remove plugin settings</system:String>
<system:String x:Key="failedToRemovePluginSettingsMessage">Plugins: {0} - Fail to remove plugin settings files, please remove them manually</system:String>
<!-- Setting Plugin Store --> <!-- Setting Plugin Store -->
<system:String x:Key="pluginStore">插件商店</system:String> <system:String x:Key="pluginStore">插件商店</system:String>
@ -143,8 +147,6 @@
<system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String> <system:String x:Key="LabelNewToolTip">This plugin has been updated within the last 7 days</system:String>
<system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String> <system:String x:Key="LabelUpdateToolTip">New Update is Available</system:String>
<!-- Setting Theme --> <!-- Setting Theme -->
<system:String x:Key="theme">主題</system:String> <system:String x:Key="theme">主題</system:String>
<system:String x:Key="appearance">外觀</system:String> <system:String x:Key="appearance">外觀</system:String>
@ -194,7 +196,6 @@
<system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</system:String> <system:String x:Key="TypeIsDarkToolTip">This theme supports two(light/dark) modes.</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>
<!-- Setting Hotkey --> <!-- Setting Hotkey -->
<system:String x:Key="hotkey">快捷鍵</system:String> <system:String x:Key="hotkey">快捷鍵</system:String>
<system:String x:Key="hotkeys">快捷鍵</system:String> <system:String x:Key="hotkeys">快捷鍵</system:String>
@ -297,6 +298,9 @@
<system:String x:Key="userdatapath">User Data Location</system:String> <system:String x:Key="userdatapath">User Data Location</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">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="userdatapathButton">Open Folder</system:String> <system:String x:Key="userdatapathButton">Open Folder</system:String>
<system:String x:Key="logLevel">Log Level</system:String>
<system:String x:Key="LogLevelDEBUG">Debug</system:String>
<system:String x:Key="LogLevelINFO">Info</system:String>
<!-- FileManager Setting Dialog --> <!-- FileManager Setting Dialog -->
<system:String x:Key="fileManagerWindow">選擇檔案管理器</system:String> <system:String x:Key="fileManagerWindow">選擇檔案管理器</system:String>
@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="commonOK">更新</system:String> <system:String x:Key="commonOK">更新</system:String>
<system:String x:Key="commonYes">Yes</system:String> <system:String x:Key="commonYes">Yes</system:String>
<system:String x:Key="commonNo">No</system:String> <system:String x:Key="commonNo">No</system:String>
<system:String x:Key="commonBackground">背景</system:String>
<!-- Crash Reporter --> <!-- Crash Reporter -->
<system:String x:Key="reportWindow_version">版本</system:String> <system:String x:Key="reportWindow_version">版本</system:String>
@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in
<system:String x:Key="reportWindow_report_succeed">傳送成功</system:String> <system:String x:Key="reportWindow_report_succeed">傳送成功</system:String>
<system:String x:Key="reportWindow_report_failed">傳送失敗</system:String> <system:String x:Key="reportWindow_report_failed">傳送失敗</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher 出錯啦</system:String> <system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher 出錯啦</system:String>
<system:String x:Key="reportWindow_please_open_issue">Please open new issue in</system:String>
<system:String x:Key="reportWindow_upload_log">1. Upload log file: {0}</system:String>
<system:String x:Key="reportWindow_copy_below">2. Copy below exception message</system:String>
<!-- General Notice --> <!-- General Notice -->
<system:String x:Key="pleaseWait">請稍後...</system:String> <system:String x:Key="pleaseWait">請稍後...</system:String>

View file

@ -469,7 +469,7 @@ namespace Flow.Launcher
private void OpenWelcomeWindow() private void OpenWelcomeWindow()
{ {
var WelcomeWindow = new WelcomeWindow(_settings); var WelcomeWindow = new WelcomeWindow();
WelcomeWindow.Show(); WelcomeWindow.Show();
} }

View file

@ -0,0 +1,130 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
<xsd:attribute name="mimetype" type="xsd:string"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string"/>
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
<xsd:attribute ref="xml:space"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<data name="app" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="dev" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Images\dev.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gamemode" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

View file

@ -1,8 +1,9 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Windows.Navigation; using System.Windows.Navigation;
using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.Core.Resource; using Flow.Launcher.Core.Resource;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.ViewModel;
namespace Flow.Launcher.Resources.Pages namespace Flow.Launcher.Resources.Pages
{ {
@ -10,10 +11,10 @@ namespace Flow.Launcher.Resources.Pages
{ {
protected override void OnNavigatedTo(NavigationEventArgs e) protected override void OnNavigatedTo(NavigationEventArgs e)
{ {
if (e.ExtraData is Settings settings) Settings = Ioc.Default.GetRequiredService<Settings>();
Settings = settings; // Sometimes the navigation is not triggered by button click,
else // so we need to reset the page number
throw new ArgumentException("Unexpected Navigation Parameter for Settings"); Ioc.Default.GetRequiredService<WelcomeViewModel>().PageNum = 1;
InitializeComponent(); InitializeComponent();
} }
private Internationalization _translater => InternationalizationManager.Instance; private Internationalization _translater => InternationalizationManager.Instance;
@ -37,4 +38,4 @@ namespace Flow.Launcher.Resources.Pages
} }
} }
} }

View file

@ -114,8 +114,7 @@
Margin="0,8,0,0" Margin="0,8,0,0"
ChangeHotkey="{Binding SetTogglingHotkeyCommand}" ChangeHotkey="{Binding SetTogglingHotkeyCommand}"
DefaultHotkey="Alt+Space" DefaultHotkey="Alt+Space"
Hotkey="{Binding Settings.Hotkey}" Type="Hotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="True" ValidateKeyGesture="True"
WindowTitle="{DynamicResource flowlauncherHotkey}" /> WindowTitle="{DynamicResource flowlauncherHotkey}" />
</StackPanel> </StackPanel>

View file

@ -1,11 +1,11 @@
using Flow.Launcher.Helper; using Flow.Launcher.Helper;
using Flow.Launcher.Infrastructure.Hotkey; using Flow.Launcher.Infrastructure.Hotkey;
using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Infrastructure.UserSettings;
using System;
using System.Windows.Navigation; using System.Windows.Navigation;
using CommunityToolkit.Mvvm.Input; using CommunityToolkit.Mvvm.Input;
using Flow.Launcher.ViewModel; using Flow.Launcher.ViewModel;
using System.Windows.Media; using System.Windows.Media;
using CommunityToolkit.Mvvm.DependencyInjection;
namespace Flow.Launcher.Resources.Pages namespace Flow.Launcher.Resources.Pages
{ {
@ -15,11 +15,10 @@ namespace Flow.Launcher.Resources.Pages
protected override void OnNavigatedTo(NavigationEventArgs e) protected override void OnNavigatedTo(NavigationEventArgs e)
{ {
if (e.ExtraData is Settings settings) Settings = Ioc.Default.GetRequiredService<Settings>();
Settings = settings; // Sometimes the navigation is not triggered by button click,
else // so we need to reset the page number
throw new ArgumentException("Unexpected Parameter setting."); Ioc.Default.GetRequiredService<WelcomeViewModel>().PageNum = 2;
InitializeComponent(); InitializeComponent();
} }

View file

@ -1,6 +1,7 @@
using System; using System.Windows.Navigation;
using System.Windows.Navigation; using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.ViewModel;
namespace Flow.Launcher.Resources.Pages namespace Flow.Launcher.Resources.Pages
{ {
@ -8,10 +9,10 @@ namespace Flow.Launcher.Resources.Pages
{ {
protected override void OnNavigatedTo(NavigationEventArgs e) protected override void OnNavigatedTo(NavigationEventArgs e)
{ {
if (e.ExtraData is Settings settings) Settings = Ioc.Default.GetRequiredService<Settings>();
Settings = settings; // Sometimes the navigation is not triggered by button click,
else if(Settings is null) // so we need to reset the page number
throw new ArgumentException("Unexpected Navigation Parameter for Settings"); Ioc.Default.GetRequiredService<WelcomeViewModel>().PageNum = 3;
InitializeComponent(); InitializeComponent();
} }

View file

@ -1,5 +1,6 @@
using Flow.Launcher.Infrastructure.UserSettings; using CommunityToolkit.Mvvm.DependencyInjection;
using System; using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.ViewModel;
using System.Windows.Navigation; using System.Windows.Navigation;
namespace Flow.Launcher.Resources.Pages namespace Flow.Launcher.Resources.Pages
@ -8,10 +9,10 @@ namespace Flow.Launcher.Resources.Pages
{ {
protected override void OnNavigatedTo(NavigationEventArgs e) protected override void OnNavigatedTo(NavigationEventArgs e)
{ {
if (e.ExtraData is Settings settings) Settings = Ioc.Default.GetRequiredService<Settings>();
Settings = settings; // Sometimes the navigation is not triggered by button click,
else // so we need to reset the page number
throw new ArgumentException("Unexpected Navigation Parameter for Settings"); Ioc.Default.GetRequiredService<WelcomeViewModel>().PageNum = 4;
InitializeComponent(); InitializeComponent();
} }

View file

@ -1,9 +1,10 @@
using System; using System.Windows;
using System.Windows;
using System.Windows.Navigation; using System.Windows.Navigation;
using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Infrastructure.UserSettings;
using Microsoft.Win32; using Microsoft.Win32;
using Flow.Launcher.Infrastructure; using Flow.Launcher.Infrastructure;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.ViewModel;
namespace Flow.Launcher.Resources.Pages namespace Flow.Launcher.Resources.Pages
{ {
@ -15,10 +16,10 @@ namespace Flow.Launcher.Resources.Pages
protected override void OnNavigatedTo(NavigationEventArgs e) protected override void OnNavigatedTo(NavigationEventArgs e)
{ {
if (e.ExtraData is Settings settings) Settings = Ioc.Default.GetRequiredService<Settings>();
Settings = settings; // Sometimes the navigation is not triggered by button click,
else // so we need to reset the page number
throw new ArgumentException("Unexpected Navigation Parameter for Settings"); Ioc.Default.GetRequiredService<WelcomeViewModel>().PageNum = 5;
InitializeComponent(); InitializeComponent();
} }

View file

@ -80,7 +80,7 @@ public partial class SettingsPaneAboutViewModel : BaseModel
[RelayCommand] [RelayCommand]
private void OpenWelcomeWindow() private void OpenWelcomeWindow()
{ {
var window = new WelcomeWindow(_settings); var window = new WelcomeWindow();
window.ShowDialog(); window.ShowDialog();
} }

View file

@ -1,6 +1,8 @@
using System; using System.Windows.Navigation;
using System.Windows.Navigation; using Flow.Launcher.Core;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
using Flow.Launcher.Infrastructure.UserSettings;
using CommunityToolkit.Mvvm.DependencyInjection;
namespace Flow.Launcher.SettingPages.Views; namespace Flow.Launcher.SettingPages.Views;
@ -12,8 +14,8 @@ public partial class SettingsPaneAbout
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings, Updater: { } updater }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException("Settings are required for SettingsPaneAbout."); var updater = Ioc.Default.GetRequiredService<Updater>();
_viewModel = new SettingsPaneAboutViewModel(settings, updater); _viewModel = new SettingsPaneAboutViewModel(settings, updater);
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -1,5 +1,7 @@
using System; using System.Windows.Navigation;
using System.Windows.Navigation; using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.Core;
using Flow.Launcher.Core.Configuration;
using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
@ -13,8 +15,9 @@ public partial class SettingsPaneGeneral
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings, Updater: {} updater, Portable: {} portable }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException("Settings, Updater and Portable are required for SettingsPaneGeneral."); var updater = Ioc.Default.GetRequiredService<Updater>();
var portable = Ioc.Default.GetRequiredService<Portable>();
_viewModel = new SettingsPaneGeneralViewModel(settings, updater, portable); _viewModel = new SettingsPaneGeneralViewModel(settings, updater, portable);
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -34,8 +34,7 @@
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
ChangeHotkey="{Binding SetTogglingHotkeyCommand}" ChangeHotkey="{Binding SetTogglingHotkeyCommand}"
DefaultHotkey="Alt+Space" DefaultHotkey="Alt+Space"
Hotkey="{Binding Settings.Hotkey}" Type="Hotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="True" ValidateKeyGesture="True"
WindowTitle="{DynamicResource flowlauncherHotkey}" /> WindowTitle="{DynamicResource flowlauncherHotkey}" />
</cc:Card> </cc:Card>
@ -46,8 +45,7 @@
Sub="{DynamicResource previewHotkeyToolTip}"> Sub="{DynamicResource previewHotkeyToolTip}">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="F1" DefaultHotkey="F1"
Hotkey="{Binding Settings.PreviewHotkey}" Type="PreviewHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" ValidateKeyGesture="False"
WindowTitle="{DynamicResource previewHotkey}" /> WindowTitle="{DynamicResource previewHotkey}" />
</cc:Card> </cc:Card>
@ -105,8 +103,7 @@
Type="Inside"> Type="Inside">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Ctrl+I" DefaultHotkey="Ctrl+I"
Hotkey="{Binding Settings.OpenContextMenuHotkey}" Type="OpenContextMenuHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
<cc:Card <cc:Card
@ -127,8 +124,7 @@
Type="Inside"> Type="Inside">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Ctrl+I" DefaultHotkey="Ctrl+I"
Hotkey="{Binding Settings.SettingWindowHotkey}" Type="SettingWindowHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
<cc:Card <cc:Card
@ -149,8 +145,7 @@
Type="Inside"> Type="Inside">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Alt+Up" DefaultHotkey="Alt+Up"
Hotkey="{Binding Settings.CycleHistoryUpHotkey}" Type="CycleHistoryUpHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
<cc:Card <cc:Card
@ -159,8 +154,7 @@
Type="Inside"> Type="Inside">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Alt+Down" DefaultHotkey="Alt+Down"
Hotkey="{Binding Settings.CycleHistoryDownHotkey}" Type="CycleHistoryDownHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
<cc:Card <cc:Card
@ -176,8 +170,7 @@
Type="Inside"> Type="Inside">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="" DefaultHotkey=""
Hotkey="{Binding Settings.SelectPrevPageHotkey}" Type="SelectPrevPageHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
<cc:Card <cc:Card
@ -186,8 +179,7 @@
Type="Inside"> Type="Inside">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="" DefaultHotkey=""
Hotkey="{Binding Settings.SelectNextPageHotkey}" Type="SelectNextPageHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
@ -221,8 +213,7 @@
<cc:ExCard.SideContent> <cc:ExCard.SideContent>
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Ctrl+Tab" DefaultHotkey="Ctrl+Tab"
Hotkey="{Binding Settings.AutoCompleteHotkey}" Type="AutoCompleteHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:ExCard.SideContent> </cc:ExCard.SideContent>
<cc:Card <cc:Card
@ -231,8 +222,7 @@
Type="InsideFit"> Type="InsideFit">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="" DefaultHotkey=""
Hotkey="{Binding Settings.AutoCompleteHotkey2}" Type="AutoCompleteHotkey2"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
</cc:ExCard> </cc:ExCard>
@ -244,8 +234,7 @@
<cc:ExCard.SideContent> <cc:ExCard.SideContent>
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Shift+Tab" DefaultHotkey="Shift+Tab"
Hotkey="{Binding Settings.SelectPrevItemHotkey}" Type="SelectPrevItemHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:ExCard.SideContent> </cc:ExCard.SideContent>
<cc:Card <cc:Card
@ -254,8 +243,7 @@
Type="InsideFit"> Type="InsideFit">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="" DefaultHotkey=""
Hotkey="{Binding Settings.SelectPrevItemHotkey2}" Type="SelectPrevItemHotkey2"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
</cc:ExCard> </cc:ExCard>
@ -267,8 +255,7 @@
<cc:ExCard.SideContent> <cc:ExCard.SideContent>
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="Tab" DefaultHotkey="Tab"
Hotkey="{Binding Settings.SelectNextItemHotkey}" Type="SelectNextItemHotkey"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:ExCard.SideContent> </cc:ExCard.SideContent>
<cc:Card <cc:Card
@ -277,8 +264,7 @@
Type="InsideFit"> Type="InsideFit">
<flowlauncher:HotkeyControl <flowlauncher:HotkeyControl
DefaultHotkey="" DefaultHotkey=""
Hotkey="{Binding Settings.SelectNextItemHotkey2}" Type="SelectNextItemHotkey2"
HotkeySettings="{Binding Settings}"
ValidateKeyGesture="False" /> ValidateKeyGesture="False" />
</cc:Card> </cc:Card>
</cc:ExCard> </cc:ExCard>

View file

@ -1,6 +1,7 @@
using System; using System.Windows.Navigation;
using System.Windows.Navigation; using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher.SettingPages.Views; namespace Flow.Launcher.SettingPages.Views;
@ -12,8 +13,7 @@ public partial class SettingsPaneHotkey
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException("Settings are required for SettingsPaneHotkey.");
_viewModel = new SettingsPaneHotkeyViewModel(settings); _viewModel = new SettingsPaneHotkeyViewModel(settings);
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -1,10 +1,11 @@
using System; using System.ComponentModel;
using System.ComponentModel;
using System.Windows.Data; using System.Windows.Data;
using System.Windows.Input; using System.Windows.Input;
using System.Windows.Navigation; using System.Windows.Navigation;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
using Flow.Launcher.ViewModel; using Flow.Launcher.ViewModel;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher.SettingPages.Views; namespace Flow.Launcher.SettingPages.Views;
@ -16,8 +17,7 @@ public partial class SettingsPanePluginStore
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException($"Settings are required for {nameof(SettingsPanePluginStore)}.");
_viewModel = new SettingsPanePluginStoreViewModel(); _viewModel = new SettingsPanePluginStoreViewModel();
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -1,7 +1,8 @@
using System; using System.Windows.Input;
using System.Windows.Input;
using System.Windows.Navigation; using System.Windows.Navigation;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher.SettingPages.Views; namespace Flow.Launcher.SettingPages.Views;
@ -13,8 +14,7 @@ public partial class SettingsPanePlugins
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException("Settings are required for SettingsPaneHotkey.");
_viewModel = new SettingsPanePluginsViewModel(settings); _viewModel = new SettingsPanePluginsViewModel(settings);
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -1,6 +1,8 @@
using System; using System.Windows.Navigation;
using System.Windows.Navigation; using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.Core;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher.SettingPages.Views; namespace Flow.Launcher.SettingPages.Views;
@ -12,8 +14,8 @@ public partial class SettingsPaneProxy
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings, Updater: { } updater }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException($"Settings are required for {nameof(SettingsPaneProxy)}."); var updater = Ioc.Default.GetRequiredService<Updater>();
_viewModel = new SettingsPaneProxyViewModel(settings, updater); _viewModel = new SettingsPaneProxyViewModel(settings, updater);
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -1,7 +1,8 @@
using System;
using System.Windows.Navigation; using System.Windows.Navigation;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.SettingPages.ViewModels;
using Page = ModernWpf.Controls.Page; using Page = ModernWpf.Controls.Page;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher.SettingPages.Views; namespace Flow.Launcher.SettingPages.Views;
@ -13,8 +14,7 @@ public partial class SettingsPaneTheme : Page
{ {
if (!IsInitialized) if (!IsInitialized)
{ {
if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) var settings = Ioc.Default.GetRequiredService<Settings>();
throw new ArgumentException($"Settings are required for {nameof(SettingsPaneTheme)}.");
_viewModel = new SettingsPaneThemeViewModel(settings); _viewModel = new SettingsPaneThemeViewModel(settings);
DataContext = _viewModel; DataContext = _viewModel;
InitializeComponent(); InitializeComponent();

View file

@ -4,8 +4,6 @@ using System.Windows.Forms;
using System.Windows.Input; using System.Windows.Input;
using System.Windows.Interop; using System.Windows.Interop;
using CommunityToolkit.Mvvm.DependencyInjection; using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.Core;
using Flow.Launcher.Core.Configuration;
using Flow.Launcher.Helper; using Flow.Launcher.Helper;
using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.Plugin; using Flow.Launcher.Plugin;
@ -18,8 +16,6 @@ namespace Flow.Launcher;
public partial class SettingWindow public partial class SettingWindow
{ {
private readonly Updater _updater;
private readonly IPortable _portable;
private readonly IPublicAPI _api; private readonly IPublicAPI _api;
private readonly Settings _settings; private readonly Settings _settings;
private readonly SettingWindowViewModel _viewModel; private readonly SettingWindowViewModel _viewModel;
@ -30,8 +26,6 @@ public partial class SettingWindow
_settings = Ioc.Default.GetRequiredService<Settings>(); _settings = Ioc.Default.GetRequiredService<Settings>();
DataContext = viewModel; DataContext = viewModel;
_viewModel = viewModel; _viewModel = viewModel;
_updater = Ioc.Default.GetRequiredService<Updater>();
_portable = Ioc.Default.GetRequiredService<Portable>();
_api = Ioc.Default.GetRequiredService<IPublicAPI>(); _api = Ioc.Default.GetRequiredService<IPublicAPI>();
InitializePosition(); InitializePosition();
InitializeComponent(); InitializeComponent();
@ -166,10 +160,9 @@ public partial class SettingWindow
private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args)
{ {
var paneData = new PaneData(_settings, _updater, _portable);
if (args.IsSettingsSelected) if (args.IsSettingsSelected)
{ {
ContentFrame.Navigate(typeof(SettingsPaneGeneral), paneData); ContentFrame.Navigate(typeof(SettingsPaneGeneral));
} }
else else
{ {
@ -191,7 +184,7 @@ public partial class SettingWindow
nameof(About) => typeof(SettingsPaneAbout), nameof(About) => typeof(SettingsPaneAbout),
_ => typeof(SettingsPaneGeneral) _ => typeof(SettingsPaneGeneral)
}; };
ContentFrame.Navigate(pageType, paneData); ContentFrame.Navigate(pageType);
} }
} }
@ -211,6 +204,4 @@ public partial class SettingWindow
{ {
NavView.SelectedItem ??= NavView.MenuItems[0]; /* Set First Page */ NavView.SelectedItem ??= NavView.MenuItems[0]; /* Set First Page */
} }
public record PaneData(Settings Settings, Updater Updater, IPortable Portable);
} }

View file

@ -0,0 +1,68 @@
using Flow.Launcher.Plugin;
namespace Flow.Launcher.ViewModel
{
public partial class WelcomeViewModel : BaseModel
{
public const int MaxPageNum = 5;
public string PageDisplay => $"{PageNum}/5";
private int _pageNum = 1;
public int PageNum
{
get => _pageNum;
set
{
if (_pageNum != value)
{
_pageNum = value;
OnPropertyChanged();
UpdateView();
}
}
}
private bool _backEnabled = false;
public bool BackEnabled
{
get => _backEnabled;
set
{
_backEnabled = value;
OnPropertyChanged();
}
}
private bool _nextEnabled = true;
public bool NextEnabled
{
get => _nextEnabled;
set
{
_nextEnabled = value;
OnPropertyChanged();
}
}
private void UpdateView()
{
OnPropertyChanged(nameof(PageDisplay));
if (PageNum == 1)
{
BackEnabled = false;
NextEnabled = true;
}
else if (PageNum == MaxPageNum)
{
BackEnabled = true;
NextEnabled = false;
}
else
{
BackEnabled = true;
NextEnabled = true;
}
}
}
}

View file

@ -6,6 +6,7 @@
xmlns:local="clr-namespace:Flow.Launcher" xmlns:local="clr-namespace:Flow.Launcher"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="http://schemas.modernwpf.com/2019" xmlns:ui="http://schemas.modernwpf.com/2019"
xmlns:vm="clr-namespace:Flow.Launcher.ViewModel"
Name="FlowWelcomeWindow" Name="FlowWelcomeWindow"
Title="{DynamicResource Welcome_Page1_Title}" Title="{DynamicResource Welcome_Page1_Title}"
Width="550" Width="550"
@ -14,8 +15,10 @@
MinHeight="650" MinHeight="650"
MaxWidth="550" MaxWidth="550"
MaxHeight="650" MaxHeight="650"
d:DataContext="{d:DesignInstance Type=vm:WelcomeViewModel}"
Activated="OnActivated" Activated="OnActivated"
Background="{DynamicResource Color00B}" Background="{DynamicResource Color00B}"
Closed="Window_Closed"
Foreground="{DynamicResource PopupTextColor}" Foreground="{DynamicResource PopupTextColor}"
MouseDown="window_MouseDown" MouseDown="window_MouseDown"
WindowStartupLocation="CenterScreen" WindowStartupLocation="CenterScreen"
@ -41,12 +44,12 @@
Grid.Column="0" Grid.Column="0"
Width="16" Width="16"
Height="16" Height="16"
Margin="10,4,4,4" Margin="10 4 4 4"
RenderOptions.BitmapScalingMode="HighQuality" RenderOptions.BitmapScalingMode="HighQuality"
Source="/Images/app.png" /> Source="/Images/app.png" />
<TextBlock <TextBlock
Grid.Column="1" Grid.Column="1"
Margin="4,0,0,0" Margin="4 0 0 0"
VerticalAlignment="Center" VerticalAlignment="Center"
FontSize="12" FontSize="12"
Foreground="{DynamicResource Color05B}" Foreground="{DynamicResource Color05B}"
@ -95,7 +98,7 @@
Grid.Row="1" Grid.Row="1"
Background="{DynamicResource Color00B}" Background="{DynamicResource Color00B}"
BorderBrush="{DynamicResource PopupButtonAreaBorderColor}" BorderBrush="{DynamicResource PopupButtonAreaBorderColor}"
BorderThickness="0,1,0,0"> BorderThickness="0 1 0 0">
<Grid> <Grid>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="130" /> <ColumnDefinition Width="130" />
@ -109,11 +112,11 @@
VerticalAlignment="Center"> VerticalAlignment="Center">
<TextBlock <TextBlock
Name="PageNavigation" Name="PageNavigation"
Margin="0,2,0,0" Margin="0 2 0 0"
HorizontalAlignment="Center" HorizontalAlignment="Center"
VerticalAlignment="Center" VerticalAlignment="Center"
FontSize="14" FontSize="14"
Text="{Binding PageDisplay, Mode=OneWay, UpdateSourceTrigger=PropertyChanged, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}" Text="{Binding PageDisplay, Mode=OneWay}"
TextAlignment="Center" /> TextAlignment="Center" />
</StackPanel> </StackPanel>
@ -122,25 +125,26 @@
Grid.Column="0" Grid.Column="0"
Width="100" Width="100"
Height="40" Height="40"
Margin="20,5,0,5" Margin="20 5 0 5"
Click="BtnCancel_OnClick" Click="BtnCancel_OnClick"
Content="{DynamicResource Skip}" Content="{DynamicResource Skip}"
DockPanel.Dock="Right" DockPanel.Dock="Right"
FontSize="14" /> FontSize="14" />
<DockPanel <DockPanel
Grid.Column="2" Grid.Column="2"
Margin="0,0,20,0" Margin="0 0 20 0"
VerticalAlignment="Stretch"> VerticalAlignment="Stretch">
<Button <Button
x:Name="NextButton" x:Name="NextButton"
Width="40" Width="40"
Height="40" Height="40"
Margin="8,5,0,5" Margin="8 5 0 5"
Click="ForwardButton_Click" Click="ForwardButton_Click"
Content="&#xe76c;" Content="&#xe76c;"
DockPanel.Dock="Right" DockPanel.Dock="Right"
FontFamily="/Resources/#Segoe Fluent Icons" FontFamily="/Resources/#Segoe Fluent Icons"
FontSize="18" /> FontSize="18"
IsEnabled="{Binding NextEnabled, Mode=OneWay}" />
<Button <Button
x:Name="BackButton" x:Name="BackButton"
Width="40" Width="40"
@ -149,7 +153,8 @@
Content="&#xe76b;" Content="&#xe76b;"
DockPanel.Dock="Right" DockPanel.Dock="Right"
FontFamily="/Resources/#Segoe Fluent Icons" FontFamily="/Resources/#Segoe Fluent Icons"
FontSize="18" /> FontSize="18"
IsEnabled="{Binding BackEnabled, Mode=OneWay}" />
<StackPanel /> <StackPanel />
</DockPanel> </DockPanel>

View file

@ -2,75 +2,57 @@
using System.Windows; using System.Windows;
using System.Windows.Input; using System.Windows.Input;
using System.Windows.Controls; using System.Windows.Controls;
using Flow.Launcher.Infrastructure.UserSettings;
using Flow.Launcher.Resources.Pages; using Flow.Launcher.Resources.Pages;
using ModernWpf.Media.Animation; using ModernWpf.Media.Animation;
using CommunityToolkit.Mvvm.DependencyInjection;
using Flow.Launcher.ViewModel;
using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher namespace Flow.Launcher
{ {
public partial class WelcomeWindow : Window public partial class WelcomeWindow : Window
{ {
private readonly Settings settings; private readonly WelcomeViewModel _viewModel;
public WelcomeWindow(Settings settings) private readonly NavigationTransitionInfo _forwardTransitionInfo = new SlideNavigationTransitionInfo()
{
InitializeComponent();
BackButton.IsEnabled = false;
this.settings = settings;
}
private NavigationTransitionInfo _transitionInfo = new SlideNavigationTransitionInfo()
{ {
Effect = SlideNavigationTransitionEffect.FromRight Effect = SlideNavigationTransitionEffect.FromRight
}; };
private NavigationTransitionInfo _backTransitionInfo = new SlideNavigationTransitionInfo() private readonly NavigationTransitionInfo _backTransitionInfo = new SlideNavigationTransitionInfo()
{ {
Effect = SlideNavigationTransitionEffect.FromLeft Effect = SlideNavigationTransitionEffect.FromLeft
}; };
private int pageNum = 1; public WelcomeWindow()
private int MaxPage = 5;
public string PageDisplay => $"{pageNum}/5";
private void UpdateView()
{ {
PageNavigation.Text = PageDisplay; _viewModel = Ioc.Default.GetRequiredService<WelcomeViewModel>();
if (pageNum == 1) DataContext = _viewModel;
{ InitializeComponent();
BackButton.IsEnabled = false;
NextButton.IsEnabled = true;
}
else if (pageNum == MaxPage)
{
BackButton.IsEnabled = true;
NextButton.IsEnabled = false;
}
else
{
BackButton.IsEnabled = true;
NextButton.IsEnabled = true;
}
} }
private void ForwardButton_Click(object sender, RoutedEventArgs e) private void ForwardButton_Click(object sender, RoutedEventArgs e)
{ {
pageNum++; if (_viewModel.PageNum < WelcomeViewModel.MaxPageNum)
UpdateView(); {
_viewModel.PageNum++;
ContentFrame.Navigate(PageTypeSelector(pageNum), settings, _transitionInfo); ContentFrame.Navigate(PageTypeSelector(_viewModel.PageNum), null, _forwardTransitionInfo);
}
else
{
_viewModel.NextEnabled = false;
}
} }
private void BackwardButton_Click(object sender, RoutedEventArgs e) private void BackwardButton_Click(object sender, RoutedEventArgs e)
{ {
if (pageNum > 1) if (_viewModel.PageNum > 1)
{ {
pageNum--; _viewModel.PageNum--;
UpdateView(); ContentFrame.Navigate(PageTypeSelector(_viewModel.PageNum), null, _backTransitionInfo);
ContentFrame.Navigate(PageTypeSelector(pageNum), settings, _backTransitionInfo);
} }
else else
{ {
BackButton.IsEnabled = false; _viewModel.BackEnabled = false;
} }
} }
@ -109,7 +91,13 @@ namespace Flow.Launcher
private void ContentFrame_Loaded(object sender, RoutedEventArgs e) private void ContentFrame_Loaded(object sender, RoutedEventArgs e)
{ {
ContentFrame.Navigate(PageTypeSelector(1), settings); /* Set First Page */ ContentFrame.Navigate(PageTypeSelector(1)); /* Set First Page */
}
private void Window_Closed(object sender, EventArgs e)
{
// Save settings when window is closed
Ioc.Default.GetRequiredService<Settings>().Save();
} }
} }
} }

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">סימניות דפדפן</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">חפש בסימניות הדפדפן שלך</system:String>
<!-- Settings --> <!-- Settings -->
<system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">Bookmark Data</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_bookmarkDataSetting">נתוני סימניות</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">פתח סימניות ב:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">New window</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newWindow">חלון חדש</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">New tab</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_newTab">לשונית חדשה</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">הגדר דפדפן מנתיב:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">Choose</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_settings_choose">בחר</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">Copy url</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_copyurl_title">העתק כתובת</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">העתק את כתובת הסימנייה ללוח</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">Load Browser From:</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_loadBrowserFrom">טען דפדפן מ:</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">Browser Name</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserName">שם הדפדפן</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">Data Directory Path</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserBookmarkDataDirectory">נתיב ספריית הנתונים</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">הוסף</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_addBrowserBookmark">הוסף</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">ערוך</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_editBrowserBookmark">ערוך</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">מחק</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_removeBrowserBookmark">מחק</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">Browse</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browseBrowserBookmark">עיין</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_others">Others</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_others">אחרים</system:String>
<system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">Browser Engine</system:String> <system:String x:Key="flowlauncher_plugin_browserbookmark_browserEngine">מנוע דפדפן</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">אם אינך משתמש ב-Chrome, Firefox או Edge, או שאתה משתמש בגרסה הניידת שלהם, עליך להוסיף את ספריית נתוני הסימניות ולבחור את מנוע הדפדפן המתאים כדי שהתוסף יעבוד.</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">לדוגמה: המנוע של Brave הוא Chromium, ומיקום ברירת המחדל של נתוני הסימניות שלו הוא: %LOCALAPPDATA%\BraveSoftware\Brave-Browser\UserData. עבור מנוע Firefox, ספריית הסימניות היא תיקיית המשתמש שמכילה את הקובץ places.sqlite.</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">מחשבון</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">מאפשר לבצע חישובים מתמטיים. (נסה 5*3-2 ב-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">לא מספר (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">הביטוי שגוי או לא שלם (האם שכחת סוגריים?)</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">העתק מספר זה ללוח</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">מפריד עשרוני</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">מפריד עשרוני שישמש בתוצאה.</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">השתמש בהגדרת מערכת</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">פסיק (,)</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">נקודה (.)</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">מספר מקסימלי של מקומות עשרוניים</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -49,7 +49,7 @@
<system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Recherche dans l'index :</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Recherche dans l'index :</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Accès rapide :</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Accès rapide :</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_current">Mot-clé de l'action en cours</system:String> <system:String x:Key="plugin_explorer_actionkeyword_current">Mot-clé de l'action en cours</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_done">Terminé</system:String> <system:String x:Key="plugin_explorer_actionkeyword_done">Terminer</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled">Activé</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled">Activé</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">Lorsqu'il est désactivé, Flow n'exécute pas cette option de recherche et revient en outre à &quot;*&quot; pour libérer le mot-clé d'action.</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled_tooltip">Lorsqu'il est désactivé, Flow n'exécute pas cette option de recherche et revient en outre à &quot;*&quot; pour libérer le mot-clé d'action.</system:String>
<system:String x:Key="plugin_explorer_engine_everything">Everything</system:String> <system:String x:Key="plugin_explorer_engine_everything">Everything</system:String>

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">אנא בצע בחירה תחילה</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">אנא בחר קישור לתיקייה</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">האם אתה בטוח שברצונך למחוק את {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">האם אתה בטוח שברצונך למחוק קובץ זה לצמיתות?</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">האם אתה בטוח שברצונך למחוק קובץ/תיקייה זו לצמיתות?</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess">Deletion successful</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess">המחיקה הושלמה בהצלחה</system:String>
<system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">Successfully deleted {0}</system:String> <system:String x:Key="plugin_explorer_deletefilefoldersuccess_detail">נמחק בהצלחה: {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">הגדרת מילת פעולה גלובלית עלולה להציג יותר מדי תוצאות בעת החיפוש. אנא בחר מילת פעולה ספציפית</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">לא ניתן להגדיר את הגישה המהירה למילת פעולה גלובלית כשהיא מופעלת. אנא בחר מילת פעולה ספציפית</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">נראה ששירות החיפוש של Windows Index אינו פועל</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">כדי לתקן זאת, הפעל את שירות החיפוש של Windows. לחץ כאן כדי להסיר אזהרה זו</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">הודעת האזהרה הושבתה. כחלופה לחיפוש קבצים ותיקיות, האם תרצה להתקין את התוסף Everything?{0}{0}בחר 'כן' כדי להתקין את התוסף Everything, או 'לא' כדי לחזור</system:String>
<system:String x:Key="plugin_explorer_alternative_title">Explorer Alternative</system:String> <system:String x:Key="plugin_explorer_alternative_title">חלופה לסייר</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">אירעה שגיאה במהלך החיפוש: {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">לא ניתן היה לפתוח את התיקייה</system:String>
<system:String x:Key="plugin_explorer_openfile_error">Could not open file</system:String> <system:String x:Key="plugin_explorer_openfile_error">לא ניתן היה לפתוח את הקובץ</system:String>
<!-- Controls --> <!-- Controls -->
<system:String x:Key="plugin_explorer_delete">מחק</system:String> <system:String x:Key="plugin_explorer_delete">מחק</system:String>
<system:String x:Key="plugin_explorer_edit">ערוך</system:String> <system:String x:Key="plugin_explorer_edit">ערוך</system:String>
<system:String x:Key="plugin_explorer_add">הוסף</system:String> <system:String x:Key="plugin_explorer_add">הוסף</system:String>
<system:String x:Key="plugin_explorer_generalsetting_header">General Setting</system:String> <system:String x:Key="plugin_explorer_generalsetting_header">הגדרות כלליות</system:String>
<system:String x:Key="plugin_explorer_manageactionkeywords_header">Customise Action Keywords</system:String> <system:String x:Key="plugin_explorer_manageactionkeywords_header">התאמת מילות פעולה</system:String>
<system:String x:Key="plugin_explorer_quickaccesslinks_header">Quick Access Links</system:String> <system:String x:Key="plugin_explorer_quickaccesslinks_header">קישורי גישה מהירה</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</system:String>
<system:String x:Key="plugin_explorer_previewpanel_setting_header">Preview Panel</system:String> <system:String x:Key="plugin_explorer_previewpanel_setting_header">חלונית תצוגה מקדימה</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">גודל</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">תאריך יצירה</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_creation_checkbox">תאריך יצירה</system:String>
<system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">תאריך שינוי</system:String> <system:String x:Key="plugin_explorer_previewpanel_display_file_modification_checkbox">תאריך שינוי</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">הצגת מידע על קובץ</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">תבנית תאריך ושעה</system:String>
<system:String x:Key="plugin_explorer_everything_sort_option">Sort Option:</system:String> <system:String x:Key="plugin_explorer_everything_sort_option">אפשרות מיון:</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:</system:String>
<system:String x:Key="plugin_explorer_launch_hidden">Launch Hidden</system:String> <system:String x:Key="plugin_explorer_launch_hidden">הפעל במוסתר</system:String>
<system:String x:Key="plugin_explorer_editor_path">Editor Path</system:String> <system:String x:Key="plugin_explorer_editor_path">נתיב העורך</system:String>
<system:String x:Key="plugin_explorer_shell_path">Shell Path</system:String> <system:String x:Key="plugin_explorer_shell_path">נתיב Shell</system:String>
<system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Index Search Excluded Paths</system:String> <system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">נתיבים שלא נכללים בחיפוש אינדקס</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">השתמש במיקום תוצאת החיפוש כספריית העבודה של הקובץ להפעלה</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">לחץ Enter כדי לפתוח את התיקייה במנהל הקבצים המוגדר כברירת מחדל</system:String>
<system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">Use Index Search For Path Search</system:String> <system:String x:Key="plugin_explorer_usewindowsindexfordirectorysearch">השתמש בחיפוש אינדקס עבור חיפוש נתיבים</system:String>
<system:String x:Key="plugin_explorer_manageindexoptions">Indexing Options</system:String> <system:String x:Key="plugin_explorer_manageindexoptions">אפשרויות אינדקס</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_search">Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_search">חיפוש:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">Path Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">חיפוש נתיב:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">File Content Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">חיפוש תוכן קובץ:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Index Search:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">חיפוש אינדקס:</system:String>
<system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">Quick Access:</system:String> <system:String x:Key="plugin_explorer_actionkeywordview_quickaccess">גישה מהירה:</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_current">Current Action Keyword</system:String> <system:String x:Key="plugin_explorer_actionkeyword_current">מילת פעולה נוכחית</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_done">בוצע</system:String> <system:String x:Key="plugin_explorer_actionkeyword_done">בוצע</system:String>
<system:String x:Key="plugin_explorer_actionkeyword_enabled">Enabled</system:String> <system:String x:Key="plugin_explorer_actionkeyword_enabled">מופעל</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">כאשר האפשרות מושבתת, Flow לא יבצע חיפוש זה ויחזור להשתמש ב-* כדי לפנות את מילת הפעולה</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">איתור ישיר</system:String>
<system:String x:Key="plugin_explorer_file_editor_path">File Editor Path</system:String> <system:String x:Key="plugin_explorer_file_editor_path">נתיב עורך קבצים</system:String>
<system:String x:Key="plugin_explorer_folder_editor_path">Folder Editor Path</system:String> <system:String x:Key="plugin_explorer_folder_editor_path">נתיב עורך תיקיות</system:String>
<system:String x:Key="plugin_explorer_enabled">Enabled</system:String> <system:String x:Key="plugin_explorer_enabled">מופעל</system:String>
<system:String x:Key="plugin_explorer_disabled">Disabled</system:String> <system:String x:Key="plugin_explorer_disabled">מושבת</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">מנוע חיפוש תוכן</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">מנוע חיפוש רקורסיבי בתיקיות</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">מנוע חיפוש אינדקס</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">פתח אפשרויות אינדקס של 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">סוגי קבצים שאינם נכללים (מופרדים בפסיק)</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">לדוגמה: 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">מספר תוצאות מרבי</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">מספר התוצאות המרבי המבוקש ממנוע החיפוש הפעיל</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">סייר</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">מצא ונהל קבצים ותיקיות באמצעות חיפוש Windows או 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 לפתיחת התיקייה</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 לפתיחת התיקייה המכילה</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">העתק נתיב</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">העתק את הנתיב של הפריט הנוכחי ללוח</system:String>
<system:String x:Key="plugin_explorer_copyfilefolder">Copy</system:String> <system:String x:Key="plugin_explorer_copyfilefolder">העתק</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">העתק את הקובץ הנוכחי ללוח</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">העתק את התיקייה הנוכחית ללוח</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder">מחק</system:String> <system:String x:Key="plugin_explorer_deletefilefolder">מחק</system:String>
<system:String x:Key="plugin_explorer_deletefile_subtitle">Permanently delete current file</system:String> <system:String x:Key="plugin_explorer_deletefile_subtitle">מחק לצמיתות את הקובץ הנוכחי</system:String>
<system:String x:Key="plugin_explorer_deletefolder_subtitle">Permanently delete current folder</system:String> <system:String x:Key="plugin_explorer_deletefolder_subtitle">מחק לצמיתות את התיקייה הנוכחית</system:String>
<system:String x:Key="plugin_explorer_path">Path:</system:String> <system:String x:Key="plugin_explorer_path">נתיב:</system:String>
<system:String x:Key="plugin_explorer_deletefilefolder_subtitle">Delete the selected</system:String> <system:String x:Key="plugin_explorer_deletefilefolder_subtitle">מחק את הפריט שנבחר</system:String>
<system:String x:Key="plugin_explorer_runasdifferentuser">Run as different user</system:String> <system:String x:Key="plugin_explorer_runasdifferentuser">הפעל כמשתמש אחר</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">הפעל את הפריט שנבחר באמצעות חשבון משתמש אחר</system:String>
<system:String x:Key="plugin_explorer_opencontainingfolder">Open containing folder</system:String> <system:String x:Key="plugin_explorer_opencontainingfolder">פתח את התיקייה המכילה</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">פתח את המיקום שמכיל את הפריט הנוכחי</system:String>
<system:String x:Key="plugin_explorer_openwitheditor">Open With Editor:</system:String> <system:String x:Key="plugin_explorer_openwitheditor">פתח באמצעות עורך:</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">נכשל בפתיחת הקובץ ב-{0} עם העורך {1} ב-{2}</system:String>
<system:String x:Key="plugin_explorer_openwithshell">Open With Shell:</system:String> <system:String x:Key="plugin_explorer_openwithshell">פתח באמצעות 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">נכשל בפתיחת התיקייה {0} עם Shell {1} ב-{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">אל תכלול תיקייה זו ותיקיות משנה בחיפוש אינדקס</system:String>
<system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">Excluded from Index Search</system:String> <system:String x:Key="plugin_explorer_excludedfromindexsearch_msg">הוסר מחיפוש אינדקס</system:String>
<system:String x:Key="plugin_explorer_openindexingoptions">Open Windows Indexing Options</system:String> <system:String x:Key="plugin_explorer_openindexingoptions">פתח אפשרויות אינדקס של 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">נהל קבצים ותיקיות באינדקס</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">נכשל בפתיחת אפשרויות אינדקס של 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">הוסף לגישה מהירה</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">הוסף את הפריט הנוכחי לגישה מהירה</system:String>
<system:String x:Key="plugin_explorer_addfilefoldersuccess">Successfully Added</system:String> <system:String x:Key="plugin_explorer_addfilefoldersuccess">נוסף בהצלחה</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">נוסף בהצלחה לגישה מהירה</system:String>
<system:String x:Key="plugin_explorer_removefilefoldersuccess">Successfully Removed</system:String> <system:String x:Key="plugin_explorer_removefilefoldersuccess">הוסר בהצלחה</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">הוסר בהצלחה מגישה מהירה</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">הוסף לגישה מהירה כדי שניתן יהיה לפתוח עם מילת הפעולה של חיפוש הסייר</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">הסר מגישה מהירה</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">הסר מגישה מהירה</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">הסר את הפריט הנוכחי מגישה מהירה</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</system:String>
<system:String x:Key="plugin_explorer_openwith">Open With</system:String> <system:String x:Key="plugin_explorer_openwith">פתח באמצעות</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">בחר תוכנית לפתיחה</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} פנוי מתוך {1}</system:String>
<system:String x:Key="plugin_explorer_openresultfolder">Open in Default File Manager</system:String> <system:String x:Key="plugin_explorer_openresultfolder">פתח במנהל הקבצים ברירת המחדל</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. השתמש ב-'&gt;' לחיפוש בתיקייה זו, '*' לחיפוש סיומות קבצים או '&gt;*' לשילוב שני החיפושים.
</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</system:String>
<system:String x:Key="flowlauncher_plugin_everything_is_not_running">אזהרה: שירות Everything אינו פועל</system:String> <system:String x:Key="flowlauncher_plugin_everything_is_not_running">אזהרה: שירות Everything אינו פועל</system:String>
<system:String x:Key="flowlauncher_plugin_everything_query_error">שגיאה במהלך שאילתה לEverything</system:String> <system:String x:Key="flowlauncher_plugin_everything_query_error">שגיאה במהלך שאילתה ל-Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by">מיין לפי</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by">מיין לפי</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">שם</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_path">נתיב</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_path">נתיב</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">גודל</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">סיומת</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">שם סוג</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">תאריך יצירה</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_created">תאריך יצירה</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">תאריך שינוי</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_modified">תאריך שינוי</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">מאפיינים</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_attributes">מאפיינים</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">מיון לפי שם קובץ ברשימה</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">מספר הפעלות</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">תאריך שינוי אחרון</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_recently_changed">תאריך שינוי אחרון</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">תאריך גישה</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_accessed">תאריך גישה</system:String>
<system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">תאריך הרצה</system:String> <system:String x:Key="flowlauncher_plugin_everything_sort_by_date_run">תאריך הרצה</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">אזהרה: זוהי לא אפשרות מיון מהיר, החיפושים עשויים להיות איטיים</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">חפש נתיב מלא</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">אפשר ספירת הרצות קובץ/תיקייה</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">לחץ כדי להפעיל או להתקין את 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">התקנת Everything</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">מתקין את שירות Everything. אנא המתן...</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_subtitle">מתקין את שירות Everything. אנא המתן...</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">שירות Everything הותקן בהצלחה</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationsuccess_subtitle">שירות Everything הותקן בהצלחה</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">התקנה אוטומטית של שירות Everything נכשלה. אנא הורד אותו ידנית מ- https://www.voidtools.com</system:String> <system:String x:Key="flowlauncher_plugin_everything_installationfailed_subtitle">התקנה אוטומטית של שירות Everything נכשלה. אנא הורד אותו ידנית מ- 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">לחץ כאן כדי להפעיל אותו</system:String>
<system:String x:Key="flowlauncher_plugin_everything_installing_select">לא מצליח למצוא התקנה של Everything, האם תרצה לבחור מיקום באופן ידני?{0}{0}לחץ על לא וEverything יותקן עבורך אוטומטית</system:String> <system:String x:Key="flowlauncher_plugin_everything_installing_select">לא נמצאה התקנה של Everything, האם תרצה לבחור מיקום באופן ידני?{0}{0}לחץ על 'לא' ו-Everything יותקן עבורך אוטומטית</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">האם ברצונך לאפשר חיפוש תוכן עבור 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">החיפוש עשוי להיות איטי מאוד ללא אינדקס (שנתמך רק ב-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">תפריט הקשר מקורי</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">הצג תפריט הקשר מקורי (ניסיוני)</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">כאן תוכל להגדיר פריטים שברצונך לכלול בתפריט ההקשר, הם יכולים להיות חלקיים (למשל 'pen wit') או שלמים ('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">כאן תוכל להגדיר פריטים שברצונך להחריג מתפריט ההקשר, הם יכולים להיות חלקיים (למשל 'pen wit') או שלמים ('Open with').</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">הפעל את מילת הפעולה של התוסף {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">מחוון תוספים</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">מספק הצעות למילות פעולה של תוספים</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">جاري تثبيت الإضافة</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">جاري تثبيت الإضافة</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">تنزيل وتثبيت {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">تنزيل وتثبيت {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">إلغاء تثبيت الإضافة</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">إلغاء تثبيت الإضافة</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">تم تثبيت الإضافة {0} بنجاح. جاري إعادة تشغيل Flow، يرجى الانتظار...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">تم تثبيت الإضافة {0} بنجاح. جاري إعادة تشغيل Flow، يرجى الانتظار...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">تعذر العثور على ملف metadata plugin.json من ملف zip المستخرج.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">تعذر العثور على ملف metadata plugin.json من ملف zip المستخرج.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">خطأ: توجد إضافة بنفس الإصدار أو بإصدار أحدث من {0}.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">خطأ: توجد إضافة بنفس الإصدار أو بإصدار أحدث من {0}.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">تم تحديث الإضافة {0} بنجاح. جاري إعادة تشغيل Flow، يرجى الانتظار...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">تم تحديث الإضافة {0} بنجاح. جاري إعادة تشغيل Flow، يرجى الانتظار...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">التثبيت من مصدر غير معروف</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">التثبيت من مصدر غير معروف</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">أنت تقوم بتثبيت هذه الإضافة من مصدر غير معروف وقد تحتوي على مخاطر محتملة!{0}{0}يرجى التأكد من أنك تفهم مصدر هذه الإضافة وأنها آمنة.{0}{0}هل ترغب في المتابعة؟{0}{0}(يمكنك إيقاف هذا التحذير من خلال الإعدادات)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">أنت تقوم بتثبيت هذه الإضافة من مصدر غير معروف وقد تحتوي على مخاطر محتملة!{0}{0}يرجى التأكد من أنك تفهم مصدر هذه الإضافة وأنها آمنة.{0}{0}هل ترغب في المتابعة؟{0}{0}(يمكنك إيقاف هذا التحذير من خلال الإعدادات)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">تم تثبيت الإضافة {0} بنجاح. يرجى إعادة تشغيل Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">تم تثبيت الإضافة {0} بنجاح. يرجى إعادة تشغيل Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">تم إلغاء تثبيت الإضافة {0} بنجاح. يرجى إعادة تشغيل Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">تم إلغاء تثبيت الإضافة {0} بنجاح. يرجى إعادة تشغيل Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">تم تحديث الإضافة {0} بنجاح. يرجى إعادة تشغيل Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">تم تحديث الإضافة {0} بنجاح. يرجى إعادة تشغيل Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">تم تحديث {0} إضافات بنجاح. يرجى إعادة تشغيل Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">تم تحديث {0} إضافات بنجاح. يرجى إعادة تشغيل Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">تم تعديل الإضافة {0} بالفعل. يرجى إعادة تشغيل Flow قبل إجراء أي تغييرات أخرى.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">تم تعديل الإضافة {0} بالفعل. يرجى إعادة تشغيل Flow قبل إجراء أي تغييرات أخرى.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">مدير الإضافات</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">مدير الإضافات</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">إدارة تثبيت وإلغاء تثبيت أو تحديث إضافات Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">إدارة تثبيت وإلغاء تثبيت أو تحديث إضافات Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Instaluje se plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Instaluje se plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Stáhnout a nainstalovat {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Stáhnout a nainstalovat {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Odinstalovat plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Odinstalovat plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} byl úspěšně nainstalován. Restartuje se Flow, vyčkejte prosím...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} byl úspěšně nainstalován. Restartuje se Flow, vyčkejte prosím...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Instalace se nezdařila: nepodařilo se najít metadata souboru plugin.json z rozbaleného souboru Zip.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Instalace se nezdařila: nepodařilo se najít metadata souboru plugin.json z rozbaleného souboru Zip.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Chyba: Zásuvný modul se stejnou nebo vyšší verzí než {0} již existuje.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Chyba: Zásuvný modul se stejnou nebo vyšší verzí než {0} již existuje.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalace z neznámého zdroje</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalace z neznámého zdroje</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Tento plugin instalujete z neznámého zdroje a může obsahovat potenciální rizika!{0}{0}Ujistěte se, že víte, odkud tento plugin pochází a že je bezpečný.{0}{0}Chcete pokračovat?{0}{0}(Toto varování můžete vypnout v nastavení)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Tento plugin instalujete z neznámého zdroje a může obsahovat potenciální rizika!{0}{0}Ujistěte se, že víte, odkud tento plugin pochází a že je bezpečný.{0}{0}Chcete pokračovat?{0}{0}(Toto varování můžete vypnout v nastavení)</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">Plugin {0} successfully installed. Please restart 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">Plugin {0} successfully uninstalled. Please restart 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">Plugin {0} successfully updated. Please 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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Správce pluginů</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Správce pluginů</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Správa instalace, odinstalace nebo aktualizace pluginů Flow Launcheru</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Správa instalace, odinstalace nebo aktualizace pluginů Flow Launcheru</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Plugin wird installiert</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">Plug-in-Deinstallation</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plug-in-Deinstallation</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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_success_restart">Plug-in {0} erfolgreich installiert. Flow wird neu gestartet, bitte warten Sie ...</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_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 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_duplicate">Fehler: Ein Plug-in, welches die gleiche oder eine höhere Version mit {0} hat, ist bereits vorhanden.</system:String>
@ -35,13 +37,13 @@
<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_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 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_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">Plug-in {0} erfolgreich installiert. Bitte starten Sie Flow neu.</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">Plug-in {0} erfolgreich deinstalliert. Bitte starten Sie Flow neu.</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">Plug-in {0} erfolgreich aktualisiert. Bitte starten Sie Flow neu.</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} Plug-ins erfolgreich aktualisiert. Bitte starten Sie Flow neu.</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">Plug-in {0} ist bereits modifiziert worden. Bitte starten Sie Flow neu, bevor Sie irgendwelche weitere Änderungen vornehmen.</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">Plug-ins-Manager</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 der Plug-ins von Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Verwaltung der Installation, Deinstallation oder Aktualisierung der Plug-ins von Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalando complemento</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalando complemento</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Descargar e instalar {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Descargar e instalar {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Desinstalar complemento</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Desinstalar complemento</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Mantener la configuración del complemento</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">¿Desea mantener la configuración del complemento para el próximo uso?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Complemento {0} instalado correctamente. Reiniciando Flow, por favor espere...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Complemento {0} instalado correctamente. Reiniciando Flow, por favor espere...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">No se ha podido encontrar el archivo de metadatos plugin.json del archivo zip extraído.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">No se ha podido encontrar el archivo de metadatos plugin.json del archivo zip extraído.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Error: Ya existe un complemento que tiene la misma o mayor versión con {0}.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Error: Ya existe un complemento que tiene la misma o mayor versión con {0}.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Complemento {0} actualizado correctamente. Reiniciando Flow, por favor espere...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Complemento {0} actualizado correctamente. Reiniciando Flow, por favor espere...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalando desde una fuente desconocida</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalando desde una fuente desconocida</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">¡Está instalando este complemento desde una fuente desconocida y puede contener riesgos potenciales!{0}{0}Por favor, asegúrese de saber de dónde procede este complemento y de que es seguro.{0}{0}¿Aún así desea continuar?{0}{0}(Puede desactivar esta advertencia en la configuración)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">¡Está instalando este complemento desde una fuente desconocida y puede contener riesgos potenciales!{0}{0}Por favor, asegúrese de saber de dónde procede este complemento y de que es seguro.{0}{0}¿Aún así desea continuar?{0}{0}(Puede desactivar esta advertencia en la configuración)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Complemento {0} instalado correctamente. Por favor, reinicie Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Complemento {0} instalado correctamente. Por favor, reinicie Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Complemento {0} desinstalado correctamente. Por favor, reinicie Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Complemento {0} desinstalado correctamente. Por favor, reinicie Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Complemento {0} actualizado correctamente. Por favor, reinicie Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Complemento {0} actualizado correctamente. Por favor, reinicie Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} complementos se han actualizado correctamente. Por favor, reinicie Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} complementos se han actualizado correctamente. Por favor, reinicie Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">El complemento {0} ya ha sido modificado. Por favor, reinicie Flow antes de realizar más cambios.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">El complemento {0} ya ha sido modificado. Por favor, reinicie Flow antes de realizar más cambios.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Administrador de complementos</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Administrador de complementos</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Administración de instalación, desinstalación o actualización de los complementos de Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Administración de instalación, desinstalación o actualización de los complementos de Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installation du plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installation du plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Télécharger et installer {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Télécharger et installer {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Désinstallation du plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Désinstallation du plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Garder les paramètres du plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Souhaitez-vous conserver les paramètres du plugin pour la prochaine utilisation ?</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">Impossible de trouver le fichier de métadonnées plugin.json à partir du fichier zip extrait.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Impossible de trouver le fichier de métadonnées plugin.json à partir du fichier zip extrait.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Erreur : Un plugin ayant une version identique ou supérieure à {0} existe déjà.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Erreur : Un plugin ayant une version identique ou supérieure à {0} existe déjà.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} mis à jour avec succès. Redémarrage de Flow, veuillez patienter...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} mis à jour avec succès. Redémarrage de Flow, veuillez patienter...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installation depuis une source inconnue</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installation depuis une source inconnue</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Vous installez ce plugin à partir d'une source inconnue et il peut contenir des risques !{0}{0}Veuillez vous assurer que vous comprenez d'où provient ce plugin et qu'il est sûr.{0}{0}Voulez-vous continuer ?{0}{0}(Vous pouvez désactiver cet avertissement via les paramètres)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Vous installez ce plugin à partir d'une source inconnue et il peut contenir des risques !{0}{0}Veuillez vous assurer que vous comprenez d'où provient ce plugin et qu'il est sûr.{0}{0}Voulez-vous continuer ?{0}{0}(Vous pouvez désactiver cet avertissement via les paramètres)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} installé avec succès. Veuillez redémarrer Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} installé avec succès. Veuillez redémarrer Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} désinstallé avec succès. Veuillez redémarrer Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} désinstallé avec succès. Veuillez redémarrer Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} mis à jour avec succès. Veuillez redémarrer Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} mis à jour avec succès. Veuillez redémarrer Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins mis à jour avec succès. Veuillez redémarrer Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins mis à jour avec succès. Veuillez redémarrer Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Le plugin {0} a déjà été modifié. Veuillez redémarrer Flow avant de faire d'autres modifications.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Le plugin {0} a déjà été modifié. Veuillez redémarrer Flow avant de faire d'autres modifications.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Gestionnaire de plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Gestionnaire de plugins</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Gestion de l'installation, de la désinstallation ou de la mise à jour des plugins Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Gestion de l'installation, de la désinstallation ou de la mise à jour des plugins Flow Launcher</system:String>

View file

@ -2,62 +2,64 @@
<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">מוריד תוסף</system:String>
<system:String x:Key="plugin_pluginsmanager_download_success">Successfully downloaded {0}</system:String> <system:String x:Key="plugin_pluginsmanager_download_success">התוסף {0} הורד בהצלחה</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">שגיאה: לא ניתן להוריד את התוסף</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} מאת {1} {2}{3}האם ברצונך להסיר תוסף זה? לאחר ההסרה Flow יופעל מחדש באופן אוטומטי.</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} מאת {1} {2}{2}האם ברצונך להסיר תוסף זה?</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} מאת {1} {2}{3}האם ברצונך להתקין תוסף זה? לאחר ההתקנה Flow יופעל מחדש באופן אוטומטי.</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} מאת {1} {2}{2}האם ברצונך להתקין תוסף זה?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_title">Plugin Install</system:String> <system:String x:Key="plugin_pluginsmanager_install_title">התקנת תוסף</system:String>
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">מתקין תוסף</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">הורד והתקן {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">הסרת תוסף</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} successfully installed. Restarting Flow, please wait...</system:String> <system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">שמור הגדרות תוסף</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_keep_plugin_settings_subtitle">האם ברצונך לשמור את הגדרות התוסף לשימוש הבא?</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_success_restart">התוסף {0} הותקן בהצלחה. מבצע הפעלה מחדש של Flow, אנא המתן...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_title">Error installing plugin</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">לא נמצא קובץ metadata בשם plugin.json מתוך קובץ ה-ZIP שחולץ.</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_duplicate">שגיאה: תוסף בעל גרסה זהה או מתקדמת יותר של {0} כבר קיים.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_error_title">Error uninstalling plugin</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_title">שגיאה בהתקנת תוסף</system:String>
<system:String x:Key="plugin_pluginsmanager_update_noresult_title">No update available</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_subtitle">אירעה שגיאה בעת ניסיון להתקין את {0}</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_uninstall_error_title">שגיאה בהסרת תוסף</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_noresult_title">אין עדכון זמין</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_noresult_subtitle">כל התוספים מעודכנים לגרסה האחרונה</system:String>
<system:String x:Key="plugin_pluginsmanager_update_title">Plugin Update</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt">{0} מאת {1} {2}{3}האם ברצונך לעדכן תוסף זה? לאחר העדכון Flow יופעל מחדש באופן אוטומטי.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_alreadyexists">This plugin is already installed</system:String> <system:String x:Key="plugin_pluginsmanager_update_prompt_no_restart">{0} מאת {1} {2}{2}האם ברצונך לעדכן תוסף זה?</system:String>
<system:String x:Key="plugin_pluginsmanager_update_failed_title">Plugin Manifest Download Failed</system:String> <system:String x:Key="plugin_pluginsmanager_update_title">עדכון תוסף</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_alreadyexists">תוסף זה כבר מותקן</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_title">Update all plugins</system:String> <system:String x:Key="plugin_pluginsmanager_update_failed_title">הורדת קובץ המניפסט של התוסף נכשלה</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_failed_subtitle">אנא בדוק אם יש לך גישה ל-github.com. שגיאה זו עשויה למנוע ממך להתקין או לעדכן תוספים.</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_title">עדכן את כל התוספים</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_subtitle">האם ברצונך לעדכן את כל התוספים?</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_prompt">האם ברצונך לעדכן {0} תוספים?{1}Flow Launcher יופעל מחדש לאחר עדכון כל התוספים.</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_all_prompt_no_restart">האם ברצונך לעדכן {0} תוספים?</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_update_all_success_restart">{0} תוספים עודכנו בהצלחה. מבצע הפעלה מחדש של Flow, אנא המתן...</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_update_success_restart">התוסף {0} עודכן בהצלחה. מבצע הפעלה מחדש של Flow, אנא המתן...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">מתקין ממקור לא ידוע</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_unknown_source_warning">אתה מתקין תוסף זה ממקור לא ידוע והוא עשוי להכיל סיכונים פוטנציאליים!{0}{0}אנא ודא שאתה מבין מאין מגיע תוסף זה ושהוא בטוח.{0}{0}האם ברצונך להמשיך בכל זאת?{0}{0}(תוכל לכבות אזהרה זו דרך ההגדרות)</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_update_success_no_restart">Plugin {0} successfully updated. Please restart Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">התוסף {0} הותקן בהצלחה. נא הפעל מחדש את 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_uninstall_success_no_restart">התוסף {0} הוסר בהצלחה. נא הפעל מחדש את 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_update_success_no_restart">התוסף {0} עודכן בהצלחה. נא הפעל מחדש את Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} תוספים עודכנו בהצלחה. נא הפעל מחדש את Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">התוסף {0} כבר השתנה. נא הפעל מחדש את Flow לפני ביצוע שינויים נוספים.</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">מנהל תוספים</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">ניהול התקנה, הסרה או עדכון של תוספים עבור Flow Launcher</system:String>
<system:String x:Key="plugin_pluginsmanager_unknown_author">Unknown Author</system:String> <system:String x:Key="plugin_pluginsmanager_unknown_author">מחבר לא ידוע</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">פתח אתר</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">בקר באתר של התוסף</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">צפה בקוד המקור</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">צפה בקוד המקור של התוסף</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">הצע שיפור או דווח על בעיה</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">הצע שיפור או דווח על בעיה למפתח התוסף</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">עבור למאגר התוספים של 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">בקר במאגר PluginsManifest כדי לראות תוספים שהוגשו על ידי הקהילה</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">אזהרה בעת התקנה ממקור לא ידוע</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">הפעל מחדש את Flow Launcher באופן אוטומטי לאחר התקנה/הסרה/עדכון של תוספים</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installazione del Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installazione del Plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Scarica e installa {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Scarica e installa {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Disinstallazione del plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Disinstallazione del plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin installato con successo. Riavvio di Flow, attendere...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin installato con successo. Riavvio di Flow, attendere...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Impossibile trovare il file dei metadati plugin.json dal file zip estratto.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Impossibile trovare il file dei metadati plugin.json dal file zip estratto.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Errore: esiste già un plugin che ha la stessa o maggiore versione con {0}.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Errore: esiste già un plugin che ha la stessa o maggiore versione con {0}.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Il plugin {0} aggiornato con successo. Riavviando Flow, attendere...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Il plugin {0} aggiornato con successo. Riavviando Flow, attendere...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installazione da una fonte sconosciuta</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Installazione da una fonte sconosciuta</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Stai installando questo plugin da una fonte sconosciuta e potrebbe contenere potenziali rischi!{0}{0}Si prega di assicurarsi di capire la provenienza di questo plugin e se sia sicuro.{0}{0}Vuoi comunque continuare?{0}{0}(Puoi disattivare questo avviso dalle impostazioni)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Stai installando questo plugin da una fonte sconosciuta e potrebbe contenere potenziali rischi!{0}{0}Si prega di assicurarsi di capire la provenienza di questo plugin e se sia sicuro.{0}{0}Vuoi comunque continuare?{0}{0}(Puoi disattivare questo avviso dalle impostazioni)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Il plugin {0} installato con successo. Riavviare Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Il plugin {0} installato con successo. Riavviare Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Il plugin {0} disinstallato con successo. Riavviare Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Il plugin {0} disinstallato con successo. Riavviare Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Il plugin {0} aggiornato con successo. Riavviare Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Il plugin {0} aggiornato con successo. Riavviare Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugin aggiornato con successo. Riavviare Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugin aggiornato con successo. Riavviare Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Il plugin {0} è già stato modificato. Riavviare Flow prima di fare altre modifiche.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Il plugin {0} è già stato modificato. Riavviare Flow prima di fare altre modifiche.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Gestore dei plugin</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Gestore dei plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Gestione dell'installazione, disinstallazione o aggiornamento dei plugin di Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Gestione dell'installazione, disinstallazione o aggiornamento dei plugin di Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">다운로드 및 설치 {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">다운로드 및 설치 {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">플러그인 제거</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">플러그인 제거</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">플러그인 설치 성공. Flow를 재시작합니다, 잠시 기다려주세요...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">플러그인 설치 성공. Flow를 재시작합니다, 잠시 기다려주세요...</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">플러그인 관리자</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">플러그인 관리자</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">플러그인의 설치/삭제/업데이트를 관리하는 플러그인</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">플러그인의 설치/삭제/업데이트를 관리하는 플러그인</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installerer programtillegg</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installerer programtillegg</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Last ned og installer {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">Programtillegg avinstallasjon</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Programtillegg avinstallasjon</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Kunne ikke finne filen plugin.json metadata fra utpakket zip-fil.</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">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_duplicate">Feil: det finnes allerede et programtillegg som har samme eller større versjon med {0}.</system:String>
@ -35,13 +37,13 @@
<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_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">Installerer fra en ukjent kilde</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">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_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">Programtillegg {0} installert. Vennligst start Flow på nytt.</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">Programtillegg {0} avinstallert. Vennligst start Flow på nytt.</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">Programtillegg {0} oppdatert. Vennligst 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} programtillegg oppdatert. Start Flow på nytt.</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">Programtillegg {0} er allerede endret. Start Flow på nytt før nye endringer foretas.</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">Programtilleggsbehandling</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Programtilleggsbehandling</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_plugin_description">Administrasjon av installasjon, avinstallere eller oppdatere Flow Launcher programtillegg</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalowanie wtyczki</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalowanie wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Pobierz i zainstaluj {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">Odinstalowanie wtyczki</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Odinstalowanie wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Zachowaj ustawienia wtyczki</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Czy chcesz zachować ustawienia wtyczki do następnego użycia?</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">Nie można znaleźć pliku metadanych plugin.json z rozpakowanego pliku zip.</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">Błąd: Wtyczka o tej samej lub wyższej wersji co {0} już istnieje.</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>
@ -35,13 +37,13 @@
<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_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">Instalowanie z nieznanego źródła</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">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_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">Wtyczka {0} została pomyślnie zainstalowana. Proszę ponownie uruchomić 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">Wtyczka {0} została pomyślnie odinstalowana. Proszę ponownie uruchomić 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">Wtyczka {0} została pomyślnie zaktualizowana. Proszę ponownie uruchomić 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} wtyczek zaktualizowano pomyślnie. Proszę ponownie uruchomić 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">Wtyczka {0} została już zmodyfikowana. Proszę ponownie uruchomić Flow przed wprowadzeniem dalszych zmian.</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">Menadżer wtyczek</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Menadżer wtyczek</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_plugin_description">Zarządzanie instalowaniem, odinstalowywaniem i aktualizowaniem wtyczek Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalando plugin...</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Instalando plugin...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Descarregar e instalar {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Descarregar e instalar {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Desinstalador de plugins</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Desinstalador de plugins</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Manter definições</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Deseja manter as definições do plugin para o caso de o voltar a instalar?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} instalado com sucesso. Estamos a reiniciar Flow launcher. Por favor aguarde.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} instalado com sucesso. Estamos a reiniciar Flow launcher. Por favor aguarde.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Não foi possível localizar o ficheiro plugin.json a partir do ficheiro extraído.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Não foi possível localizar o ficheiro plugin.json a partir do ficheiro extraído.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Erro: já está instalado um plugin com uma versão igual ou superior a {0}.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Erro: já está instalado um plugin com uma versão igual ou superior a {0}.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} atualizado com sucesso. Estamos a reiniciar Flow Launcher, aguarde...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} atualizado com sucesso. Estamos a reiniciar Flow Launcher, aguarde...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalar a partir de fontes desconhecidas</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Instalar a partir de fontes desconhecidas</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Está a instalar este plugin a partir de uma fonte desconhecida o que pode ser perigoso!{0}{0}Certifique-se de que este plugin é seguro.{0}{0}Ainda assim, pretende continuar com a instalação?{0}{0}(Pode desativar este aviso nas definições da aplicação)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Está a instalar este plugin a partir de uma fonte desconhecida o que pode ser perigoso!{0}{0}Certifique-se de que este plugin é seguro.{0}{0}Ainda assim, pretende continuar com a instalação?{0}{0}(Pode desativar este aviso nas definições da aplicação)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} instalado com sucesso. Por favor, reinicie o Flow Launcher.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} instalado com sucesso. Por favor, reinicie o Flow Launcher.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} desinstalado com sucesso. Por favor, reinicie o Flow Launcher.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} desinstalado com sucesso. Por favor, reinicie o Flow Launcher.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} atualizado com sucesso. Por favor, reinicie o Flow Launcher.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} atualizado com sucesso. Por favor, reinicie o Flow Launcher.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins atualizados com sucesso. Deve reiniciar Flow Launcher.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} plugins atualizados com sucesso. Deve reiniciar Flow Launcher.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">O plugin {0} foi modificado. Por favor, reinicie o Flow Launcher antes de fazer mais alterações.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">O plugin {0} foi modificado. Por favor, reinicie o Flow Launcher antes de fazer mais alterações.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Gestor de plugins</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Gestor de plugins</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Módulo para instalar, desinstalar e atualizar os plugins do Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Módulo para instalar, desinstalar e atualizar os plugins do Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Установка из неизвестного источника</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Установка из неизвестного источника</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Inštaluje sa plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Inštaluje sa plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Stiahnuť a nainštalovať {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Stiahnuť a nainštalovať {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Odinštalovať plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Odinštalovať plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Ponechať nastavenia pluginu</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Chcete zachovať nastavenia pluginu na ďalšie použitie?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} bol úspešne nainštalovaný. Reštartuje sa Flow, čakajte, prosím...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Plugin {0} bol úspešne nainštalovaný. Reštartuje sa Flow, čakajte, prosím...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Inštalácia zlyhala: nepodarilo sa nájsť metadáta súboru plugin.json z extrahovaného súboru ZIP.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Inštalácia zlyhala: nepodarilo sa nájsť metadáta súboru plugin.json z extrahovaného súboru ZIP.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Chyba: Plugin s rovnakou alebo vyššou verziou ako {0} už existuje.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Chyba: Plugin s rovnakou alebo vyššou verziou ako {0} už existuje.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} bol úspešne aktualizovaný. Reštartuje sa Flow, čakajte, prosím...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Plugin {0} bol úspešne aktualizovaný. Reštartuje sa Flow, čakajte, prosím...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Inštalácia z neznámeho zdroja</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Inštalácia z neznámeho zdroja</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Tento plugin inštalujete z neznámeho zdroja a môže obsahovať potenciálne riziká!{0}{0}Uistite sa, že rozumiete, odkiaľ tento plugin pochádza, a že je bezpečný.{0}{0}Chcete pokračovať?{0}{0}(Toto upozornenie môžete vypnúť v nastaveniach)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Tento plugin inštalujete z neznámeho zdroja a môže obsahovať potenciálne riziká!{0}{0}Uistite sa, že rozumiete, odkiaľ tento plugin pochádza, a že je bezpečný.{0}{0}Chcete pokračovať?{0}{0}(Toto upozornenie môžete vypnúť v nastaveniach)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} bol úspešne nainštalovaný. Prosím, reštartuje Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Plugin {0} bol úspešne nainštalovaný. Prosím, reštartuje Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} bol úspešne odinštalovaný. Prosím, reštartuje Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Plugin {0} bol úspešne odinštalovaný. Prosím, reštartuje Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} bol úspešne aktualizovaný. Prosím, reštartuje Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Plugin {0} bol úspešne aktualizovaný. Prosím, reštartuje Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">Pluginy úspešne aktualizované ({0}). Reštartuje Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">Pluginy úspešne aktualizované ({0}). Reštartuje Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Plugin {0} už bol upravený. Prosím, reštartuje Flow pred ďalšími zmenami.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Plugin {0} už bol upravený. Prosím, reštartuje Flow pred ďalšími zmenami.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Správca pluginov</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Správca pluginov</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Správa inštalácie, odinštalácie alebo aktualizácie pluginov programu Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Správa inštalácie, odinštalácie alebo aktualizácie pluginov programu Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</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">Download and install {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Plugin Uninstall</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</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">Plugins Manager</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Встановлення плагіна</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Встановлення плагіна</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Завантажити та встановити {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Завантажити та встановити {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Видалення плагіна</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Видалення плагіна</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</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">Не вдалося знайти файл метаданих plugin.json у розпакованому zip-архіві.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Не вдалося знайти файл метаданих plugin.json у розпакованому zip-архіві.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Помилка: Плагін, який має ідентичну або новішу версію з {0}, вже існує.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Помилка: Плагін, який має ідентичну або новішу версію з {0}, вже існує.</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">Плагін {0} успішно оновлено. Перезапускаємо Flow, будь ласка, зачекайте...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">Плагін {0} успішно оновлено. Перезапускаємо Flow, будь ласка, зачекайте...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Встановлення з невідомого джерела</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Встановлення з невідомого джерела</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Ви встановлюєте цей плагін з невідомого джерела, тому він може бути потенційно небезпечним!{0}{0}Переконайтеся, що ви розумієте, звідки цей плагін, і що він є безпечним.{0}{0}Бажаєте продовжити?{0}{0}(Ви можете вимкнути це попередження через налаштування)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Ви встановлюєте цей плагін з невідомого джерела, тому він може бути потенційно небезпечним!{0}{0}Переконайтеся, що ви розумієте, звідки цей плагін, і що він є безпечним.{0}{0}Бажаєте продовжити?{0}{0}(Ви можете вимкнути це попередження через налаштування)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Плагін {0} успішно встановлено. Будь ласка, перезапустіть Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">Плагін {0} успішно встановлено. Будь ласка, перезапустіть Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Плагін {0} успішно видалено. Будь ласка, перезапустіть Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">Плагін {0} успішно видалено. Будь ласка, перезапустіть Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Плагін {0} успішно оновлено. Будь ласка, перезапустіть Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">Плагін {0} успішно оновлено. Будь ласка, перезапустіть Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} плагіни успішно оновлено. Будь ласка, перезапустіть Flow.</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">{0} плагіни успішно оновлено. Будь ласка, перезапустіть Flow.</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Плагін {0} вже було змінено. Будь ласка, перезапустіть Flow, перш ніж вносити будь-які подальші зміни.</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">Плагін {0} вже було змінено. Будь ласка, перезапустіть Flow, перш ніж вносити будь-які подальші зміни.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Менеджер плагінів</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Менеджер плагінів</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Керування встановленням, видаленням або оновленням плагінів Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Керування встановленням, видаленням або оновленням плагінів Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Cài đặt Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Cài đặt Plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">Tải về và cài đặt</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">Tải về và cài đặt</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">Đã gỡ cài đặt plugin</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">Đã gỡ cài đặt plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">Đã cài đặt thành công plugin. Đang khởi động lại Flow, vui lòng đợi...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">Đã cài đặt thành công plugin. Đang khởi động lại Flow, vui lòng đợi...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Không thể tìm thấy tệp siêu dữ liệu plugin.json từ tệp zip được giải nén.</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">Không thể tìm thấy tệp siêu dữ liệu plugin.json từ tệp zip được giải nén.</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Lỗi: Đã tồn tại một plugin có phiên bản tương tự hoặc cao hơn với {0}.</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">Lỗi: Đã tồn tại một plugin có phiên bản tương tự hoặc cao hơn với {0}.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Cài đặt từ một nguồn không xác định</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">Cài đặt từ một nguồn không xác định</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Bạn đang cài đặt plugin này từ một nguồn không xác định và nó có thể chứa những rủi ro tiềm ẩn!{0}{0}Hãy đảm bảo rằng bạn hiểu plugin này đến từ đâu và nó an toàn.{0}{0}Bạn vẫn muốn tiếp tục chứ? {0}{0}(Bạn có thể tắt cảnh báo này thông qua cài đặt)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">Bạn đang cài đặt plugin này từ một nguồn không xác định và nó có thể chứa những rủi ro tiềm ẩn!{0}{0}Hãy đảm bảo rằng bạn hiểu plugin này đến từ đâu và nó an toàn.{0}{0}Bạn vẫn muốn tiếp tục chứ? {0}{0}(Bạn có thể tắt cảnh báo này thông qua cài đặt)</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">Plugin {0} successfully installed. Please restart 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">Plugin {0} successfully uninstalled. Please restart 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">Plugin {0} successfully updated. Please 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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">Trình quản lý plugin</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">Trình quản lý plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">Quản lý cài đặt, gỡ cài đặt hoặc cập nhật plugin Flow Launcher</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">Quản lý cài đặt, gỡ cài đặt hoặc cập nhật plugin Flow Launcher</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">正在安装插件</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">正在安装插件</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">下载与安装 {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">下载与安装 {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">插件卸载</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">插件卸载</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">插件安装成功。正在重新启动 Flow Launcher请稍候...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">插件安装成功。正在重新启动 Flow Launcher请稍候...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">安装失败无法从新插件中找到plugin.json元数据文件</system:String> <system:String x:Key="plugin_pluginsmanager_install_errormetadatafile">安装失败无法从新插件中找到plugin.json元数据文件</system:String>
<system:String x:Key="plugin_pluginsmanager_install_error_duplicate">错误:具有相同或更高版本的 {0} 的插件已经存在。</system:String> <system:String x:Key="plugin_pluginsmanager_install_error_duplicate">错误:具有相同或更高版本的 {0} 的插件已经存在。</system:String>
@ -35,13 +37,13 @@
<system:String x:Key="plugin_pluginsmanager_update_success_restart">插件{0}更新成功。正在重新启动 Flow Launcher请稍候...</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_restart">插件{0}更新成功。正在重新启动 Flow Launcher请稍候...</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">从未知源安装</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning_title">从未知源安装</system:String>
<system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">您正在从未知源安装此插件,它可能包含潜在风险!{0}{0}请确保您了解来源以及安全性。{0}{0}您想要继续吗?{0}{0}(您可以通过设置关闭此警告)</system:String> <system:String x:Key="plugin_pluginsmanager_install_unknown_source_warning">您正在从未知源安装此插件,它可能包含潜在风险!{0}{0}请确保您了解来源以及安全性。{0}{0}您想要继续吗?{0}{0}(您可以通过设置关闭此警告)</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_no_restart">成功安装插件{0}。请重新启动 Flow Launcher。</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_no_restart">成功安装插件{0}。请重新启动 Flow Launcher。</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">成功卸载插件{0}。请重新启动 Flow Launcher。</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_success_no_restart">成功卸载插件{0}。请重新启动 Flow Launcher。</system:String>
<system:String x:Key="plugin_pluginsmanager_update_success_no_restart">成功更新插件{0}。请重新启动 Flow Launcher。</system:String> <system:String x:Key="plugin_pluginsmanager_update_success_no_restart">成功更新插件{0}。请重新启动 Flow Launcher。</system:String>
<system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">插件 {0} 更新成功。请重新启动 Flow Launcher。</system:String> <system:String x:Key="plugin_pluginsmanager_update_all_success_no_restart">插件 {0} 更新成功。请重新启动 Flow Launcher。</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_modified_error">插件 {0} 已被修改。请在进行任何进一步更改之前重新启动Flow。</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_modified_error">插件 {0} 已被修改。请在进行任何进一步更改之前重新启动Flow。</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">插件管理</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">插件管理</system:String>
<system:String x:Key="plugin_pluginsmanager_plugin_description">安装,卸载或更新 Flow Launcher 插件</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_description">安装,卸载或更新 Flow Launcher 插件</system:String>

View file

@ -13,6 +13,8 @@
<system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String> <system:String x:Key="plugin_pluginsmanager_installing_plugin">Installing Plugin</system:String>
<system:String x:Key="plugin_pluginsmanager_install_from_web">下載並安裝 {0}</system:String> <system:String x:Key="plugin_pluginsmanager_install_from_web">下載並安裝 {0}</system:String>
<system:String x:Key="plugin_pluginsmanager_uninstall_title">解除安裝擴充功能</system:String> <system:String x:Key="plugin_pluginsmanager_uninstall_title">解除安裝擴充功能</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_title">Keep plugin settings</system:String>
<system:String x:Key="plugin_pluginsmanager_keep_plugin_settings_subtitle">Do you want to keep the settings of the plugin for the next usage?</system:String>
<system:String x:Key="plugin_pluginsmanager_install_success_restart">外掛安裝成功。正在重啟 Flow請稍後...</system:String> <system:String x:Key="plugin_pluginsmanager_install_success_restart">外掛安裝成功。正在重啟 Flow請稍後...</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">Unable to find the plugin.json metadata file from the extracted zip file.</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">Error: A plugin which has the same or greater version with {0} already exists.</system:String>
@ -35,13 +37,13 @@
<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">Plugin {0} successfully updated. Restarting Flow, please wait...</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">Installing from an unknown source</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">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_success_no_restart">Plugin {0} successfully installed. Please restart Flow.</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_uninstall_success_no_restart">Plugin {0} successfully uninstalled. Please restart 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_update_success_no_restart">Plugin {0} successfully updated. Please restart 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_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} plugins successfully updated. Please restart 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">Plugin {0} has already been modified. Please restart Flow before making any further changes.</system:String>
<!-- Plugin Infos --> <!-- Plugin Infos -->
<system:String x:Key="plugin_pluginsmanager_plugin_name">擴充功能管理</system:String> <system:String x:Key="plugin_pluginsmanager_plugin_name">擴充功能管理</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">Management of installing, uninstalling or updating Flow Launcher plugins</system:String>

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">מנהל תהליכים</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">סגור תהליכים פעילים מתוך 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">סגור את כל המופעים של &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">סגור {0} תהליכים</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">סגור את כל המופעים</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">إخفاء البرامج التي تحمل أسماء برامج إلغاء تثبيت شائعة، مثل unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">إخفاء البرامج التي تحمل أسماء برامج إلغاء تثبيت شائعة، مثل unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">البحث في وصف البرنامج</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">البحث في وصف البرنامج</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">سيقوم Flow بالبحث في وصف البرنامج</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">سيقوم Flow بالبحث في وصف البرنامج</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">اللاحقات</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">اللاحقات</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">أقصى عمق</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">أقصى عمق</system:String>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Povolit popis programu</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Povolit popis programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow bude vyhledávat v popisu programu</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow bude vyhledávat v popisu programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Přípony</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Přípony</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Max. hloubka</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Max. hloubka</system:String>
@ -82,8 +84,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">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">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

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as 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">Search in Program Description</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</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">Max Depth</system:String>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Blendet Programme mit gängigen Uninstaller-Namen aus, wie unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Blendet Programme mit gängigen Uninstaller-Namen aus, 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 in Programmbeschreibung suchen</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_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixe</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>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as 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">Search in Program Description</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</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">Max Depth</system:String>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Oculta nombres comunes de programas de desinstalación, como unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Oculta nombres comunes de programas de desinstalación, como unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Buscar en la descripción del programa</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Buscar en la descripción del programa</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow buscará en la descripción del programa</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow buscará en la descripción del programa</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Ocultar aplicaciones duplicadas</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Ocultar programas Win32 duplicados que ya están en la lista UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Extensiones</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Extensiones</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profundidad máxima</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profundidad máxima</system:String>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Masque les programmes portant des noms de désinstallateurs courants, tels que unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Masque les programmes portant des noms de désinstallateurs courants, tels que unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Rechercher dans la description du programme</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Rechercher dans la description du programme</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow cherchera la description du programme</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow cherchera la description du programme</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Masquer les applications dupliquées</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Masquer les programmes Win32 dupliqués qui sont déjà dans la liste UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profondeur max.</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profondeur max.</system:String>

View file

@ -2,94 +2,96 @@
<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">איפוס לברירת מחדל</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>
<system:String x:Key="flowlauncher_plugin_program_name">Name</system:String> <system:String x:Key="flowlauncher_plugin_program_name">שם</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable">Enable</system:String> <system:String x:Key="flowlauncher_plugin_program_enable">הפעל</system:String>
<system:String x:Key="flowlauncher_plugin_program_enabled">Enabled</system:String> <system:String x:Key="flowlauncher_plugin_program_enabled">מופעל</system:String>
<system:String x:Key="flowlauncher_plugin_program_disable">Disable</system:String> <system:String x:Key="flowlauncher_plugin_program_disable">השבת</system:String>
<system:String x:Key="flowlauncher_plugin_program_status">Status</system:String> <system:String x:Key="flowlauncher_plugin_program_status">סטטוס</system:String>
<system:String x:Key="flowlauncher_plugin_program_true">Enabled</system:String> <system:String x:Key="flowlauncher_plugin_program_true">מופעל</system:String>
<system:String x:Key="flowlauncher_plugin_program_false">Disabled</system:String> <system:String x:Key="flowlauncher_plugin_program_false">מושבת</system:String>
<system:String x:Key="flowlauncher_plugin_program_location">Location</system:String> <system:String x:Key="flowlauncher_plugin_program_location">מיקום</system:String>
<system:String x:Key="flowlauncher_plugin_program_all_programs">All Programs</system:String> <system:String x:Key="flowlauncher_plugin_program_all_programs">כל התוכניות</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes">File Type</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes">סוג קובץ</system:String>
<system:String x:Key="flowlauncher_plugin_program_reindex">Reindex</system:String> <system:String x:Key="flowlauncher_plugin_program_reindex">בצע אינדוקס מחדש</system:String>
<system:String x:Key="flowlauncher_plugin_program_indexing">Indexing</system:String> <system:String x:Key="flowlauncher_plugin_program_indexing">מבצע אינדוקס</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_source">Index Sources</system:String> <system:String x:Key="flowlauncher_plugin_program_index_source">מקורות אינדוקס</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_option">Options</system:String> <system:String x:Key="flowlauncher_plugin_program_index_option">אפשרויות</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</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">כאשר האפשרות מופעלת, Flow יטען אפליקציות 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">תפריט התחלה</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">כאשר האפשרות מופעלת, Flow יטען תוכניות מתפריט ההתחלה</system:String>
<system:String x:Key="flowlauncher_plugin_program_index_registry">Registry</system:String> <system:String x:Key="flowlauncher_plugin_program_index_registry">רישום</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">כאשר האפשרות מופעלת, Flow יטען תוכניות מהרישום</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">כאשר האפשרות מופעלת, Flow יטען תוכניות מהמשתנה 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">הסתר נתיב אפליקציה</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">לקבצי הפעלה כמו UWP או lnk, הסתר את נתיב הקובץ מהתצוגה</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">Hide uninstallers</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers">הסתר מסירי התקנה</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">מסתיר תוכניות עם שמות מסירי התקנה נפוצים, כגון 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">חיפוש בתיאור התוכנית</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 יחפש בתיאור התוכנית</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">הסתר אפליקציות כפולות</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Max Depth</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">הסתר תוכניות Win32 כפולות שכבר קיימות ברשימת UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">סיומות</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">עומק מקסימלי</system:String>
<system:String x:Key="flowlauncher_plugin_program_directory">Directory</system:String> <system:String x:Key="flowlauncher_plugin_program_directory">תיקייה</system:String>
<system:String x:Key="flowlauncher_plugin_program_browse">Browse</system:String> <system:String x:Key="flowlauncher_plugin_program_browse">עיון</system:String>
<system:String x:Key="flowlauncher_plugin_program_file_suffixes">File Suffixes:</system:String> <system:String x:Key="flowlauncher_plugin_program_file_suffixes">סיומות קבצים:</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">עומק חיפוש מקסימלי (-1 ללא הגבלה):</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">אנא בחר מקור תוכנה</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">האם אתה בטוח שברצונך למחוק את מקורות התוכניות שנבחרו?</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">מקור תוכנה נוסף עם אותו מיקום כבר קיים.</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">מקור תוכנה</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">ערוך את התיקייה והסטטוס של מקור תוכנה זה.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">עדכון</system:String> <system:String x:Key="flowlauncher_plugin_program_update">עדכון</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">תוסף התוכנה יאנדקס רק קבצים עם סיומות נבחרות וקובצי .url עם פרוטוקולים נבחרים.</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">סיומות הקבצים עודכנו בהצלחה</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">סיומות הקבצים לא יכולות להיות ריקות</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">פרוטוקולים לא יכולים להיות ריקים</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">סיומות קבצים</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</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</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</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">פרוטוקולי 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">סיומות קבצים מותאמות אישית</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) הכנס סיומות קבצים שברצונך לאנדקס. סיומות יש להפריד באמצעות ';'. (לדוגמה: 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://) הכנס פרוטוקולים של קובצי .url שברצונך לאנדקס. יש להפריד פרוטוקולים באמצעות ';', ולסיים ב- &quot;://&quot;. (לדוגמה: 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">הפעל כמשתמש אחר</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">הפעל כמנהל</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">פתח תיקייה מכילה</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">השבת הצגת תוכנה זו</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">פתח תיקיית יעד</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String> <system:String x:Key="flowlauncher_plugin_program_plugin_name">תוכנה</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">חיפוש תוכניות ב-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">נתיב לא חוקי</system:String>
<system:String x:Key="flowlauncher_plugin_program_customizedexplorer">Customized Explorer</system:String> <system:String x:Key="flowlauncher_plugin_program_customizedexplorer">סייר מותאם אישית</system:String>
<system:String x:Key="flowlauncher_plugin_program_args">Args</system:String> <system:String x:Key="flowlauncher_plugin_program_args">ארגומנטים</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_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">הזן את הארגומנטים שברצונך להוסיף לסייר המותאם אישית שלך. %s עבור ספריית האב, %f עבור הנתיב המלא (זמין רק עבור win32). בדוק באתר הסייר לפרטים נוספים.</system:String>
<!-- Dialogs --> <!-- Dialogs -->
<system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">הצליח</system:String> <system:String x:Key="flowlauncher_plugin_program_disable_dlgtitle_success">הצליח</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">שגיאה</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">התוכנית הוסרה מהתצוגה בהצלחה</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">אפליקציה זו אינה מיועדת להפעלה כמנהל</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">לא ניתן להפעיל את {0}</system:String>
</ResourceDictionary> </ResourceDictionary>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Nasconde programmi con nomi comuni di disinstallatori, come unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Nasconde programmi con nomi comuni di disinstallatori, come unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Cerca nella Descrizione del Programma</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Cerca nella Descrizione del Programma</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow cercherà nella descrizione del programma</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow cercherà nella descrizione del programma</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffissi</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffissi</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profondità max</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profondità max</system:String>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as 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">Search in Program Description</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</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">Max Depth</system:String>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Unins000처럼 일반적으로 사용되는 설치 삭제(Uninstaller) 프로그램의 이름을 숨깁니다.</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Unins000처럼 일반적으로 사용되는 설치 삭제(Uninstaller) 프로그램의 이름을 숨깁니다.</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">프로그램 설명 검색</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">프로그램 설명 검색</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">확장자</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">확장자</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">최대 깊이</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">최대 깊이</system:String>

View file

@ -34,6 +34,8 @@
<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_hideuninstallers_tooltip">Skjuler programmer med samme navn til avinstalleringer, for eksempel unins000.exe</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">Søk i programbeskrivelse</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_enable_description_tooltip">Flow vil søke i programmets beskrivelse</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffikser</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffikser</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maks dybde</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Maks dybde</system:String>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as 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">Search in Program Description</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</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">Max Depth</system:String>

View file

@ -34,6 +34,8 @@
<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_hideuninstallers_tooltip">Ukrywa programy z typowymi nazwami deinstalatorów, takimi jak unins000.exe</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">Szukaj w opisie programu</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_enable_description_tooltip">Flow będzie przeszukiwać opisy programów</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Ukryj zduplikowane aplikacje</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Ukryj zduplikowane programy Win32, które znajdują się już na liście UWP</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>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as 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">Search in Program Description</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</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">Max Depth</system:String>

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Ocultar programas com nomes de desinstalador como, por exemplo, unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Ocultar programas com nomes de desinstalador como, por exemplo, unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Pesquisar na descrição dos programas</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Pesquisar na descrição dos programas</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow irá pesquisar na descrição do programa</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow irá pesquisar na descrição do programa</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Ocultar aplicações duplicadas</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Ocultar aplicações Win32 duplicadas que existem lista UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Sufixos</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Sufixos</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profundidade máxima</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Profundidade máxima</system:String>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Поиск в описании программы</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Поиск в описании программы</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow будет искать в описании программ</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow будет искать в описании программ</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Суффиксы</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Суффиксы</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Макс. глубина</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Макс. глубина</system:String>
@ -82,8 +84,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">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">Введите настраиваемые аргументы, которые вы хотите добавить для вашего настраиваемого проводника. %s для родительского каталога, %f для полного пути (работает только для win32). Подробности смотрите на сайте проводника.</system:String> <system:String x:Key="flowlauncher_plugin_program_tooltip_args">Введите настраиваемые аргументы, которые вы хотите добавить для вашего настраиваемого проводника. %s для родительского каталога, %f для полного пути (работает только для win32). Подробности смотрите на сайте проводника.</system:String>
<!-- Dialogs --> <!-- Dialogs -->

View file

@ -34,6 +34,8 @@
<system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Schovať odinštalačné programy s bežnými názvami ako unins000.exe</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_hideuninstallers_tooltip">Schovať odinštalačné programy s bežnými názvami ako unins000.exe</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description">Povoliť popis programu</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description">Povoliť popis programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow bude vyhľadávať v popise programu</system:String> <system:String x:Key="flowlauncher_plugin_program_enable_description_tooltip">Flow bude vyhľadávať v popise programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Schovať duplicitné aplikácie</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Schovať duplicitné programy WIn32, ktoré sú už v zozname UWP</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Prípony</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Prípony</system:String>
<system:String x:Key="flowlauncher_plugin_program_max_depth_header">Max. hĺbka</system:String> <system:String x:Key="flowlauncher_plugin_program_max_depth_header">Max. hĺbka</system:String>

View file

@ -34,6 +34,8 @@
<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">Hides programs with common uninstaller names, such as 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">Search in Program Description</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 will search program's description</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp">Hide duplicated apps</system:String>
<system:String x:Key="flowlauncher_plugin_program_enable_hideduplicatedwindowsapp_tooltip">Hide duplicated Win32 programs that are already in the UWP list</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</system:String> <system:String x:Key="flowlauncher_plugin_program_suffixes_header">Suffixes</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">Max Depth</system:String>

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