CakeDC / migrations

Migrations Plugin for CakePHP

Home Page:http://cakedc.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invalid translation

odan opened this issue · comments

'help' => __('Skip certain migration.')))

Expected:
'help' => __d('migrations', 'Skip certain migration.')))

'help' => __('Jump to a certain migration and mark the preceding migrations as executed.')))

Expected:
'help' => __d('migrations', 'Jump to a certain migration and mark the preceding migrations as executed.')))

The translation domain is missing.

http://api.cakephp.org/2.9/function-__d.html

Thank you guys!