CakePHP 2.0.5表单输入日期时间语言

时间:2012-01-11 01:30:12

标签: php cakephp cakephp-1.3 cakephp-2.0

我如何在Cakephp 2.0.5中更改输入日期时间的语言?

在CakePHP 1.3中,我使用default.po,效果很好。

 // app/Config/core.php
 Configure::write('Config.language', 'pt-br');

 // app/Locale/pt_br/LC_MESSAGES/default.po    
 msgid "January"
 msgstr "Janeiro"
 ....

在Cakephp 2.0.5中, default.po 不起作用。

我的意见是:

 <?php echo $this->Form->input('melhor_horario', array('dateFormat' => 'DMYHS',
 'separator' => ' de ', 'minYear' => date('Y'), 'maxYear' => date('Y') + 1, 
 'timeFormat' => 24, 'interval' => 15, 'class' => 'span2', 
 'default' => date('Y-m-d 15:00', strtotime('sunday')))) ?>

1 个答案:

答案 0 :(得分:5)

您需要将翻译放在正确的域中。 Cake 2在内部使用“cake”域,因此正确的路径是 Locale / [lang] /LC_MESSAGES/cake.po