mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 01:08:18 +08:00
spelling: separator (#3751)
This commit is contained in:
parent
d5c3a3e5e8
commit
3265549911
@ -16,7 +16,7 @@ namespace Microsoft.Plugin.Program
|
|||||||
this.context = context;
|
this.context = context;
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
_settings = settings;
|
_settings = settings;
|
||||||
tbSuffixes.Text = string.Join(Settings.SuffixSeperator.ToString(), _settings.ProgramSuffixes);
|
tbSuffixes.Text = string.Join(Settings.SuffixSeparator.ToString(), _settings.ProgramSuffixes);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
|
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
|
||||||
@ -28,7 +28,7 @@ namespace Microsoft.Plugin.Program
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
_settings.ProgramSuffixes = tbSuffixes.Text.Split(Settings.SuffixSeperator);
|
_settings.ProgramSuffixes = tbSuffixes.Text.Split(Settings.SuffixSeparator);
|
||||||
string msg = context.API.GetTranslation("wox_plugin_program_update_file_suffixes");
|
string msg = context.API.GetTranslation("wox_plugin_program_update_file_suffixes");
|
||||||
MessageBox.Show(msg);
|
MessageBox.Show(msg);
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ namespace Microsoft.Plugin.Program
|
|||||||
|
|
||||||
public bool EnableRegistrySource { get; set; } = true;
|
public bool EnableRegistrySource { get; set; } = true;
|
||||||
|
|
||||||
internal const char SuffixSeperator = ';';
|
internal const char SuffixSeparator = ';';
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains user added folder location contents as well as all user disabled applications
|
/// Contains user added folder location contents as well as all user disabled applications
|
||||||
|
@ -317,7 +317,7 @@ namespace Microsoft.Plugin.Shell
|
|||||||
|
|
||||||
private void OnWinRPressed()
|
private void OnWinRPressed()
|
||||||
{
|
{
|
||||||
_context.API.ChangeQuery($"{_context.CurrentPluginMetadata.ActionKeywords[0]}{Wox.Plugin.Query.TermSeperater}");
|
_context.API.ChangeQuery($"{_context.CurrentPluginMetadata.ActionKeywords[0]}{Wox.Plugin.Query.TermSeparator}");
|
||||||
Application.Current.MainWindow.Visibility = Visibility.Visible;
|
Application.Current.MainWindow.Visibility = Visibility.Visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ namespace Wox
|
|||||||
|
|
||||||
private void ActionKeyword_OnLoaded(object sender, RoutedEventArgs e)
|
private void ActionKeyword_OnLoaded(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
tbOldActionKeyword.Text = string.Join(Query.ActionKeywordSeperater, _plugin.Metadata.ActionKeywords.ToArray());
|
tbOldActionKeyword.Text = string.Join(Query.ActionKeywordSeparator, _plugin.Metadata.ActionKeywords.ToArray());
|
||||||
tbAction.Focus();
|
tbAction.Focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,13 +10,13 @@ namespace Wox.Core.Plugin
|
|||||||
public static Query Build(string text, Dictionary<string, PluginPair> nonGlobalPlugins)
|
public static Query Build(string text, Dictionary<string, PluginPair> nonGlobalPlugins)
|
||||||
{
|
{
|
||||||
// replace multiple white spaces with one white space
|
// replace multiple white spaces with one white space
|
||||||
var terms = text.Split(new[] { Query.TermSeperater }, StringSplitOptions.RemoveEmptyEntries);
|
var terms = text.Split(new[] { Query.TermSeparator }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
if (terms.Length == 0)
|
if (terms.Length == 0)
|
||||||
{ // nothing was typed
|
{ // nothing was typed
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
var rawQuery = string.Join(Query.TermSeperater, terms);
|
var rawQuery = string.Join(Query.TermSeparator, terms);
|
||||||
string actionKeyword, search;
|
string actionKeyword, search;
|
||||||
string possibleActionKeyword = terms[0];
|
string possibleActionKeyword = terms[0];
|
||||||
List<string> actionParameters;
|
List<string> actionParameters;
|
||||||
|
@ -41,11 +41,11 @@ namespace Wox.Plugin
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Query can be splited into multiple terms by whitespace
|
/// Query can be splited into multiple terms by whitespace
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const string TermSeperater = " ";
|
public const string TermSeparator = " ";
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// User can set multiple action keywords separated by ';'
|
/// User can set multiple action keywords separated by ';'
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const string ActionKeywordSeperater = ";";
|
public const string ActionKeywordSeparator = ";";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// '*' is used for System Plugin
|
/// '*' is used for System Plugin
|
||||||
@ -67,7 +67,7 @@ namespace Wox.Plugin
|
|||||||
get
|
get
|
||||||
{
|
{
|
||||||
var index = string.IsNullOrEmpty(ActionKeyword) ? 1 : 2;
|
var index = string.IsNullOrEmpty(ActionKeyword) ? 1 : 2;
|
||||||
return string.Join(TermSeperater, Terms.Skip(index).ToArray());
|
return string.Join(TermSeparator, Terms.Skip(index).ToArray());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ namespace Wox
|
|||||||
|
|
||||||
private void ActionKeyword_OnLoaded(object sender, RoutedEventArgs e)
|
private void ActionKeyword_OnLoaded(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
tbOldActionKeyword.Text = string.Join(Query.ActionKeywordSeperater, _plugin.Metadata.ActionKeywords.ToArray());
|
tbOldActionKeyword.Text = string.Join(Query.ActionKeywordSeparator, _plugin.Metadata.ActionKeywords.ToArray());
|
||||||
tbAction.Focus();
|
tbAction.Focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,6 +16,6 @@ namespace Wox.ViewModel
|
|||||||
public Visibility ActionKeywordsVisibility => PluginPair.Metadata.ActionKeywords.Count > 1 ? Visibility.Collapsed : Visibility.Visible;
|
public Visibility ActionKeywordsVisibility => PluginPair.Metadata.ActionKeywords.Count > 1 ? Visibility.Collapsed : Visibility.Visible;
|
||||||
public string InitilizaTime => string.Format(_translator.GetTranslation("plugin_init_time"), PluginPair.Metadata.InitTime);
|
public string InitilizaTime => string.Format(_translator.GetTranslation("plugin_init_time"), PluginPair.Metadata.InitTime);
|
||||||
public string QueryTime => string.Format(_translator.GetTranslation("plugin_query_time"), PluginPair.Metadata.AvgQueryTime);
|
public string QueryTime => string.Format(_translator.GetTranslation("plugin_query_time"), PluginPair.Metadata.AvgQueryTime);
|
||||||
public string ActionKeywordsText => string.Join(Query.ActionKeywordSeperater, PluginPair.Metadata.ActionKeywords);
|
public string ActionKeywordsText => string.Join(Query.ActionKeywordSeparator, PluginPair.Metadata.ActionKeywords);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -132,7 +132,7 @@ bool SystemMenuHelper::AddSeparator(PowertoyModuleIface* module, HWND window)
|
|||||||
|
|
||||||
if (InsertMenuItem(systemMenu, GetMenuItemCount(systemMenu) - KSeparatorPos, true, &separator))
|
if (InsertMenuItem(systemMenu, GetMenuItemCount(systemMenu) - KSeparatorPos, true, &separator))
|
||||||
{
|
{
|
||||||
IdMappings[separator.wID] = { module, L"sepparator_dummy_name" };
|
IdMappings[separator.wID] = { module, L"separator_dummy_name" };
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user