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

24 lines
695 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2020-04-21 09:12:17 +00:00
using Flow.Launcher.Core;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin.Caculator
{
[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
}
}