+2004-02-27 Bruno Haible <bruno@clisp.org>
+
+ * gettext.texi (Plural forms): Add info about Serbian.
+ Reported by Danilo Segan <danilo@gnome.org>.
+
2004-02-24 Bruno Haible <bruno@clisp.org>
* FAQ.html (How do I make use of gettext() in my package?): New
@table @asis
@item Slavic family
-Croatian, Czech, Russian, Ukrainian
+Croatian, Serbian, Czech, Russian, Ukrainian
@end table
@item Three forms, special cases for 1 and 2, 3, 4
+2004-02-27 Bruno Haible <bruno@clisp.org>
+
+ * plural-table.c (plural_table): Add an entry about Serbian.
+ Reported by Danilo Segan <danilo@gnome.org>.
+
2004-01-29 Bruno Haible <bruno@clisp.org>
* gettext-0.14.1 released.
/* Table of known plural form expressions.
- Copyright (C) 2001-2003 Free Software Foundation, Inc.
+ Copyright (C) 2001-2004 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2002.
This program is free software; you can redistribute it and/or modify
{ "ga", "Irish", "nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;" },
{ "lt", "Lithuanian", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (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);" },
+ { "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);" },
{ "cs", "Czech", "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (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);" },