mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
25 lines
1.2 KiB
C#
25 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Runtime.CompilerServices;
|
|||
|
|
|||
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Parameter | AttributeTargets.Delegate | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter)]
|
|||
|
public sealed class LocalizedDescriptionAttribute : DescriptionAttribute
|
|||
|
{
|
|||
|
public static IReadOnlyDictionary<string, string> Localizer { private get; set; } = new Dictionary<string, string>();
|
|||
|
|
|||
|
public readonly string Fallback;
|
|||
|
public readonly string Key;
|
|||
|
|
|||
|
public LocalizedDescriptionAttribute(string fallback, [CallerMemberName] string? key = null)
|
|||
|
{
|
|||
|
Key = $"LocalizedDescription.{key!}";
|
|||
|
Fallback = fallback;
|
|||
|
}
|
|||
|
|
|||
|
public override string Description => Localizer.TryGetValue(Key, out var result) ? result : Fallback;
|
|||
|
}
|
|||
|
}
|