]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Add info about Serbian.
authorBruno Haible <bruno@clisp.org>
Fri, 27 Feb 2004 22:58:25 +0000 (22:58 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:11:49 +0000 (12:11 +0200)
gettext-tools/doc/ChangeLog
gettext-tools/doc/gettext.texi
gettext-tools/src/ChangeLog
gettext-tools/src/plural-table.c

index 3b8050990845bc211a3d8692d683f9729b9555e4..efc9c347b972e5174321e75d1094322cfbcd9ae4 100644 (file)
@@ -1,3 +1,8 @@
+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
index bcb1976fed2737796135b87c66999ab64de99456..003c0a5305ec199f1b52b321dfa6de3db44a3830 100644 (file)
@@ -5131,7 +5131,7 @@ Languages with this property include:
 
 @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
index 73a1ac2c67595885152e7fd0bb2141c2770c6c09..4808f22de232c1232fd418314ee5fe2c9804e7dd 100644 (file)
@@ -1,3 +1,8 @@
+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.
index ea0137715d3e45b5292e5dded9b7577cb1f3f651..9626d7f6375459407009bf2c2a1e559340713d03 100644 (file)
@@ -1,5 +1,5 @@
 /* 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
@@ -53,6 +53,7 @@ struct plural_table_entry plural_table[] =
     { "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);" },