mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Fixing a couple of typos from last commit.
This commit is contained in:
parent
abbe5aaea2
commit
9da76a8655
2 changed files with 3 additions and 3 deletions
|
@ -201,7 +201,7 @@ class BakeShell extends Shell {
|
||||||
$parser = parent::getOptionParser();
|
$parser = parent::getOptionParser();
|
||||||
return $parser->description(__d('cake_console',
|
return $parser->description(__d('cake_console',
|
||||||
'The Bake script generates controllers, views and models for your application.'
|
'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.'
|
. ' You can customize the generation process by telling Bake where different parts of your application are using command line arguments.'
|
||||||
))->addSubcommand('all', array(
|
))->addSubcommand('all', array(
|
||||||
'help' => __d('cake_console', 'Bake a complete MVC. optional <name> of a Model'),
|
'help' => __d('cake_console', 'Bake a complete MVC. optional <name> of a Model'),
|
||||||
|
|
|
@ -217,8 +217,8 @@ class DbConfigTask extends Shell {
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->out(__d('cake_console', "User: %s", $login));
|
$this->out(__d('cake_console', "User: %s", $login));
|
||||||
$this->out("Pass: %s", str_repeat('*', strlen($password))));
|
$this->out(__d('cake_console', "Pass: %s", str_repeat('*', strlen($password))));
|
||||||
$this->out("Database: %s", $database));
|
$this->out(__d('cake_console', "Database: %s", $database));
|
||||||
|
|
||||||
if ($prefix) {
|
if ($prefix) {
|
||||||
$this->out(__d('cake_console', "Table prefix: %s", $prefix));
|
$this->out(__d('cake_console', "Table prefix: %s", $prefix));
|
||||||
|
|
Loading…
Add table
Reference in a new issue