소스 검색

Fixed #25194 -- Fixed Korean YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT.

'F' translates a month to a Korean name with a month number so,
for example, 'F 월' becomes '10 월월' for October. This should
be either 'F' or 'n월', and I followed conventions in other
languages like Japanese and Chinese.
Donggi Jung 9 년 전
부모
커밋
14c1fd0730
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      django/conf/locale/ko/formats.py

+ 2 - 2
django/conf/locale/ko/formats.py

@@ -8,8 +8,8 @@ from __future__ import unicode_literals
 DATE_FORMAT = 'Y년 n월 j일'
 TIME_FORMAT = 'A g:i'
 DATETIME_FORMAT = 'Y년 n월 j일 g:i A'
-YEAR_MONTH_FORMAT = 'Y년 F월'
-MONTH_DAY_FORMAT = 'F월 j일'
+YEAR_MONTH_FORMAT = 'Y년 n월'
+MONTH_DAY_FORMAT = 'n월 j일'
 SHORT_DATE_FORMAT = 'Y-n-j.'
 SHORT_DATETIME_FORMAT = 'Y-n-j H:i'
 # FIRST_DAY_OF_WEEK =