fix: fix the issue of Ukrainian abbreviation errors causing it to not work on Win7.

(cherry picked from commit f83dbafe7a3ff323dae04ddf3f67133c39b25802)
This commit is contained in:
Zhang Dian 2024-11-22 13:46:57 +08:00
parent 9bb9aa2491
commit 12f3a63495
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<ResourceDictionary
x:Class="Semi.Avalonia.Locale.uk_uk"
x:Class="Semi.Avalonia.Locale.uk_ua"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- DatePicker -->

View File

@ -2,7 +2,7 @@
namespace Semi.Avalonia.Locale;
public class uk_uk : ResourceDictionary
public class uk_ua : ResourceDictionary
{
}

View File

@ -15,7 +15,7 @@ public class SemiTheme : Styles
{ new CultureInfo("zh-cn"), new zh_cn() },
{ new CultureInfo("en-us"), new en_us() },
{ new CultureInfo("ja-jp"), new ja_jp() },
{ new CultureInfo("uk-uk"), new uk_uk() },
{ new CultureInfo("uk-ua"), new uk_ua() },
{ new CultureInfo("ru-ru"), new ru_ru() },
};