mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-01-28 22:01:55 +00:00
23 lines
710 B
C#
23 lines
710 B
C#
using System;
|
|
using System.Globalization;
|
|
using Avalonia.Data.Converters;
|
|
|
|
namespace DiscordChatExporter.Gui.Converters;
|
|
|
|
public class LocaleToDisplayNameStringConverter : IValueConverter
|
|
{
|
|
public static LocaleToDisplayNameStringConverter Instance { get; } = new();
|
|
|
|
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture) =>
|
|
value is string locale && !string.IsNullOrWhiteSpace(locale)
|
|
? CultureInfo.GetCultureInfo(locale).DisplayName
|
|
: "System";
|
|
|
|
public object ConvertBack(
|
|
object? value,
|
|
Type targetType,
|
|
object? parameter,
|
|
CultureInfo culture
|
|
) => throw new NotSupportedException();
|
|
}
|