Opened 7 years ago

Closed 7 years ago

#27968 closed Bug (invalid)

Django admin calendar week day name wrong

Reported by: Nikolay Shkrylev Owned by: nobody
Component: contrib.admin Version: 1.10
Severity: Normal Keywords: admin, calendar
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi!
We have a small bug in django admin calendar in russian locale: wrong week day name
In django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po

msgctxt "one letter Sunday"
msgid "S"
msgstr "С"

msgctxt "one letter Monday"
msgid "M"
msgstr "П"

msgctxt "one letter Tuesday"
msgid "T"
msgstr "В"

but must be

msgctxt "one letter Sunday"
msgid "S"
msgstr "Вс"

msgctxt "one letter Monday"
msgid "M"
msgstr "Пн"

msgctxt "one letter Tuesday"
msgid "T"
msgstr "Вт"

Change History (1)

comment:1 by Tim Graham, 7 years ago

Resolution: invalid
Status: newclosed

Hi, translation issues should be reported on Transifex.

Note: See TracTickets for help on using tickets.
Back to Top