mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
load_translation_table: load translation strings from enabled plugins
This commit is contained in:
parent
0433263866
commit
cd8346694b
1 changed files with 11 additions and 3 deletions
|
@ -90,12 +90,20 @@ function pop_lang() {
|
|||
if(! function_exists('load_translation_table')) {
|
||||
function load_translation_table($lang) {
|
||||
global $a;
|
||||
|
||||
$a->strings = array();
|
||||
if(file_exists("view/$lang/strings.php")) {
|
||||
include("view/$lang/strings.php");
|
||||
}
|
||||
else
|
||||
$a->strings = array();
|
||||
|
||||
// load enabled plugins strings
|
||||
$plugins = $q("SELECT name FROM addon WHERE installed=1;");
|
||||
foreach($plugins as $p) {
|
||||
$name = $p['name'];
|
||||
if(file_exists("addon/$name/lang/$lang/strings.php")) {
|
||||
include("addon/$name/lang/$lang/strings.php");
|
||||
}
|
||||
}
|
||||
|
||||
}}
|
||||
|
||||
// translate string if translation exists
|
||||
|
|
Loading…
Reference in a new issue