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

Pat*_*iel 2 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"
 ....
Run Code Online (Sandbox Code Playgroud)

在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')))) ?>
Run Code Online (Sandbox Code Playgroud)

小智 5

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