Skip to content
Snippets Groups Projects
Commit 2583ec2c authored by Andreas Gohr's avatar Andreas Gohr
Browse files

Merge pull request #1554 from splitbrain/localizablejslang

let js.php also use the configcascade for localized translation
parents f128ed91 e725e2ad
No related branches found
No related tags found
No related merge requests found
......@@ -219,18 +219,33 @@ function js_pluginscripts(){
* @return array
*/
function js_pluginstrings() {
global $conf;
global $conf, $config_cascade;
$pluginstrings = array();
$plugins = plugin_list();
foreach ($plugins as $p){
if (isset($lang)) unset($lang);
if (file_exists(DOKU_PLUGIN."$p/lang/en/lang.php")) {
include DOKU_PLUGIN."$p/lang/en/lang.php";
foreach($plugins as $p) {
$path = DOKU_PLUGIN . $p . '/lang/';
if(isset($lang)) unset($lang);
if(file_exists($path . "en/lang.php")) {
include $path . "en/lang.php";
}
foreach($config_cascade['lang']['plugin'] as $config_file) {
if(file_exists($config_file . $p . '/en/lang.php')) {
include($config_file . $p . '/en/lang.php');
}
}
if (isset($conf['lang']) && $conf['lang']!='en' && file_exists(DOKU_PLUGIN."$p/lang/".$conf['lang']."/lang.php")) {
include DOKU_PLUGIN."$p/lang/".$conf['lang']."/lang.php";
if(isset($conf['lang']) && $conf['lang'] != 'en') {
if(file_exists($path . $conf['lang'] . "/lang.php")) {
include($path . $conf['lang'] . '/lang.php');
}
foreach($config_cascade['lang']['plugin'] as $config_file) {
if(file_exists($config_file . $p . '/' . $conf['lang'] . '/lang.php')) {
include($config_file . $p . '/' . $conf['lang'] . '/lang.php');
}
}
}
if (isset($lang['js'])) {
if(isset($lang['js'])) {
$pluginstrings[$p] = $lang['js'];
}
}
......@@ -247,15 +262,34 @@ function js_pluginstrings() {
* @return array
*/
function js_templatestrings($tpl) {
global $conf;
global $conf, $config_cascade;
$path = tpl_incdir() . 'lang/';
$templatestrings = array();
if (file_exists(tpl_incdir($tpl)."lang/en/lang.php")) {
include tpl_incdir($tpl)."lang/en/lang.php";
if(file_exists($path . "en/lang.php")) {
include $path . "en/lang.php";
}
if (isset($conf['lang']) && $conf['lang']!='en' && file_exists(tpl_incdir($tpl)."lang/".$conf['lang']."/lang.php")) {
include tpl_incdir($tpl)."lang/".$conf['lang']."/lang.php";
foreach($config_cascade['lang']['template'] as $config_file) {
if(file_exists($config_file . $conf['template'] . '/en/lang.php')) {
include($config_file . $conf['template'] . '/en/lang.php');
}
}
if (isset($lang['js'])) {
if(isset($conf['lang']) && $conf['lang'] != 'en' && file_exists($path . $conf['lang'] . "/lang.php")) {
include $path . $conf['lang'] . "/lang.php";
}
if(isset($conf['lang']) && $conf['lang'] != 'en') {
if(file_exists($path . $conf['lang'] . "/lang.php")) {
include $path . $conf['lang'] . "/lang.php";
}
foreach($config_cascade['lang']['template'] as $config_file) {
if(file_exists($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php')) {
include($config_file . $conf['template'] . '/' . $conf['lang'] . '/lang.php');
}
}
}
if(isset($lang['js'])) {
$templatestrings[$tpl] = $lang['js'];
}
return $templatestrings;
......
......@@ -33,7 +33,8 @@
global $INFO, $JSINFO;
$INFO = !empty($INFO) ? array_merge($INFO, mediainfo()) : mediainfo();
$JSINFO = array('id' => '', 'namespace' => '');
$JSINFO['id'] = '';
$JSINFO['namespace'] = '';
$AUTH = $INFO['perm']; // shortcut for historical reasons
$tmp = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment