Commit 44df41e5 authored by Claude Paroz's avatar Claude Paroz
Browse files

[1.5.x] Fixed #20695 -- Fixed contrib.humanize translation syntax errors

Affected language: Mexican Spanish, Mongolian, Romanian, Turkish
Translations for 1.6 and master will be refetched from Transifex.
Thanks ruless at gmail.com for the report.
parent 6151fdf9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -257,14 +257,14 @@ msgstr[1] "hace %(count)s segundos"
msgid "a minute ago"
msgid_plural "%(count)s minutes ago"
msgstr[0] "Hace un minuto"
msgstr[1] "Hace %s minutos"
msgstr[1] "Hace %(count)s minutos"

#: templatetags/humanize.py:206
#, python-format
msgid "an hour ago"
msgid_plural "%(count)s hours ago"
msgstr[0] "Hace una hora"
msgstr[1] "Hace %s horas"
msgstr[1] "Hace %(count)s horas"

#: templatetags/humanize.py:212
#, python-format
+2 −2
Original line number Diff line number Diff line
@@ -258,14 +258,14 @@ msgstr[1] "%(count)s секундын өмнө"
msgid "a minute ago"
msgid_plural "%(count)s minutes ago"
msgstr[0] "минутын өмнө"
msgstr[1] "%s минутын өмнө"
msgstr[1] "%(count)s минутын өмнө"

#: templatetags/humanize.py:206
#, python-format
msgid "an hour ago"
msgid_plural "%(count)s hours ago"
msgstr[0] "цагын өмнө"
msgstr[1] "%s цагын өмнө"
msgstr[1] "%(count)s цагын өмнө"

#: templatetags/humanize.py:212
#, python-format
Loading