]> git.mxchange.org Git - friendica.git/blobdiff - include/pgettext.php
merge
[friendica.git] / include / pgettext.php
index 5a0eab0b01078267a424c65ce47e22ab32879aa5..525b64a1867ea51feb2708b086106936c1515f37 100644 (file)
@@ -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