From: Bruno Haible Date: Sat, 13 Nov 2010 23:01:39 +0000 (+0100) Subject: Add info about plural formula for Belarusian. X-Git-Tag: v0.18.2~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0d3b2985401f54e601cd1a1650e81b4ee8e3cc7;p=thirdparty%2Fgettext.git Add info about plural formula for Belarusian. --- diff --git a/gettext-tools/doc/ChangeLog b/gettext-tools/doc/ChangeLog index a9ee9cb0b..429847686 100644 --- a/gettext-tools/doc/ChangeLog +++ b/gettext-tools/doc/ChangeLog @@ -1,3 +1,8 @@ +2010-11-13 Bruno Haible + + * gettext.texi (Plural forms): Add Belarusian. + Reported by Ihar Hrachyshka . + 2010-08-29 Bruno Haible * gettext.texi (Using Compendia): Correct after 2007-09-09 change. diff --git a/gettext-tools/doc/gettext.texi b/gettext-tools/doc/gettext.texi index 708678ee2..5b2c1bb9b 100644 --- a/gettext-tools/doc/gettext.texi +++ b/gettext-tools/doc/gettext.texi @@ -6368,6 +6368,7 @@ Languages with this property include: @item Slavic family Russian, @c 143.6 million speakers Ukrainian, @c 37.0 million speakers +Belarusian, @c 8.6 million speakers Serbian, @c 7.0 million speakers Croatian @c 5.5 million speakers @end table diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 91e300d06..24a26d3dd 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2010-11-13 Ihar Hrachyshka (tiny change) + + * plural-table.c (plural_table): Added Belarusian, copied from Russian + and Ukrainian. + 2010-11-07 Bruno Haible format-c.c: Share code with libintlext. diff --git a/gettext-tools/src/plural-table.c b/gettext-tools/src/plural-table.c index ddbb056d3..556cbccd7 100644 --- a/gettext-tools/src/plural-table.c +++ b/gettext-tools/src/plural-table.c @@ -56,6 +56,7 @@ struct plural_table_entry plural_table[] = { "lt", "Lithuanian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" }, { "ru", "Russian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }, { "uk", "Ukrainian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }, + { "be", "Belarusian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }, { "sr", "Serbian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }, { "hr", "Croatian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }, { "cs", "Czech", "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" },