diff options
author | momo-i <webmaster@momo-i.org> | 2011-12-27 15:30:25 +0900 |
---|---|---|
committer | momo-i <webmaster@momo-i.org> | 2011-12-27 15:30:25 +0900 |
commit | 95620b40a19cf180babcbf1798ff5fdae36ecb75 (patch) | |
tree | 10141d5e4d7d5bb1f87ca8698847e3dafce90fcf /lib/class/config.class.php | |
parent | 9f491c064ab3f593f887b9da427529397b3fc53c (diff) | |
download | ampache-95620b40a19cf180babcbf1798ff5fdae36ecb75.tar.gz ampache-95620b40a19cf180babcbf1798ff5fdae36ecb75.tar.bz2 ampache-95620b40a19cf180babcbf1798ff5fdae36ecb75.zip |
Fixed messages translatable.
Diffstat (limited to 'lib/class/config.class.php')
-rw-r--r-- | lib/class/config.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/config.class.php b/lib/class/config.class.php index 4ac45469..e12fdedc 100644 --- a/lib/class/config.class.php +++ b/lib/class/config.class.php @@ -109,7 +109,7 @@ class Config { public static function set($name, $value, $clobber = 0) { if (isset(self::$_global[$name]) && !$clobber) { - Error::add('Config Global',"Trying to clobber'$name' without setting clobber"); + Error::add('Config Global', sprintf(_('Trying to clobber \'%s\' without setting clobber'), $name)); return; } else { |