mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed typos in text and comments
This commit is contained in:
parent
c4ec8bedd0
commit
ed10c3332d
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ class ExtractTask extends AppShell {
|
|||
protected $_files = array();
|
||||
|
||||
/**
|
||||
* Merge all domains and categories string into the default.pot file
|
||||
* Merge all domain and category string into the default.pot file
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
|
@ -222,7 +222,7 @@ class ExtractTask extends AppShell {
|
|||
$this->_merge = !(strtolower($this->params['merge']) === 'no');
|
||||
} else {
|
||||
$this->out();
|
||||
$response = $this->in(__d('cake_console', 'Would you like to merge all domains and categories strings into the default.pot file?'), array('y', 'n'), 'n');
|
||||
$response = $this->in(__d('cake_console', 'Would you like to merge all domain and category strings into the default.pot file?'), array('y', 'n'), 'n');
|
||||
$this->_merge = strtolower($response) === 'y';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue