diff --git a/lib/Cake/Core/Configure.php b/lib/Cake/Core/Configure.php index 21ea86933ff..b1e58f288a9 100644 --- a/lib/Cake/Core/Configure.php +++ b/lib/Cake/Core/Configure.php @@ -319,10 +319,10 @@ public static function load($key, $config = 'default', $merge = true) { public static function dump($key, $config = 'default', $keys = array()) { $reader = self::_getReader($config); if (!$reader) { - throw new ConfigureException(__d('cake', 'There is no "%s" adapter.', $config)); + throw new ConfigureException(__d('cake_dev', 'There is no "%s" adapter.', $config)); } if (!method_exists($reader, 'dump')) { - throw new ConfigureException(__d('cake', 'The "%s" adapter, does not have a dump() method.', $config)); + throw new ConfigureException(__d('cake_dev', 'The "%s" adapter, does not have a dump() method.', $config)); } $values = self::$_values; if (!empty($keys) && is_array($keys)) {