The export function of .po files doesn't exports rows with msgstr[0] and msgstr[1] after the msgid_plural row:

#:  includes/common.inc:0
msgid "1 week"
msgid_plural "@count weeks"

#:  includes/common.inc:0
msgid "1 day"
msgid_plural "@count days"

...

Should be:

#: includes/common.inc:0
msgid "1 week"
msgid_plural "@count weeks"
msgstr[0] "1 Woche"
msgstr[1] "@count Wochen"

#: includes/common.inc:0
msgid "1 day"
msgid_plural "@count days"
msgstr[0] "1 Tag"
msgstr[1] "@count Tage"

--
richie

Comments

gábor hojtsy’s picture

Status: Active » Postponed (maintainer needs more info)

Is the plural form of your language imported properly? That could be the problem.

Wesley Tanaka’s picture

Status: Postponed (maintainer needs more info) » Closed (duplicate)

Marking as duplicate of earlier report