Files
Aaru/Aaru.CommonTypes/Localization/LocalizedDescription.cs

13 lines
391 B
C#
Raw Normal View History

2025-11-21 15:39:54 +00:00
using System.ComponentModel;
using Aaru.Localization;
namespace Aaru.CommonTypes;
public class LocalizedDescriptionAttribute : DescriptionAttribute
{
private readonly string _resourceKey;
public LocalizedDescriptionAttribute(string resourceKey) => _resourceKey = resourceKey;
public override string Description => UI.ResourceManager.GetString(_resourceKey) ?? _resourceKey;
}