Quote:
Originally posted by VirtueTech
Can I have your language files?
|
Ok. My language files (english/dutch) are finished. So is french (but that one needs serious correcting so it's not really ready

)
If you still want them, I'll post them, however the templates need a LOT of work. On top of that, most PHP files need to be edited. The hack seems extremely easy, and indeed, it's not that hard, but you need to add globals on many different places in order for your variables to be recognised.
Also, some templates are just inserted without being evaluated through PHP. For instance, most error_templates contain only text. Since they don't contain variables, it's not necessary to evaluate them. However, if you use multilangsupport, you introduce variables, and therefore you DO need to evaluate them...
To be more exact, you need to replace
echo standarderror($bbtitle,gettemplate("whatever",0));
in
eval("echo standarderror(\$bbtitle,\"".gettemplate("whatever" )."\",\"\");");
in a lot of different places. I hope I'm making myself a little clear?
If that's not a problem for you, the languagefiles are yours.
Greetings,
stcham