Re: Language
The language option only applies to the jForum code generated text. E.g., Submit, post reply, and the like.
Posts in english will still be in english and not automatically translated. Also, any "Titles" for Forums, Categories, and the like will be the language they were set up with.
Re: Timestamps
There is no way to easily map time to a user preference. The date conversions happen in too many different places.
However, there is a way to make them more "internationally" friendly... You can use the dateTime.format configuration parameter to define a different format. For my global users, I use the format of:
dd MMM yy HH\:mm zzz
This displays like "06 Nov 08 13:15 EST" which lets people easily know the time. (Ok the French may complain that Nov is English...just remind them that the English speaking part of the world arranged it so they wouldn't have to speak German....Sorry... couldn't resist the ugly American joke here.. please forgive me.)
FYI - The full details are:
The timestamps are stored in the DB in a "neutral" format. However, when
Java converts them from this to a text format, it uses the default JVM locale setting for a timezone. This can be changed with some webapp server start up settings... but generally defaults to the OS timezone (i.e. what the server settings are.)
[originally posted on jforum.net by monroe]