Fixed timesince translations for Korean

Refs #23989.
Forward port of eb632bfba from stable/1.7.x.
This commit is contained in:
JuneHyeon Bae 2014-12-14 16:43:27 +01:00 committed by Claude Paroz
parent 71a559e771
commit 9495989265
3 changed files with 12 additions and 9 deletions

View File

@ -5,13 +5,14 @@
# Jaehong Kim <mixe@korea.com>, 2011 # Jaehong Kim <mixe@korea.com>, 2011
# Jannis Leidel <jannis@leidel.info>, 2011 # Jannis Leidel <jannis@leidel.info>, 2011
# Jeong Seongtae <magno79@gmail.com>, 2014 # Jeong Seongtae <magno79@gmail.com>, 2014
# JuneHyeon Bae <devunt@gmail.com>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: django\n" "Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-23 14:10+0200\n" "POT-Creation-Date: 2014-08-23 14:10+0200\n"
"PO-Revision-Date: 2014-08-24 08:52+0000\n" "PO-Revision-Date: 2014-12-14 04:22+0000\n"
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n" "Last-Translator: JuneHyeon Bae <devunt@gmail.com>\n"
"Language-Team: Korean (http://www.transifex.com/projects/p/django/language/" "Language-Team: Korean (http://www.transifex.com/projects/p/django/language/"
"ko/)\n" "ko/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -1242,41 +1243,41 @@ msgstr ","
#, python-format #, python-format
msgid "%d year" msgid "%d year"
msgid_plural "%d years" msgid_plural "%d years"
msgstr[0] "%d " msgstr[0] "%d"
#: utils/timesince.py:26 #: utils/timesince.py:26
#, python-format #, python-format
msgid "%d month" msgid "%d month"
msgid_plural "%d months" msgid_plural "%d months"
msgstr[0] "%d 2개월" msgstr[0] "%d개월"
#: utils/timesince.py:27 #: utils/timesince.py:27
#, python-format #, python-format
msgid "%d week" msgid "%d week"
msgid_plural "%d weeks" msgid_plural "%d weeks"
msgstr[0] "%d " msgstr[0] "%d"
#: utils/timesince.py:28 #: utils/timesince.py:28
#, python-format #, python-format
msgid "%d day" msgid "%d day"
msgid_plural "%d days" msgid_plural "%d days"
msgstr[0] "%d " msgstr[0] "%d"
#: utils/timesince.py:29 #: utils/timesince.py:29
#, python-format #, python-format
msgid "%d hour" msgid "%d hour"
msgid_plural "%d hours" msgid_plural "%d hours"
msgstr[0] "%d " msgstr[0] "%d시간"
#: utils/timesince.py:30 #: utils/timesince.py:30
#, python-format #, python-format
msgid "%d minute" msgid "%d minute"
msgid_plural "%d minutes" msgid_plural "%d minutes"
msgstr[0] "%d " msgstr[0] "%d"
#: utils/timesince.py:46 #: utils/timesince.py:46
msgid "0 minutes" msgid "0 minutes"
msgstr "0" msgstr "0"
#: views/csrf.py:105 #: views/csrf.py:105
msgid "Forbidden" msgid "Forbidden"

View File

@ -133,3 +133,5 @@ Bugfixes
on Oracle (the main tablespace was increased from 200M to 300M and the on Oracle (the main tablespace was increased from 200M to 300M and the
temporary tablespace from 100M to 150M). This was required to accomodate temporary tablespace from 100M to 150M). This was required to accomodate
growth in Django's own test suite (:ticket:`23969`). growth in Django's own test suite (:ticket:`23969`).
* Fixed timesince filter translations in Korean (:ticket:`23989`).