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 | 376e19aa5f5a32fa46e67e6c9f7d73b47f729426 (patch) | |
tree | c3b8b3e3105aec37a09dc3e86e45b3021c5a225c /library/msgs/ko_kr.msg | |
parent | 9f8e844f9c423ce1ff450461016db86873db4a45 (diff) | |
download | tcl-376e19aa5f5a32fa46e67e6c9f7d73b47f729426.zip tcl-376e19aa5f5a32fa46e67e6c9f7d73b47f729426.tar.gz tcl-376e19aa5f5a32fa46e67e6c9f7d73b47f729426.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/ko_kr.msg')
-rw-r--r-- | library/msgs/ko_kr.msg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/msgs/ko_kr.msg b/library/msgs/ko_kr.msg index ea5bbd7..f23bd6b 100644 --- a/library/msgs/ko_kr.msg +++ b/library/msgs/ko_kr.msg @@ -1,7 +1,7 @@ # created by tools/loadICU.tcl -- do not edit namespace eval ::tcl::clock { - ::msgcat::mcset ko_KR BCE "\uae30\uc6d0\uc804" - ::msgcat::mcset ko_KR CE "\uc11c\uae30" + ::msgcat::mcset ko_KR BCE "기원전" + ::msgcat::mcset ko_KR CE "서기" ::msgcat::mcset ko_KR DATE_FORMAT "%Y.%m.%d" ::msgcat::mcset ko_KR TIME_FORMAT_12 "%P %l:%M:%S" ::msgcat::mcset ko_KR DATE_TIME_FORMAT "%Y.%m.%d %P %l:%M:%S %z" |