0

zend 翻译中的 msgid 和 msgstr 存在问题

定义 - en_US.PO

msgid "hello"

msgstr "hello world"

查看/index.phtml

$this->translate("hello");

当我尝试使用 msgid“hello”时,我想显示“hello world”,然后它显示“hello”而不是“hello world”。

请帮我解决这个问题?

4

1 回答 1

1

检查你的 module.config.php 文件

),
'translator' => array(
    'locale' => 'en_US',
    'translation_file_patterns' => array(
        array(
            'type'     => 'gettext',
            'base_dir' => __DIR__ . '/../language',
            'pattern'  => '%s.mo',
        ),
    ),
),
于 2013-10-25T12:11:11.343 回答