master
cs 12 lines 380 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 using Microsoft.Windows.ApplicationModel.Resources;
4
5 namespace WslSettings.Helpers;
6
7 public static class ResourceExtensions
8 {
9 private static readonly ResourceLoader _resourceLoader = new();
10
11 public static string GetLocalized(this string resourceKey) => _resourceLoader.GetString(resourceKey);
12 }