1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #14806 -- Added support for contextual translations to the trans and blocktrans template tags. Thanks to jtiai for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17015 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Julien Phalip
2011-10-19 04:59:47 +00:00
parent 358e5a8031
commit 26698bc851
10 changed files with 324 additions and 22 deletions

View File

@@ -52,3 +52,27 @@ msgid "%(percent)s%% represents %(num)s object"
msgid_plural "%(percent)s%% represents %(num)s objects"
msgstr[0] "%(percent)s%% stellt %(num)s Objekt dar"
msgstr[1] "%(percent)s%% stellt %(num)s Objekte dar"
#: models.py:17
msgctxt "super search"
msgid "%(number)s super result"
msgid_plural "%(number)s super results"
msgstr[0] "%(number)s Super-Ergebnis"
msgstr[1] "%(number)s Super-Ergebnisse"
#: models.py:19
msgctxt "other super search"
msgid "%(number)s super result"
msgid_plural "%(number)s super results"
msgstr[0] "%(number)s anderen Super-Ergebnis"
msgstr[1] "%(number)s andere Super-Ergebnisse"
#: models.py:21
msgctxt "comment count"
msgid "There are %(num_comments)s comments"
msgstr "Es gibt %(num_comments)s Kommentare"
#: models.py:23
msgctxt "other comment count"
msgid "There are %(num_comments)s comments"
msgstr "Andere: Es gibt %(num_comments)s Kommentare"