azatoth / php-pgettext
为 PHP 扩展了 gettext 函数,如 pgettext、dpgettext 等。
v1.0
2014-12-05 11:08 UTC
Requires
- php: >=5.3.0
- ext-gettext: *
This package is not auto-updated.
Last update: 2024-09-10 03:07:21 UTC
README
PHP 中默认安装的 gettext
缺乏对 pgettext
等的支持。此 PHP 脚本添加了对这些函数的支持,以及一个 gettext_noop
包装器。
为了在使用 xgettext
提取字符串时使此功能正常工作,需要填写许多关键字参数,可以使用名为 php-xgettext
的包装脚本来简化这一过程。
以下函数被导出
pgettext($msg_ctxt, $msgid)
dpgettext($domain, $msg_ctxt, $msgid)
dcpgettext($domain, $msg_ctxt, $msgid, $category)
npgettext($msg_ctxt, $msgid, $msgid_plural, $n)
dnpgettext($domain, $msg_ctxt, $msgid, $msgid_plural, $n)
dcnpgettext($domain, $msg_ctxt, $msgid, $msgid_plural, $n, $category)
gettext_noop($msgid)