Merge pull request #475 from irihitech/issue/474

Fix the issue of Ukrainian abbreviation errors causing it to no work on Win7
This commit is contained in:
Dong Bin 2024-11-22 15:02:37 +08:00 committed by GitHub
commit 7207e595f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

@ -20,7 +20,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() },
};