MAUI Blazor不尊重iOS上的设备语言

4smxwvx5  于 2023-06-07  发布在  iOS
关注(0)|答案(1)|浏览(145)

如果我创建一个新的MAUI Blazor应用程序并添加两个输入,如:

<input type="date" title="Date"/>
<input type="time" title="Time" >

它混合了瑞典语(我的首选语言)和英语。

有其他人解决这个问题吗?复制:https://github.com/vallgrenerik/MauiApp2_Input_Time_Date.App

xxslljrj

xxslljrj1#

无缺陷/问题。
正如Gerald在https://github.com/dotnet/maui/issues/15364中提到的,我们必须在info.plist文件中设置CFBundleLocalizations
下面的代码将显示Swdish。

<key>CFBundleLocalizations</key>
<array>
    <string>sv</string>
</array>

相关问题