Skip to content

Commit 155156f

Browse files
committed
Add String in ContextMenu
1 parent 21ddf4c commit 155156f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Flow.Launcher/Languages/en.xaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
<system:String x:Key="iconTrayAbout">About</system:String>
1616
<system:String x:Key="iconTrayExit">Exit</system:String>
1717
<system:String x:Key="closeWindow">Close</system:String>
18+
<system:String x:Key="copy">Copy</system:String>
19+
<system:String x:Key="cut">Cut</system:String>
20+
<system:String x:Key="paste">Paste</system:String>
1821
<system:String x:Key="GameMode">Game Mode</system:String>
1922
<system:String x:Key="GameModeToolTip">Suspend the use of Hotkeys.</system:String>
2023

Flow.Launcher/Languages/ko.xaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
<system:String x:Key="iconTrayAbout">정보</system:String>
1616
<system:String x:Key="iconTrayExit">종료</system:String>
1717
<system:String x:Key="closeWindow">닫기</system:String>
18+
<system:String x:Key="copy">복사</system:String>
19+
<system:String x:Key="cut">잘라내기</system:String>
20+
<system:String x:Key="paste">붙여넣기</system:String>
1821
<system:String x:Key="GameMode">게임 모드</system:String>
1922
<system:String x:Key="GameModeToolTip">단축키 사용을 일시중단합니다.</system:String>
2023

Flow.Launcher/MainWindow.xaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@
4141
<KeyBinding Key="Escape" Command="{Binding EscCommand}" />
4242
<KeyBinding Key="F1" Command="{Binding StartHelpCommand}" />
4343
<KeyBinding Key="F5" Command="{Binding ReloadPluginDataCommand}" />
44-
<KeyBinding
45-
Key="Tab"
46-
Command="{Binding AutocompleteQueryCommand}"/>
44+
<KeyBinding Key="Tab" Command="{Binding AutocompleteQueryCommand}" />
4745
<KeyBinding
4846
Key="Tab"
4947
Command="{Binding AutocompleteQueryCommand}"
@@ -179,9 +177,9 @@
179177
Visibility="Visible">
180178
<TextBox.ContextMenu>
181179
<ContextMenu>
182-
<MenuItem Command="ApplicationCommands.Cut" />
183-
<MenuItem Command="ApplicationCommands.Copy" />
184-
<MenuItem Command="ApplicationCommands.Paste" />
180+
<MenuItem Command="ApplicationCommands.Cut" Header="{DynamicResource cut}" />
181+
<MenuItem Command="ApplicationCommands.Copy" Header="{DynamicResource copy}" />
182+
<MenuItem Command="ApplicationCommands.Paste" Header="{DynamicResource paste}" />
185183
<Separator
186184
Margin="0"
187185
Padding="0,4,0,4"

0 commit comments

Comments
 (0)