Is it possible to make two or more msgid corresponding to one of msgstr?
For example, like ('list.empty') and ('list.null') return"There is no any objects yet."
If I write this path in the po file:
msgid "list.empty"
msgid "list.null"
msgstr "There is no any objects yet."
These are just errors with "missing" msgstr ":
However
msgid "list.empty"
msgstr "There is no any objects yet."
msgid "list.null"
msgstr "There is no any objects yet."
It looks and works fine, but stupid, because as soon as I change one of msgstr without the other, they return different results.
Does anyone have the best hacks?
source
share