summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonggi Jung <eastbase@gmail.com>2015-07-30 15:48:15 +0900
committerTim Graham <timograham@gmail.com>2015-08-03 07:37:54 -0400
commit14c1fd0730e2fd5ae5eb1c61dbea2e08582fab65 (patch)
tree40b6a74f3c8447670a985dc9a1b85542e8e5ce37
parentcc3d2fa73102e8ee29c401438bd849eea725198a (diff)
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.
-rw-r--r--django/conf/locale/ko/formats.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/locale/ko/formats.py b/django/conf/locale/ko/formats.py
index e89f644ca5..0344e9e161 100644
--- a/django/conf/locale/ko/formats.py
+++ b/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 =