File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Plugins/Flow.Launcher.Plugin.Calculator Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
- <ResourceDictionary xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2
- xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
3
- xmlns : system =" clr-namespace:System;assembly=mscorlib" >
1
+ <ResourceDictionary
2
+ xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns : system =" clr-namespace:System;assembly=mscorlib" >
4
5
5
6
<system : String x : Key =" flowlauncher_plugin_caculator_plugin_name" >Calculator</system : String >
6
7
<system : String x : Key =" flowlauncher_plugin_caculator_plugin_description" >Allows to do mathematical calculations.(Try 5*3-2 in Flow Launcher)</system : String >
13
14
<system : String x : Key =" flowlauncher_plugin_calculator_decimal_seperator_comma" >Comma (,)</system : String >
14
15
<system : String x : Key =" flowlauncher_plugin_calculator_decimal_seperator_dot" >Dot (.)</system : String >
15
16
<system : String x : Key =" flowlauncher_plugin_calculator_max_decimal_places" >Max. decimal places</system : String >
17
+ <system : String x : Key =" flowlauncher_plugin_calculator_failed_to_copy" >Copy failed, please try later</system : String >
16
18
</ResourceDictionary >
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public List<Result> Query(Query query)
100
100
}
101
101
catch ( ExternalException )
102
102
{
103
- Context . API . ShowMsgBox ( "Copy failed, please try later" ) ;
103
+ Context . API . ShowMsgBox ( Context . API . GetTranslation ( "flowlauncher_plugin_calculator_failed_to_copy" ) ) ;
104
104
return false ;
105
105
}
106
106
}
You can’t perform that action at this time.
0 commit comments