Qooxdoo - 不存在可用的语言环境
如果我将 LOCALES 设置为“en”、“de”,则该语句
qx.locale.Manager.getInstance().getAvailableLocales()
仅返回 de;如果我仅将 config.json 中的 LOCALES 设置为“en”,则该语句不返回任何内容。 我做错了什么?
The statement
qx.locale.Manager.getInstance().getAvailableLocales()
returns only de if I set LOCALES to "en", "de", or nothing if I set LOCALES in config.json to "en" only.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
packages/i18n-with-boot
键?如果将其设置为false
,则区域设置数据将在必须使用qx.io.PartLoader
显式加载的专用部分中生成。getAvailableLocales
将仅返回那些已加载的区域设置。packages/i18n-with-boot
key in the configuration of your app? If it is set tofalse
, locale data will be generated in dedicated parts which have to be loaded explicitly withqx.io.PartLoader
.getAvailableLocales
will only return those locales that have been loaded.