diff --git a/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj b/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj index 2feb21b12..1472813b8 100644 --- a/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj +++ b/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj @@ -66,7 +66,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Flow.Launcher/App.xaml.cs b/Flow.Launcher/App.xaml.cs index ab68cf426..550b1bdae 100644 --- a/Flow.Launcher/App.xaml.cs +++ b/Flow.Launcher/App.xaml.cs @@ -64,6 +64,7 @@ namespace Flow.Launcher .AddSingleton() .AddSingleton() .AddSingleton() + .AddSingleton() ).Build(); Ioc.Default.ConfigureServices(host.Services); } diff --git a/Flow.Launcher/CustomQueryHotkeySetting.xaml b/Flow.Launcher/CustomQueryHotkeySetting.xaml index 70ebb404b..ccf4de870 100644 --- a/Flow.Launcher/CustomQueryHotkeySetting.xaml +++ b/Flow.Launcher/CustomQueryHotkeySetting.xaml @@ -103,7 +103,6 @@ HorizontalAlignment="Left" VerticalAlignment="Center" HorizontalContentAlignment="Left" - HotkeySettings="{Binding Settings}" DefaultHotkey="" /> - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Flow.Launcher/HotkeyControl.xaml.cs b/Flow.Launcher/HotkeyControl.xaml.cs index e1dfc1108..273d18e3f 100644 --- a/Flow.Launcher/HotkeyControl.xaml.cs +++ b/Flow.Launcher/HotkeyControl.xaml.cs @@ -4,25 +4,16 @@ using System.Collections.ObjectModel; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; +using CommunityToolkit.Mvvm.DependencyInjection; using Flow.Launcher.Core.Resource; using Flow.Launcher.Helper; using Flow.Launcher.Infrastructure.Hotkey; +using Flow.Launcher.Infrastructure.UserSettings; namespace Flow.Launcher { 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 { get { return (string)GetValue(WindowTitleProperty); } set { SetValue(WindowTitleProperty, value); } @@ -71,8 +62,7 @@ namespace Flow.Launcher return; } - hotkeyControl.SetKeysToDisplay(new HotkeyModel(hotkeyControl.Hotkey)); - hotkeyControl.CurrentHotkey = new HotkeyModel(hotkeyControl.Hotkey); + hotkeyControl.RefreshHotkeyInterface(hotkeyControl.Hotkey); } @@ -90,17 +80,117 @@ namespace Flow.Launcher } - public static readonly DependencyProperty HotkeyProperty = DependencyProperty.Register( - nameof(Hotkey), - typeof(string), + public static readonly DependencyProperty TypeProperty = DependencyProperty.Register( + nameof(Type), + typeof(HotkeyType), 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(); + public string Hotkey { - get { return (string)GetValue(HotkeyProperty); } - set { SetValue(HotkeyProperty, value); } + get + { + 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() @@ -108,7 +198,14 @@ namespace Flow.Launcher InitializeComponent(); 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) => @@ -133,7 +230,7 @@ namespace Flow.Launcher HotKeyMapper.RemoveHotkey(Hotkey); } - var dialog = new HotkeyControlDialog(Hotkey, DefaultHotkey, HotkeySettings, WindowTitle); + var dialog = new HotkeyControlDialog(Hotkey, DefaultHotkey, WindowTitle); await dialog.ShowAsync(); switch (dialog.ResultType) { diff --git a/Flow.Launcher/HotkeyControlDialog.xaml.cs b/Flow.Launcher/HotkeyControlDialog.xaml.cs index a4d21a782..2f8c5eb26 100644 --- a/Flow.Launcher/HotkeyControlDialog.xaml.cs +++ b/Flow.Launcher/HotkeyControlDialog.xaml.cs @@ -4,9 +4,11 @@ using System.Linq; using System.Windows; using System.Windows.Input; using ChefKeys; +using CommunityToolkit.Mvvm.DependencyInjection; using Flow.Launcher.Core.Resource; using Flow.Launcher.Helper; using Flow.Launcher.Infrastructure.Hotkey; +using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Plugin; using ModernWpf.Controls; @@ -16,7 +18,7 @@ namespace Flow.Launcher; public partial class HotkeyControlDialog : ContentDialog { - private IHotkeySettings _hotkeySettings; + private static readonly IHotkeySettings _hotkeySettings = Ioc.Default.GetRequiredService(); private Action? _overwriteOtherHotkey; private string DefaultHotkey { get; } public string WindowTitle { get; } @@ -36,7 +38,7 @@ public partial class HotkeyControlDialog : ContentDialog 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 { @@ -45,7 +47,6 @@ public partial class HotkeyControlDialog : ContentDialog }; DefaultHotkey = defaultHotkey; CurrentHotkey = new HotkeyModel(hotkey); - _hotkeySettings = hotkeySettings; SetKeysToDisplay(CurrentHotkey); InitializeComponent(); diff --git a/Flow.Launcher/Languages/ar.xaml b/Flow.Launcher/Languages/ar.xaml index fa5c968d4..a57179da6 100644 --- a/Flow.Launcher/Languages/ar.xaml +++ b/Flow.Launcher/Languages/ar.xaml @@ -13,6 +13,7 @@ فشل في تسجيل مفتاح التشغيل السريع "{0}". قد يكون المفتاح مستخدمًا من قبل برنامج آخر. قم بتغيير المفتاح، أو قم بإغلاق البرنامج الآخر. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher تعذر بدء {0} تنسيق ملف إضافة Flow Launcher غير صالح @@ -44,6 +45,8 @@ وضع المحمول تخزين جميع الإعدادات وبيانات المستخدم في مجلد واحد (مفيد عند استخدام الأقراص القابلة للإزالة أو الخدمات السحابية). تشغيل Flow Launcher عند بدء تشغيل النظام + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler خطأ في إعداد التشغيل عند بدء التشغيل إخفاء Flow Launcher عند فقدان التركيز عدم عرض إشعارات الإصدار الجديد @@ -126,7 +129,8 @@ الإصدار الموقع الإلكتروني إلغاء التثبيت - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually متجر الإضافات @@ -143,8 +147,6 @@ تم تحديث هذه الإضافة في آخر 7 أيام يتوفر تحديث جديد - - السمة المظهر @@ -194,7 +196,6 @@ هذه السمة تدعم الوضعين (فاتح/داكن). هذه السمة تدعم الخلفية الضبابية الشفافة. - مفتاح الاختصار مفاتيح الاختصار @@ -297,6 +298,9 @@ موقع بيانات المستخدم يتم حفظ إعدادات المستخدم والإضافات المثبتة في مجلد بيانات المستخدم. قد يختلف هذا الموقع اعتمادًا على ما إذا كان في وضع النقل أم لا. فتح المجلد + Log Level + Debug + Info اختر مدير الملفات @@ -367,6 +371,7 @@ حسناً نعم لا + الخلفية الإصدار @@ -383,6 +388,9 @@ تم إرسال التقرير بنجاح فشل في إرسال التقرير حدث خطأ في Flow Launcher + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message يرجى الانتظار... diff --git a/Flow.Launcher/Languages/cs.xaml b/Flow.Launcher/Languages/cs.xaml index 05adf095b..92721b70a 100644 --- a/Flow.Launcher/Languages/cs.xaml +++ b/Flow.Launcher/Languages/cs.xaml @@ -13,6 +13,7 @@ Nepodařilo se zaregistrovat hotkey "{0}". Klávesová zkratka může být používána jiným programem. Změňte na jinou klávesu nebo ukončíte jiný program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Nepodařilo se spustit {0} Neplatný typ souboru pluginu aplikace Flow Launcher @@ -44,6 +45,8 @@ Přenosný režim Ukládat všechna nastavení a uživatelská data v jedné složce (Užitečné při užití s přenosnými zařízeními). Spustit Flow Launcher při spuštění systému + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Při nastavování spouštění došlo k chybě Skrýt Flow Launcher při vykliknutí Nezobrazovat oznámení o nové verzi @@ -126,7 +129,8 @@ Verze Webová stránka Odinstalovat - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Obchod s pluginy @@ -143,8 +147,6 @@ Tento plugin byl aktualizován během posledních 7 dní Nová aktualizace je k dispozici - - Motiv Vzhled @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Klávesová zkratka Klávesové zkratky @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Vybrat správce souborů @@ -367,6 +371,7 @@ Pokud před zkratku při zadávání přidáte znak "@", bude odpovíd Dobře Yes No + Pozadí Verze @@ -383,6 +388,9 @@ Pokud před zkratku při zadávání přidáte znak "@", bude odpovíd Hlášení bylo úspěšně odesláno Nepodařilo se odeslat hlášení Flow Launcher zaznamenal chybu + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Počkejte prosím... diff --git a/Flow.Launcher/Languages/da.xaml b/Flow.Launcher/Languages/da.xaml index 36970ad53..629173f74 100644 --- a/Flow.Launcher/Languages/da.xaml +++ b/Flow.Launcher/Languages/da.xaml @@ -13,6 +13,7 @@ Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Kunne ikke starte {0} Ugyldigt Flow Launcher plugin filformat @@ -44,6 +45,8 @@ Portable Mode Store all settings and user data in one folder (Useful when used with removable drives or cloud services). Start Flow Launcher ved system start + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Error setting launch on startup Skjul Flow Launcher ved mistet fokus Vis ikke notifikationer om nye versioner @@ -126,7 +129,8 @@ Version Website Uninstall - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Plugin Store @@ -143,8 +147,6 @@ This plugin has been updated within the last 7 days New Update is Available - - Tema Appearance @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Genvejstast Genvejstast @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Select File Manager @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in OK Yes No + Background Version @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in Rapport sendt korrekt Kunne ikke sende rapport Flow Launcher fik en fejl + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Please wait... diff --git a/Flow.Launcher/Languages/de.xaml b/Flow.Launcher/Languages/de.xaml index c7e775ae3..8a7e3498a 100644 --- a/Flow.Launcher/Languages/de.xaml +++ b/Flow.Launcher/Languages/de.xaml @@ -13,6 +13,7 @@ Hotkey "{0}" 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. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Konnte nicht gestartet werden {0} Flow Launcher Plug-in-Dateiformat ungültig @@ -44,6 +45,8 @@ Portabler Modus Speichern Sie alle Einstellungen und Benutzerdaten in einem Ordner (nützlich bei Verwendung von Wechsellaufwerken oder Cloud-Diensten). Flow Launcher bei Systemstart starten + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Fehler bei Einstellungsstart bei Start Flow Launcher ausblenden, wenn Fokus verloren geht Versionsbenachrichtigungen nicht zeigen @@ -126,7 +129,8 @@ Version Website Deinstallieren - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Plug-in-Store @@ -143,8 +147,6 @@ Dieses Plug-in ist innerhalb der letzten 7 Tage aktualisiert worden Neues Update ist verfügbar - - Theme Erscheinungsbild @@ -194,7 +196,6 @@ Dieses Theme unterstützt zwei Modi (hell/dunkel). Dieses Theme unterstützt Unschärfe und transparenten Hintergrund. - Hotkey Hotkeys @@ -297,6 +298,9 @@ Speicherort für Benutzerdaten 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. Ordner öffnen + Log Level + Debug + Info Dateimanager auswählen @@ -367,6 +371,7 @@ Wenn Sie bei der Eingabe eines Shortcuts ein '@'-Präfix hinzufügen, stimmt die OK Ja Nein + Hintergrund Version @@ -383,6 +388,9 @@ Wenn Sie bei der Eingabe eines Shortcuts ein '@'-Präfix hinzufügen, stimmt die Bericht erfolgreich gesendet Bericht konnte nicht gesendet werden Flow Launcher hat einen Fehler + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Bitte warten Sie ... diff --git a/Flow.Launcher/Languages/es-419.xaml b/Flow.Launcher/Languages/es-419.xaml index 0556c59ae..1ab69727b 100644 --- a/Flow.Launcher/Languages/es-419.xaml +++ b/Flow.Launcher/Languages/es-419.xaml @@ -13,6 +13,7 @@ Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher No se pudo iniciar {0} Formato de archivo de plugin Flow Launcher inválido @@ -44,6 +45,8 @@ Modo portable 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). Iniciar Flow Launcher al arrancar el sistema + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Error setting launch on startup Ocultar Flow Launcher cuando se pierde el enfoque No mostrar notificaciones de nuevas versiones @@ -126,7 +129,8 @@ Versión Sitio web Uninstall - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Tienda de Plugins @@ -143,8 +147,6 @@ This plugin has been updated within the last 7 days New Update is Available - - Tema Appearance @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Tecla Rápida Tecla Rápida @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Seleccionar Gestor de Archivos @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in OK Yes No + Background Versión @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in Informe enviado correctamente Error al enviar el informe Flow Launcher ha tenido un error + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Por favor espere... diff --git a/Flow.Launcher/Languages/es.xaml b/Flow.Launcher/Languages/es.xaml index c7595f69b..4cba4c8a7 100644 --- a/Flow.Launcher/Languages/es.xaml +++ b/Flow.Launcher/Languages/es.xaml @@ -13,6 +13,7 @@ No se ha podido registrar el atajo de teclado "{0}". El atajo de teclado puede estar siendo utilizado por otro programa. Seleccione un atajo de teclado diferente o salga del otro programa. + 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 Flow Launcher No se ha podido iniciar {0} Formato de archivo del complemento de Flow Launcher no válido @@ -44,6 +45,8 @@ Modo Portable 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). Cargar Flow Launcher al iniciar el sistema + Usar la tarea de inicio de sesión en lugar de la entrada de inicio para una experiencia de inicio más rápida + Después de la desinstalación, es necesario eliminar manualmente la tarea (Flow.Launcher Startup) mediante el Programador de Tareas Error de configuración de arranque al iniciar Ocultar Flow Launcher cuando se pierde el foco No mostrar notificaciones de nuevas versiones @@ -126,7 +129,8 @@ Versión Sitio web Desinstalar - + Fallo al eliminar la configuración del complemento + Complementos: {0} - Fallo al eliminar los archivos de configuración del complemento, por favor elimínelos manualmente Tienda complementos @@ -143,8 +147,6 @@ Este complemento ha sido actualizado en los últimos 7 días Nueva actualización disponible - - Tema Apariencia @@ -194,7 +196,6 @@ Este tema soporta dos modos (claro/oscuro). Este tema soporta fondo transparente desenfocado. - Atajo de teclado Atajos de teclado @@ -297,6 +298,9 @@ Ubicación de datos del usuario 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. Abrir carpeta + Nivel de registro + Depurar + Información Seleccionar administrador de archivos @@ -367,6 +371,7 @@ Si añade un prefijo "@" al introducir un acceso directo, éste coinci Aceptar Si No + Fondo Versión @@ -383,6 +388,9 @@ Si añade un prefijo "@" al introducir un acceso directo, éste coinci Informe enviado correctamente No se ha podido enviar el informe Flow Launcher ha tenido un error + Por favor, abra un nuevo tema en + 1. Subir archivo de registro: {0} + 2. Copiar el siguiente mensaje de excepción Por favor espere... diff --git a/Flow.Launcher/Languages/fr.xaml b/Flow.Launcher/Languages/fr.xaml index e978e91ec..d0d1d010d 100644 --- a/Flow.Launcher/Languages/fr.xaml +++ b/Flow.Launcher/Languages/fr.xaml @@ -13,6 +13,7 @@ Échec lors de l'enregistrement du raccourci : {0} + Échec de la réinitialisation du raccourci "{0}". Veuillez réessayer ou consulter le journal pour plus de détails Flow Launcher Impossible de lancer {0} Le format de fichier n'est pas un plugin Flow Launcher valide @@ -44,6 +45,8 @@ Mode Portable 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). Lancer Flow Launcher au démarrage du système + Utilisez la tâche de connexion au lieu de l'entrée de démarrage pour une expérience de démarrage plus rapide + Après une désinstallation, vous devez supprimer manuellement cette tâche (Flow.Launcher Startup) via le planificateur de tâches Erreur lors de la configuration du lancement au démarrage Cacher Flow Launcher lors de la perte de focus Ne pas afficher le message de mise à jour pour les nouvelles versions @@ -126,7 +129,8 @@ Version Site Web Désinstaller - + Échec de la suppression des paramètres du plugin + Plugins : {0} - Échec de la suppression des fichiers de configuration des plugins, veuillez les supprimer manuellement Magasin des Plugins @@ -143,8 +147,6 @@ Cette extension a été mis à jour au cours des 7 derniers jours Une nouvelle mise à jour est disponible - - Thèmes Apparence @@ -194,7 +196,6 @@ Ce thème prend en charge deux modes (clair/sombre). Ce thème prend en charge l'arrière-plan flou et transparent. - Raccourcis Raccourcis @@ -296,6 +297,9 @@ Emplacement des données utilisateur 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. Ouvrir le dossier + Niveau de journalisation + Débogage + Info Sélectionner le gestionnaire de fichiers @@ -326,7 +330,7 @@ Ancien mot-clé d'action Nouveau mot-clé d'action Annuler - Termin + Terminé Impossible de trouver le module spécifi Le nouveau mot-clé d'action doit être spécifi Le nouveau mot-clé d'action a été assigné à un autre module, veuillez en choisir un autre @@ -366,6 +370,7 @@ Si vous ajoutez un préfixe "@" lors de la saisie d'un raccourci, celu Ok Oui Non + Arrière-plan Version @@ -382,6 +387,9 @@ Si vous ajoutez un préfixe "@" lors de la saisie d'un raccourci, celu Signalement envoy Échec de l'envoi du signalement Flow Launcher a rencontré une erreur + Veuillez ouvrir un nouveau ticket dans + 1. Télécharger le fichier journal : {0} + 2. Copiez le message d’exception ci-dessous Veuillez patienter... diff --git a/Flow.Launcher/Languages/he.xaml b/Flow.Launcher/Languages/he.xaml index f3c9bb307..c912052f1 100644 --- a/Flow.Launcher/Languages/he.xaml +++ b/Flow.Launcher/Languages/he.xaml @@ -2,9 +2,9 @@ - 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} - Click no if it's already installed, and you will be prompted to select the folder that contains the {1} executable + אם זה כבר מותקן, לחץ על 'לא' ותתבקש לבחור את התיקיה המכילה את קובץ ההפעלה {1} אנא בחר את קובץ ההפעלה {0} לא ניתן להגדיר נתיב הפעלה {0}, אנא נסה שוב בהגדרות Flow (גלול עד למטה). @@ -13,13 +13,14 @@ רישום מקש הקיצור "{0}" נכשל. ייתכן שמקש הקיצור נמצא בשימוש על ידי תוכנה אחרת. שנה למקש קיצור אחר, או צא מהתוכנה האחרת. + ביטול הרישום של מקש קיצור "{0}" נכשל. אנא נסה שוב או עיין ביומן הרישום לפרטים נוספים Flow Launcher לא ניתן היה להפעיל את {0} פורמט קובץ תוסף Flow Launcher לא חוקי הגדר כגבוה ביותר בשאילתה זו בטל העלאה בשאילתה זו בצע שאילתה: {0} - Last execution time: {0} + זמן ביצוע אחרון: {0} פתח הגדרות אודות @@ -28,15 +29,15 @@ העתק גזור הדבק - Undo + בטל בחר הכל קובץ תיקייה טקסט מצב משחק השהה את השימוש במקשי קיצור. - Position Reset - Reset search window position + איפוס מיקום + אפס את מיקום חלון החיפוש הגדרות @@ -44,6 +45,8 @@ מצב נייד אחסן את כל ההגדרות ונתוני המשתמש בתיקייה אחת (שימושי בשימוש עם כוננים נשלפים או שירותי ענן). הפעל את Flow Launcher בעת הפעלת Window + השתמש במשימת כניסה במקום בכניסה בעת האתחול, לחוויית הפעלה מהירה יותר + לאחר הסרת ההתקנה, עליך להסיר ידנית משימה זו (Flow.Launcher Startup) דרך מתזמן המשימות שגיאה בהגדרת ההפעלה בעת הפעלת windows הסתר את Flow Launcher כאשר הוא אינו החלון הפעיל אל תציג התראות על גרסה חדשה @@ -60,179 +63,177 @@ ימין עליון Custom Position שפה - Last Query Style - Show/Hide previous results when Flow Launcher is reactivated. - Preserve Last Query - Select last Query - Empty last Query - Preserve Last Action Keyword - Select Last Action Keyword - Fixed Window Height - The window height is not adjustable by dragging. - Maximum results shown - You can also quickly adjust this by using CTRL+Plus and CTRL+Minus. - Ignore hotkeys in fullscreen mode - Disable Flow Launcher activation when a full screen application is active (Recommended for games). - Default File Manager - Select the file manager to use when opening the folder. - Default Web Browser - Setting for New Tab, New Window, Private Mode. - Python Path - Node.js Path - Please select the Node.js executable - Please select pythonw.exe - Always Start Typing in English Mode - Temporarily change your input method to English mode when activating Flow. + סגנון שאילתה אחרונה + הצג/הסתר תוצאות קודמות כאשר Flow Launcher מופעל מחדש. + שמור את השאילתה האחרונה + בחר שאילתא אחרונה + נקה שאילתא אחרונה + שמור מילת מפתח לפעולה האחרונה + בחר מילת מפתח לפעולה האחרונה + גובה חלון קבוע + גובה החלון אינו ניתן להתאמה באמצעות גרירה. + כמות תוצאות מרבית + ניתן גם להתאים במהירות באמצעות CTRL+פלוס ו-CTRL+מינוס. + התעלם מקיצורי מקשים במצב מסך מלא + השבת את הפעלת Flow Launcher כאשר יישום מסך מלא פעיל (מומלץ למשחקים). + מנהל הקבצים המוגדר כברירת מחדל + בחר את מנהל הקבצים לשימוש בעת פתיחת תיקיה. + דפדפן ברירת מחדל + הגדרה ללשונית חדשה, חלון חדש, מצב פרטי. + נתיב Python + נתיב Node.js + בחר את קובץ ההפעלה של Node.js + בחר את pythonw.exe + תמיד התחל להקליד במצב אנגלית + שנה זמנית את שיטת הקלט שלך למצב אנגלית בעת הפעלת Flow. עדכון אוטומטי בחר - Hide Flow Launcher on startup - Flow Launcher search window is hidden in the tray after starting up. - Hide tray icon - When the icon is hidden from the tray, the Settings menu can be opened by right-clicking on the search window. - Query Search Precision - Changes minimum match score required for results. + הסתר את Flow Launcher בהפעלת המחשב + חלון החיפוש של Flow Launcher מוסתר במגש לאחר ההפעלה. + הסתר אייקון מגש + כאשר האייקון מוסתר מהמגש, ניתן לפתוח את תפריט ההגדרות על ידי לחיצה ימנית על חלון החיפוש. + דיוק חיפוש שאילתה + משנה את ציון ההתאמה המינימלי הנדרש לתוצאות. ללא נמוך Regular Search with Pinyin Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese. - Always Preview - Always open preview panel when Flow activates. Press {0} to toggle preview. - Shadow effect is not allowed while current theme has blur effect enabled + הצג תמיד תצוגה מקדימה + פתח תמיד את לוח התצוגה המקדימה כאשר Flow מופעל. הקש על {0} כדי להחליף את התצוגה המקדימה. + לא ניתן להחיל אפקט צל כאשר העיצוב הנוכחי מוגדר לאפקט טשטוש - Search Plugin - Ctrl+F to search plugins - No results found + חפש תוסף + Ctrl+F לחיפוש תוסף + לא נמצאו תוצאות Please try a different search. - Plugin + תוסף תוספים מצא תוספים נוספים - On - Off - Action keyword Setting - Action keyword - Current action keyword - New action keyword - Change Action Keywords - Current Priority - New Priority - Priority - Change Plugin Results Priority - Plugin Directory + פועל + כבוי + הגדרת מילת מפתח לפעולה + מילת מפתח לפעולה + מילת מפתח נוכחית לפעולה + מילת מפתח חדשה לפעולה + שנה מילות מפתח לפעולה + עדיפות נוכחית + עדיפות חדשה + עדיפות + שנה עדיפות תוצאות תוסף + ספריית תוספים מאת - Init time: - Query time: + זמן פתיחה: + זמן שאילתא: גרסה אתר הסר התקנה - + נכשל בהסרת הגדרות התוסף + תוספים: {0} - נכשל בהסרת קבצי הגדרות התוסף, יש להסירם ידנית חנות תוספים שחרור חדש - Recently Updated + עודכן לאחרונה תוספים מותקן רענן התקן הסר התקנה עדכון - Plugin already installed + התוסף כבר מותקן גרסה חדשה - This plugin has been updated within the last 7 days - New Update is Available - - + תוסף זה עודכן במהלך 7 הימים האחרונים + עדכון חדש זמין ערכת נושא - Appearance + מראה גלריית ערכות נושא - How to create a theme - Hi There - Explorer - Search for files, folders and file contents - WebSearch + איך ליצור ערכת נושא + שלום + סייר + חפש קבצים, תיקיות ובתוכן הקבצים + חיפוש באינטרנט Search the web with different search engine support - Program - Launch programs as admin or a different user + תוכנה + הפעל תוכנות כמנהל או כמשתמש אחר ProcessKiller - Terminate unwanted processes - Search Bar Height - Item Height - Query Box Font - Result Title Font - Result Subtitle Font + הפסקת תהליכים לא רצויים + גובה סרגל החיפוש + גובה פריט + גופן תיבת שאילתות + גופן הכותרת לתוצאה + גופן כותרת המשנה לתוצאה אפס - Customize - Window Mode - Opacity - Theme {0} not exists, fallback to default theme - Fail to load theme {0}, fallback to default theme - Theme Folder - Open Theme Folder - Color Scheme - System Default + התאם אישית + מצב חלון + שקיפות + ערכת הנושא {0} אינה קיימת, חוזר לערכת ברירת המחדל + נכשל בטעינת העיצוב {0}, חוזר לערכת ברירת המחדל + תיקיית ערכת נושא + פתח תיקיית ערכת נושא + ערכת צבעים + ברירת המחדל של המערכת בהיר כהה - Sound Effect - Play a small sound when the search window opens - Sound Effect Volume - Adjust the volume of the sound effect - Windows Media Player is unavailable and is required for Flow's volume adjustment. Please check your installation if you need to adjust volume. - Animation - Use Animation in UI - Animation Speed - The speed of the UI animation - Slow - Medium - Fast - Custom - Clock - Date - This theme supports two(light/dark) modes. - This theme supports Blur Transparent Background. - + אפקט צליל + השמע צליל קטן כאשר חלון החיפוש נפתח + עוצמת אפקט הקול + התאם את עוצמת אפקט הקול + Windows Media Player אינו זמין, והוא נדרש להתאמת עוצמת הקול של Flow. אנא בדוק את ההתקנה שלך אם אתה צריך להתאים את עוצמת הקול. + אנימציה + השתמש באנימציה בממשק המשתמש + מהירות אנימציה + מהירות האנימציה של ממשק המשתמש + איטי + בינוני + מהיר + מותאם אישית + שעון + תאריך + ערכת נושא זאת תומך בשני מצבים (בהיר/כהה). + ערכת נושא זו תומכת בטשטוש רקע שקוף. מקש קיצור מקשי קיצור פתח את Flow Launcher - Enter shortcut to show/hide Flow Launcher. - Toggle Preview - Enter shortcut to show/hide preview in search window. - Hotkey Presets - List of currently registered hotkeys - Open Result Modifier Key - Select a modifier key to open selected result via keyboard. + הזן קיצור דרך להצגה/הסתרה של Flow Launcher. + הצג/הסתר תצוגה מקדימה + הזן קיצור דרך להצגה/הסתרה של התצוגה המקדימה בחלון החיפוש. + קיצורי דרך מוגדרים + רשימת קיצורי הדרך הרשומים כעת + מקש משני לפתיחת תוצאה + בחר מקש משני לפתיחת התוצאה שנבחרה דרך המקלדת. הצג מקש קיצור - Show result selection hotkey with results. - Auto Complete - Runs autocomplete for the selected items. - Select Next Item - Select Previous Item + הצג מקש קיצור לבחירת תוצאה עם התוצאות. + השלמה אוטומטית + מבצע השלמה אוטומטית לפריטים שנבחרו. + בחר את הפריט הבא + בחר את הפריט הקודם הדף הבא הדף הקודם - Cycle Previous Query - Cycle Next Query - Open Context Menu - Open Native Context Menu - Open Setting Window + עבור לשאילתה הקודמת + עבור לשאילתה הבאה + פתח תפריט הקשר + פתח תפריט הקשר מקומי + פתח חלון הגדרות העתק את נתיב הקובץ - Toggle Game Mode - Toggle History - Open Containing Folder + הפעל או כבה מצב משחק + הפעל או כבה היסטוריה + פתח תיקייה מכילה הרץ כמנהל - Refresh Search Results - Reload Plugins Data - Quick Adjust Window Width - Quick Adjust Window Height - Use when require plugins to reload and update their existing data. - You can add one more hotkey for this function. - Custom Query Hotkeys - Custom Query Shortcuts - Built-in Shortcuts + רענן תוצאות חיפוש + טען מחדש נתוני תוספים + כוונון מהיר של רוחב החלון + כוונון מהיר של גובה החלון + השתמש כאשר יש צורך בטעינה מחדש של תוספים ובעדכון הנתונים שלהם. + באפשרותך להוסיף מקש קיצור נוסף לפעולה זו. + מקשי קיצור לשאילתות מותאמות אישית + קיצורי דרך לשאילתות מותאמות אישית + קיצורי דרך מובנים שאילתה קיצור דרך הרחבה @@ -242,33 +243,33 @@ הוסף ללא אנא בחר פריט - Are you sure you want to delete {0} plugin hotkey? - Are you sure you want to delete shortcut: {0} with expansion {1}? - Get text from clipboard. - Get path from active explorer. - Query window shadow effect - Shadow effect has a substantial usage of GPU. Not recommended if your computer performance is limited. - Window Width Size - You can also quickly adjust this by using Ctrl+[ and Ctrl+]. - Use Segoe Fluent Icons - Use Segoe Fluent Icons for query results where supported - Press Key + האם אתה בטוח שברצונך למחוק את מקש הקיצור של התוסף {0}? + האם אתה בטוח שברצונך למחוק את הקיצור: {0} עם ההרחבה {1}? + קבל טקסט מהלוח. + קבל נתיב מסייר הקבצים הפעיל. + אפקט צל לחלון השאילתה + לאפקט הצל יש שימוש ניכר ב-GPU. לא מומלץ אם ביצועי המחשב שלך מוגבלים. + רוחב החלון + ניתן גם להתאים במהירות באמצעות Ctrl+[ ו-Ctrl+] + השתמש ב-Segoe Fluent Icons + השתמש ב-Segoe Fluent Icons לתוצאות חיפוש כאשר נתמך + הקש על מקש HTTP Proxy - Enable HTTP Proxy - HTTP Server + הפעל HTTP Proxy + שרת HTTP Port שם משתמש סיסמא - Test Proxy + בדוק Proxy שמור - Server field can't be empty - Port field can't be empty - Invalid port format - Proxy configuration saved successfully - Proxy configured correctly - Proxy connection failed + שדה השרת לא יכול להיות ריק + שדה ה-Port לא יכול להיות ריק + פורמט ה-Port לא תקין + תצורת ה-Proxy נשמרה בהצלחה + ה-Proxy הוגדר בהצלחה + החיבור ל- Proxy נכשל אודות @@ -277,182 +278,189 @@ תיעוד גרסה סמלים - You have activated Flow Launcher {0} times - Check for Updates - Become A Sponsor - New version {0} is available, would you like to restart Flow Launcher to use the update? + הפעלת את Flow Launcher {0} פעמים + בדוק עדכונים + תן חסות + גרסה חדשה {0} זמינה, האם ברצונך להפעיל מחדש את Flow Launcher כדי להשתמש בעדכון? בדיקת העדכונים נכשלה, אנא בדוק את הגדרות החיבור ואת הגדרות ה-Proxy שלך לכתובת api.github.com. - Download updates failed, please check your connection and proxy settings to github-cloud.s3.amazonaws.com, - or go to https://github.com/Flow-Launcher/Flow.Launcher/releases to download updates manually. + הורדת העדכונים נכשלה, אנא בדוק את הגדרות החיבור ואת ה-proxy שלך אל github-cloud.s3.amazonaws.com, + או עבור אל https://github.com/Flow-Launcher/Flow.Launcher/releases כדי להוריד עדכונים באופן ידני. - Release Notes - Usage Tips + הערות שחרור + טיפים לשימוש DevTools - Setting Folder - Log Folder - Clear Logs - Are you sure you want to delete all logs? + תיקיית ההגדרות + תיקיית יומני רישום + נקה יומני רישום + האם אתה בטוח שברצונך למחוק את כל היומנים? אשף - User Data Location - 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. - Open Folder + מיקום נתוני משתמש + הגדרות המשתמש והתוספים המותקנים נשמרים בתיקיית נתוני המשתמש. מיקום זה עשוי להשתנות אם התוכנה במצב נייד. + פתח תיקיה + Log Level + Debug + Info - Select File Manager - Please specify the file location of the file manager you using and add arguments as required. The "%d" represents the directory path to open for, used by the Arg for Folder field and for commands opening specific directories. The "%f" represents the file path to open for, used by the Arg for File field and for commands opening specific files. - For example, if the file manager uses a command such as "totalcmd.exe /A c:\windows" to open the c:\windows directory, the File Manager Path will be totalcmd.exe, and the Arg For Folder will be /A "%d". Certain file managers like QTTabBar may just require a path to be supplied, in this instance use "%d" as the File Manager Path and leave the rest of the fileds blank. + בחר מנהל קבצים + אנא ציין את מיקום הקובץ של מנהל הקבצים שבו אתה משתמש והוסף ארגומנטים כנדרש. "%d" מייצג את נתיב התיקייה שיש לפתוח, ומשמש בשדה ארגומנט לתיקייה ובפקודות לפתיחת תיקיות מסוימות. "%f" מייצג את נתיב הקובץ שיש לפתוח, ומשמש בשדה ארגומנט לקובץ ובפקודות לפתיחת קבצים מסוימים. + לדוגמה, אם מנהל הקבצים משתמש בפקודה כגון "totalcmd.exe /A c:\windows" כדי לפתוח את התיקייה c:\windows, נתיב מנהל הקבצים יהיה totalcmd.exe, והארגומנט לתיקייה יהיה /A "%d". מנהלי קבצים מסוימים, כגון QTTabBar, עשויים לדרוש רק ציון נתיב, במקרה כזה השתמש ב-"%d" כנתיב מנהל הקבצים והשאר את שאר השדות ריקים. מנהל קבצים שם פרופיל - File Manager Path - Arg For Folder - Arg For File + נתיב מנהל קבצים + ארגומנט לתיקייה + ארגומנט לקובץ - Default Web Browser - The default setting follows the OS default browser setting. If specified separately, flow uses that browser. - Browser - Browser Name - Browser Path + דפדפן ברירת מחדל + ההגדרה המוגדרת כברירת מחדל עוקבת אחר הדפדפן המוגדר כברירת מחדל במערכת ההפעלה. אם צוין דפדפן אחר, Flow Launcher ישתמש בו. + דפדפן + שם דפדפן + נתיב דפדפן חלון חדש כרטיסייה חדשה מצב פרטיות - Change Priority - Greater the number, the higher the result will be ranked. Try setting it as 5. If you want the results to be lower than any other plugin's, provide a negative number - Please provide an valid integer for Priority! + שנה עדיפות + ככל שהמספר גבוה יותר, התוצאה תדורג גבוה יותר ברשימת החיפוש. נסה להגדיר את הערך ל-5. אם ברצונך שהתוצאות יופיעו אחרי תוצאות של כל תוסף אחר, הזן מספר שלילי. + אנא הזן מספר שלם תקף עבור העדיפות! - Old Action Keyword - New Action Keyword + מילת פעולה ישנה + מילת פעולה חדשה ביטול בוצע - Can't find specified plugin - New Action Keyword can't be empty - This new Action Keyword is already assigned to another plugin, please choose a different one + לא ניתן למצוא את התוסף שצוין + מילת הפעולה החדשה לא יכולה להיות ריקה + מילת הפעולה החדשה כבר מוקצה לתוסף אחר, אנא בחר אחת שונה הצליח הושלם בהצלחה - Enter the action keyword you like to use to start the plugin. Use * if you don't want to specify any, and the plugin will be triggered without any action keywords. + הזן את מילת הפעולה שברצונך להשתמש בה להפעלת התוסף. השתמש ב-* אם אינך רוצה לציין מילה כלשהי, והתוסף יופעל ללא צורך במילת פעולה. - Custom Query Hotkey - Press a custom hotkey to open Flow Launcher and input the specified query automatically. + מקש קיצור לשאילתה מותאמת אישית + הקש על מקש קיצור מותאם אישית כדי לפתוח את Flow Launcher ולהזין את השאילתה שצוינה באופן אוטומטי. תצוגה מקדימה - Hotkey is unavailable, please select a new hotkey - Invalid plugin hotkey + מקש הקיצור אינו זמין, אנא בחר מקש קיצור חדש + מקש קיצור לא חוקי לתוסף עדכון - Binding Hotkey - Current hotkey is unavailable. - This hotkey is reserved for "{0}" and can't be used. Please choose another hotkey. - This hotkey is already in use by "{0}". If you press "Overwrite", it will be removed from "{0}". - Press the keys you want to use for this function. + שיוך מקש קיצור + מקש הקיצור הנוכחי אינו זמין. + מקש קיצור זה שמור עבור "{0}" ואינו ניתן לשימוש. אנא בחר מקש קיצור אחר. + מקש קיצור זה כבר נמצא בשימוש על ידי "{0}". אם תלחץ על "החלף", הוא יוסר מ-"{0}". + הקש על המקשים שברצונך להשתמש בהם עבור פעולה זו. - Custom Query Shortcut - Enter a shortcut that automatically expands to the specified query. - A shortcut is expanded when it exactly matches the query. + קיצור דרך לשאילתה מותאמת אישית + הזן קיצור דרך שיוחלף אוטומטית בשאילתה שצוינה. + קיצור דרך מוחלף כאשר הוא תואם בדיוק לשאילתה. -If you add an '@' prefix while inputting a shortcut, it matches any position in the query. Builtin shortcuts match any position in a query. +אם תוסיף תחילית '@' בעת הזנת קיצור דרך, הוא יתאים לכל מיקום בשאילתה. קיצורי דרך מובנים מתאימים לכל מיקום בשאילתה. - Shortcut already exists, please enter a new Shortcut or edit the existing one. - Shortcut and/or its expansion is empty. + קיצור דרך כבר קיים, אנא הזן קיצור דרך חדש או ערוך את הקיים. + קיצור הדרך ו/או ההרחבה שלו ריקים. שמור - Overwrite + שכתב ביטול אפס מחק אישור כן לא + רקע גרסה זמן - Please tell us how application crashed so we can fix it + אנא תאר כיצד האפליקציה קרסה כדי שנוכל לתקן זאת שלח דיווח ביטול כללי חריגים - Exception Type + סוג החריגה מקור - Stack Trace + מעקב מחסנית שולח - Report sent successfully - Failed to send report - Flow Launcher got an error + הדוח נשלח בהצלחה + שליחת הדוח נכשלה + אירעה שגיאה ב-Flow Launcher + אנא פתח דיווח חדש ב + 1. העלה קובץ יומן: {0} + 2. העתק את הודעת החריגה למטה אנא המתן... - Checking for new update - You already have the latest Flow Launcher version + בודק עדכון חדש + כבר מותקנת אצלך הגרסה העדכנית של Flow Launcher עדכון נמצא מעדכן... - Flow Launcher was not able to move your user profile data to the new update version. - Please manually move your profile data folder from {0} to {1} + Flow Launcher לא הצליח להעביר את נתוני פרופיל המשתמש שלך לגרסת העדכון החדשה. + אנא העבר ידנית את תיקיית נתוני הפרופיל שלך מ-{0} אל-{1} עדכון חדש - New Flow Launcher release {0} is now available - An error occurred while trying to install software updates + גרסה חדשה {0} של Flow Launcher זמינה כעת + אירעה שגיאה במהלך ניסיון התקנת עדכוני התוכנה עדכון ביטול העדכון נכשל - Check your connection and try updating proxy settings to github-cloud.s3.amazonaws.com. - This upgrade will restart Flow Launcher - Following files will be updated + בדוק את החיבור שלך ונסה לעדכן את הגדרות הפרוקסי ל-github-cloud.s3.amazonaws.com. + שדרוג זה יאתחל את Flow Launcher + הקבצים הבאים יעודכנו עדכן קבצים - Update description + עדכן תיאור דלג - Welcome to Flow Launcher - Hello, this is the first time you are running Flow Launcher! - Before starting, this wizard will assist in setting up Flow Launcher. You can skip this if you wish. Please choose a language - Search and run all files and applications on your PC - Search everything from applications, files, bookmarks, YouTube, Twitter and more. All from the comfort of your keyboard without ever touching the mouse. - Flow Launcher starts with the hotkey below, go ahead and try it out now. To change it, click on the input and press the desired hotkey on the keyboard. + ברוך הבא אל Flow Launcher + שלום, זו הפעם הראשונה שבה Flow Launcher מופעל! + לפני שתתחיל, אשף זה יסייע בהגדרת Flow Launcher. אתה יכול לדלג על שלב זה. בחר שפה + חפש והפעל את כל הקבצים והיישומים במחשב שלך + חפש הכל מיישומים, קבצים, סימניות, YouTube, ועד טוויטר ועוד. הכל מהנוחות של המקלדת מבלי לגעת בעכבר. + ניתן להפעיל את Flow Launcherבקיצור המקש שלמטה, קדימה נסה אותו כעת! כדי לשנות אותו, לחץ על מקש הקיצור הרצוי במקלדת. מקשי קיצור - Action Keyword and Commands - Search the web, launch applications or run various functions through Flow Launcher plugins. Certain functions start with an action keyword, and if necessary, they can be used without action keywords. Try the queries below in Flow Launcher. - Let's Start Flow Launcher - Finished. Enjoy Flow Launcher. Don't forget the hotkey to start :) + מילת מפתח ופקודות פעולה + חפש באינטרנט, הפעל אפליקציות או הפעל פונקציות שונות באמצעות תוספים של Flow Launcher. פונקציות מסוימות מתחילות במילת מפתח פעולה, ובמידת הצורך, ניתן להשתמש בהן ללא מילות מפתח פעולה. נסה את השאילתות למטה ב-Flow Launcher. + בואו נתחיל עם Flow Launcher + סיימנו. תהנה מ-Flow Launcher. אל תשכח את מקש הקיצור כדי להתחיל :) - Back / Context Menu - Item Navigation - Open Context Menu - Open Containing Folder - Run as Admin / Open Folder in Default File Manager - Query History - Back to Result in Context Menu - Autocomplete - Open / Run Selected Item - Open Setting Window - Reload Plugin Data + חזור / תפריט הקשר + ניווט בין פריטים + פתח תפריט הקשר + פתח תיקייה מכילה + הפעל כמנהל / פתח תיקייה במנהל הקבצים ברירת מחדל + היסטוריית שאילתות + חזור לתוצאה בתפריט הקשר + השלמה אוטומטית + פתח / הפעל פריט נבחר + פתח חלון הגדרות + טען מחדש נתוני תוסף - Select first result - Select last result - Run current query again - Open result - Open result #{0} + בחר בתוצאה הראשונה + בחר בתוצאה האחרונה + הפעל מחדש את השאילתה הנוכחית + פתח תוצאה + פתח תוצאה #{0} - Weather - Weather in Google Result + מזג אוויר + מזג אוויר מתוצאות Google > ping 8.8.8.8 - Shell Command + פקודת Shell s Bluetooth - Bluetooth in Windows Settings + Bluetooth בהגדרות Windows sn - Sticky Notes + פתקים נדבקים - File Size - Created - Last Modified + גודל קובץ + נוצר + תאריך שינוי אחרון diff --git a/Flow.Launcher/Languages/it.xaml b/Flow.Launcher/Languages/it.xaml index 372f4630e..e4d4d3e2c 100644 --- a/Flow.Launcher/Languages/it.xaml +++ b/Flow.Launcher/Languages/it.xaml @@ -13,6 +13,7 @@ Registrazione del tasto di scelta rapida "{0}" 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. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Avvio fallito {0} Formato file plugin non valido @@ -44,6 +45,8 @@ Modalità portatile Memorizzare tutte le impostazioni e i dati dell'utente in un'unica cartella (utile se utilizzato con unità rimovibili o servizi cloud). Avvia Wow all'avvio di Windows + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Errore nell'impostazione del lancio all'avvio Nascondi Flow Launcher quando perde il focus Non mostrare le notifiche per una nuova versione @@ -126,7 +129,8 @@ Versione Sito Web Disinstalla - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Negozio dei Plugin @@ -143,8 +147,6 @@ Questo plugin è stato aggiornato negli ultimi 7 giorni Nuovo aggiornamento disponibile - - Tema Aspetto @@ -194,7 +196,6 @@ Questo tema supporta due (chiaro/scuro) varianti. Questo tema supporta lo sfondo trasparente blurrato. - Tasti scelta rapida Tasti scelta rapida @@ -297,6 +298,9 @@ Posizione Dati Utente Le impostazioni dell'utente e i plugin installati sono salvati nella cartella dati utente. Questa posizione può variare se è in modalità portable o no. Apri Cartella + Log Level + Debug + Info Seleziona Gestore File @@ -367,6 +371,7 @@ Se si aggiunge un prefisso '@' mentre si inserisce una scorciatoia, corrisponde OK No + Sfondo Versione @@ -383,6 +388,9 @@ Se si aggiunge un prefisso '@' mentre si inserisce una scorciatoia, corrisponde Rapporto inviato correttamente Invio rapporto fallito Flow Launcher ha riportato un errore + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Attendere prego... diff --git a/Flow.Launcher/Languages/ja.xaml b/Flow.Launcher/Languages/ja.xaml index e7671367a..28c334667 100644 --- a/Flow.Launcher/Languages/ja.xaml +++ b/Flow.Launcher/Languages/ja.xaml @@ -13,6 +13,7 @@ ホットキー "{0}" の登録に失敗しました。このホットキーは別のプログラムで使用されている可能性があります。別のホットキーに変更するか、このホットキーを使用しているプログラムを終了してください。 + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher {0}の起動に失敗しました Flow Launcherプラグインの形式が正しくありません @@ -44,6 +45,8 @@ ポータブルモード すべての設定とユーザーデータを1つのフォルダに保存します(リムーバブルドライブやクラウドサービスで使用する場合に便利です)。 スタートアップ時にFlow Launcherを起動する + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Error setting launch on startup フォーカスを失った時にFlow Launcherを隠す 最新版が入手可能であっても、アップグレードメッセージを表示しない @@ -126,7 +129,8 @@ バージョン ウェブサイト アンインストール - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually プラグインストア @@ -143,8 +147,6 @@ This plugin has been updated within the last 7 days 新しいアップデートが利用可能です - - テーマ 外観 @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - ホットキー ホットキー @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Select File Manager @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in Update Yes No + バックグラウンド バージョン @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in クラッシュレポートの送信に成功しました クラッシュレポートの送信に失敗しました Flow Launcherにエラーが発生しました + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Please wait... diff --git a/Flow.Launcher/Languages/ko.xaml b/Flow.Launcher/Languages/ko.xaml index 67bf2490a..d9da26bcb 100644 --- a/Flow.Launcher/Languages/ko.xaml +++ b/Flow.Launcher/Languages/ko.xaml @@ -13,6 +13,7 @@ Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher {0}을 실행할 수 없습니다. Flow Launcher 플러그인 파일 형식이 유효하지 않습니다. @@ -44,6 +45,8 @@ 포터블 모드 모든 설정이 폴더안에 들어갑니다. USB 드라이브나 클라우드로 사용 가능합니다. 시스템 시작 시 Flow Launcher 실행 + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Error setting launch on startup 포커스 잃으면 Flow Launcher 숨김 새 버전 알림 끄기 @@ -126,7 +129,8 @@ 버전 웹사이트 제거 - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually 플러그인 스토어 @@ -143,8 +147,6 @@ 이 플러그인은 최근 7일 사이 업데이트 되었습니다 새 업데이트 설치 가능 - - 테마 외관 @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - 단축키 단축키 @@ -297,6 +298,9 @@ 사용자 데이터 위치 사용자 설정과 설치된 플러그인은 사용자 데이터 폴더에 저장됩니다. 이 위치는 휴대용 모드 활성화 여부에 따라 달라질 수 있습니다. 폴더 열기 + Log Level + Debug + Info 파일관리자 선택 @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in 확인 Yes No + 배경 버전 @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in 보고서를 정상적으로 보냈습니다. 보고서를 보내지 못했습니다. Flow Launcher에 문제가 발생했습니다. + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message 잠시 기다려주세요... diff --git a/Flow.Launcher/Languages/nb.xaml b/Flow.Launcher/Languages/nb.xaml index e3b8e36da..a37a204e1 100644 --- a/Flow.Launcher/Languages/nb.xaml +++ b/Flow.Launcher/Languages/nb.xaml @@ -13,6 +13,7 @@ Kan ikke registrere hurtigtasten "{0}". Hurtigtasten kan være i bruk av et annet program. Endre til en annen hurtigtast, eller avslutt et annet program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Kunne ikke starte {0} Ugyldig Flow Launcher programtillegg filformat @@ -44,6 +45,8 @@ Portabel modus Lagre alle innstillinger og brukerdata i en mappe (nyttig når man bruker flyttbare stasjoner eller skytjenester). Start Flow Launcher ved systemoppstart + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Feil ved å sette kjør ved oppstart Skjul Flow Launcher når fokus forsvinner Ikke vis varsler om nye versjoner @@ -126,7 +129,8 @@ Versjon Nettsted Avinstaller - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Programtillegg butikk @@ -143,8 +147,6 @@ Dette programtillegget er oppdatert i løpet av de siste 7 dagene Ny oppdatering er tilgjengelig - - Drakt Utseende @@ -194,7 +196,6 @@ Dette temaet støtter to (lys/mørk) moduser. Dette temaet støtter uskarp gjennomsiktig bakgrunn. - Hurtigtast Hurtigtaster @@ -297,6 +298,9 @@ Plassering av brukerdata Brukerinnstillinger og installerte programtillegg lagres i brukerens datamappe. Denne plasseringen kan variere avhengig av om den er i portabel modus eller ikke. Åpne mappe + Log Level + Debug + Info Velg filbehandler @@ -367,6 +371,7 @@ Hvis du legger til et @-prefiks mens du legger inn en snarvei, samsvarer det med OK Ja Nei + Bakgrunn Versjon @@ -383,6 +388,9 @@ Hvis du legger til et @-prefiks mens du legger inn en snarvei, samsvarer det med Rapporten ble sendt Kunne ikke sende rapport Flow Launcher fikk en feil + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Vennligst vent... diff --git a/Flow.Launcher/Languages/nl.xaml b/Flow.Launcher/Languages/nl.xaml index db440c3a0..64adccd94 100644 --- a/Flow.Launcher/Languages/nl.xaml +++ b/Flow.Launcher/Languages/nl.xaml @@ -13,6 +13,7 @@ Sneltoets "{0}" registreren. De sneltoets kan in gebruik zijn door een ander programma. Verander naar een andere sneltoets of sluit een ander programma. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Kan {0} niet starten Ongeldige Flow Launcher plugin bestandsextensie @@ -44,6 +45,8 @@ Draagbare Modus Alle instellingen en gebruikersgegevens opslaan in één map (Nuttig bij het gebruik van verwijderbare schijven of cloud services). Start Flow Launcher als systeem opstart + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Fout bij het instellen van uitvoeren bij opstarten Verberg Flow Launcher als focus verloren is Laat geen nieuwe versie notificaties zien @@ -126,7 +129,8 @@ Versie Website Verwijderen - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Plugin Winkel @@ -143,8 +147,6 @@ Deze plug-in is in de laatste 7 dagen bijgewerkt Nieuwe update beschikbaar - - Thema Uiterlijk @@ -194,7 +196,6 @@ Dit thema ondersteunt twee (licht/donker) modi. This theme supports Blur Transparent Background. - Sneltoets Sneltoets @@ -297,6 +298,9 @@ Gegevenslocatie van gebruiker 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. Map openen + Log Level + Debug + Info Bestandsbeheerder selecteren @@ -367,6 +371,7 @@ Als u een '@' voorvoegsel toevoegt tijdens het invoeren van een snelkoppeling, m OK Yes No + Background Versie @@ -383,6 +388,9 @@ Als u een '@' voorvoegsel toevoegt tijdens het invoeren van een snelkoppeling, m Rapport succesvol verzonden Verzenden van rapport mislukt Flow Launcher heeft een error + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Please wait... diff --git a/Flow.Launcher/Languages/pl.xaml b/Flow.Launcher/Languages/pl.xaml index df7c9d2d4..06204395c 100644 --- a/Flow.Launcher/Languages/pl.xaml +++ b/Flow.Launcher/Languages/pl.xaml @@ -6,13 +6,14 @@ {2}{2} Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy poproszony o wybranie folderu zawierającego plik wykonywalny {1} - Proszę wybrać plik wykonywalny {0} - Nie można ustawić ścieżki pliku wykonywalnego {0}, proszę spróbować z poziomu ustawień Flow (przewiń na dół strony). + Wybierz plik wykonywalny {0} + Nie można ustawić ścieżki do pliku wykonywalnego {0}. Spróbuj ponownie w ustawieniach Flow (przewiń na sam dół). Nie udało się zainicjować wtyczek - Wtyczki: {0} - nie udało się załadować i zostaną wyłączone, proszę skontaktować się z twórcą wtyczki w celu uzyskania pomocy + Wtyczki: {0} – nie udało się ich wczytać i zostaną wyłączone. Skontaktuj się z twórcą wtyczki, aby uzyskać pomoc - Nie udało się zarejestrować skrótu klawiszowego "{0}". Klucz skrótu może być używany przez inny program. Zmień skrót klawiszowy lub wyjdź z innego programu. + 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. + Nie udało się wyrejestrować skrótu „{0}”. Spróbuj ponownie lub sprawdź szczegóły w dzienniku Flow Launcher Nie udało się uruchomić: {0} Niepoprawny format pliku wtyczki @@ -44,6 +45,8 @@ Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy popros Tryb przenośny Przechowuj wszystkie ustawienia i dane użytkownika w jednym folderze (Przydatne, gdy używane na dyskach wymiennych lub usługach chmurowych). Uruchamiaj Flow Launcher przy starcie systemu + Użyj zadania logowania zamiast wpisu autostartu, aby przyspieszyć uruchamianie + Po odinstalowaniu musisz ręcznie usunąć to zadanie (Flow.Launcher Startup) za pomocą Harmonogramu zadań Błąd uruchamiania ustawień przy starcie Ukryj okno Flow Launcher kiedy przestanie ono być aktywne Nie pokazuj powiadomienia o nowej wersji @@ -65,8 +68,8 @@ Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy popros Zachowaj ostatnie zapytanie Wybierz ostatnie zapytanie Puste ostatnie zapytanie - Preserve Last Action Keyword - Select Last Action Keyword + Zachowaj ostatnie słowo kluczowe akcji + Wybierz ostatnie słowo kluczowe akcji Stała wysokość okna Wysokość okna nie jest regulowana poprzez przeciąganie. Maksymalna liczba wyników @@ -126,7 +129,8 @@ Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy popros Wersja Strona Odinstalowywanie - + Nie udało się usunąć ustawień wtyczki + Wtyczki: {0} – nie udało się usunąć plików ustawień wtyczek, usuń je ręcznie Sklep z wtyczkami @@ -143,8 +147,6 @@ Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy popros Ta wtyczka została zaktualizowana w ciągu ostatnich 7 dni Dostępna jest nowa aktualizacja - - Skórka Wygląd @@ -194,7 +196,6 @@ Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy popros Ten motyw obsługuje dwa tryby (jasny/ciemny). Ten motyw obsługuje rozmyte przezroczyste tło. - Skrót klawiszowy Skrót klawiszowy @@ -297,6 +298,9 @@ Kliknij "nie", jeśli jest już zainstalowany. Zostaniesz wtedy popros Lokalizacja danych użytkownika 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. Otwórz folder + Log Level + Debug + Info Wybierz menedżer plików @@ -367,6 +371,7 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d Aktualizuj Tak Nie + Tło Wersja @@ -383,6 +388,9 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d Raport wysłany pomyślnie Nie udało się wysłać raportu W programie Flow Launcher wystąpił błąd + Otwórz nowe zgłoszenie w + 1. Prześlij plik dziennika: {0} + 2. Skopiuj poniższą wiadomość wyjątku Proszę czekać... @@ -413,8 +421,8 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d Witamy w Flow Launcher Witaj, po raz pierwszy uruchamiasz Flow Launcher! Przed rozpoczęciem ten kreator pomoże skonfigurować Flow Launcher. Jeśli chcesz, możesz to pominąć. Proszę wybierz język - Wyszukiwanie i uruchamianie wszystkich plików i aplikacji na PC - Przeszukuj wszystko, od aplikacji, plików, zakładek, YouTube, X i nie tylko. Wszystko to z komfortowej klawiatury, bez konieczności dotykania myszy. + Wyszukuj i uruchamiaj pliki oraz aplikacje na komputerze + Wyszukuj wszystko – aplikacje, pliki, zakładki, YouTube, Twitter i nie tylko. Wszystko wygodnie z klawiatury, bez używania myszy. 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. Skróty klawiszowe Słowo kluczowe akcji i polecenia @@ -425,7 +433,7 @@ Jeśli dodasz prefiks '@' podczas wprowadzania skrótu, będzie on pasował do d Powrót / Menu kontekstowe - Nawigacja pozycji + Nawigacja po elementach Otwórz menu kontekstowe Otwórz folder zawierający Uruchom jako administrator / Otwórz folder w domyślnym menedżerze plików diff --git a/Flow.Launcher/Languages/pt-br.xaml b/Flow.Launcher/Languages/pt-br.xaml index 4a30ffda4..62293b1a1 100644 --- a/Flow.Launcher/Languages/pt-br.xaml +++ b/Flow.Launcher/Languages/pt-br.xaml @@ -13,6 +13,7 @@ Falha em registrar a tecla de atalho "{0}". A combinação pode estar em uso por outro programa. Mude para uma tecla de atalho diferente, ou encerre o outro programa. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Não foi possível iniciar {0} Formato de plugin Flow Launcher inválido @@ -44,6 +45,8 @@ Modo Portátil 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). Iniciar Flow Launcher com inicialização do sistema + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Erro ao ativar início com o sistema Esconder Flow Launcher quando foco for perdido Não mostrar notificações de novas versões @@ -126,7 +129,8 @@ Versão Site Desinstalar - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Loja de Plugins @@ -143,8 +147,6 @@ Este plugin foi atualizado nos últimos 7 dias Nova Atualização Disponível - - Tema Aparência @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Atalho Atalho @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Selecione o Gerenciador de Arquivos @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in OK Yes No + Plano de fundo Versão @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in Relatório enviado com sucesso Falha ao enviar relatório Flow Launcher apresentou um erro + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Por favor, aguarde... diff --git a/Flow.Launcher/Languages/pt-pt.xaml b/Flow.Launcher/Languages/pt-pt.xaml index 470bf2b4e..bad37f688 100644 --- a/Flow.Launcher/Languages/pt-pt.xaml +++ b/Flow.Launcher/Languages/pt-pt.xaml @@ -2,17 +2,18 @@ - Flow Launcher detetou que tem instalados {0} plugins e que necessitam de {1} para serem executados. Gostaria de descarregar {1}? -{2}{2} -Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicitada a pasta que contém o executável {1}. + Flow Launcher detetou que tem instalou os plugins {0}, que necessitam de {1} para serem executados. Gostaria de descarregar {1}? + {2}{2} + Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicitada a pasta que contém o executável {1}. Por favor, selecione o executável {0} Não foi possível definir o caminho do executável {0}. Experimente definir o caminho nas definições (desloque até ao fundo). Falha ao iniciar os plugins - Plugins: {0} - não foi possível iniciar e serão desativados. Contacte o criador dos plugin para obter ajuda. + Plugin: {0} - não foi possível iniciar e será desativado. Contacte o criador do plugin para obter ajuda. Falha ao registar a tecla de atalho "{0}". A tecla de atalho pode estar a ser usada por outra aplicação. Utilize uma tecla de atalho diferente ou feche o outro programa. + Falha ao cancelar a atribuição da tecla de atalho "{0}". Tente novamente ou consulte o registo para mais detalhes. Flow Launcher Não foi possível iniciar {0} Formato do ficheiro inválido como plugin @@ -44,6 +45,8 @@ Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicit Modo portátil Guardar todas as definições e dados do utilizador numa pasta (indicado se utilizar discos amovíveis ou serviços cloud) Iniciar Flow Launcher ao arrancar o sistema + Utilizar tarefa de arranque em vez de uma entrada de arranque para uma experiência mais rápida + Se desinstalar a aplicação, tem que remover manualmente a tarefa (Flow.Launcher Startup) no agendamento de tarefas Erro ao definir para iniciar ao arrancar Ocultar Flow Launcher ao perder o foco Não notificar acerca de novas versões @@ -126,7 +129,8 @@ Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicit Versão Site Desinstalar - + Falha ao remover as definições do plugin + Plugin: {0} - Falha ao remover o ficheiro de definições do plugin. Experimente remover manualmente. Loja de plugins @@ -143,8 +147,6 @@ Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicit Este plugin foi atualizado nos últimos 7 dias Atualização disponível - - Tema Aparência @@ -194,7 +196,6 @@ Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicit Este tema tem suporte a dois modos (claro/escuro). Este tema tem suporte a fundo transparente desfocado. - Tecla de atalho Teclas de atalho @@ -296,6 +297,9 @@ Clique "Não" se já tiver instalado e, de seguida, ser-lhe-á solicit Localização dos dados do utilizador 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 Abrir pasta + Log Level + Debug + Info Selecione o gestor de ficheiros @@ -366,6 +370,7 @@ Se adicionar o prefixo '@' durante a introdução do atalho, será utilizada qua OK Sim Não + Fundo Versão @@ -382,6 +387,9 @@ Se adicionar o prefixo '@' durante a introdução do atalho, será utilizada qua Relatório enviado com sucesso Falha ao enviar o relatório Ocorreu um erro + Abra um relatório de erro em + 1. Carregue o ficheiro de registos: {0} + 2. Copie a mensagem abaixo Por favor aguarde... diff --git a/Flow.Launcher/Languages/ru.xaml b/Flow.Launcher/Languages/ru.xaml index 1c420100f..a56a770da 100644 --- a/Flow.Launcher/Languages/ru.xaml +++ b/Flow.Launcher/Languages/ru.xaml @@ -13,6 +13,7 @@ Не удалось зарегистрировать сочетание клавиш "{0}". Возможно, оно используется другой программой. Измените сочетание клавиш или закройте другую программу. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Не удалось запустить {0} Недопустимый формат файла плагина Flow Launcher @@ -44,6 +45,8 @@ Портативный режим Храните все настройки и данные пользователя в одной папке (полезно при использовании со съёмными дисками или облачными сервисами). Запускать Flow Launcher при запуске системы + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Ошибка настройки запуска при запуске Скрывать Flow Launcher, если потерян фокуc Не отображать сообщение об обновлении, когда доступна новая версия @@ -126,7 +129,8 @@ Версия Веб-сайт Удалить - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Магазин плагинов @@ -143,8 +147,6 @@ Этот плагин был обновлён за последние 7 дней Доступно новое обновление - - Тема Внешний вид @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Горячая клавиша Горячая клавиша @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Выбор менеджера файлов @@ -367,6 +371,7 @@ OK Yes No + Фон Версия @@ -383,6 +388,9 @@ Отчёт успешно отправлен Не удалось отправить отчёт Произошёл сбой в Flow Launcher + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Пожалуйста, подождите... diff --git a/Flow.Launcher/Languages/sk.xaml b/Flow.Launcher/Languages/sk.xaml index 3db778cc8..332528b2b 100644 --- a/Flow.Launcher/Languages/sk.xaml +++ b/Flow.Launcher/Languages/sk.xaml @@ -13,6 +13,7 @@ Nepodarilo sa zaregistrovať klávesovú skratku "{0}". Klávesová skratka môže byť používaná iným programom. Zmeňte klávesovú skratku na inú alebo ukončite iný program. + Nepodarilo sa registrovať klávesovú skratku "{0}". Skúste to znova alebo si pozrite podrobnosti v denníku Flow Launcher Nepodarilo sa spustiť {0} Neplatný formát súboru pre plugin Flow Launchera @@ -44,6 +45,8 @@ Prenosný režim 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). Spustiť Flow Launcher pri spustení systému + Pre rýchlejšie spustenie použiť úlohu pri prihlásení namiesto položky po spustení + Po odinštalovaní musíte úlohu manuálne odstrániť (Flow.Launcher Startup) cez Plánovač úloh Chybné nastavenie spustenia pri spustení Schovať Flow Launcher po strate fokusu Nezobrazovať upozornenia na novú verziu @@ -126,7 +129,8 @@ Verzia Webstránka Odinštalovať - + Nepodarilo sa odstrániť nastavenia pluginu + Pluginy: {0} – Nepodarilo sa odstrániť súbory s nastaveniami pluginu, odstráňte ich manuálne Repozitár pluginov @@ -143,8 +147,6 @@ Tento plugin bol aktualizovaný za posledných 7 dní K dispozícii je nová aktualizácia - - Motív Vzhľad @@ -194,7 +196,6 @@ Tento motív podporuje 2 režimy (svetlý/tmavý). Tento motív podporuje rozostrenie priehľadného pozadia. - Klávesové skratky Klávesové skratky @@ -297,6 +298,9 @@ Cesta k používateľskému priečinku 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. Otvoriť priečinok + Úroveň logovania + Debug + Info Vyberte správcu súborov @@ -367,6 +371,7 @@ Ak pri zadávaní skratky pred ňu pridáte "@", bude sa zhodovať s Aktualizovať Áno Nie + Pozadie Verzia @@ -383,6 +388,9 @@ Ak pri zadávaní skratky pred ňu pridáte "@", bude sa zhodovať s Hlásenie bolo úspešne odoslané Odoslanie hlásenia zlyhalo Flow Launcher zaznamenal chybu + Prosím, otvorte nové issue na + 1. Nahrajte súbor logu: {0} + 2. Skopírujte nižšie uvedenú správu o výnimke Čakajte, prosím... diff --git a/Flow.Launcher/Languages/sr.xaml b/Flow.Launcher/Languages/sr.xaml index fc5a1e2fc..b244c4660 100644 --- a/Flow.Launcher/Languages/sr.xaml +++ b/Flow.Launcher/Languages/sr.xaml @@ -13,6 +13,7 @@ Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Neuspešno pokretanje {0} Nepravilni Flow Launcher plugin format datoteke @@ -44,6 +45,8 @@ Portable Mode Store all settings and user data in one folder (Useful when used with removable drives or cloud services). Pokreni Flow Launcher pri podizanju sistema + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Error setting launch on startup Sakri Flow Launcher kada se izgubi fokus Ne prikazuj obaveštenje o novoj verziji @@ -126,7 +129,8 @@ Verzija Website Uninstall - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Plugin Store @@ -143,8 +147,6 @@ This plugin has been updated within the last 7 days New Update is Available - - Tema Appearance @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Prečica Prečica @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info Select File Manager @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in OK Yes No + Background Verzija @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in Izveštaj uspešno poslat Izveštaj neuspešno poslat Flow Launcher je dobio grešku + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Please wait... diff --git a/Flow.Launcher/Languages/tr.xaml b/Flow.Launcher/Languages/tr.xaml index cfb3689c3..5d550ebed 100644 --- a/Flow.Launcher/Languages/tr.xaml +++ b/Flow.Launcher/Languages/tr.xaml @@ -13,6 +13,7 @@ "{0}" kısayolunu atama başarısız oldu. Kısayolu başka bir program kullanıyorsa kapatmayı deneyin veya kısayolu değiştirin. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher {0} başlatılamıyor Geçersiz Flow Launcher eklenti dosyası formatı @@ -44,6 +45,8 @@ Taşınabilir Mod 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). Sistem ile Başlat + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Sistemle başlatma ayarı başarısız oldu Odak Pencereden Ayrıldığında Gizle Güncelleme bildirimlerini gösterme @@ -126,7 +129,8 @@ Sürüm İnternet Sitesi Kaldır - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Eklenti Mağazası @@ -143,8 +147,6 @@ Bu eklenti son 7 gün içerisinde güncellenmiş. Yeni Bir Güncelleme Mevcut - - Temalar Görünüm @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Kısayol Tuşu Kısayol Tuşu @@ -297,6 +298,9 @@ Kullanıcı Verisi Dizini 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. Klasörü Aç + Log Level + Debug + Info Dosya Yöneticisi Seçenekleri @@ -365,6 +369,7 @@ Güncelle Yes No + Arka plan Sürüm @@ -381,6 +386,9 @@ Hata raporu başarıyla gönderildi Hata raporu gönderimi başarısız oldu Flow Launcher'da bir hata oluştu + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Lütfen bekleyin... diff --git a/Flow.Launcher/Languages/uk-UA.xaml b/Flow.Launcher/Languages/uk-UA.xaml index 09c576150..95a746a51 100644 --- a/Flow.Launcher/Languages/uk-UA.xaml +++ b/Flow.Launcher/Languages/uk-UA.xaml @@ -13,6 +13,7 @@ Не вдалося зареєструвати гарячу клавішу "{0}". Можливо, гаряча клавіша використовується іншою програмою. Змініть її на іншу гарячу клавішу або вийдіть з програми, де вона використовується. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Не вдалося запустити {0} Невірний формат файлу плагіна Flow Launcher @@ -44,6 +45,8 @@ Портативний режим Зберігати всі налаштування і дані користувача в одній теці (буде корисно при видаленні дисків або хмарних сервісах). Запускати Flow Launcher при запуску системи + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Помилка запуску налаштування під час запуску Сховати Flow Launcher, якщо втрачено фокус Не повідомляти про доступні нові версії @@ -126,7 +129,8 @@ Версія Сайт Видалити - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Магазин плагінів @@ -143,8 +147,6 @@ Цей плагін було оновлено протягом останніх 7 днів Доступне нове оновлення - - Тема Зовнішній вигляд @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. Ця тема підтримує розмитий прозорий фон. - Гаряча клавіша Гарячі клавіші @@ -297,6 +298,9 @@ Розташування даних користувача Налаштування користувача та встановлені плагіни зберігаються у теці даних користувача. Це місце може змінюватися залежно від того, чи перебуває програма в портативному режимі, чи ні. Відкрити теку + Log Level + Debug + Info Виберіть файловий менеджер @@ -367,6 +371,7 @@ Добре Так Ні + Тло Версія @@ -383,6 +388,9 @@ Звіт успішно відправлено Не вдалося відправити звіт Стався збій в додатку Flow Launcher + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Будь ласка, зачекайте... diff --git a/Flow.Launcher/Languages/vi.xaml b/Flow.Launcher/Languages/vi.xaml index 31e8ad2aa..17e421e16 100644 --- a/Flow.Launcher/Languages/vi.xaml +++ b/Flow.Launcher/Languages/vi.xaml @@ -13,6 +13,7 @@ Không thể đăng ký phím nóng "{0}". 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. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher Không thể khởi động {0} Định dạng tệp plugin Flow Launcher không chính xác @@ -44,6 +45,8 @@ Chế độ Portabler 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). Khởi động Flow Launcher khi khởi động hệ thống + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Không lưu được tính năng tự khởi động khi khởi động hệ thống Ẩn Flow Launcher khi mất tiêu điểm Không hiển thị thông báo khi có phiên bản mới @@ -126,7 +129,8 @@ Phiên bản Trang web Gỡ cài đặt - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually Tải tiện ích mở rộng @@ -143,8 +147,6 @@ Plugin này đã được cập nhật trong vòng 7 ngày qua Đã có bản cập nhật mới - - Giao Diện Giao diện @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - Phím tắt Phím tắt @@ -299,6 +300,9 @@ Vị trí dữ liệu người dùng 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. Mở thư mục + Log Level + Debug + Info Chọn trình quản lý tệp @@ -371,6 +375,7 @@ OK Không + Nền Phiên bản @@ -387,6 +392,9 @@ Đã gửi báo cáo thành công Báo cáo lỗi Trình khởi chạy luồng có lỗi + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message Cảnh báo nhỏ... diff --git a/Flow.Launcher/Languages/zh-cn.xaml b/Flow.Launcher/Languages/zh-cn.xaml index 681c715fb..d9966d757 100644 --- a/Flow.Launcher/Languages/zh-cn.xaml +++ b/Flow.Launcher/Languages/zh-cn.xaml @@ -13,6 +13,7 @@ 无法注册热键“{0}”。该热键可能正在被其他程序使用。更改为不同的热键,或退出其他程序。 + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher 启动命令 {0} 失败 无效的 Flow Launcher 插件文件格式 @@ -44,6 +45,8 @@ 便携模式 将所有设置和用户数据存储在一个文件夹中 (可用于可移除驱动器或云服务)。 开机自启 + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler 设置开机自启时出错 失去焦点时自动隐藏 Flow Launcher 不显示新版本提示 @@ -126,7 +129,8 @@ 版本 官方网站 卸载 - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually 插件商店 @@ -143,8 +147,6 @@ 此插件在过去7天内有更新 有可用的更新 - - 主题 外观 @@ -194,7 +196,6 @@ 该主题支持两种(浅色/深色)模式。 该主题支持模糊透明背景。 - 热键 热键 @@ -297,6 +298,9 @@ 用户数据位置 用户设置和已安装的插件保存在用户数据文件夹中。此位置可能因是否处于便携模式而异。 打开文件夹 + Log Level + Debug + Info 默认文件管理器 @@ -367,6 +371,7 @@ 更新 + 背景 版本 @@ -383,6 +388,9 @@ 发送成功 发送失败 Flow Launcher 出错啦 + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message 请稍等... diff --git a/Flow.Launcher/Languages/zh-tw.xaml b/Flow.Launcher/Languages/zh-tw.xaml index 44be5257b..01b667e72 100644 --- a/Flow.Launcher/Languages/zh-tw.xaml +++ b/Flow.Launcher/Languages/zh-tw.xaml @@ -13,6 +13,7 @@ Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program. + Failed to unregister hotkey "{0}". Please try again or see log for details Flow Launcher 啟動命令 {0} 失敗 無效的 Flow Launcher 外掛格式 @@ -44,6 +45,8 @@ 便攜模式 將所有設定和使用者資料存儲在一個資料夾中(當與可移動磁碟或雲服務一起使用時很有用)。 開機時啟動 + Use logon task instead of startup entry for faster startup experience + After uninstallation, you need to manually remove this task (Flow.Launcher Startup) via Task Scheduler Error setting launch on startup 失去焦點時自動隱藏 Flow Launcher 不顯示新版本提示 @@ -126,7 +129,8 @@ 版本 官方網站 解除安裝 - + Fail to remove plugin settings + Plugins: {0} - Fail to remove plugin settings files, please remove them manually 插件商店 @@ -143,8 +147,6 @@ This plugin has been updated within the last 7 days New Update is Available - - 主題 外觀 @@ -194,7 +196,6 @@ This theme supports two(light/dark) modes. This theme supports Blur Transparent Background. - 快捷鍵 快捷鍵 @@ -297,6 +298,9 @@ User Data Location 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. Open Folder + Log Level + Debug + Info 選擇檔案管理器 @@ -367,6 +371,7 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in 更新 Yes No + 背景 版本 @@ -383,6 +388,9 @@ If you add an '@' prefix while inputting a shortcut, it matches any position in 傳送成功 傳送失敗 Flow Launcher 出錯啦 + Please open new issue in + 1. Upload log file: {0} + 2. Copy below exception message 請稍後... diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index 2033cc04d..abdb3501c 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -469,7 +469,7 @@ namespace Flow.Launcher private void OpenWelcomeWindow() { - var WelcomeWindow = new WelcomeWindow(_settings); + var WelcomeWindow = new WelcomeWindow(); WelcomeWindow.Show(); } diff --git a/Flow.Launcher/Properties/Resources.fr-FR.resx b/Flow.Launcher/Properties/Resources.fr-FR.resx new file mode 100644 index 000000000..ca0f66f53 --- /dev/null +++ b/Flow.Launcher/Properties/Resources.fr-FR.resx @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\app.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Images\dev.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Images\gamemode.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/Flow.Launcher/Resources/Pages/WelcomePage1.xaml.cs b/Flow.Launcher/Resources/Pages/WelcomePage1.xaml.cs index 98fb47288..880bfd9bc 100644 --- a/Flow.Launcher/Resources/Pages/WelcomePage1.xaml.cs +++ b/Flow.Launcher/Resources/Pages/WelcomePage1.xaml.cs @@ -1,8 +1,9 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Windows.Navigation; using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Core.Resource; +using CommunityToolkit.Mvvm.DependencyInjection; +using Flow.Launcher.ViewModel; namespace Flow.Launcher.Resources.Pages { @@ -10,10 +11,10 @@ namespace Flow.Launcher.Resources.Pages { protected override void OnNavigatedTo(NavigationEventArgs e) { - if (e.ExtraData is Settings settings) - Settings = settings; - else - throw new ArgumentException("Unexpected Navigation Parameter for Settings"); + Settings = Ioc.Default.GetRequiredService(); + // Sometimes the navigation is not triggered by button click, + // so we need to reset the page number + Ioc.Default.GetRequiredService().PageNum = 1; InitializeComponent(); } private Internationalization _translater => InternationalizationManager.Instance; @@ -37,4 +38,4 @@ namespace Flow.Launcher.Resources.Pages } } -} \ No newline at end of file +} diff --git a/Flow.Launcher/Resources/Pages/WelcomePage2.xaml b/Flow.Launcher/Resources/Pages/WelcomePage2.xaml index 6c6fcbb62..04c76d027 100644 --- a/Flow.Launcher/Resources/Pages/WelcomePage2.xaml +++ b/Flow.Launcher/Resources/Pages/WelcomePage2.xaml @@ -114,8 +114,7 @@ Margin="0,8,0,0" ChangeHotkey="{Binding SetTogglingHotkeyCommand}" DefaultHotkey="Alt+Space" - Hotkey="{Binding Settings.Hotkey}" - HotkeySettings="{Binding Settings}" + Type="Hotkey" ValidateKeyGesture="True" WindowTitle="{DynamicResource flowlauncherHotkey}" /> diff --git a/Flow.Launcher/Resources/Pages/WelcomePage2.xaml.cs b/Flow.Launcher/Resources/Pages/WelcomePage2.xaml.cs index 1ed5747cd..786b4d506 100644 --- a/Flow.Launcher/Resources/Pages/WelcomePage2.xaml.cs +++ b/Flow.Launcher/Resources/Pages/WelcomePage2.xaml.cs @@ -1,11 +1,11 @@ using Flow.Launcher.Helper; using Flow.Launcher.Infrastructure.Hotkey; using Flow.Launcher.Infrastructure.UserSettings; -using System; using System.Windows.Navigation; using CommunityToolkit.Mvvm.Input; using Flow.Launcher.ViewModel; using System.Windows.Media; +using CommunityToolkit.Mvvm.DependencyInjection; namespace Flow.Launcher.Resources.Pages { @@ -15,11 +15,10 @@ namespace Flow.Launcher.Resources.Pages protected override void OnNavigatedTo(NavigationEventArgs e) { - if (e.ExtraData is Settings settings) - Settings = settings; - else - throw new ArgumentException("Unexpected Parameter setting."); - + Settings = Ioc.Default.GetRequiredService(); + // Sometimes the navigation is not triggered by button click, + // so we need to reset the page number + Ioc.Default.GetRequiredService().PageNum = 2; InitializeComponent(); } diff --git a/Flow.Launcher/Resources/Pages/WelcomePage3.xaml.cs b/Flow.Launcher/Resources/Pages/WelcomePage3.xaml.cs index 9051e7c27..f59b65c1c 100644 --- a/Flow.Launcher/Resources/Pages/WelcomePage3.xaml.cs +++ b/Flow.Launcher/Resources/Pages/WelcomePage3.xaml.cs @@ -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.ViewModel; namespace Flow.Launcher.Resources.Pages { @@ -8,10 +9,10 @@ namespace Flow.Launcher.Resources.Pages { protected override void OnNavigatedTo(NavigationEventArgs e) { - if (e.ExtraData is Settings settings) - Settings = settings; - else if(Settings is null) - throw new ArgumentException("Unexpected Navigation Parameter for Settings"); + Settings = Ioc.Default.GetRequiredService(); + // Sometimes the navigation is not triggered by button click, + // so we need to reset the page number + Ioc.Default.GetRequiredService().PageNum = 3; InitializeComponent(); } diff --git a/Flow.Launcher/Resources/Pages/WelcomePage4.xaml.cs b/Flow.Launcher/Resources/Pages/WelcomePage4.xaml.cs index 11bbcd6ed..4c83f3a83 100644 --- a/Flow.Launcher/Resources/Pages/WelcomePage4.xaml.cs +++ b/Flow.Launcher/Resources/Pages/WelcomePage4.xaml.cs @@ -1,5 +1,6 @@ -using Flow.Launcher.Infrastructure.UserSettings; -using System; +using CommunityToolkit.Mvvm.DependencyInjection; +using Flow.Launcher.Infrastructure.UserSettings; +using Flow.Launcher.ViewModel; using System.Windows.Navigation; namespace Flow.Launcher.Resources.Pages @@ -8,10 +9,10 @@ namespace Flow.Launcher.Resources.Pages { protected override void OnNavigatedTo(NavigationEventArgs e) { - if (e.ExtraData is Settings settings) - Settings = settings; - else - throw new ArgumentException("Unexpected Navigation Parameter for Settings"); + Settings = Ioc.Default.GetRequiredService(); + // Sometimes the navigation is not triggered by button click, + // so we need to reset the page number + Ioc.Default.GetRequiredService().PageNum = 4; InitializeComponent(); } diff --git a/Flow.Launcher/Resources/Pages/WelcomePage5.xaml.cs b/Flow.Launcher/Resources/Pages/WelcomePage5.xaml.cs index abb805303..95d7ff1a0 100644 --- a/Flow.Launcher/Resources/Pages/WelcomePage5.xaml.cs +++ b/Flow.Launcher/Resources/Pages/WelcomePage5.xaml.cs @@ -1,9 +1,10 @@ -using System; -using System.Windows; +using System.Windows; using System.Windows.Navigation; using Flow.Launcher.Infrastructure.UserSettings; using Microsoft.Win32; using Flow.Launcher.Infrastructure; +using CommunityToolkit.Mvvm.DependencyInjection; +using Flow.Launcher.ViewModel; namespace Flow.Launcher.Resources.Pages { @@ -15,10 +16,10 @@ namespace Flow.Launcher.Resources.Pages protected override void OnNavigatedTo(NavigationEventArgs e) { - if (e.ExtraData is Settings settings) - Settings = settings; - else - throw new ArgumentException("Unexpected Navigation Parameter for Settings"); + Settings = Ioc.Default.GetRequiredService(); + // Sometimes the navigation is not triggered by button click, + // so we need to reset the page number + Ioc.Default.GetRequiredService().PageNum = 5; InitializeComponent(); } diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs index 6b44be7c1..f82f8e34d 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneAboutViewModel.cs @@ -80,7 +80,7 @@ public partial class SettingsPaneAboutViewModel : BaseModel [RelayCommand] private void OpenWelcomeWindow() { - var window = new WelcomeWindow(_settings); + var window = new WelcomeWindow(); window.ShowDialog(); } diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml.cs index de6a4df5e..1ecc02aa6 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneAbout.xaml.cs @@ -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.Infrastructure.UserSettings; +using CommunityToolkit.Mvvm.DependencyInjection; namespace Flow.Launcher.SettingPages.Views; @@ -12,8 +14,8 @@ public partial class SettingsPaneAbout { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings, Updater: { } updater }) - throw new ArgumentException("Settings are required for SettingsPaneAbout."); + var settings = Ioc.Default.GetRequiredService(); + var updater = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPaneAboutViewModel(settings, updater); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml.cs index f95015b2e..dd7fd13a9 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneGeneral.xaml.cs @@ -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.SettingPages.ViewModels; @@ -13,8 +15,9 @@ public partial class SettingsPaneGeneral { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings, Updater: {} updater, Portable: {} portable }) - throw new ArgumentException("Settings, Updater and Portable are required for SettingsPaneGeneral."); + var settings = Ioc.Default.GetRequiredService(); + var updater = Ioc.Default.GetRequiredService(); + var portable = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPaneGeneralViewModel(settings, updater, portable); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml b/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml index 22e3960ef..b1d72ede5 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml @@ -34,8 +34,7 @@ @@ -46,8 +45,7 @@ Sub="{DynamicResource previewHotkeyToolTip}"> @@ -105,8 +103,7 @@ Type="Inside"> @@ -221,8 +213,7 @@ @@ -244,8 +234,7 @@ @@ -267,8 +255,7 @@ diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs index 061eabf51..eb100da0c 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneHotkey.xaml.cs @@ -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.Infrastructure.UserSettings; namespace Flow.Launcher.SettingPages.Views; @@ -12,8 +13,7 @@ public partial class SettingsPaneHotkey { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) - throw new ArgumentException("Settings are required for SettingsPaneHotkey."); + var settings = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPaneHotkeyViewModel(settings); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml.cs index db4763319..3bd24bc13 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPanePluginStore.xaml.cs @@ -1,10 +1,11 @@ -using System; -using System.ComponentModel; +using System.ComponentModel; using System.Windows.Data; using System.Windows.Input; using System.Windows.Navigation; +using CommunityToolkit.Mvvm.DependencyInjection; using Flow.Launcher.SettingPages.ViewModels; using Flow.Launcher.ViewModel; +using Flow.Launcher.Infrastructure.UserSettings; namespace Flow.Launcher.SettingPages.Views; @@ -16,8 +17,7 @@ public partial class SettingsPanePluginStore { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) - throw new ArgumentException($"Settings are required for {nameof(SettingsPanePluginStore)}."); + var settings = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPanePluginStoreViewModel(); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingPages/Views/SettingsPanePlugins.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPanePlugins.xaml.cs index d48505c3d..f6b435186 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPanePlugins.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPanePlugins.xaml.cs @@ -1,7 +1,8 @@ -using System; -using System.Windows.Input; +using System.Windows.Input; using System.Windows.Navigation; +using CommunityToolkit.Mvvm.DependencyInjection; using Flow.Launcher.SettingPages.ViewModels; +using Flow.Launcher.Infrastructure.UserSettings; namespace Flow.Launcher.SettingPages.Views; @@ -13,8 +14,7 @@ public partial class SettingsPanePlugins { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) - throw new ArgumentException("Settings are required for SettingsPaneHotkey."); + var settings = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPanePluginsViewModel(settings); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneProxy.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPaneProxy.xaml.cs index 95c88d627..26350b8bb 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneProxy.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneProxy.xaml.cs @@ -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.Infrastructure.UserSettings; namespace Flow.Launcher.SettingPages.Views; @@ -12,8 +14,8 @@ public partial class SettingsPaneProxy { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings, Updater: { } updater }) - throw new ArgumentException($"Settings are required for {nameof(SettingsPaneProxy)}."); + var settings = Ioc.Default.GetRequiredService(); + var updater = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPaneProxyViewModel(settings, updater); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml.cs b/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml.cs index 18d3a31a2..22de4fcc0 100644 --- a/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml.cs +++ b/Flow.Launcher/SettingPages/Views/SettingsPaneTheme.xaml.cs @@ -1,7 +1,8 @@ -using System; using System.Windows.Navigation; +using CommunityToolkit.Mvvm.DependencyInjection; using Flow.Launcher.SettingPages.ViewModels; using Page = ModernWpf.Controls.Page; +using Flow.Launcher.Infrastructure.UserSettings; namespace Flow.Launcher.SettingPages.Views; @@ -13,8 +14,7 @@ public partial class SettingsPaneTheme : Page { if (!IsInitialized) { - if (e.ExtraData is not SettingWindow.PaneData { Settings: { } settings }) - throw new ArgumentException($"Settings are required for {nameof(SettingsPaneTheme)}."); + var settings = Ioc.Default.GetRequiredService(); _viewModel = new SettingsPaneThemeViewModel(settings); DataContext = _viewModel; InitializeComponent(); diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index f87194c30..30b51f992 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -4,8 +4,6 @@ using System.Windows.Forms; using System.Windows.Input; using System.Windows.Interop; using CommunityToolkit.Mvvm.DependencyInjection; -using Flow.Launcher.Core; -using Flow.Launcher.Core.Configuration; using Flow.Launcher.Helper; using Flow.Launcher.Infrastructure.UserSettings; using Flow.Launcher.Plugin; @@ -18,8 +16,6 @@ namespace Flow.Launcher; public partial class SettingWindow { - private readonly Updater _updater; - private readonly IPortable _portable; private readonly IPublicAPI _api; private readonly Settings _settings; private readonly SettingWindowViewModel _viewModel; @@ -30,8 +26,6 @@ public partial class SettingWindow _settings = Ioc.Default.GetRequiredService(); DataContext = viewModel; _viewModel = viewModel; - _updater = Ioc.Default.GetRequiredService(); - _portable = Ioc.Default.GetRequiredService(); _api = Ioc.Default.GetRequiredService(); InitializePosition(); InitializeComponent(); @@ -166,10 +160,9 @@ public partial class SettingWindow private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) { - var paneData = new PaneData(_settings, _updater, _portable); if (args.IsSettingsSelected) { - ContentFrame.Navigate(typeof(SettingsPaneGeneral), paneData); + ContentFrame.Navigate(typeof(SettingsPaneGeneral)); } else { @@ -191,7 +184,7 @@ public partial class SettingWindow nameof(About) => typeof(SettingsPaneAbout), _ => 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 */ } - - public record PaneData(Settings Settings, Updater Updater, IPortable Portable); } diff --git a/Flow.Launcher/ViewModel/WelcomeViewModel.cs b/Flow.Launcher/ViewModel/WelcomeViewModel.cs new file mode 100644 index 000000000..5eecabfde --- /dev/null +++ b/Flow.Launcher/ViewModel/WelcomeViewModel.cs @@ -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; + } + } + } +} diff --git a/Flow.Launcher/WelcomeWindow.xaml b/Flow.Launcher/WelcomeWindow.xaml index 73f423d0b..e7c483f89 100644 --- a/Flow.Launcher/WelcomeWindow.xaml +++ b/Flow.Launcher/WelcomeWindow.xaml @@ -6,6 +6,7 @@ xmlns:local="clr-namespace:Flow.Launcher" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="http://schemas.modernwpf.com/2019" + xmlns:vm="clr-namespace:Flow.Launcher.ViewModel" Name="FlowWelcomeWindow" Title="{DynamicResource Welcome_Page1_Title}" Width="550" @@ -14,8 +15,10 @@ MinHeight="650" MaxWidth="550" MaxHeight="650" + d:DataContext="{d:DesignInstance Type=vm:WelcomeViewModel}" Activated="OnActivated" Background="{DynamicResource Color00B}" + Closed="Window_Closed" Foreground="{DynamicResource PopupTextColor}" MouseDown="window_MouseDown" WindowStartupLocation="CenterScreen" @@ -41,12 +44,12 @@ Grid.Column="0" Width="16" Height="16" - Margin="10,4,4,4" + Margin="10 4 4 4" RenderOptions.BitmapScalingMode="HighQuality" Source="/Images/app.png" /> + BorderThickness="0 1 0 0"> @@ -109,11 +112,11 @@ VerticalAlignment="Center"> @@ -122,25 +125,26 @@ Grid.Column="0" Width="100" Height="40" - Margin="20,5,0,5" + Margin="20 5 0 5" Click="BtnCancel_OnClick" Content="{DynamicResource Skip}" DockPanel.Dock="Right" FontSize="14" />