If locale is set to zh_CN.ut8, and using strftime("%b %Y", time()); It shows 9月2010 instead of 9月2010年。 This is not correct in chinese date, the year character (年)should be display at the end of the numeric year. Is there a way to solve this problem? I know I can append the character manually, example:
strftime("%b %Y", time())."年"
but would like to know if there's a better way to solve it.