git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6958 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
DarkAngelBGE 2008-05-19 07:29:52 +00:00
parent c269f5c383
commit d06dd6c713

View file

@ -272,7 +272,7 @@ class SchemaShell extends Shell {
exit(); exit();
} }
$this->out("\n" . __('The following tables will drop.', true)); $this->out("\n" . __('The following tables will be dropped.', true));
$this->out(array_keys($drop)); $this->out(array_keys($drop));
if ('y' == $this->in(__('Are you sure you want to drop the tables?', true), array('y', 'n'), 'n')) { if ('y' == $this->in(__('Are you sure you want to drop the tables?', true), array('y', 'n'), 'n')) {
@ -280,7 +280,7 @@ class SchemaShell extends Shell {
$this->__run($drop, 'drop'); $this->__run($drop, 'drop');
} }
$this->out("\n" . __('The following tables will create.', true)); $this->out("\n" . __('The following tables will be created.', true));
$this->out(array_keys($create)); $this->out(array_keys($create));
if ('y' == $this->in(__('Are you sure you want to create the tables?', true), array('y', 'n'), 'y')) { if ('y' == $this->in(__('Are you sure you want to create the tables?', true), array('y', 'n'), 'y')) {