mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Localize all help.
This commit is contained in:
13
Aaru.CommonTypes/Localization/LocalizedDescription.cs
Normal file
13
Aaru.CommonTypes/Localization/LocalizedDescription.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user