]> git.mxchange.org Git - friendica.git/blobdiff - util/typo.php
collapse posts by same author (but not you).
[friendica.git] / util / typo.php
index ac837efe5028d5daf28c71ef39a012a2e7481dfe..84a50e15e236b0d68b6c08557d94884cb609b618 100644 (file)
                        echo $file . "\n";
                        include_once($file);
                }
-       }
\ No newline at end of file
+       }
+
+       echo "String files\n";
+
+       echo 'util/strings.php' . "\n";
+       include_once('util/strings.php');
+       echo count($a->strings) . ' strings' . "\n";
+
+       $files = glob('view/*/strings.php');
+
+       foreach($files as $file) {
+               echo $file . "\n";
+               include_once($file);
+       }