mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
18 lines
425 B
C#
18 lines
425 B
C#
|
|
using System;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
using Windows.ApplicationModel.Resources;
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerToys.Settings.UI.Helpers
|
|||
|
|
{
|
|||
|
|
internal static class ResourceExtensions
|
|||
|
|
{
|
|||
|
|
private static ResourceLoader _resLoader = new ResourceLoader();
|
|||
|
|
|
|||
|
|
public static string GetLocalized(this string resourceKey)
|
|||
|
|
{
|
|||
|
|
return _resLoader.GetString(resourceKey);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|