yet another template converted to language neutral format

This commit is contained in:
Friendika 2011-03-08 18:53:52 -08:00
commit 0de88eb6b0
14 changed files with 52 additions and 27 deletions

View file

@ -35,4 +35,14 @@
echo $file . "\n";
include_once($file);
}
}
}
echo "String files\n";
echo 'util/strings.php' . "\n";
include_once('util/strings.php');
$files = glob('view/*/strings.php');
foreach($files as $file) {
echo $file . "\n";
include_once($file);
}