Merge pull request #1488 from dmromanov/translation-optimization

Combined strings of Testsuite Shell's description to a one translatable ...
This commit is contained in:
Mark Story 2013-08-07 13:51:44 -07:00
commit dfb000fb89

View file

@ -42,8 +42,7 @@ class TestsuiteShell extends TestShell {
$parser = parent::getOptionParser(); $parser = parent::getOptionParser();
$parser->description(array( $parser->description(array(
__d('cake_console', 'The CakePHP Testsuite allows you to run test cases from the command line'), __d('cake_console', 'The CakePHP Testsuite allows you to run test cases from the command line'),
__d('cake_console', '<warning>This shell is for backwards-compatibility only</warning>'), __d('cake_console', "<warning>This shell is for backwards-compatibility only</warning>\nuse the test shell instead"),
__d('cake_console', 'use the test shell instead')
)); ));
return $parser; return $parser;