mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
24 lines
No EOL
695 B
C#
24 lines
No EOL
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Flow.Launcher.Core;
|
|
|
|
namespace Flow.Launcher.Plugin.Caculator
|
|
{
|
|
[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
|
|
}
|
|
} |