diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-12-19 00:53:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-12-19 00:53:04 +0000 |
commit | aa9e3c3940003135ee8d3b2e728b627930eb65b1 (patch) | |
tree | 83bfc977acb8809192dd8b492cbade5692551441 | |
parent | ba908190d76f942235df208b90d85e71ae17e984 (diff) | |
download | glibc-aa9e3c3940003135ee8d3b2e728b627930eb65b1.tar glibc-aa9e3c3940003135ee8d3b2e728b627930eb65b1.tar.gz glibc-aa9e3c3940003135ee8d3b2e728b627930eb65b1.tar.bz2 glibc-aa9e3c3940003135ee8d3b2e728b627930eb65b1.zip |
Update.
* manual/message.texi: Add Estonian to plural overview list.
Correct rule for Slavic languages.
Patch by Stanislav Brabec <utx@penguin.cz>.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | manual/message.texi | 8 |
2 files changed, 8 insertions, 4 deletions
@@ -1,5 +1,9 @@ 2000-12-18 Ulrich Drepper <drepper@redhat.com> + * manual/message.texi: Add Estonian to plural overview list. + Correct rule for Slavic languages. + Patch by Stanislav Brabec <utx@penguin.cz>. + * nis/nss_nis/nis-netgrp.c: Remove unnecessary initializations. 2000-12-18 Andreas Jaeger <aj@suse.de> diff --git a/manual/message.texi b/manual/message.texi index 5f57be7b30..ebf373d49a 100644 --- a/manual/message.texi +++ b/manual/message.texi @@ -1259,7 +1259,7 @@ Languages with this property include: @item Germanic family Danish, Dutch, English, German, Norwegian, Swedish @item Finno-Ugric family -Finnish +Estonian, Finnish @item Latin/Greek family Greek @item Semitic family @@ -1300,11 +1300,11 @@ Languages with this property include: Gaeilge @end table -@item Three forms, special case for one and all numbers ending in 2, 3, or 4 +@item Three forms, special cases for numbers ending in 1 and 2, 3, 4, except those ending in 1[1-4] The header entry would look like this: @smallexample -nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 ? 1 : 2 +nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1 @end smallexample @noindent @@ -1312,7 +1312,7 @@ Languages with this property include: @table @asis @item Slavic family -Russian +Czech, Russian, Slovak @end table @item Three forms, special case for one and some numbers ending in 2, 3, or 4 |