+2003-04-27 Bruno Haible <bruno@clisp.org>
+
+ * manual/message.texi (Advanced gettext functions): Add information
+ about Korean, Portuguese, Latvian. Gaeilge is also known as Irish.
+ Add section about Lithuanian, reported by Ricardas Cepas
+ <rch@richard.eu.org>.
+ Add information about Croatian.
+ Ukrainian is like Russian, reported by Andy Rysin <arysin@yahoo.com>.
+ Remove remark about continuation lines that is not true for PO files.
+ Fix formula for Slovenian, reported by Roman Maurer
+ <roman.maurer@amis.net>.
+
2003-08-27 Ulrich Drepper <drepper@redhat.com>
* math/math_private.h: Declare __copysignf.
@item Finno-Ugric family
Hungarian
@item Asian family
-Japanese
+Japanese, Korean
@item Turkic/Altaic family
Turkish
@end table
@item Semitic family
Hebrew
@item Romance family
-Italian, Spanish
+Italian, Portuguese, Spanish
@item Artificial
Esperanto
@end table
@table @asis
@item Romanic family
-French
+French, Brazilian Portuguese
+@end table
+
+@item Three forms, special case for zero
+The header entry would be:
+
+@smallexample
+Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;
+@end smallexample
+
+@noindent
+Languages with this property include:
+
+@table @asis
+@item Baltic family
+Latvian
@end table
@item Three forms, special cases for one and two
@table @asis
@item Celtic
-Gaeilge
+Gaeilge (Irish)
+@end table
+
+@item Three forms, special case for numbers ending in 1[2-9]
+The header entry would look like this:
+
+@smallexample
+Plural-Forms: nplurals=3; \
+ plural=n%10==1 && n%100!=11 ? 0 : \
+ n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;
+@end smallexample
+
+@noindent
+Languages with this property include:
+
+@table @asis
+@item Baltic family
+Lithuanian
@end table
@item Three forms, special cases for numbers ending in 1 and 2, 3, 4, except those ending in 1[1-4]
@table @asis
@item Slavic family
-Czech, Russian
+Croatian, Czech, Russian, Ukrainian
@end table
@item Three forms, special cases for 1 and 2, 3, 4
n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;
@end smallexample
-(Continuation in the next line is possible.)
-
@noindent
Languages with this property include:
Polish
@end table
-@item Four forms, special case for one and all numbers ending in 2, 3, or 4
+@item Four forms, special case for one and all numbers ending in 02, 03, or 04
The header entry would look like this:
@smallexample
Plural-Forms: nplurals=4; \
- plural=n==1 ? 0 : n%10==2 ? 1 : n%10==3 || n%10==4 ? 2 : 3;
+ plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;
@end smallexample
@noindent