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

huangapple go评论78阅读模式
英文:

MAUI Blazor not respecting device language on iOS

问题

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

<input type="date" title="日期"/>
<input type="time" title="时间">

它会混合使用瑞典语(我的首选语言)和英语。
MAUI Blazor 在 iOS 上不尊重设备语言

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

有其他人解决了这个问题吗?
重现链接:https://github.com/vallgrenerik/MauiApp2_Input_Time_Date.App

英文:

If I create a new MAUI Blazor application and adding two inputs like:

&lt;input type=&quot;date&quot; title=&quot;Date&quot;/&gt;
&lt;input type=&quot;time&quot; title=&quot;Time&quot; &gt; 

It mixes Swedish (my preferred language) and English.
MAUI Blazor 在 iOS 上不尊重设备语言

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

Has anyone else solved this problem?
Repro:https://github.com/vallgrenerik/MauiApp2_Input_Time_Date.App

答案1

得分: 2

No bug/issue.
As Gerald mentioned in https://github.com/dotnet/maui/issues/15364, we have to set the CFBundleLocalizations in the info.plist file.
Following code will show Swedish.

<key>CFBundleLocalizations</key>
<array>
    <string>sv</string>
</array>
英文:

No bug/issue.
As Gerald mentioned in https://github.com/dotnet/maui/issues/15364, we have to set the CFBundleLocalizations in the info.plist file.
Following code will show Swdish.

&lt;key&gt;CFBundleLocalizations&lt;/key&gt;
&lt;array&gt;
    &lt;string&gt;sv&lt;/string&gt;
&lt;/array&gt;

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

huangapple
  • 本文由 发表于 2023年5月31日 22:45:56
  • 转载请务必保留本文链接:https://go.coder-hub.com/76374740.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定