如何使用php-gettext库使ngettext()工作?

时间:2014-06-09 04:27:15

标签: php translation gettext

我正在使用php-gettext library。按照教程here, 我已经设置了_gettext()函数

    require_once("locale/gettext.php");
require_once("locale/streams.php");


$locale_file = new FileReader("locale/$locale/LC_MESSAGES/messages.mo");
$locale_fetch = new gettext_reader($locale_file);

function _gettext($text){
    global $locale_fetch;
    return $locale_fetch->translate($text);
}

我还想使用ngettext()函数来翻译多个文本。现在它不起作用。我怎样才能做到这一点?谢谢!

1 个答案:

答案 0 :(得分:0)

好的我找到了

function _ngettext($t1, $t2, $count){
    global $locale_fetch;
    return $locale_fetch->ngettext($t1, $t2, $count);
}