X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fpgettext.php;h=525b64a1867ea51feb2708b086106936c1515f37;hb=d905f0a3e3001496df120b685b6f2d42cc8598d2;hp=5a0eab0b01078267a424c65ce47e22ab32879aa5;hpb=f2c0c40f6e488f1a8e62bda9449b28115f343cac;p=friendica.git diff --git a/include/pgettext.php b/include/pgettext.php index 5a0eab0b01..525b64a186 100644 --- a/include/pgettext.php +++ b/include/pgettext.php @@ -90,12 +90,21 @@ 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;"); + if ($plugins!==false) { + 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