Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.js
Before it quit right after finding the theme version of the l10n file which results in a not translated part of the UI. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
d35b6513cd
commit
2a17281cb6
|
@ -55,6 +55,7 @@ class JSResourceLocator extends ResourceLocator {
|
||||||
$found += $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js');
|
$found += $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js');
|
||||||
$found += $this->appendIfExist($this->serverroot, $script.'.js');
|
$found += $this->appendIfExist($this->serverroot, $script.'.js');
|
||||||
$found += $this->appendIfExist($this->serverroot, $theme_dir.$script.'.js');
|
$found += $this->appendIfExist($this->serverroot, $theme_dir.$script.'.js');
|
||||||
|
$found += $this->appendIfExist($this->serverroot, 'apps/'.$script.'.js');
|
||||||
$found += $this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$script.'.js');
|
$found += $this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$script.'.js');
|
||||||
|
|
||||||
if ($found) {
|
if ($found) {
|
||||||
|
|
Loading…
Reference in New Issue