From: Jeroen Ruigrok van der Werven Date: Fri, 19 Feb 2010 14:15:56 +0000 (+0000) Subject: Actually make the msgid_plural be a plural as per typical use case. X-Git-Tag: 1.0~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81146dd31ad0e0fc44012a2a67d1f7cd14d18e6e;p=thirdparty%2Fbabel.git Actually make the msgid_plural be a plural as per typical use case. --- diff --git a/babel/messages/tests/pofile.py b/babel/messages/tests/pofile.py index e242ac7e..e2750030 100644 --- a/babel/messages/tests/pofile.py +++ b/babel/messages/tests/pofile.py @@ -192,7 +192,7 @@ msgstr "Bahr" def test_single_plural_form(self): buf = StringIO(r'''msgid "foo" -msgid_plural "foo" +msgid_plural "foos" msgstr[0] "Voh"''') catalog = pofile.read_po(buf, locale='ja_JP') self.assertEqual(1, len(catalog)) @@ -202,7 +202,7 @@ msgstr[0] "Voh"''') def test_singular_plural_form(self): buf = StringIO(r'''msgid "foo" -msgid_plural "foo" +msgid_plural "foos" msgstr[0] "Voh" msgstr[1] "Vohs"''') catalog = pofile.read_po(buf, locale='nl_NL') @@ -213,7 +213,7 @@ msgstr[1] "Vohs"''') def test_more_than_two_plural_forms(self): buf = StringIO(r'''msgid "foo" -msgid_plural "foo" +msgid_plural "foos" msgstr[0] "Voh" msgstr[1] "Vohs" msgstr[2] "Vohss"''') @@ -226,7 +226,7 @@ msgstr[2] "Vohss"''') def test_plural_with_square_brackets(self): buf = StringIO(r'''msgid "foo" -msgid_plural "foo" +msgid_plural "foos" msgstr[0] "Voh [text]" msgstr[1] "Vohs [text]"''') catalog = pofile.read_po(buf, locale='nb_NO')