Flow.Launcher/Plugins/Flow.Launcher.Plugin.Calculator/DecimalSeparator.cs

19 lines
558 B
C#
Raw Normal View History

2022-12-21 07:51:17 +00:00
using System.ComponentModel;
using Flow.Launcher.Core.Resource;
2024-05-25 06:35:14 +00:00
namespace Flow.Launcher.Plugin.Calculator
2023-04-25 12:04:08 +00:00
{
[TypeConverter(typeof(LocalizationConverter))]
public enum DecimalSeparator
{
2020-04-21 12:54:41 +00:00
[LocalizedDescription("flowlauncher_plugin_calculator_decimal_seperator_use_system_locale")]
UseSystemLocale,
2020-04-21 12:54:41 +00:00
[LocalizedDescription("flowlauncher_plugin_calculator_decimal_seperator_dot")]
Dot,
2020-04-21 12:54:41 +00:00
[LocalizedDescription("flowlauncher_plugin_calculator_decimal_seperator_comma")]
Comma
}
2022-12-21 07:51:17 +00:00
}