translation using NGettext.Wpf

This commit is contained in:
stax76
2023-12-08 06:23:17 +01:00
parent 8997a2eacb
commit 5dd3716012
73 changed files with 3001 additions and 17699 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Globalization;
namespace NGettext.Wpf
{
public class CultureEventArgs : EventArgs
{
public CultureEventArgs(CultureInfo cultureInfo)
{
if (cultureInfo == null) throw new ArgumentNullException(nameof(cultureInfo));
CultureInfo = cultureInfo;
}
public CultureInfo CultureInfo { get; }
}
}