使用 jQuery Mobile 的多语言应用程序

发布于 2024-11-27 09:34:11 字数 59 浏览 1 评论 0原文

是否有一种标准化方法可以用多种语言创建 jQuery Mobile 应用程序(使用 Phonegap)?

is there a standardized way to create jQuery Mobile Apps (with Phonegap) in multiple languages?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

失与倦" 2024-12-04 09:34:11

这里是您可以使用该链接在应用程序中使用多种语言。我现在没有一个有效的示例,但我认为在 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.

情释 2024-12-04 09:34:11

如果有人有同样的问题...我发现“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.

救赎№ 2024-12-04 09:34:11

就我而言,我的 web 应用程序是使用 jquerymobile 和 php 开发的,因此我为每个我想要支持的语言都有 1 个 php 文件。

示例:

如果用户将其语言配置为英语,我会在标题中包含 English.php 如果用户使用西班牙语,我会包含 spanish.php:

english.php:

<?php
$sentence="this is a sentence";
?>

spanish.php

<?php
$sentence="esto es una frase";
?>

如果您“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:

<?php
$sentence="this is a sentence";
?>

spanish.php

<?php
$sentence="esto es una frase";
?>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文