如何将 php gettext() 与 jquery mobile 一起使用?

发布于 2024-12-29 15:22:28 字数 296 浏览 0 评论 0原文

我已经能够通过使用 本身,成功地使用 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 技术交流群。

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

发布评论

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

评论(2

gettext() 的别名是单下划线,而不是双下划线。

来自 gettext() 的 php.net 手册:

// Or use the alias _() for gettext()
echo _("Have a nice day");

The alias for gettext() is a single underscore, not a double underscore.

From the php.net manual for gettext():

// Or use the alias _() for gettext()
echo _("Have a nice day");
原来是傀儡 2025-01-05 15:22:28

在上面的代码中,您没有输出 _() 的结果。你有:
而不是 。你的真实代码中是这种情况吗?

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?

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