Hi, DoD & SLC !!
I request new futures for internationalization of ClientMod.
1. UTF-8 format for ClientMod.prop Maybe your program read ClientMod.prop as an ISO-8859-1(Latin-1) file. No support for UTF-8 format.
Then I used "\uhhhh" formatat for each charactor on Japanese strings.
For example:
# define main buttons
mainbutton_1 = "\u4eba", "*/who"
mainbutton_2 = "\u8857", "*/gwho"
mainbutton_3 = "\u535a\u58eb", "*/tell hakase list"
mainbutton_4 = "\u53cb", "*/friendsonline"
mainbutton_5 = "\u505c", "*/mod_noscroll", "\u6d41", "*/mod_scroll"
# 'you said:' in tell windows
colorline_yousaid = "\u3042\u306a\u305f\u306e\u767a\u8a00" , 0080C0,
I used 'native2ascii' filter in Sun's JDK to convert strings. But most of users didn't install JDK. So normaly user just applied my prop, don't touch strings by thireself.
For me, it was additional and a bit irritable actions to maintain the prop.
By this reason, could you add function to handle UTF-8 prop for your mod??
Parhaps, for Chinesse, Tiwanense, Korian and no Asian language users that out of range in Latin-1, want this function.

One solution is 'decode' specified in top of line of the prop like puppet code. SLC well know this.
2. Colortime function for every native languages. I think colortime function works for only 'H:mm:ss' format. (By regular exression, '^(\d:\d:\d)' maybe

)
Now time format for '/time on' is depend on LocalCommand.string(_UTF-8) in localize\(language code)\strings folder. The item 't33' is that.
The best solution is, of couse, read this line, and handle correctly.
But it is 'What a bother!' for you

If so add a item for ClientMod.string(_UTF-8) for this.
Or delte this function, and each user define the time format by 'colorkeyregex_timeformat = "^(\\d:\\d:\\d),..."' or "^(\\d:\\d:\\d \\s)" or "^(\\s \\d:\\d:\\d)" (last one is Japanese formal format, I didn't set this for LocalCommand.string

Maybe some user feel wander 'What is colortime function?? Nothing change color on time part...'. Ummm, maybe en language setting also display '(12:24:36 AM)' format... this function don't work...many en users...so many users think so?

Anyway, corect program or add information on manual page in ClientMod HP.

sry, I'm long post writer.

ML HiroQws