Topic: Admin language
Hi there,
I'm about 95% sure, that I'll use this board for a project, but I've found out, that I have to translate the whole admin area within the php code. IMHO thats not that cool.
Well and what I wanted to know is, are there any plans for the future to use a main language file? Something like : $lang["user"] = "string"; ?
IMO it's not that server intensive to include a language config file in the admin area, because the admin is not used so much so far:)
I haven't found any post like this with the search,.. sooo.,...
The language for the admin could be integrated within the users table. Each language is an INT and is related to another table ie "language" *g* and contains an ID and varchar field. the id, is the language id and the varchar the language name. Then it would be quite easy to extend the language file like this. $lang[1]["user"] = "string"; the [1] would be the lang id. Within the code it could be like that: echo $lang[$user_lang]["user"];
Or...
the language table contains an extra field, let uz call it "lang_file"... and it contains the filename of the languagefile, that has to be included.
anyhows,..
what do you think about it?
greetz biophonc