如何将 php gettext() 与 jquery mobile 一起使用?
我已经能够通过使用 本身,成功地使用
gettext()
从英语翻译成法语。但我不知道如何使 gettext()
在以下 jQuery 移动标记内工作:
<li><a href="#home" class="ui-btn-active" ><? __("Home")?></a></li>
正确的方法是什么?
I've been able to use gettext()
to translate from English to French successfully by using <?echo __("somestring") ?>
by itself. But I can't figure out how to make gettext()
work inside of the following jQuery mobile tag:
<li><a href="#home" class="ui-btn-active" ><? __("Home")?></a></li>
What's the correct way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gettext() 的别名是单下划线,而不是双下划线。
来自 gettext() 的 php.net 手册:
The alias for gettext() is a single underscore, not a double underscore.
From the php.net manual for gettext():
在上面的代码中,您没有输出 _() 的结果。你有:
而不是
。你的真实代码中是这种情况吗?
In the code above you're not outputting the result of _(). You have:
<?php _('foo') ?>
and not<?php print _('foo'); ?>
. Is this the case in your real code?