Hi team,
com_zimbra_date doesn't work on Japanese in Zimbra 7.
But I could fix this issue ans would like to share with not only Japanese people but also the other people.
Today and Yesterday work well, but "今日", "昨日" doesn't work.
It seems that Zimbra can't tell the Japanese words in the email messages.
The reason is the default seeting of properties files is wrong.
file : com_zimbra_date_ja.properties
line : (NG) format.boundary = true
line : (Correct) format.boundary = false
I think this fix might be necessary in the other languages, such as chinese, korean, maybe.
------
I could identify this by reviewing date.
js
// NOTE: can't use \b with asian characters!
boundary = this.getMessage("format"+i+".boundary");
if ((boundary != "" && boundary == BOUNDARY_TRUE) || boundary_all == BOUNDARY_TRUE) {
pattern = "\\b"+pattern+"\\b";
}
------