summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuneHyeon Bae <devunt@gmail.com>2014-12-14 16:43:27 +0100
committerClaude Paroz <claude@2xlibre.net>2014-12-14 16:47:06 +0100
commiteb632bfba51263f9a91e1699be25dac7b7bab53e (patch)
tree1ffddd6b731c556ba7bcf87fc30276dbfb0ec7b2
parent9189ef438ef885446b20bf4c017d3cf53335ab08 (diff)
[1.7.x] Fixed timesince translations for Korean
Refs #23989.
-rw-r--r--django/conf/locale/ko/LC_MESSAGES/django.mobin21044 -> 21056 bytes
-rw-r--r--django/conf/locale/ko/LC_MESSAGES/django.po19
-rw-r--r--docs/releases/1.7.2.txt2
3 files changed, 12 insertions, 9 deletions
diff --git a/django/conf/locale/ko/LC_MESSAGES/django.mo b/django/conf/locale/ko/LC_MESSAGES/django.mo
index 6a43bd08ae..68239e5df0 100644
--- a/django/conf/locale/ko/LC_MESSAGES/django.mo
+++ b/django/conf/locale/ko/LC_MESSAGES/django.mo
Binary files differ
diff --git a/django/conf/locale/ko/LC_MESSAGES/django.po b/django/conf/locale/ko/LC_MESSAGES/django.po
index 3781fc332e..9b52248b4a 100644
--- a/django/conf/locale/ko/LC_MESSAGES/django.po
+++ b/django/conf/locale/ko/LC_MESSAGES/django.po
@@ -5,13 +5,14 @@
# Jaehong Kim <mixe@korea.com>, 2011
# Jannis Leidel <jannis@leidel.info>, 2011
# Jeong Seongtae <magno79@gmail.com>, 2014
+# JuneHyeon Bae <devunt@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-23 14:10+0200\n"
-"PO-Revision-Date: 2014-08-24 08:52+0000\n"
-"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
+"PO-Revision-Date: 2014-12-14 04:22+0000\n"
+"Last-Translator: JuneHyeon Bae <devunt@gmail.com>\n"
"Language-Team: Korean (http://www.transifex.com/projects/p/django/language/"
"ko/)\n"
"MIME-Version: 1.0\n"
@@ -1242,41 +1243,41 @@ msgstr ","
#, python-format
msgid "%d year"
msgid_plural "%d years"
-msgstr[0] "%d "
+msgstr[0] "%d년"
#: utils/timesince.py:26
#, python-format
msgid "%d month"
msgid_plural "%d months"
-msgstr[0] "%d 2개월"
+msgstr[0] "%d개월"
#: utils/timesince.py:27
#, python-format
msgid "%d week"
msgid_plural "%d weeks"
-msgstr[0] "%d "
+msgstr[0] "%d주"
#: utils/timesince.py:28
#, python-format
msgid "%d day"
msgid_plural "%d days"
-msgstr[0] "%d "
+msgstr[0] "%d일"
#: utils/timesince.py:29
#, python-format
msgid "%d hour"
msgid_plural "%d hours"
-msgstr[0] "%d "
+msgstr[0] "%d시간"
#: utils/timesince.py:30
#, python-format
msgid "%d minute"
msgid_plural "%d minutes"
-msgstr[0] "%d "
+msgstr[0] "%d분"
#: utils/timesince.py:46
msgid "0 minutes"
-msgstr "0"
+msgstr "0분"
#: views/csrf.py:105
msgid "Forbidden"
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index df0167351a..60e4c15e50 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -133,3 +133,5 @@ Bugfixes
on Oracle (the main tablespace was increased from 200M to 300M and the
temporary tablespace from 100M to 150M). This was required to accomodate
growth in Django's own test suite (:ticket:`23969`).
+
+* Fixed timesince filter translations in Korean (:ticket:`23989`).