From: Sem Date: Thu, 12 Jul 2012 23:32:44 +0000 (+0200) Subject: Refs #4004. Downgraded to notice and warning. It also returns the complete language... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=25c324f5bf0f8737268c34626455a302b819651e;p=lorea%2Felgg.git Refs #4004. Downgraded to notice and warning. It also returns the complete language name. --- diff --git a/engine/lib/languages.php b/engine/lib/languages.php index e8e3d31af..77128202f 100644 --- a/engine/lib/languages.php +++ b/engine/lib/languages.php @@ -50,10 +50,11 @@ function elgg_echo($message_key, $args = array(), $language = "") { $string = $CONFIG->translations[$language][$message_key]; } else if (isset($CONFIG->translations["en"][$message_key])) { $string = $CONFIG->translations["en"][$message_key]; - elgg_log(sprintf('Missing %s translation for "%s" language key', $language, $message_key), WARNING); + $lang = elgg_echo($language, array(), 'en'); + elgg_log(sprintf('Missing %s translation for "%s" language key', $lang, $message_key), 'NOTICE'); } else { $string = $message_key; - elgg_log(sprintf('Missing %s translation for "%s" language key', $language, $message_key), ERROR); + elgg_log(sprintf('Missing English translation for "%s" language key', $message_key), 'WARNING'); } // only pass through if we have arguments to allow backward compatibility