Commit 2478f858 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Updated date format strings of languages that require alternate month names....

Updated date format strings of languages that require alternate month names. Refs #14570 because it uses the new format character added for this purpose. Thank you, shell_dweller.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14900 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 7292af85
Loading
Loading
Loading
Loading
+60 −0
Original line number Diff line number Diff line
@@ -5057,6 +5057,66 @@ msgstr "listopad"
msgid "Dec."
msgstr "prosinec"

#: utils/dates.py:45
msgctxt "alt. month"
msgid "January"
msgstr "ledna"

#: utils/dates.py:46
msgctxt "alt. month"
msgid "February"
msgstr "února"

#: utils/dates.py:47
msgctxt "alt. month"
msgid "March"
msgstr "března"

#: utils/dates.py:48
msgctxt "alt. month"
msgid "April"
msgstr "dubna"

#: utils/dates.py:49
msgctxt "alt. month"
msgid "May"
msgstr "května"

#: utils/dates.py:50
msgctxt "alt. month"
msgid "June"
msgstr "června"

#: utils/dates.py:51
msgctxt "alt. month"
msgid "July"
msgstr "července"

#: utils/dates.py:52
msgctxt "alt. month"
msgid "August"
msgstr "srpna"

#: utils/dates.py:53
msgctxt "alt. month"
msgid "September"
msgstr "září"

#: utils/dates.py:54
msgctxt "alt. month"
msgid "October"
msgstr "října"

#: utils/dates.py:55
msgctxt "alt. month"
msgid "November"
msgstr "listopadu"

#: utils/dates.py:56
msgctxt "alt. month"
msgid "December"
msgstr "prosince"

#: utils/text.py:130
msgid "or"
msgstr "nebo"
+2 −2
Original line number Diff line number Diff line
@@ -4,9 +4,9 @@

# The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y'
DATE_FORMAT = 'j. E Y'
TIME_FORMAT = 'G:i:s'
DATETIME_FORMAT = 'j. F Y G:i:s'
DATETIME_FORMAT = 'j. E Y G:i:s'
YEAR_MONTH_FORMAT = 'F Y'
MONTH_DAY_FORMAT = 'j. F'
SHORT_DATE_FORMAT = 'd.m.Y'
+60 −0
Original line number Diff line number Diff line
@@ -436,6 +436,66 @@ msgstr "Νοέ."
msgid "Dec."
msgstr "Δεκ."

#: utils/dates.py:45
msgctxt "alt. month"
msgid "January"
msgstr "Ιανουαρίου"

#: utils/dates.py:46
msgctxt "alt. month"
msgid "February"
msgstr "Φεβρουαρίου"

#: utils/dates.py:47
msgctxt "alt. month"
msgid "March"
msgstr "Μαρτίου"

#: utils/dates.py:48
msgctxt "alt. month"
msgid "April"
msgstr "Απριλίου"

#: utils/dates.py:49
msgctxt "alt. month"
msgid "May"
msgstr "Μαΐου"

#: utils/dates.py:50
msgctxt "alt. month"
msgid "June"
msgstr "Ιουνίου"

#: utils/dates.py:51
msgctxt "alt. month"
msgid "July"
msgstr "Ιουλίου"

#: utils/dates.py:52
msgctxt "alt. month"
msgid "August"
msgstr "Αυγούστου"

#: utils/dates.py:53
msgctxt "alt. month"
msgid "September"
msgstr "Σεπτεμβρίου"

#: utils/dates.py:54
msgctxt "alt. month"
msgid "October"
msgstr "Οκτωβρίου"

#: utils/dates.py:55
msgctxt "alt. month"
msgid "November"
msgstr "Νοεμβρίου"

#: utils/dates.py:56
msgctxt "alt. month"
msgid "December"
msgstr "Δεκεμβρίου"

#: utils/dateformat.py:40
msgid "p.m."
msgstr "μμ."
Loading