Skip to content

Commit

Permalink
Fixed typos in text and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark van Driel committed Aug 27, 2013
1 parent c4ec8be commit ed10c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Console/Command/Task/ExtractTask.php
Expand Up @@ -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
*/
Expand Down Expand Up @@ -222,7 +222,7 @@ public function execute() {
$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';
}

Expand Down

0 comments on commit ed10c33

Please sign in to comment.