I'm working with the language files and some of them have code like this, some not:
global $editortxt;
What is this for?
I downloaded your german language pack and there are differences between the original english file and the german translated one. For example, in index.english.php you will find:
// Version: 1.0; index
global $forum_copyright;
// Locale (strftime, pspell_new) and spelling. (pspell_new, can be left as '' normally.)
in index.german.php this part looks like:
// Version: 1.0; index
global $forum_copyright, $forum_version, $webmaster_email, $scripturl, $context, $boardurl;
// Locale (strftime, pspell_new) and spelling. (pspell_new, can be left as '' normally.)
You see the difference? Shouldn't this be the same? Should I better check the files and copy these codes from the english ones into the german files?