diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-13 12:20:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-13 12:20:37 (GMT) |
commit | 6be0cf66e023bc64e38f0a037a3e74e5d31b18f7 (patch) | |
tree | c3b8b3e3105aec37a09dc3e86e45b3021c5a225c /library/msgs/zh_tw.msg | |
parent | 5ba18ec98dfa4afe775a3f7a7caa8d55774d907d (diff) | |
download | tcl-6be0cf66e023bc64e38f0a037a3e74e5d31b18f7.zip tcl-6be0cf66e023bc64e38f0a037a3e74e5d31b18f7.tar.gz tcl-6be0cf66e023bc64e38f0a037a3e74e5d31b18f7.tar.bz2 |
Translate all \u???? sequences to their UTF-8 counterpart in *.msg files: It is faster during parsing (since no backslash-sequences have to be handled) and makes the msg-files better readable by humans.
TODO: adapt tools/loadICU.tcl to generate UTF-8 in stead of those sequences. This tools seems to be out-of-date a long time already, I couldn't make it run with latest ICU.
Diffstat (limited to 'library/msgs/zh_tw.msg')
-rw-r--r-- | library/msgs/zh_tw.msg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/msgs/zh_tw.msg b/library/msgs/zh_tw.msg index e0796b1..17a6dd7 100644 --- a/library/msgs/zh_tw.msg +++ b/library/msgs/zh_tw.msg @@ -1,7 +1,7 @@ # created by tools/loadICU.tcl -- do not edit namespace eval ::tcl::clock { - ::msgcat::mcset zh_TW BCE "\u6c11\u570b\u524d" - ::msgcat::mcset zh_TW CE "\u6c11\u570b" + ::msgcat::mcset zh_TW BCE "民國前" + ::msgcat::mcset zh_TW CE "民國" ::msgcat::mcset zh_TW DATE_FORMAT "%Y/%m/%e" ::msgcat::mcset zh_TW TIME_FORMAT_12 "%P %I:%M:%S" ::msgcat::mcset zh_TW DATE_TIME_FORMAT "%Y/%m/%e %P %I:%M:%S %z" |