Merge pull request #170 from majna/2.0-i18n-domain

Fixed wrong i18n domain param: 'cake_developer'
This commit is contained in:
Renan Gonçalves aka renan.saddam 2011-08-09 07:32:52 -07:00
commit ed8daf852b

View file

@ -368,7 +368,7 @@ class Folder {
if (@chmod($fullpath, intval($mode, 8))) {
$this->__messages[] = __d('cake_dev', '%s changed to %s', $fullpath, $mode);
} else {
$this->__errors[] = __d('cake_deverloper', '%s NOT changed to %s', $fullpath, $mode);
$this->__errors[] = __d('cake_dev', '%s NOT changed to %s', $fullpath, $mode);
}
}
}