Hi, I've just finished translating the new strings into zh-TW (Traditional Chinese) as well as revising some older strings. There is something I would like to point out about these PHP includes: wouldn't it be more efficient to use this kind of syntax: $blah = array( 'one' => 'One', 'two' => 'Two' ); as opposed to this? $blah = array(); $blah['one'] = 'One'; $blah['two'] = 'Two';