Skip to content

Commit eb48e12

Browse files
committed
Add Korean String / Adjust button size and color / Change Action Keyword Height to responsive
1 parent 489e739 commit eb48e12

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

Flow.Launcher/ActionKeywords.xaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
Title="{DynamicResource actionKeywordsTitle}"
66
Width="450"
7-
Height="345"
87
Background="{DynamicResource PopuBGColor}"
98
Foreground="{DynamicResource PopupTextColor}"
109
Icon="Images\app.png"
1110
Loaded="ActionKeyword_OnLoaded"
1211
ResizeMode="NoResize"
12+
SizeToContent="Height"
1313
WindowStartupLocation="CenterScreen">
1414
<WindowChrome.WindowChrome>
1515
<WindowChrome CaptionHeight="32" ResizeBorderThickness="{x:Static SystemParameters.WindowResizeBorderThickness}" />
@@ -91,7 +91,7 @@
9191
FontWeight="SemiBold"
9292
Foreground="{DynamicResource Color05B}" />
9393
</StackPanel>
94-
<StackPanel Orientation="Horizontal">
94+
<StackPanel Margin="0,0,0,10" Orientation="Horizontal">
9595
<TextBlock
9696
Grid.Row="1"
9797
Grid.Column="1"
@@ -117,17 +117,18 @@
117117
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
118118
<Button
119119
x:Name="btnCancel"
120-
Width="100"
120+
Width="145"
121121
Height="30"
122122
Margin="10,0,5,0"
123123
Click="BtnCancel_OnClick"
124124
Content="{DynamicResource cancel}" />
125125
<Button
126126
x:Name="btnDone"
127-
Width="100"
127+
Width="145"
128128
Height="30"
129129
Margin="5,0,10,0"
130-
Click="btnDone_OnClick">
130+
Click="btnDone_OnClick"
131+
Style="{StaticResource AccentButtonStyle}">
131132
<TextBlock x:Name="lblAdd" Text="{DynamicResource done}" />
132133
</Button>
133134
</StackPanel>

Flow.Launcher/Languages/ko.xaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165

166166
<!-- Priority Setting Dialog -->
167167
<system:String x:Key="changePriorityWindow">중요도 변경</system:String>
168-
<system:String x:Key="priority_tips">높은 수를 넣을수록 상위 결과에 표시됩니다. 5를 시도해보세요. 다른 플러그인 보다 결과를 낮추고 싶다면, 그보다 낮은 수를 입력하세요.</system:String>
168+
<system:String x:Key="priority_tips">높은 수를 넣을수록 상위 결과에 표시됩니다. 5를 시도해보세요. 다른 플러그인 보다 결과를 낮춰 표시하고 싶다면, 그보다 낮은 수를 입력하세요.</system:String>
169169
<system:String x:Key="invalidPriority">중요도에 올바른 정수를 입력하세요.</system:String>
170170
<!-- Action Keyword Setting Dialog -->
171171
<system:String x:Key="oldActionKeywords">예전 액션 키워드</system:String>
@@ -177,10 +177,11 @@
177177
<system:String x:Key="newActionKeywordsHasBeenAssigned">새 액션 키워드가 할당된 플러그인이 이미 있습니다. 다른 액션 키워드를 입력하세요.</system:String>
178178
<system:String x:Key="success">성공</system:String>
179179
<system:String x:Key="completedSuccessfully">성공적으로 완료했습니다.</system:String>
180-
<system:String x:Key="actionkeyword_tips">액션 키워드를 지정하지 않으려면 *를 사용하세요.</system:String>
180+
<system:String x:Key="actionkeyword_tips">플러그인을 시작하는데 필요한 액션 키워드를 입력하세요. 액션 키워드를 지정하지 않으려면 *를 사용하세요. 이 경우 키워드를 입력하지 않아도 동작합니다.</system:String>
181181

182182
<!-- Custom Query Hotkey Dialog -->
183183
<system:String x:Key="customeQueryHotkeyTitle">커스텀 플러그인 핫키</system:String>
184+
<system:String x:Key="customeQueryHotkeyTips">단축키를 지정하여 특정 쿼리를 자동으로 입력할 수 있습니다. 사용하고 싶은 단축키를 눌러 지정한 후, 사용할 쿼리를 입력하세요.</system:String>
184185
<system:String x:Key="preview">미리보기</system:String>
185186
<system:String x:Key="hotkeyIsNotUnavailable">핫키를 사용할 수 없습니다. 다른 핫키를 입력하세요.</system:String>
186187
<system:String x:Key="invalidPluginHotkey">플러그인 핫키가 유효하지 않습니다.</system:String>

Flow.Launcher/PriorityChangeWindow.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,18 @@
104104
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
105105
<Button
106106
x:Name="btnCancel"
107-
Width="100"
107+
Width="145"
108108
Height="30"
109109
Margin="0,0,5,0"
110110
Click="BtnCancel_OnClick"
111111
Content="{DynamicResource cancel}" />
112112
<Button
113113
x:Name="btnDone"
114-
Width="100"
114+
Width="145"
115115
Height="30"
116116
Margin="5,0,0,0"
117-
Click="btnDone_OnClick">
117+
Click="btnDone_OnClick"
118+
Style="{StaticResource AccentButtonStyle}">
118119
<TextBlock x:Name="lblAdd" Text="{DynamicResource done}" />
119120
</Button>
120121
</StackPanel>

Flow.Launcher/SelectFileManagerWindow.xaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,21 +239,19 @@
239239
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
240240
<Button
241241
x:Name="btnCancel"
242-
Width="100"
243-
Height="30"
242+
Width="145"
244243
Margin="0,0,5,0"
245244
Click="btnCancel_Click"
246245
Content="{DynamicResource cancel}" />
247246
<Button
248247
x:Name="btnDone"
249-
Width="100"
250-
Height="30"
248+
Width="145"
251249
Margin="5,0,0,0"
252250
Click="btnDone_Click"
253251
Content="{DynamicResource done}"
254252
ForceCursor="True">
255253
<Button.Style>
256-
<Style BasedOn="{StaticResource DefaultButtonStyle}" TargetType="{x:Type Button}">
254+
<Style BasedOn="{StaticResource AccentButtonStyle}" TargetType="{x:Type Button}">
257255
<Style.Triggers>
258256
<DataTrigger Binding="{Binding Text.Length, ElementName=ProfileTextBox, UpdateSourceTrigger=PropertyChanged}" Value="0">
259257
<Setter Property="IsEnabled" Value="False" />

0 commit comments

Comments
 (0)