Skip to content

Commit c842a4c

Browse files
committed
clean up
1 parent d807b21 commit c842a4c

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

Flow.Launcher.Test/Flow.Launcher.Test.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@
3838
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
3939
</ItemGroup>
4040

41-
<ItemGroup>
42-
<None Include="..\.editorconfig" Link=".editorconfig" />
43-
</ItemGroup>
44-
4541
<ItemGroup>
4642
<ProjectReference Include="..\Plugins\Flow.Launcher.Plugin.Explorer\Flow.Launcher.Plugin.Explorer.csproj" />
4743
<ProjectReference Include="..\Plugins\Flow.Launcher.Plugin.Program\Flow.Launcher.Plugin.Program.csproj" />

Flow.Launcher.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Flow.Launcher.Plugin.Url",
4545
EndProject
4646
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FFD651C7-0546-441F-BC8C-D4EE8FD01EA7}"
4747
ProjectSection(SolutionItems) = preProject
48-
.editorconfig = .editorconfig
4948
.gitattributes = .gitattributes
5049
.gitignore = .gitignore
5150
appveyor.yml = appveyor.yml

Plugins/Flow.Launcher.Plugin.Explorer/Languages/en.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">Index Search Excluded Paths</system:String>
2121
<system:String x:Key="plugin_explorer_manageindexoptions">Indexing Options</system:String>
2222
<system:String x:Key="plugin_explorer_actionkeywordview_search">Search:</system:String>
23-
<system:String x:Key="plugin_explorer_actionkeywordview_path">Path Search:</system:String>
23+
<system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">Path Search:</system:String>
2424
<system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">File Content Search:</system:String>
25-
<system:String x:Key="plugin_explorer_actionkeywordview_indexonlysearch">Index Search:</system:String>
25+
<system:String x:Key="plugin_explorer_actionkeywordview_indexsearch">Index Search:</system:String>
2626
<system:String x:Key="plugin_explorer_actionkeyword_current">Current Action Keyword:</system:String>
2727
<system:String x:Key="plugin_explorer_actionkeyword_done">Done</system:String>
2828
<system:String x:Key="plugin_explorer_actionkeyword_enabled">Enabled</system:String>

Plugins/Flow.Launcher.Plugin.Explorer/Languages/zh-cn.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<system:String x:Key="plugin_explorer_indexsearchexcludedpaths_header">索引搜索排除的路径</system:String>
2121
<system:String x:Key="plugin_explorer_manageindexoptions">索引选项</system:String>
2222
<system:String x:Key="plugin_explorer_actionkeywordview_search">搜索激活:</system:String>
23-
<system:String x:Key="plugin_explorer_actionkeywordview_path">路径搜索激活:</system:String>
23+
<system:String x:Key="plugin_explorer_actionkeywordview_pathsearch">路径搜索激活:</system:String>
2424
<system:String x:Key="plugin_explorer_actionkeywordview_filecontentsearch">文件内容搜索:</system:String>
2525

2626
<!--Plugin Infos-->

Plugins/Flow.Launcher.Plugin.Explorer/Views/ExplorerSettings.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ public ExplorerSettings(SettingsViewModel viewModel)
4040
new(Settings.ActionKeyword.FileContentSearchActionKeyword,
4141
viewModel.Context.API.GetTranslation("plugin_explorer_actionkeywordview_filecontentsearch")),
4242
new(Settings.ActionKeyword.PathSearchActionKeyword,
43-
viewModel.Context.API.GetTranslation("plugin_explorer_actionkeywordview_path")),
43+
viewModel.Context.API.GetTranslation("plugin_explorer_actionkeywordview_pathsearch")),
4444
new(Settings.ActionKeyword.IndexSearchActionKeyword,
45-
viewModel.Context.API.GetTranslation("plugin_explorer_actionkeywordview_indexonlysearch"))
45+
viewModel.Context.API.GetTranslation("plugin_explorer_actionkeywordview_indexsearch"))
4646
};
4747

4848
lbxActionKeywords.ItemsSource = actionKeywordsListView;

0 commit comments

Comments
 (0)