ko_KR.* LC_TIME database includes wrong format of {ampm,d_t_fmt,d_fmt,t_fmt_ampm,date_fmt}

Issue #39 closed
Takehiko NOZAKI repo owner created an issue

wrong format

$LANG=ko_KR.eucKR; export LANG
$ date +"%p"
AM
$ date +"%c"7/26 01:47:36 2014
$ date +"%x"
2014/07/26
$ date +"%r"
01:49:38 AM
$ date
토  7 26 01:50:19 GMT 2014

correct format:

$LANG=ko_KR.eucKR; export LANG
$ date +"%p"
오전
$ date +"%c"
2014년7월26일 01시47분36초
$ date +"%x"
2014년7월26일
$ date +"%r"
오전01시49분38초
$ date
2014년7월26일 토요일 01시50분19초 GMT

Comments (3)

  1. Log in to comment