Jquery i18n插件

时间:2015-09-23 20:52:20

标签: jquery internationalization

我正在尝试为i18n使用this jquery插件。

具体来说,我想在必须翻译但不起作用的标签中使用数据API。

警报显示“嗯”,跨度与“嗯”和“Dois”保持一致。我想要一个显示“ONE”并且分别跨越“ONE”和“TWO”的警报。

网页

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<title>jQuery i18n Demo</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" ></script>
<script src="../src/jquery.i18n.js"></script>
<script src="../src/jquery.i18n.messagestore.js"></script>

<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/bootstrap.min.js"></script>

<script>
    $.i18n({
        locale: 'en'
    });

    alert($.i18n("um"));
</script>
</head>

<body>
<span data-i18n="um">Um</span>.
<span data-i18n="dois">Dois</span>.
</body>
</html>

en.json

{
"um": "ONE",
"dois": "TWO"
}

有没有人用过这个?

1 个答案:

答案 0 :(得分:0)

你不是在调用en.json文件。请遵循以下文章:

How to Localize Your App With jQuery.I18n