mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
18 lines
558 B
C#
18 lines
558 B
C#
using System.ComponentModel;
|
|
using Flow.Launcher.Core.Resource;
|
|
|
|
namespace Flow.Launcher.Plugin.Calculator
|
|
{
|
|
[TypeConverter(typeof(LocalizationConverter))]
|
|
public enum DecimalSeparator
|
|
{
|
|
[LocalizedDescription("flowlauncher_plugin_calculator_decimal_seperator_use_system_locale")]
|
|
UseSystemLocale,
|
|
|
|
[LocalizedDescription("flowlauncher_plugin_calculator_decimal_seperator_dot")]
|
|
Dot,
|
|
|
|
[LocalizedDescription("flowlauncher_plugin_calculator_decimal_seperator_comma")]
|
|
Comma
|
|
}
|
|
}
|