'There are %s eggs.' */ function smarty_function_loadJavascriptTranslations($params, &$smarty) { static $pluginTranslationsAlreadyLoaded = array(); if(!isset($params['plugins'])) { throw new Exception("The smarty function loadJavascriptTranslations needs a 'plugins' parameter."); } if(in_array($params['plugins'], $pluginTranslationsAlreadyLoaded)) { return; } $pluginTranslationsAlreadyLoaded[] = $params['plugins']; $jsTranslations = Piwik_Translate::getInstance()->getJavascriptTranslations(explode(' ',$params['plugins'])); $jsCode = ''; if( isset($params['disableOutputScriptTag']) ) { $jsCode .= $jsTranslations; } else { $jsCode .= ''; } return $jsCode; }