From 66dee47edc78b01021f8a3dca8ffa5c576d4d4b3 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Tue, 6 Dec 2022 20:34:40 +0800
Subject: [PATCH 01/12] Refactor AddProgramSource dialog
---
.../AddProgramSource.xaml | 9 +-
.../AddProgramSource.xaml.cs | 85 ++--------
.../ViewModels/AddProgramSourceViewModel.cs | 149 ++++++++++++++++++
.../Views/ProgramSetting.xaml.cs | 7 +-
4 files changed, 173 insertions(+), 77 deletions(-)
create mode 100644 Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
index b1a8744fd..73a9190ac 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
@@ -4,7 +4,10 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ xmlns:vm="clr-namespace:Flow.Launcher.Plugin.Program.ViewModels"
+ mc:Ignorable="d"
Title="{DynamicResource flowlauncher_plugin_program_directory}"
+ d:DataContext="{d:DesignInstance vm:AddProgramSourceViewModel}"
Width="Auto"
Height="276"
Background="{DynamicResource PopuBGColor}"
@@ -98,11 +101,14 @@
HorizontalAlignment="Stretch"
Click="BrowseButton_Click"
Content="{DynamicResource flowlauncher_plugin_program_browse}"
+ IsEnabled="{Binding IsCustomSource}"
DockPanel.Dock="Right" />
@@ -119,6 +125,7 @@
Grid.Row="1"
Grid.Column="1"
Margin="10,0"
+ IsChecked="{Binding Enabled, Mode=TwoWay}"
VerticalAlignment="Center" />
@@ -142,7 +149,7 @@
MinWidth="140"
Margin="5,0,10,0"
Click="BtnAdd_OnClick"
- Content="{DynamicResource flowlauncher_plugin_program_update}"
+ Content="{Binding AddBtnText, Mode=TwoWay}"
Style="{DynamicResource AccentButtonStyle}" />
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
index e88c9b988..ae6c5197e 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
@@ -1,8 +1,5 @@
using System.Windows;
-using System.Windows.Forms;
-using Flow.Launcher.Plugin.Program.Views.Models;
-using Flow.Launcher.Plugin.Program.Views;
-using System.Linq;
+using Flow.Launcher.Plugin.Program.ViewModels;
namespace Flow.Launcher.Plugin.Program
{
@@ -11,41 +8,18 @@ namespace Flow.Launcher.Plugin.Program
///
public partial class AddProgramSource : Window
{
- private PluginInitContext _context;
- private ProgramSource _editing;
- private Settings _settings;
- private bool update;
+ private readonly AddProgramSourceViewModel ViewModel;
- public AddProgramSource(PluginInitContext context, Settings settings)
+ public AddProgramSource(AddProgramSourceViewModel viewModel)
{
+ ViewModel = viewModel;
+ DataContext = viewModel;
InitializeComponent();
- _context = context;
- _settings = settings;
- Directory.Focus();
- Chkbox.IsChecked = true;
- update = false;
- btnAdd.Content = _context.API.GetTranslation("flowlauncher_plugin_program_add");
- }
-
- public AddProgramSource(PluginInitContext context, Settings settings, ProgramSource source)
- {
- InitializeComponent();
- _context = context;
- _editing = source;
- _settings = settings;
- update = true;
- Chkbox.IsChecked = _editing.Enabled;
- Directory.Text = _editing.Location;
}
private void BrowseButton_Click(object sender, RoutedEventArgs e)
{
- var dialog = new FolderBrowserDialog();
- DialogResult result = dialog.ShowDialog();
- if (result == System.Windows.Forms.DialogResult.OK)
- {
- Directory.Text = dialog.SelectedPath;
- }
+ ViewModel.Browse();
}
private void BtnCancel_OnClick(object sender, RoutedEventArgs e)
@@ -55,53 +29,16 @@ namespace Flow.Launcher.Plugin.Program
private void BtnAdd_OnClick(object sender, RoutedEventArgs e)
{
- string path = Directory.Text;
- bool modified = false;
- if (!System.IO.Directory.Exists(path))
+ var status = ViewModel.AddOrUpdate();
+ if (status == null)
{
- System.Windows.MessageBox.Show(_context.API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
- return;
- }
- if (!update)
- {
- if (!ProgramSetting.ProgramSettingDisplayList.Any(x => x.UniqueIdentifier.Equals(path, System.StringComparison.OrdinalIgnoreCase)))
- {
- var source = new ProgramSource(path);
- modified = true;
- _settings.ProgramSources.Insert(0, source);
- ProgramSetting.ProgramSettingDisplayList.Add(source);
- }
- else
- {
- System.Windows.MessageBox.Show(_context.API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
- return;
- }
+ return; // Invalid
}
else
{
- // Separate checks to avoid changing UniqueIdentifier of UWP
- if (!_editing.Location.Equals(path, System.StringComparison.OrdinalIgnoreCase))
- {
- if (ProgramSetting.ProgramSettingDisplayList
- .Any(x => x.UniqueIdentifier.Equals(path, System.StringComparison.OrdinalIgnoreCase)))
- {
- // Check if the new location is used
- // No need to check win32 or uwp, just override them
- System.Windows.MessageBox.Show(_context.API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
- return;
- }
- modified = true;
- _editing.Location = path; // Changes UniqueIdentifier internally
- }
- if (_editing.Enabled != Chkbox.IsChecked)
- {
- modified = true;
- _editing.Enabled = Chkbox.IsChecked ?? true;
- }
+ DialogResult = status ?? false;
+ Close();
}
-
- DialogResult = modified;
- Close();
}
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
new file mode 100644
index 000000000..92981b1fd
--- /dev/null
+++ b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
@@ -0,0 +1,149 @@
+using System;
+using System.IO;
+using System.Linq;
+using System.Windows.Forms;
+using Flow.Launcher.Plugin.Program.Views;
+using Flow.Launcher.Plugin.Program.Views.Models;
+
+namespace Flow.Launcher.Plugin.Program.ViewModels
+{
+ public class AddProgramSourceViewModel : BaseModel
+ {
+ private readonly Settings Settings;
+
+ private bool enabled = true;
+ public bool Enabled
+ {
+ get => enabled;
+ set
+ {
+ enabled = value;
+ OnPropertyChanged(nameof(Enabled));
+ }
+ }
+
+ private string location = string.Empty;
+ public string Location
+ {
+ get => location;
+ set
+ {
+ location = value;
+ OnPropertyChanged(nameof(Location));
+ }
+ }
+
+ public ProgramSource Source { get; init; }
+ public IPublicAPI API { get; init; }
+ public string AddBtnText { get; init; }
+ private bool LocationModified = false;
+ private bool StatusModified = false;
+ public bool IsCustomSource { get; init; } = true;
+ public bool IsNotCustomSource => !IsCustomSource;
+
+ public AddProgramSourceViewModel(PluginInitContext context, Settings settings)
+ {
+ API = context.API;
+ Settings = settings;
+ AddBtnText = API.GetTranslation("flowlauncher_plugin_program_add");
+ }
+
+ public AddProgramSourceViewModel(PluginInitContext context, Settings settings, ProgramSource programSource) : this(context, settings)
+ {
+ Source = programSource;
+ enabled = Source.Enabled;
+ location = Source.Location;
+ AddBtnText = API.GetTranslation("flowlauncher_plugin_program_update");
+ IsCustomSource = Settings.ProgramSources.Any(x => x.UniqueIdentifier == Source.UniqueIdentifier);
+
+ this.PropertyChanged += (_, args) =>
+ {
+ switch (args.PropertyName)
+ {
+ case nameof(Location):
+ LocationModified = true;
+ break;
+ case nameof(Enabled):
+ StatusModified = true;
+ break;
+ }
+ };
+ }
+
+ public void Browse()
+ {
+ var dialog = new FolderBrowserDialog();
+ DialogResult result = dialog.ShowDialog();
+ if (result == DialogResult.OK)
+ {
+ Location = dialog.SelectedPath;
+ }
+ }
+
+ public bool? AddProgramSource()
+ {
+ if (!Directory.Exists(Location))
+ {
+ System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
+ return null;
+ }
+ else if (DuplicateSource(Location))
+ {
+ System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
+ return null;
+ }
+ else
+ {
+ var source = new ProgramSource(Location, Enabled);
+ Settings.ProgramSources.Insert(0, source);
+ ProgramSetting.ProgramSettingDisplayList.Add(source);
+ return true;
+ }
+ }
+
+ public bool? UpdateProgramSource()
+ {
+ // Separate checks to avoid changing UniqueIdentifier of UWP when changing Enabled
+ if (LocationModified)
+ {
+ if (!Directory.Exists(Location))
+ {
+ System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
+ return null;
+ }
+ else if (DuplicateSource(Location))
+ {
+ // No need to check win32 or uwp, just override them
+ System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
+ return null;
+ }
+ else
+ {
+ Source.Location = Location; // Changes UniqueIdentifier internally
+ }
+ }
+ if (StatusModified)
+ {
+ Source.Enabled = Enabled;
+ }
+ return StatusModified || LocationModified;
+ }
+
+ public bool? AddOrUpdate()
+ {
+ if (Source == null)
+ {
+ return AddProgramSource();
+ }
+ else
+ {
+ return UpdateProgramSource();
+ }
+ }
+
+ public static bool DuplicateSource(string location)
+ {
+ return ProgramSetting.ProgramSettingDisplayList.Any(x => x.UniqueIdentifier.Equals(location, StringComparison.OrdinalIgnoreCase));
+ }
+ }
+}
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs
index b8c2bca22..377ef5cf3 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs
@@ -9,6 +9,7 @@ using Flow.Launcher.Plugin.Program.Views.Commands;
using Flow.Launcher.Plugin.Program.Programs;
using System.ComponentModel;
using System.Windows.Data;
+using Flow.Launcher.Plugin.Program.ViewModels;
namespace Flow.Launcher.Plugin.Program.Views
{
@@ -135,7 +136,8 @@ namespace Flow.Launcher.Plugin.Program.Views
private void btnAddProgramSource_OnClick(object sender, RoutedEventArgs e)
{
- var add = new AddProgramSource(context, _settings);
+ var vm = new AddProgramSourceViewModel(context, _settings);
+ var add = new AddProgramSource(vm);
if (add.ShowDialog() ?? false)
{
ReIndexing();
@@ -170,7 +172,8 @@ namespace Flow.Launcher.Plugin.Program.Views
}
else
{
- var add = new AddProgramSource(context, _settings, selectedProgramSource);
+ var vm = new AddProgramSourceViewModel(context, _settings, selectedProgramSource);
+ var add = new AddProgramSource(vm);
if (add.ShowDialog() ?? false)
{
if (selectedProgramSource.Enabled)
From bfb29e384d81337247f51406f846550f03390181 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Tue, 6 Dec 2022 22:47:27 +0800
Subject: [PATCH 02/12] Fix Hashcode
---
.../Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs b/Plugins/Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs
index 571dc0017..93c33e9ad 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/Views/Models/ProgramSource.cs
@@ -83,7 +83,7 @@ namespace Flow.Launcher.Plugin.Program.Views.Models
public override int GetHashCode()
{
- return HashCode.Combine(UniqueIdentifier);
+ return uniqueIdentifier.GetHashCode();
}
}
}
From cca10ca5a015c6d7aebd747474a99a518230e3e7 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Tue, 6 Dec 2022 22:54:12 +0800
Subject: [PATCH 03/12] Move show msgbox to view
---
.../AddProgramSource.xaml.cs | 14 +++++------
.../ViewModels/AddProgramSourceViewModel.cs | 23 ++++++++-----------
2 files changed, 16 insertions(+), 21 deletions(-)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
index ae6c5197e..c41e9f688 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
@@ -30,15 +30,15 @@ namespace Flow.Launcher.Plugin.Program
private void BtnAdd_OnClick(object sender, RoutedEventArgs e)
{
var status = ViewModel.AddOrUpdate();
- if (status == null)
+ bool modified = status.Item1;
+ string msg = status.Item2;
+ if (modified == false && msg != null)
{
- return; // Invalid
- }
- else
- {
- DialogResult = status ?? false;
- Close();
+ MessageBox.Show(msg); // Invalid
+ return;
}
+ DialogResult = modified;
+ Close();
}
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
index 92981b1fd..c47525fde 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
@@ -80,42 +80,37 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
}
}
- public bool? AddProgramSource()
+ public (bool, string) AddProgramSource()
{
if (!Directory.Exists(Location))
{
- System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
- return null;
+ return (false, API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
}
else if (DuplicateSource(Location))
{
- System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
- return null;
+ return (false, API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
}
else
{
var source = new ProgramSource(Location, Enabled);
Settings.ProgramSources.Insert(0, source);
ProgramSetting.ProgramSettingDisplayList.Add(source);
- return true;
+ return (true, null);
}
}
- public bool? UpdateProgramSource()
+ public (bool, string) UpdateProgramSource()
{
// Separate checks to avoid changing UniqueIdentifier of UWP when changing Enabled
if (LocationModified)
{
if (!Directory.Exists(Location))
{
- System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
- return null;
+ return (false, API.GetTranslation("flowlauncher_plugin_program_invalid_path"));
}
else if (DuplicateSource(Location))
{
- // No need to check win32 or uwp, just override them
- System.Windows.MessageBox.Show(API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
- return null;
+ return (false, API.GetTranslation("flowlauncher_plugin_program_duplicate_program_source"));
}
else
{
@@ -126,10 +121,10 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
{
Source.Enabled = Enabled;
}
- return StatusModified || LocationModified;
+ return (StatusModified || LocationModified, null);
}
- public bool? AddOrUpdate()
+ public (bool, string) AddOrUpdate()
{
if (Source == null)
{
From 1990226c716227b21797a2ea4113a9f52be9024d Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Wed, 7 Dec 2022 00:35:41 +0800
Subject: [PATCH 04/12] Fix item can't be unselected after editing Location
---
.../Views/ProgramSetting.xaml.cs | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs
index 377ef5cf3..086c9ecb3 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs
@@ -174,6 +174,10 @@ namespace Flow.Launcher.Plugin.Program.Views
{
var vm = new AddProgramSourceViewModel(context, _settings, selectedProgramSource);
var add = new AddProgramSource(vm);
+ int selectedIndex = programSourceView.SelectedIndex;
+ // https://stackoverflow.com/questions/16789360/wpf-listbox-items-with-changing-hashcode
+ // Or it can't be unselected after changing Location
+ programSourceView.UnselectAll();
if (add.ShowDialog() ?? false)
{
if (selectedProgramSource.Enabled)
@@ -188,6 +192,7 @@ namespace Flow.Launcher.Plugin.Program.Views
}
ReIndexing();
}
+ programSourceView.SelectedIndex = selectedIndex;
}
}
From 7bc4cfb9648e46ae85a2f99672a07fce258feb10 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Wed, 7 Dec 2022 00:48:42 +0800
Subject: [PATCH 05/12] Hide Browse Button when editing win32 or uwp
---
Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
index 73a9190ac..94eba0774 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
@@ -18,6 +18,9 @@
+
+
+
@@ -101,7 +104,7 @@
HorizontalAlignment="Stretch"
Click="BrowseButton_Click"
Content="{DynamicResource flowlauncher_plugin_program_browse}"
- IsEnabled="{Binding IsCustomSource}"
+ Visibility="{Binding IsCustomSource, Converter={StaticResource BooleanToVisibilityConverter}}"
DockPanel.Dock="Right" />
Date: Wed, 7 Dec 2022 01:09:26 +0800
Subject: [PATCH 06/12] Remove LocationConverter
---
.../LocationConverter.cs | 33 -------------------
.../ViewModels/AddProgramSourceViewModel.cs | 1 -
.../Views/ProgramSetting.xaml | 3 +-
3 files changed, 1 insertion(+), 36 deletions(-)
delete mode 100644 Plugins/Flow.Launcher.Plugin.Program/LocationConverter.cs
diff --git a/Plugins/Flow.Launcher.Plugin.Program/LocationConverter.cs b/Plugins/Flow.Launcher.Plugin.Program/LocationConverter.cs
deleted file mode 100644
index 41384aa83..000000000
--- a/Plugins/Flow.Launcher.Plugin.Program/LocationConverter.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Globalization;
-using System.Windows.Data;
-using System.Windows.Markup;
-
-namespace Flow.Launcher.Plugin.Program
-{
- public class LocationConverter : MarkupExtension, IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- var text = value as string;
- if (string.IsNullOrEmpty(text))
- {
- return string.Empty;
- }
- else
- {
- return text;
- }
- }
-
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- throw new NotSupportedException();
- }
-
- public override object ProvideValue(IServiceProvider serviceProvider)
- {
- return this;
- }
- }
-}
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
index c47525fde..4d653ddb2 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
@@ -101,7 +101,6 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
public (bool, string) UpdateProgramSource()
{
- // Separate checks to avoid changing UniqueIdentifier of UWP when changing Enabled
if (LocationModified)
{
if (!Directory.Exists(Location))
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml
index 3f9e7196c..2bc70a90a 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml
@@ -4,7 +4,6 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:program="clr-namespace:Flow.Launcher.Plugin.Program"
Height="520"
DataContext="{Binding RelativeSource={RelativeSource Self}}"
mc:Ignorable="d">
@@ -172,7 +171,7 @@
-
+
From e720e4facd574224723966b1ada2da11db08b162 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Wed, 7 Dec 2022 13:58:20 +0800
Subject: [PATCH 07/12] mark modified in setters
---
.../ViewModels/AddProgramSourceViewModel.cs | 17 ++---------------
1 file changed, 2 insertions(+), 15 deletions(-)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
index 4d653ddb2..b7d1bddbb 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
@@ -18,7 +18,7 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
set
{
enabled = value;
- OnPropertyChanged(nameof(Enabled));
+ StatusModified = true;
}
}
@@ -29,7 +29,7 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
set
{
location = value;
- OnPropertyChanged(nameof(Location));
+ LocationModified = true;
}
}
@@ -55,19 +55,6 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
location = Source.Location;
AddBtnText = API.GetTranslation("flowlauncher_plugin_program_update");
IsCustomSource = Settings.ProgramSources.Any(x => x.UniqueIdentifier == Source.UniqueIdentifier);
-
- this.PropertyChanged += (_, args) =>
- {
- switch (args.PropertyName)
- {
- case nameof(Location):
- LocationModified = true;
- break;
- case nameof(Enabled):
- StatusModified = true;
- break;
- }
- };
}
public void Browse()
From 0afcf7eafe24acd9d22eed8678637770ba73f3c3 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Wed, 7 Dec 2022 14:01:12 +0800
Subject: [PATCH 08/12] Use auto deconstructor and rename return value
---
.../Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs | 4 +---
.../ViewModels/AddProgramSourceViewModel.cs | 6 +++---
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
index c41e9f688..be8b768bd 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml.cs
@@ -29,9 +29,7 @@ namespace Flow.Launcher.Plugin.Program
private void BtnAdd_OnClick(object sender, RoutedEventArgs e)
{
- var status = ViewModel.AddOrUpdate();
- bool modified = status.Item1;
- string msg = status.Item2;
+ var (modified, msg) = ViewModel.AddOrUpdate();
if (modified == false && msg != null)
{
MessageBox.Show(msg); // Invalid
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
index b7d1bddbb..ffe9b2dce 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
@@ -67,7 +67,7 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
}
}
- public (bool, string) AddProgramSource()
+ public (bool modified, string message) AddProgramSource()
{
if (!Directory.Exists(Location))
{
@@ -86,7 +86,7 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
}
}
- public (bool, string) UpdateProgramSource()
+ public (bool modified, string message) UpdateProgramSource()
{
if (LocationModified)
{
@@ -110,7 +110,7 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
return (StatusModified || LocationModified, null);
}
- public (bool, string) AddOrUpdate()
+ public (bool modified, string message) AddOrUpdate()
{
if (Source == null)
{
From 25e4b501cb0df5d17e8b028abdd5bad05f6f0060 Mon Sep 17 00:00:00 2001
From: Vic <10308169+VictoriousRaptor@users.noreply.github.com>
Date: Sun, 11 Dec 2022 18:16:15 +0800
Subject: [PATCH 09/12] Use default binding mode
---
Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
index 94eba0774..612fd7b20 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/AddProgramSource.xaml
@@ -152,7 +152,7 @@
MinWidth="140"
Margin="5,0,10,0"
Click="BtnAdd_OnClick"
- Content="{Binding AddBtnText, Mode=TwoWay}"
+ Content="{Binding AddBtnText}"
Style="{DynamicResource AccentButtonStyle}" />
From ae8955bf41a56a24f90bbeb9d5ca85a4fd31b40e Mon Sep 17 00:00:00 2001
From: Hongtao Zhang
Date: Mon, 12 Dec 2022 14:40:52 -0600
Subject: [PATCH 10/12] fix path not changed in the textbox
---
.../ViewModels/AddProgramSourceViewModel.cs | 1 +
1 file changed, 1 insertion(+)
diff --git a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
index ffe9b2dce..1bb1ca13c 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
+++ b/Plugins/Flow.Launcher.Plugin.Program/ViewModels/AddProgramSourceViewModel.cs
@@ -30,6 +30,7 @@ namespace Flow.Launcher.Plugin.Program.ViewModels
{
location = value;
LocationModified = true;
+ OnPropertyChanged();
}
}
From f66f7d8ed3a1b5bf7cf03030ec830afb35508287 Mon Sep 17 00:00:00 2001
From: Jeremy Wu
Date: Tue, 13 Dec 2022 12:36:02 +1100
Subject: [PATCH 11/12] New Crowdin updates (#1624)
---
Flow.Launcher/Languages/da.xaml | 9 ++--
Flow.Launcher/Languages/de.xaml | 2 +
Flow.Launcher/Languages/es-419.xaml | 9 ++--
Flow.Launcher/Languages/es.xaml | 9 ++--
Flow.Launcher/Languages/fr.xaml | 9 ++--
Flow.Launcher/Languages/it.xaml | 13 +++---
Flow.Launcher/Languages/ja.xaml | 11 +++--
Flow.Launcher/Languages/ko.xaml | 23 +++++-----
Flow.Launcher/Languages/nb.xaml | 9 ++--
Flow.Launcher/Languages/nl.xaml | 4 +-
Flow.Launcher/Languages/pl.xaml | 11 +++--
Flow.Launcher/Languages/pt-br.xaml | 11 +++--
Flow.Launcher/Languages/pt-pt.xaml | 4 +-
Flow.Launcher/Languages/ru.xaml | 11 +++--
Flow.Launcher/Languages/sk.xaml | 11 +++--
Flow.Launcher/Languages/sr.xaml | 13 +++---
Flow.Launcher/Languages/tr.xaml | 2 +
Flow.Launcher/Languages/uk-UA.xaml | 9 ++--
Flow.Launcher/Languages/zh-cn.xaml | 43 +++++++++----------
Flow.Launcher/Languages/zh-tw.xaml | 9 ++--
.../Languages/zh-cn.xaml | 2 +-
.../Languages/da.xaml | 2 +-
.../Languages/de.xaml | 2 +-
.../Languages/es-419.xaml | 2 +-
.../Languages/es.xaml | 6 +--
.../Languages/fr.xaml | 2 +-
.../Languages/it.xaml | 2 +-
.../Languages/ja.xaml | 2 +-
.../Languages/ko.xaml | 4 +-
.../Languages/nb.xaml | 2 +-
.../Languages/nl.xaml | 2 +-
.../Languages/pl.xaml | 2 +-
.../Languages/pt-br.xaml | 2 +-
.../Languages/pt-pt.xaml | 2 +-
.../Languages/ru.xaml | 2 +-
.../Languages/sr.xaml | 2 +-
.../Languages/tr.xaml | 2 +-
.../Languages/uk-UA.xaml | 2 +-
.../Languages/zh-cn.xaml | 36 ++++++++--------
.../Languages/zh-tw.xaml | 2 +-
.../Languages/zh-cn.xaml | 4 +-
.../Languages/da.xaml | 5 ++-
.../Languages/de.xaml | 5 ++-
.../Languages/es-419.xaml | 5 ++-
.../Languages/es.xaml | 5 ++-
.../Languages/fr.xaml | 5 ++-
.../Languages/it.xaml | 5 ++-
.../Languages/ja.xaml | 5 ++-
.../Languages/ko.xaml | 23 +++++-----
.../Languages/nb.xaml | 5 ++-
.../Languages/nl.xaml | 5 ++-
.../Languages/pl.xaml | 5 ++-
.../Languages/pt-br.xaml | 5 ++-
.../Languages/pt-pt.xaml | 5 ++-
.../Languages/ru.xaml | 5 ++-
.../Languages/sk.xaml | 5 ++-
.../Languages/sr.xaml | 5 ++-
.../Languages/tr.xaml | 5 ++-
.../Languages/uk-UA.xaml | 5 ++-
.../Languages/zh-cn.xaml | 11 +++--
.../Languages/zh-tw.xaml | 5 ++-
.../Languages/ko.xaml | 12 +++---
.../Languages/da.xaml | 4 +-
.../Languages/de.xaml | 4 +-
.../Languages/es-419.xaml | 4 +-
.../Languages/es.xaml | 4 +-
.../Languages/fr.xaml | 4 +-
.../Languages/it.xaml | 4 +-
.../Languages/ja.xaml | 4 +-
.../Languages/ko.xaml | 4 +-
.../Languages/nb.xaml | 4 +-
.../Languages/nl.xaml | 4 +-
.../Languages/pl.xaml | 4 +-
.../Languages/pt-br.xaml | 4 +-
.../Languages/pt-pt.xaml | 4 +-
.../Languages/ru.xaml | 4 +-
.../Languages/sk.xaml | 4 +-
.../Languages/sr.xaml | 4 +-
.../Languages/tr.xaml | 4 +-
.../Languages/uk-UA.xaml | 4 +-
.../Languages/zh-cn.xaml | 4 +-
.../Languages/zh-tw.xaml | 4 +-
82 files changed, 307 insertions(+), 215 deletions(-)
diff --git a/Flow.Launcher/Languages/da.xaml b/Flow.Launcher/Languages/da.xaml
index 5c6a74fe4..e6eec4560 100644
--- a/Flow.Launcher/Languages/da.xaml
+++ b/Flow.Launcher/Languages/da.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Kunne ikke registrere genvejstast: {0}
Kunne ikke starte {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
diff --git a/Flow.Launcher/Languages/de.xaml b/Flow.Launcher/Languages/de.xaml
index 9a84fce69..ae128fc89 100644
--- a/Flow.Launcher/Languages/de.xaml
+++ b/Flow.Launcher/Languages/de.xaml
@@ -63,6 +63,8 @@
Erforderliche Suchergebnisse.
Pinyin aktivieren
Ermöglicht die Verwendung von Pinyin für die Suche. Pinyin ist das Standardsystem der romanisierten Schreibweise für die Übersetzung von chinesischen Texten.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Der Schatteneffekt ist nicht zulässig, wenn das aktuelle Thema den Weichzeichneffekt aktiviert hat
diff --git a/Flow.Launcher/Languages/es-419.xaml b/Flow.Launcher/Languages/es-419.xaml
index eae8f7c1f..3a4317ca9 100644
--- a/Flow.Launcher/Languages/es-419.xaml
+++ b/Flow.Launcher/Languages/es-419.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Error al registrar la tecla de acceso directo: {0}
No se pudo iniciar {0}
@@ -66,6 +63,8 @@
Cambia la puntuación mínima de similitud requerida para resultados.
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 starts. Press F1 to toggle preview.
El efecto de sombra no está permitido mientras el tema actual tenga el efecto de desenfoque habilitado
diff --git a/Flow.Launcher/Languages/es.xaml b/Flow.Launcher/Languages/es.xaml
index a974172b8..a2b41234a 100644
--- a/Flow.Launcher/Languages/es.xaml
+++ b/Flow.Launcher/Languages/es.xaml
@@ -1,8 +1,5 @@
-
-
+
+
No se ha podido registrar el atajo de teclado: {0}
No se ha podido iniciar {0}
@@ -66,6 +63,8 @@
Cambia la puntuación mínima requerida para la coincidencia de los resultados.
Buscar con Pinyin
Permite utilizar Pinyin para la búsqueda. Pinyin es el sistema estándar de ortografía romanizado para traducir chino.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
El efecto de sombra no está permitido mientras el tema actual tenga el efecto de desenfoque activado
diff --git a/Flow.Launcher/Languages/fr.xaml b/Flow.Launcher/Languages/fr.xaml
index efd1a9b13..4664b871d 100644
--- a/Flow.Launcher/Languages/fr.xaml
+++ b/Flow.Launcher/Languages/fr.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Impossible d'enregistrer le raccourci clavier : {0}
Impossible de lancer {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Devrait utiliser le 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 starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
diff --git a/Flow.Launcher/Languages/it.xaml b/Flow.Launcher/Languages/it.xaml
index 7a8b174c3..84fcad8c8 100644
--- a/Flow.Launcher/Languages/it.xaml
+++ b/Flow.Launcher/Languages/it.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Impossibile salvare il tasto di scelta rapida: {0}
Avvio fallito {0}
@@ -66,6 +63,8 @@
Modifica il punteggio minimo richiesto per i risultati.
Dovrebbe usare il Pinyin
Consente di utilizzare il Pinyin per la ricerca. Il Pinyin è il sistema standard di ortografia romanizzata per la traduzione del cinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
L'effetto ombra non è consentito mentre il tema corrente ha un effetto di sfocatura abilitato
@@ -203,8 +202,8 @@
Una nuova versione {0} è disponibile, riavvia Flow Launcher per favore.
Ricerca aggiornamenti fallita, per favore controlla la tua connessione e le eventuali impostazioni proxy per api.github.com.
- Download degli aggiornamenti fallito, per favore controlla la tua connessione ed eventuali impostazioni proxy per github-cloud.s3.amazonaws.com,
- oppure vai su https://github.com/Flow-Launcher/Flow.Launcher/releases per scaricare gli aggiornamenti manualmente.
+ Download degli aggiornamenti fallito, per favore controlla la tua connessione ed eventuali impostazioni proxy per github-cloud.s3.amazonaws.com,
+ oppure vai su https://github.com/Flow-Launcher/Flow.Launcher/releases per scaricare gli aggiornamenti manualmente.
Note di rilascio
Usage Tips
diff --git a/Flow.Launcher/Languages/ja.xaml b/Flow.Launcher/Languages/ja.xaml
index fcbf6e8e8..816602f1c 100644
--- a/Flow.Launcher/Languages/ja.xaml
+++ b/Flow.Launcher/Languages/ja.xaml
@@ -1,8 +1,5 @@
-
-
+
+
ホットキー「{0}」の登録に失敗しました
{0}の起動に失敗しました
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
@@ -253,7 +252,7 @@
アクションキーボードを指定しない場合、* を使用してください
-
+
Press a custom hotkey to open Flow Laucher and input the specified query automatically.
プレビュー
ホットキーは使用できません。新しいホットキーを選択してください
diff --git a/Flow.Launcher/Languages/ko.xaml b/Flow.Launcher/Languages/ko.xaml
index 21bf8f087..f89a28454 100644
--- a/Flow.Launcher/Languages/ko.xaml
+++ b/Flow.Launcher/Languages/ko.xaml
@@ -1,8 +1,5 @@
-
-
+
+
단축키 등록 실패: {0}
{0}을 실행할 수 없습니다.
@@ -37,7 +34,7 @@
포커스 잃으면 Flow Launcher 숨김
새 버전 알림 끄기
검색 창 위치
- Remember Last Position
+ 마지막 위치 기억
마우스 위치 화면 - 중앙
마우스 위치 화면 - 중앙 상단
마우스 위치 화면 - 좌측 상단
@@ -66,6 +63,8 @@
검색 결과에 필요한 최소 매치 점수를 변경합니다.
항상 Pinyin 사용
Pinyin을 사용하여 검색할 수 있습니다. Pinyin (병음) 은 로마자 중국어 입력 방식입니다.
+ 항상 미리보기
+ 항상 미리보기 패널이 열린 상태로 Flow를 시작합니다. F1키로 미리보기를 on/off 합니다.
반투명 흐림 효과를 사용하는 경우, 그림자 효과를 쓸 수 없습니다.
@@ -149,14 +148,14 @@
Flow Launcher 단축키
Flow Launcher를 열 때 사용할 단축키를 입력합니다.
결과 선택 단축키
- 결과 목록을 선택하는 단축키입니다.
+ 결과 항목을 선택하는 단축키입니다.
단축키 표시
결과창에서 결과 선택 단축키를 표시합니다.
사용자지정 쿼리 단축키
- Custom Query Shortcut
+ 사용자 지정 쿼리 단축어
Built-in Shortcut
쿼리
- Shortcut
+ 단축어
확장
설명
삭제
@@ -199,7 +198,7 @@
아이콘
Flow Launcher를 {0}번 실행했습니다.
업데이트 확인
- Become A Sponsor
+ 후원하기
새 버전({0})이 있습니다. Flow Launcher를 재시작하세요.
업데이트 확인을 실패했습니다. api.github.com로의 연결 또는 프록시 설정을 확인해주세요.
@@ -208,7 +207,7 @@
릴리즈 노트
사용 팁
- 개발자도구
+ 개발자 도구
설정 폴더
로그 폴더
로그 삭제
@@ -261,7 +260,7 @@
업데이트
- Custom Query Shortcut
+ 사용자 지정 쿼리 단축어
Enter a shortcut that automatically expands to the specified query.
Shortcut already exists, please enter a new Shortcut or edit the existing one.
Shortcut and/or its expansion is empty.
diff --git a/Flow.Launcher/Languages/nb.xaml b/Flow.Launcher/Languages/nb.xaml
index 0c23baf7d..5356890e3 100644
--- a/Flow.Launcher/Languages/nb.xaml
+++ b/Flow.Launcher/Languages/nb.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Failed to register hotkey: {0}
Could not start {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
diff --git a/Flow.Launcher/Languages/nl.xaml b/Flow.Launcher/Languages/nl.xaml
index 4f817e15f..a7af3cc57 100644
--- a/Flow.Launcher/Languages/nl.xaml
+++ b/Flow.Launcher/Languages/nl.xaml
@@ -63,6 +63,8 @@
Wijzigt de minimale overeenkomst-score die vereist is voor resultaten.
Zou Pinyin moeten gebruiken
Zorgt ervoor dat Pinyin gebruikt kan worden om te zoeken. Pinyin is het standaard systeem van geromaniseerde spelling voor het vertalen van Chinees.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Schaduw effect is niet toegestaan omdat het huidige thema een vervagingseffect heeft
@@ -87,7 +89,7 @@
door
Init tijd:
Query tijd:
- | Versie
+ Versie
Website
Uninstall
diff --git a/Flow.Launcher/Languages/pl.xaml b/Flow.Launcher/Languages/pl.xaml
index 0131873ff..0a7ccf070 100644
--- a/Flow.Launcher/Languages/pl.xaml
+++ b/Flow.Launcher/Languages/pl.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Nie udało się ustawić skrótu klawiszowego: {0}
Nie udało się uruchomić: {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
@@ -90,7 +89,7 @@
by
Czas ładowania:
Czas zapytania:
- Version
+ Wersja
Website
Odinstalowywanie
diff --git a/Flow.Launcher/Languages/pt-br.xaml b/Flow.Launcher/Languages/pt-br.xaml
index 1dffe8918..61d98cf98 100644
--- a/Flow.Launcher/Languages/pt-br.xaml
+++ b/Flow.Launcher/Languages/pt-br.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Falha ao registrar atalho: {0}
Não foi possível iniciar {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
@@ -90,7 +89,7 @@
by
Tempo de inicialização:
Tempo de consulta:
- Version
+ Versão
Website
Desinstalar
diff --git a/Flow.Launcher/Languages/pt-pt.xaml b/Flow.Launcher/Languages/pt-pt.xaml
index 62e0cdcb9..a06d0e935 100644
--- a/Flow.Launcher/Languages/pt-pt.xaml
+++ b/Flow.Launcher/Languages/pt-pt.xaml
@@ -63,6 +63,8 @@
Altera a precisão mínima necessário para obter resultados
Pesquisar com Pinyin
Permite a utilização de Pinyin para pesquisar. Pinyin é um sistema normalizado de ortografia romanizada para tradução de mandarim.
+ Pré-visualizar sempre
+ Abrir painel de pré-visualização ao iniciar a aplicação. Prima F1 para comutar esta opção.
O efeito sombra não é permitido com este tema porque o efeito desfocar está ativo
@@ -87,7 +89,7 @@
de
Tempo de arranque:
Tempo de consulta:
- | Versão
+ Versão
Site
Desinstalar
diff --git a/Flow.Launcher/Languages/ru.xaml b/Flow.Launcher/Languages/ru.xaml
index 0ba6345c9..471f663eb 100644
--- a/Flow.Launcher/Languages/ru.xaml
+++ b/Flow.Launcher/Languages/ru.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Регистрация хоткея {0} не удалась
Не удалось запустить {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
@@ -90,7 +89,7 @@
by
Инициализация:
Запрос:
- Version
+ Версия
Website
Удалить
diff --git a/Flow.Launcher/Languages/sk.xaml b/Flow.Launcher/Languages/sk.xaml
index 211036ab3..97223e46c 100644
--- a/Flow.Launcher/Languages/sk.xaml
+++ b/Flow.Launcher/Languages/sk.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Nepodarilo sa registrovať klávesovú skratku {0}
Nepodarilo sa spustiť {0}
@@ -66,6 +63,8 @@
Mení minimálne skóre zhody potrebné na zobrazenie výsledkov.
Vyhľadávanie pomocou pchin-jin
Umožňuje vyhľadávanie pomocou pchin-jin. Pchin-jin je systém zápisu čínskeho jazyka pomocou písmen latinky.
+ Vždy zobraziť náhľad
+ Pri spustení Flowu vždy otvoriť panel s náhľadom. Stlačením klávesu F1 prepnete náhľad.
Efekt tieňa nie je povolený, kým má aktuálny motív povolený efekt rozostrenia
@@ -295,7 +294,7 @@
Aktualizuje sa...
Flow Launcher nedokázal presunúť používateľské údaje do aktualizovanej verzie.
- Prosím, presuňte profilový priečinok data z {0} do {1}
+ Prosím, presuňte profilový priečinok data z {0} do {1}
Nová aktualizácia
Je dostupná nová verzia Flow Launchera {0}
diff --git a/Flow.Launcher/Languages/sr.xaml b/Flow.Launcher/Languages/sr.xaml
index 6626ac8fd..0ffb86fac 100644
--- a/Flow.Launcher/Languages/sr.xaml
+++ b/Flow.Launcher/Languages/sr.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Neuspešno registrovana prečica: {0}
Neuspešno pokretanje {0}
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
Search with Pinyin
Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
@@ -90,7 +89,7 @@
by
Vreme inicijalizacije:
Vreme upita:
- Version
+ Verzija
Website
Uninstall
@@ -203,7 +202,7 @@
Nove verzija {0} je dostupna, molim Vas ponovo pokrenite Flow Launcher.
Neuspešna provera ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema api.github.com.
- Neuspešno preuzimanje ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema github-cloud.s3.amazonaws.com,
+ Neuspešno preuzimanje ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema github-cloud.s3.amazonaws.com,
ili posetite https://github.com/Flow-Launcher/Flow.Launcher/releases da preuzmete ažuriranja ručno.
U novoj verziji
diff --git a/Flow.Launcher/Languages/tr.xaml b/Flow.Launcher/Languages/tr.xaml
index 3748d2772..c9c11dbd5 100644
--- a/Flow.Launcher/Languages/tr.xaml
+++ b/Flow.Launcher/Languages/tr.xaml
@@ -63,6 +63,8 @@
Sonuçlar için gereken minimum maç puanını değiştirir.
Pinyin kullanılmalı
Arama yapmak için Pinyin'in kullanılmasına izin verir. Pinyin, Çince'yi çevirmek için standart romanlaştırılmış yazım sistemidir.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Mevcut temada bulanıklık efekti etkinken gölge efektine izin verilmez
diff --git a/Flow.Launcher/Languages/uk-UA.xaml b/Flow.Launcher/Languages/uk-UA.xaml
index 2750df6f5..e8b2048d8 100644
--- a/Flow.Launcher/Languages/uk-UA.xaml
+++ b/Flow.Launcher/Languages/uk-UA.xaml
@@ -1,8 +1,5 @@
-
-
+
+
Реєстрація хоткея {0} не вдалася
Не вдалося запустити {0}
@@ -66,6 +63,8 @@
Змінює мінімальний бал збігів, необхідних для результатів.
Використовувати піньїнь
Дозволяє використовувати пінїнь для пошуку. Піньїнь - це стандартна система написання для перекладу китайської.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Ефект тіні не дозволено, коли поточна тема має ефект розмиття
diff --git a/Flow.Launcher/Languages/zh-cn.xaml b/Flow.Launcher/Languages/zh-cn.xaml
index 449be9919..e4518d6c3 100644
--- a/Flow.Launcher/Languages/zh-cn.xaml
+++ b/Flow.Launcher/Languages/zh-cn.xaml
@@ -1,8 +1,5 @@
-
-
+
+
注册热键:{0} 失败
启动命令 {0} 失败
@@ -37,7 +34,7 @@
失去焦点时自动隐藏 Flow Launcher
不显示新版本提示
搜索窗口位置
- Remember Last Position
+ 记住上次的位置
鼠标所在的屏幕 - 中央
鼠标所在的屏幕 - 顶部中央
鼠标所在的屏幕 - 左上角
@@ -66,6 +63,8 @@
更改匹配成功所需的最低分数。
使用 Pinyin 搜索
允许使用拼音进行搜索.
+ 始终打开预览
+ Flow 启动时总是打开预览面板。按 F1 以切换预览。
当前主题已启用模糊效果,不允许启用阴影效果
@@ -118,13 +117,13 @@
如何创建一个主题
你好!
文件管理器
- Search for files, folders and file contents
- WebSearch
- Search the web with different search engine support
+ 搜索文件、 文件夹和文件内容
+ 网络搜索
+ 使用多个搜索引擎搜索网络
程序
- Launch programs as admin or a different user
- ProcessKiller
- Terminate unwanted processes
+ 以管理员或其他用户身份启动程序
+ 进程杀手
+ 终止不需要的进程
查询框字体
结果项字体
窗口模式
@@ -153,18 +152,18 @@
显示热键
显示用于打开结果的快捷键。
自定义查询热键
- Custom Query Shortcut
- Built-in Shortcut
+ 自定义查询捷径
+ 内置捷径
查询
捷径
- Expansion
+ 展开
描述
删除
编辑
增加
请选择一项
你确定要删除插件 {0} 的热键吗?
- Are you sure you want to delete shortcut: {0} with expansion {1}?
+ 你确定要删除捷径 {0} (展开为 {1})?
从剪贴板获取文本。
查询窗口阴影效果
阴影效果将占用大量的GPU资源。 如果您的计算机性能有限,则不建议使用。
@@ -199,11 +198,11 @@
图标
你已经激活了 Flow Launcher {0} 次
检查更新
- Become A Sponsor
+ 成为赞助者
发现新版本 {0}, 请重启 Flow Launcher
下载更新失败,请检查您与 api.github.com 的连接状态或检查代理设置
- 下载更新失败,请检查您与 github-cloud.s3.amazonaws.com 的连接状态或检查代理设置,
+ 下载更新失败,请检查您与 github-cloud.s3.amazonaws.com 的连接状态或检查代理设置,
或访问 https://github.com/Flow-Launcher/Flow.Launcher/releases 手动下载更新
更新说明
@@ -254,7 +253,7 @@
自定义查询热键
- Press a custom hotkey to open Flow Laucher and input the specified query automatically.
+ 输入一个自定义的快捷键来打开 Flow Laucher 并自动输入指定的查询。
预览
热键不可用,请选择一个新的热键
插件热键不合法
@@ -262,9 +261,9 @@
自定义查询捷径
- Enter a shortcut that automatically expands to the specified query.
- Shortcut already exists, please enter a new Shortcut or edit the existing one.
- Shortcut and/or its expansion is empty.
+ 输入一个捷径,它将自动展开为一个查询。
+ 捷径已存在,请输入一个新的或者编辑已有的。
+ 捷径及其展开均不能为空。
热键不可用
diff --git a/Flow.Launcher/Languages/zh-tw.xaml b/Flow.Launcher/Languages/zh-tw.xaml
index b9ea5605d..e5a8800f7 100644
--- a/Flow.Launcher/Languages/zh-tw.xaml
+++ b/Flow.Launcher/Languages/zh-tw.xaml
@@ -1,8 +1,5 @@
-
-
+
+
登錄快捷鍵:{0} 失敗
啟動命令 {0} 失敗
@@ -66,6 +63,8 @@
Changes minimum match score required for results.
拼音搜索
允許使用拼音來搜索.
+ Always Preview
+ Always open preview panel when Flow starts. Press F1 to toggle preview.
Shadow effect is not allowed while current theme has blur effect enabled
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml
index 2cb76582c..2f8d718d4 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Languages/zh-cn.xaml
@@ -19,5 +19,5 @@
数据文件路径
增加
删除
- Others
+ 其他
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml
index acb261bfa..459469fb6 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/da.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml
index fdaf25781..e8e1dab13 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/de.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml
index ff63baca2..f68265f90 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es-419.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml
index bfb2b0642..47acfa005 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/es.xaml
@@ -47,9 +47,9 @@
Enumeración directa
Motor de búsqueda de contenido
- Motor de búsqueda recursivo de directorio
+ Motor de búsqueda recursiva de directorio
Motor de búsqueda del Índice
- Abrir ventana de opciones de indexación
+ Open Windows Index Option
Explorador
@@ -89,7 +89,7 @@
Mostrar menú contextual de Windows
- Fallo al cargar Everything SDK
+ No se ha podido cargar Everything SDK
Advertencia: El servicio de Everything no se está ejecutando
Error al consultar Everything
Ordenar por
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml
index 4844c5bdc..94a035de3 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/fr.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml
index aad9f2612..750fa3c75 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/it.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml
index 50439308e..889cf6145 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ja.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml
index 5ff2caa54..169112243 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ko.xaml
@@ -19,7 +19,7 @@
삭제
편집
- 추
+ 추가
General Setting
사용자 지정 액션 키워드
Quick Access Links
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
탐색기
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml
index e20853e5b..79f0c799b 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nb.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml
index 217a63b79..2d16bfa6d 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/nl.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml
index 177161be0..b384e3cdb 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pl.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml
index 6ced1ce62..70cdd4b35 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-br.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml
index 37de2b5b4..ec8b051ef 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/pt-pt.xaml
@@ -49,7 +49,7 @@
Mecanismo de pesquisa para conteúdo
Mecanismo de pesquisa recursiva de diretórios
Mecanismo de pesquisa do índice
- Abrir opções do índice Windows
+ Abrir opções de índice do Windows
Explorador
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml
index 5e0786c62..6f6594bc6 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/ru.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml
index 66098dbba..c773f2e23 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/sr.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml
index 757b98e7c..11ed92018 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/tr.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml
index 0765550f7..1f6833877 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/uk-UA.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
Explorer
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml
index c1d25614b..c3adc24e3 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml
@@ -20,15 +20,15 @@
删除
编辑
增加
- General Setting
+ 通用设置
自定义动作关键字
快速访问链接
- Everything Setting
- Sort Option:
- Everything Path:
- Launch Hidden
+ Everything 设置
+ 排序选项
+ Everything 路径
+ 隐藏启动
编辑器路径
- Shell Path
+ Shell 路径
索引搜索排除的路径
使用搜索结果的位置作为应用程序的工作目录
使用索引进行路径搜索
@@ -43,21 +43,21 @@
启用
当禁用时,Flow Launcher 将不会执行此搜索选项,并且还会恢复到“*”以释放动作关键字
Everything
- Windows Index
- Direct Enumeration
+ Windows 索引
+ 直接枚举
- Content Search Engine
- Directory Recursive Search Engine
- Index Search Engine
- Open Window Index Option
+ 文件内容搜索引擎
+ 目录递归搜索引擎
+ 索引搜索引擎
+ Open Windows Index Option
文件管理器
利用Windows索引来搜索和管理文件和文件夹。
- Ctrl + Enter to open the directory
- Ctrl + Enter to open the containing folder
+ Ctrl + Enter 以打开目录
+ Ctrl + Enter 以打开所在的文件夹
复制路径
@@ -70,7 +70,7 @@
打开文件所在文件夹
打开文件或文件夹所在目录
使用编辑器打开:
- Open With Shell:
+ 使用 Shell 打开:
从索引搜索中排除当前目录和子目录
从索引搜索中排除
打开Windows索引选项
@@ -86,10 +86,10 @@
从快速访问中删除
从快速访问中删除
从快速访问中删除 {0}
- Show Windows Context Menu
+ 显示 Windows 上下文菜单
- Everything SDK Loaded Fail
+ Everything SDK 加载失败
警告:Everything 服务未运行
Everything 插件发生了一个错误(回车拷贝具体错误信息)
排序依据
@@ -110,7 +110,7 @@
↓
警告:这不是一个快速排序选项,搜索可能较慢。
- Click to Launch or Install Everything
+ 单击启动或安装 Everything
Everything 安装
正在安装 Everything 服务。请稍后...
成功安装了 Everything 服务
diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml
index 708c946d7..ff60d11aa 100644
--- a/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-tw.xaml
@@ -49,7 +49,7 @@
Content Search Engine
Directory Recursive Search Engine
Index Search Engine
- Open Window Index Option
+ Open Windows Index Option
檔案總管
diff --git a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml
index 068b114e5..58d3fdf1f 100644
--- a/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.PluginsManager/Languages/zh-cn.xaml
@@ -2,13 +2,13 @@
- 下载插件
+ 正在下载插件...
下载完成
错误:无法下载该插件
{0} by {1} {2}{3} 您要卸载此插件吗? 卸载后,Flow Launcher 将自动重启。
{0} by {1} {2}{3} 您要安装此插件吗? 安装后,Flow Launcher 将自动重启
插件安装
- Installing Plugin
+ 正在安装插件
下载与安装 {0}
插件卸载
插件安装成功。正在重新启动 Flow Launcher,请稍候...
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml
index c520b25cd..c4aa76b78 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/da.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml
index d0489e1f6..13f258a3d 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/de.xaml
@@ -10,6 +10,9 @@
Aktivieren
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Speicherort
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Endungen
Maximale Tiefe
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml
index 931e5681b..b26c3d85e 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/es-419.xaml
@@ -10,6 +10,9 @@
Habilitar
Enabled
Deshabilitar
+ Status
+ Enabled
+ Disabled
Ubicación
Todos los programas
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml
index b04c92ff0..3246dbedf 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/es.xaml
@@ -10,6 +10,9 @@
Activar
Activado
Desactivar
+ Estado
+ Activado
+ Desactivado
Ubicación
Todos los programas
Tipo de archivo
@@ -26,7 +29,7 @@
Ocultar ruta de aplicación
Para los archivos ejecutables como UWP o lnk, oculta la ruta del archivo para que no sea visible
Buscar en la descripción del programa
- Cuando este desactivado, Flow evitará buscar a través de la descripción del programa
+ Flow buscará la descripción del programa
Extensiones
Profundidad máxima
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml
index 904cb8cb8..90bf823cd 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/fr.xaml
@@ -10,6 +10,9 @@
Activer
Enabled
Désactiver
+ Status
+ Enabled
+ Disabled
Emplacement
Tous les programmes
Type de fichier
@@ -26,7 +29,7 @@
Masquer le chemin de l'application
Pour les fichiers exécutables tels que UWP ou lnk, masquez le chemin d'accès pour ne pas être visible
Rechercher dans la description du programme
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml
index 36d432378..225713a76 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/it.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml
index fb25a40a4..5d1900ac9 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ja.xaml
@@ -10,6 +10,9 @@
有効
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml
index 0b5998f42..deee2e461 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ko.xaml
@@ -2,31 +2,34 @@
- Reset Default
+ 기본값으로 되돌리기
삭제
편집
- 추
- Name
+ 추가
+ 이름
활성화
켬
비활성화
+ Status
+ 켬
+ Disabled
위치
모든 프로그램
- File Type
+ 파일 형식
재색인
색인 중
- Index Sources
- Options
- Start Menu
+ 색인 위치
+ 기타 설정
+ 시작 메뉴
활성화시 Flow가 시작 메뉴의 프로그램을 로드합니다.
- Registry
+ 레지스트리
활성화시 Flow가 레지스트리로부터 프로그램을 로드합니다
PATH
When enabled, Flow will load programs from the PATH environment variable
앱 경로 숨김
UWP나 Lnk 같이 실행 가능한 프로그램인 경우 경로를 표시하지 않습니다
프로그램 설명 검색
- 비활성화시 프로그램 설명란에 적힌 내용을 Flow가 검색하지 않습니다
+ Flow will search program's description
확장자
최대 깊이
@@ -43,7 +46,7 @@
Edit directory and status of this program source.
업데이트
- Program Plugin will only index files with selected suffixes and .url files with selected protocols.
+ 프로그램 플러그인은 선택된 확장자 및 선택된 프로토콜의 .url 파일만 검색합니다.
파일 확장자를 성공적으로 업데이트 했습니다
파일 확장자는 비울 수 없습니다
Protocols can't be empty
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml
index a6f947a7a..f65ca9ff2 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/nb.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml
index 3a56ed975..e42e4c35c 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/nl.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml
index d8c0344a4..06b76925d 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pl.xaml
@@ -10,6 +10,9 @@
Aktywne
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Lokalizacja
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Rozszerzenia
Maksymalna głębokość
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml
index 7b1486668..4be7ddc39 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-br.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml
index dda5bf72e..f46c79e1d 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/pt-pt.xaml
@@ -10,6 +10,9 @@
Ativar
Ativo
Desativar
+ Estado
+ Ativo
+ Inativo
Localização
Todos os programas
Tipo de ficheiro
@@ -26,7 +29,7 @@
Ocultar caminho da aplicação
Para ficheiros executáveis, tais como UWP ou lnk, ocultar o caminho do ficheiro
Pesquisar na descrição dos programas
- Se ativada, Flow Launcher irá analisar também a descrição dos programas
+ Flow irá pesquisar na descrição do programa
Sufixos
Profundidade máxima
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml
index ff39b9277..f23659298 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/ru.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml
index 82e8a0f30..33bf52c20 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/sk.xaml
@@ -10,6 +10,9 @@
Povoliť
Povolené
Zakázať
+ Stav
+ Povolené
+ Vypnuté
Umiestnenie
Všetky programy
Typ súboru
@@ -26,7 +29,7 @@
Skryť cestu k aplikácii
Pre spustiteľné súbory ako sú UWP alebo odkazy nezobrazovať cestu k súborom
Povoliť popis programu
- Zakázaním tejto funkcie sa tiež zastaví vyhľadávanie v popise programu cez Flow
+ Flow bude vyhľadávať v popise programu
Prípony
Max. hĺbka
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml
index d05106b4c..c25e4f2f4 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/sr.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml
index 1f6d776f6..27410c9d6 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/tr.xaml
@@ -10,6 +10,9 @@
Etkin
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Konum
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Uzantılar
Derinlik
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml
index f7f824c61..057987b1c 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/uk-UA.xaml
@@ -10,6 +10,9 @@
Enable
Enabled
Disable
+ Status
+ Enabled
+ Disabled
Location
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
Suffixes
Max Depth
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml
index ec5b7c10f..db2b75e26 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-cn.xaml
@@ -10,6 +10,9 @@
启用
启用
禁用
+ Status
+ 启用
+ Disabled
位置
所有程序
文件类型
@@ -26,7 +29,7 @@
隐藏应用路径
隐藏诸如UWP,lnk 等可执行文件的路径
启用程序描述
- 禁用时会阻止 Flow 通过程序描述搜索
+ Flow will search program's description
后缀
最大深度
@@ -37,7 +40,7 @@
请先选择一项
您确定要删除选定的程序源吗?
- Another program source with the same location already exists.
+ 相同位置存在另一个程序源。
程序源
编辑此程序源的目录和状态。
@@ -79,9 +82,9 @@
成功
- Error
+ 错误
成功禁止该程序在搜索结果中显示
此应用程序不能作为管理员运行
- Unable to run {0}
+ 无法运行 {0}
diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml
index a086ce3bb..1246e3da7 100644
--- a/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/zh-tw.xaml
@@ -10,6 +10,9 @@
啟
已啟用
停用
+ Status
+ 已啟用
+ Disabled
路徑
All Programs
File Type
@@ -26,7 +29,7 @@
Hide app path
For executable files such as UWP or lnk, hide the file path from being visible
Search in Program Description
- Disabling this will also stop Flow from searching via the program desciption
+ Flow will search program's description
副檔名
最大深度
diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml
index 7b140b41f..069b03ba7 100644
--- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml
@@ -5,9 +5,9 @@
명령어
설명
- 컴퓨터 종료
- 컴퓨터 재시작
- 안전 및 디버깅 모드에 대한 고급 부팅 옵션과 기타 옵션을 사용하여 컴퓨터를 다시 시작
+ 시스템 종료
+ 시스템 재시작
+ 안전 및 디버깅 모드에 대한 고급 부팅 옵션과 기타 옵션을 사용하여 시스템을 다시 시작
로그아웃
컴퓨터 잠금
Flow Launcher 닫기
@@ -29,9 +29,9 @@
성공
모든 Flow Launcher 설정을 저장했습니다
적용 가능한 모든 플러그인 데이터를 다시 로드했습니다
- 컴퓨터를 종료하시겠습니까?
- 컴퓨터를 재시작 하시겠습니까?
- 고급 부팅 옵션으로 컴퓨터를 다시 시작하시겠습니까?
+ 시스템을 종료하시겠습니까?
+ 시스템을 재시작 하시겠습니까?
+ 고급 부팅 옵션으로 시스템을 다시 시작하시겠습니까?
시스템 명령어
시스템 종료, 컴퓨터 잠금, 설정 등과 같은 시스템 관련 명령어를 제공합니다
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml
index e36b0a7de..4d32b7bbc 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/da.xaml
@@ -10,6 +10,8 @@
Slet
Rediger
Tilføj
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Annuller
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml
index 887e2e9b5..afc3c3d61 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/de.xaml
@@ -10,6 +10,8 @@
Löschen
Bearbeiten
Hinzufügen
+ Enabled
+ Disabled
Confirm
Aktionsschlüsselwort
URL
@@ -30,7 +32,7 @@
Titel
- Aktivieren
+ Status
Wähle Symbol
Symbol
Abbrechen
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml
index e058e6e41..f234a180b 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es-419.xaml
@@ -10,6 +10,8 @@
Eliminar
Editar
Añadir
+ Enabled
+ Disabled
Confirmar
Palabra clave
URL
@@ -30,7 +32,7 @@
Título
- Habilitar
+ Status
Seleccionar icono
Ícono
Cancelar
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml
index 1c0d66f05..63fdae4ee 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/es.xaml
@@ -10,6 +10,8 @@
Eliminar
Editar
Añadir
+ Activado
+ Desactivado
Confirmar
Palabra clave de acción
URL
@@ -30,7 +32,7 @@
Título
- Activar
+ Estado
Seleccionar icono
Icono
Cancelar
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml
index da433832e..960aa6d5c 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/fr.xaml
@@ -10,6 +10,8 @@
Supprimer
Modifier
Ajouter
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Annuler
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml
index b7bd18deb..a09f73077 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/it.xaml
@@ -10,6 +10,8 @@
Cancella
Modifica
Aggiungi
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Annulla
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml
index 0658f9f1f..edf26dc35 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ja.xaml
@@ -10,6 +10,8 @@
削除
編集
追加
+ Enabled
+ Disabled
Confirm
キーワード
URL
@@ -30,7 +32,7 @@
タイトル
- 有効
+ Status
アイコンを選択
アイコン
キャンセル
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml
index 706e94365..2b34775c5 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ko.xaml
@@ -10,6 +10,8 @@
삭제
편집
추
+ 켬
+ Disabled
확인
액션 키워드
URL
@@ -30,7 +32,7 @@
이름
- 활성화
+ Status
아이콘 선택
아이콘
취소
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml
index 01dfaf784..d6059c371 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nb.xaml
@@ -10,6 +10,8 @@
Delete
Edit
Add
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Cancel
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml
index b5d303fab..fac64d046 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/nl.xaml
@@ -10,6 +10,8 @@
Verwijder
Bewerken
Toevoegen
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Annuleer
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml
index ae2b7e57f..6860f8aac 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pl.xaml
@@ -10,6 +10,8 @@
Usuń
Edytuj
Dodaj
+ Enabled
+ Disabled
Confirm
Wyzwalacz
Adres URL
@@ -30,7 +32,7 @@
Tytuł
- Aktywne
+ Status
Wybierz ikonę
Ikona
Anuluj
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml
index 4fb45e7df..d1838a4d6 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-br.xaml
@@ -10,6 +10,8 @@
Apagar
Editar
Adicionar
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Cancelar
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml
index 9278b3e0d..4b36dd408 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/pt-pt.xaml
@@ -10,6 +10,8 @@
Eliminar
Editar
Adicionar
+ Ativo
+ Inativo
Confirmar
Palavra-chave de ação
URL
@@ -30,7 +32,7 @@
Título
- Ativar
+ Estado
Selecionar ícone
Ícone
Cancelar
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml
index f185a6dc2..8280c1297 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/ru.xaml
@@ -10,6 +10,8 @@
Удалить
Редактировать
Добавить
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Отменить
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml
index 008b893bb..3ec98073f 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sk.xaml
@@ -10,6 +10,8 @@
Odstrániť
Upraviť
Pridať
+ Povolené
+ Vypnuté
Potvrdiť
Aktivačný príkaz
Adresa URL
@@ -30,7 +32,7 @@
Názov
- Povoliť
+ Stav
Vybrať ikonu
Ikona
Zrušiť
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml
index 9038585b6..8de90c8fb 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/sr.xaml
@@ -10,6 +10,8 @@
Obriši
Izmeni
Dodaj
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Otkaži
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml
index a30da0afe..3d3b0e58e 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/tr.xaml
@@ -10,6 +10,8 @@
Sil
Düzenle
Ekle
+ Enabled
+ Disabled
Onayla
Anahtar Kelime
URL
@@ -30,7 +32,7 @@
Başlık
- Etkin
+ Status
Simge Seç
Simge
İptal
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml
index ca17365b1..352d9d785 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/uk-UA.xaml
@@ -10,6 +10,8 @@
Видалити
Редагувати
Додати
+ Enabled
+ Disabled
Confirm
Action Keyword
URL
@@ -30,7 +32,7 @@
Title
- Enable
+ Status
Select Icon
Icon
Скасувати
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml
index b2bbe38e5..7dceeb646 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-cn.xaml
@@ -10,6 +10,8 @@
删除
编辑
增加
+ 启用
+ Disabled
确认
触发关键字
打开链接
@@ -30,7 +32,7 @@
标题
- 启用
+ Status
选择图标
图标
取消
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml
index 996b19dad..78d07a118 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/Languages/zh-tw.xaml
@@ -10,6 +10,8 @@
刪除
編輯
新增
+ 已啟用
+ Disabled
確定
觸發關鍵字
URL
@@ -30,7 +32,7 @@
標題
- 啟用
+ Status
選擇圖示
圖示
取消
From 54ea68c119c2752e16f5fa8fa5d2c3b87fbbf28b Mon Sep 17 00:00:00 2001
From: Jeremy Wu
Date: Tue, 13 Dec 2022 13:51:59 +1100
Subject: [PATCH 12/12] Version bump for 1.10.0 release + update readme (#997)
---
README.md | 119 +++++++++++++++++++++++++++++++++++++--------------
appveyor.yml | 2 +-
2 files changed, 88 insertions(+), 33 deletions(-)
diff --git a/README.md b/README.md
index ca17f1130..ffe809f0a 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,9 @@
- 
-
-
-
+
+
+
+
-
-
@@ -22,18 +20,63 @@ Dedicated to making your workflow flow more seamless. Search everything from app
Remember to star it, flow will love you more :)
-
SOFTPEDIA EDITOR'S PICK
-
-## 🎉 New Features in 1.9
+## 🎅 New Features🤶
+### Preview Panel
+
-
+- Use the F1 key to open/hide the preview panel.
+- Media files will be displayed as large images, otherwise a large icon and entire path will be displayed.
+- Turn on preview permanently via Settings (Always Preview).
+- Use hotkeys (Ctrl+Plus,Minus / Ctrl+],[) to adjust flow's search window width and height quickly if the preview area is too narrow.
+- This feature is currently in its early stages.
-- All New Design. New Themes, New Setting Window. Animation & Sound Effect, Color Scheme aka Dark Mode.
-- New Plugins, Plugin Store, Game Mode, Wizard window
-- Full changelog
+### Everything Plugin Merged Into Explorer
+
+
+- Switch easily between Everything and Windows Search to take advantage of both search engines (remember to remove existing Everything plugin).
+- Use features available to both Everything and Explorer plugins
+
+### Date & Time Display In Search Window
+
+
+
+- Display the date and time when the search window is triggered.
+
+### Drag & Drop
+
+
+- Drag an item to Discord or computer location.
+- The target program determines whether the drop is to copy or move the item (can change via CTRL or Alt), and the operation is displayed on the mouse cursor.
+
+### Custom Shortcut
+
+
+
+
+- New shortcut functionality to set additional action keywords or search terms.
+
+### Impvroved Program Plugin
+- PATH is now indexed
+- Support for .url files, flow can now search installed steam/epic games.
+- Improved UWP indexing.
+
+### Improved Memory Usage
+- Fixed a memory leak and reduced overall memory usage.
+
+### Improved Plugin / Plugin Store
+- Search plugins in the Plugin Store and existing plugin tab.
+- Categorised sections in Plugin Store to easily see new and updated plugins.
+
+### Improved Non-C# Plugin's Panel Design
+
+
+- The design has been adjusted to align to the overall look and feel of flow.
+- Simplified the information displayed on buttons
+
+🚂Full Changelogs
@@ -84,11 +127,12 @@ And you can download
-
+
+
### Browser Bookmarks
-
+
### System Commands
@@ -99,26 +143,27 @@ And you can download
+
- Do mathematical calculations and copy the result to clipboard.
### Shell Command
-
+
+
- Run batch and PowerShell commands as Administrator or a different user.
- Ctrl+Enter to Run as Administrator.
### Explorer
-
+
- Save file or folder locations for quick access.
### Windows & Control Panel Settings
-
+
- Search for Windows & Control Panel settings.
@@ -127,17 +172,16 @@ And you can download
-
- Prioritise the order of each plugin's results.
### Customizations
-
+
- Window size adjustment, animation, and sound
- Color Scheme (aka Dark Mode)
-
+
- There are various themes and you also can make your own.
@@ -157,9 +201,10 @@ And you can download
+
- Pause hotkey activation when you are playing games.
+- When in search window use Ctrl+F12 to toggle on/off.
@@ -208,8 +253,8 @@ And you can download
### 🛒 Plugin Store
+
-
- You can view the full plugin list or quickly install a plugin via the Plugin Store menu inside Settings
@@ -224,16 +269,21 @@ And you can download
-
+
+
+
+
+
+
itsonlyfrans
-
-
- :sparkles:Why I Chose to Support Flow-Launcher:sparkles:
-
-
+### Mentions
+- Why I Chose to Support Flow-Launcher - Appwrite
+- Softpedia Editor's Pick
diff --git a/appveyor.yml b/appveyor.yml
index aa490fd25..f296c76fb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
-version: '1.9.5.{build}'
+version: '1.10.0.{build}'
init:
- ps: |