File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Flow.Launcher.Infrastructure/Http Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ var userName when string.IsNullOrEmpty(userName) =>
82
82
}
83
83
catch ( UriFormatException e )
84
84
{
85
- API . ShowMsg ( "Please try again" , "Unable to parse Http Proxy" ) ;
85
+ API . ShowMsg ( API . GetTranslation ( "pleaseTryAgain" ) , API . GetTranslation ( "parseProxyFailed" ) ) ;
86
86
Log . Exception ( ClassName , "Unable to parse Uri" , e ) ;
87
87
}
88
88
}
Original file line number Diff line number Diff line change 30
30
<system : String x : Key =" pluginsHaveErrored" >The following plugins have errored and cannot be loaded:</system : String >
31
31
<system : String x : Key =" referToLogs" >Please refer to the logs for more information</system : String >
32
32
33
+ <!-- Http -->
34
+ <system : String x : Key =" pleaseTryAgain" >Please try again</system : String >
35
+ <system : String x : Key =" parseProxyFailed" >Unable to parse Http Proxy</system : String >
36
+
33
37
<!-- MainWindow -->
34
38
<system : String x : Key =" registerHotkeyFailed" >Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program.</system : String >
35
39
<system : String x : Key =" unregisterHotkeyFailed" >Failed to unregister hotkey "{0}". Please try again or see log for details</system : String >
152
156
<system : String x : Key =" KoreanImeOpenLinkButton" >Open</system : String >
153
157
<system : String x : Key =" KoreanImeRegistry" >Use Previous Korean IME</system : String >
154
158
<system : String x : Key =" KoreanImeRegistryTooltip" >You can change the Previous Korean IME settings directly from here</system : String >
159
+ <system : String x : Key =" KoreanImeSettingChangeFailTitle" >Failed to change Korean IME setting</system : String >
160
+ <system : String x : Key =" KoreanImeSettingChangeFailSubTitle" >Please check your system registry access or contact support.</system : String >
155
161
<system : String x : Key =" homePage" >Home Page</system : String >
156
162
<system : String x : Key =" homePageToolTip" >Show home page results when query text is empty.</system : String >
157
163
<system : String x : Key =" historyResultsForHomePage" >Show History Results in Home Page</system : String >
Original file line number Diff line number Diff line change @@ -216,8 +216,8 @@ public bool LegacyKoreanIMEEnabled
216
216
}
217
217
else
218
218
{
219
- //Since this is rarely seen text, language support is not provided.
220
- App . API . ShowMsg ( "Failed to change Korean IME setting" , "Please check your system registry access or contact support." ) ;
219
+ // Since this is rarely seen text, language support is not provided.
220
+ App . API . ShowMsg ( App . API . GetTranslation ( "KoreanImeSettingChangeFailTitle" ) , App . API . GetTranslation ( "KoreanImeSettingChangeFailSubTitle" ) ) ;
221
221
}
222
222
}
223
223
}
You can’t perform that action at this time.
0 commit comments