使用 jQuery Mobile 的多语言应用程序
是否有一种标准化方法可以用多种语言创建 jQuery Mobile 应用程序(使用 Phonegap)?
is there a standardized way to create jQuery Mobile Apps (with Phonegap) in multiple languages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里是您可以使用该链接在应用程序中使用多种语言。我现在没有一个有效的示例,但我认为在 jQuery mobile 的情况下它会工作得很好,没有问题。
Here is the link that you can use for using multiple languages in your app. I don't have a working example right now but I think it will work fine in case of jQuery mobile without problem.
如果有人有同样的问题...我发现“lakhlaniprashant.blogspot.com”中的微软解决方案不是很有帮助。但无论如何还是谢谢;-)
我用 javascript 和 json 编写了自己的本地化函数。
In case someone has the same question... I found the microsoft solution from "lakhlaniprashant.blogspot.com" not very helpful. But thanks anyways ;-)
I wrote my own localization function with javascript and json.
就我而言,我的 web 应用程序是使用 jquerymobile 和 php 开发的,因此我为每个我想要支持的语言都有 1 个 php 文件。
示例:
如果用户将其语言配置为英语,我会在标题中包含 English.php 如果用户使用西班牙语,我会包含 spanish.php:
english.php:
spanish.php
如果您“echo $sentence”,它将采用您所包含的文件中的一个。我将所选语言存储在 cookie 中并包含正确的语言文件。
in my case my webapp is developed with jquerymobile and php, so i have 1 php file for every lang i want to support.
example:
if the user has configured his language as english i include on my header the English.php if the user uses spanish i include the spanish.php:
english.php:
spanish.php
if you "echo $sentence" it will take the one from the file you included. I store the selected language in a cookie and include the proper language file.