Fixing a couple of typos from last commit.

This commit is contained in:
Renan Gonçalves 2011-04-25 21:35:27 +02:00
parent abbe5aaea2
commit 9da76a8655
2 changed files with 3 additions and 3 deletions

View file

@ -201,7 +201,7 @@ class BakeShell extends Shell {
$parser = parent::getOptionParser();
return $parser->description(__d('cake_console',
'The Bake script generates controllers, views and models for your application.'
. ' If run with no command line arguments, Bake guides the user through the class creation process.' .
. ' If run with no command line arguments, Bake guides the user through the class creation process.'
. ' You can customize the generation process by telling Bake where different parts of your application are using command line arguments.'
))->addSubcommand('all', array(
'help' => __d('cake_console', 'Bake a complete MVC. optional <name> of a Model'),

View file

@ -217,8 +217,8 @@ class DbConfigTask extends Shell {
}
$this->out(__d('cake_console', "User: %s", $login));
$this->out("Pass: %s", str_repeat('*', strlen($password))));
$this->out("Database: %s", $database));
$this->out(__d('cake_console', "Pass: %s", str_repeat('*', strlen($password))));
$this->out(__d('cake_console', "Database: %s", $database));
if ($prefix) {
$this->out(__d('cake_console', "Table prefix: %s", $prefix));