Files
DP44/DataPRO/Modules/SystemSettings/RealtimeSettings/.svn/pristine/8d/8dee7a6718eb0d0df76fe519f2584b82e0cbd44a.svn-base

21 lines
640 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System;
using System.Windows.Markup;
namespace RealtimeSettings.Resources
{
[MarkupExtensionReturnType(typeof(string))]
public class TranslateExtension : MarkupExtension
{
private readonly string _key;
public TranslateExtension(string key) { _key = key; }
private const string NotFound = "#stringnotfound#";
public override object ProvideValue(IServiceProvider serviceProvider)
{
if (string.IsNullOrEmpty(_key)) { return NotFound; }
return StringResources.ResourceManager.GetString(_key) ?? NotFound + " " + _key;
}
}
}