https://bugzilla.redhat.com/show_bug.cgi?id=1568991
Bug ID: 1568991 Summary: ValueError: plural forms expression could be dangerous Product: Fedora Version: 28 Component: fonts-tweak-tool Assignee: tagoh@redhat.com Reporter: nerijus@users.sourceforge.net QA Contact: extras-qa@fedoraproject.org CC: i18n-bugs@lists.fedoraproject.org, kent.neo@gmail.com, petersen@redhat.com, pwu@redhat.com, tagoh@redhat.com
Please see bug 1334960 and bug 1364114.
There is a typo in fonts-tweak-tool/po/lt.po (Lithuanian translation):
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 or n%100>=20)
should be ("or" is considered to be an identifier by gettext):
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20)
Please fix Plural-Forms headers (s/or/||/).