mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Localization is handled using the LocalizedDescription attribute and the LocalizationConverter.
24 lines
No EOL
648 B
C#
24 lines
No EOL
648 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 Wox.Core;
|
|
|
|
namespace Wox.Plugin.Caculator
|
|
{
|
|
[TypeConverter(typeof(LocalizationConverter))]
|
|
public enum DecimalSeparator
|
|
{
|
|
[LocalizedDescription("wox_plugin_calculator_decimal_seperator_use_system_locale")]
|
|
UseSystemLocale,
|
|
|
|
[LocalizedDescription("wox_plugin_calculator_decimal_seperator_dot")]
|
|
Dot,
|
|
|
|
[LocalizedDescription("wox_plugin_calculator_decimal_seperator_comma")]
|
|
Comma
|
|
}
|
|
} |