You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
Translation with text_domain not working for gettext.
Case working:
PoEdit Source keywords:
translate:1
translatePlural:1,2
$this->translatePlural('name', 'names', 1, 'ui')
TextDomain storage gives:
["storage":"ArrayObject":private]=> array(2) { ["name"]=> array(3) { [0]=> string(5) "imiÄ™" [1]=> string(6) "imiona" [2]=> string(5) "imion" } ["names"]=> string(0) "" }
Case not working:
PoEdit Source keywords:
translate:1**,2c**
translatePlural:1,2**,4c**
$this->translatePlural('name', 'names', 1, 'ui')
TextDomain storage gives:
["storage":"ArrayObject":private]=> array(2) { ["ui�name"]=> array(3) { [0]=> string(5) "imiÄ™" [1]=> string(6) "imiona" [2]=> string(5) "imion" } ["names"]=> string(0) "" }
In
.po
file there is one difference:msgctxt "ui"
msgid "name"
msgid_plural "names"
msgstr[0] "imię"
msgstr[1] "imiona"
msgstr[2] "imion"
The text was updated successfully, but these errors were encountered: