Opened 14 years ago
Closed 14 years ago
#15788 closed Bug (fixed)
Spanish djangojs.po msgid "%(sel)s of %(cnt)s selected"
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Translations | Version: | 1.3 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The actual translation is mixing spanish and english:
51 #: media/js/actions.js:18 media/js/actions.min.js:1 52 msgid "%(sel)s of %(cnt)s selected" 53 msgid_plural "%(sel)s of %(cnt)s selected" 54 msgstr[0] "one: %(sel)s de %(cnt)s seleccionado" 55 msgstr[1] "other: %(sel)s de %(cnt)s seleccionados"
Should be something like:
51 #: media/js/actions.js:18 media/js/actions.min.js:1 52 msgid "%(sel)s of %(cnt)s selected" 53 msgid_plural "%(sel)s of %(cnt)s selected" 54 msgstr[0] "%(sel)s de %(cnt)s seleccionado" 55 msgstr[1] "%(sel)s de %(cnt)s seleccionados"
Note:
See TracTickets
for help on using tickets.
Translation updates have been moved to Transifex (see http://docs.djangoproject.com/en/1.3/internals/contributing/#submitting-and-maintaining-translations). I've applied the changes there.