0

我从带有提取的标签中获取语言字符串。

我在视图中有以下代码:

        <?php echo $this->Form->input('observee', array('label' => __(Observee), 'type' => 'select', 'options' => $resultStaff, 'class' => 'input-large select')); ?>

当我运行 cake i18n extract 时,我按预期从视图中获得了其他语言字符串,但没有得到标签中使用的任何语言字符串。

我在这里遗漏了什么还是这是一个错误?

4

1 回答 1

1

小心

__(Observee)

不是有效的 PHP,你的 IDE 也应该警告你

正确的是:

__('Observee')
于 2013-05-21T14:01:56.847 回答