From 35686c929351050971d1736581a69c56baf9f5d7 Mon Sep 17 00:00:00 2001 From: AD7six Date: Mon, 22 Oct 2012 10:55:18 +0200 Subject: [PATCH] use the right language domain these messages are for developers, not end users --- lib/Cake/Core/Configure.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Cake/Core/Configure.php b/lib/Cake/Core/Configure.php index 21ea86933..b1e58f288 100644 --- a/lib/Cake/Core/Configure.php +++ b/lib/Cake/Core/Configure.php @@ -319,10 +319,10 @@ class Configure { 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)) {