about summary refs log tree commit diff
path: root/manual/message.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-08-29 07:16:04 +0000
committerUlrich Drepper <drepper@redhat.com>2003-08-29 07:16:04 +0000
commit3c945c44e79706acd40d279e0468c4035ed5b0ba (patch)
treebb40b817c40c2e22e17362ea536888ff9ae57c47 /manual/message.texi
parentabcb00dabb45898628edba9ee13e499977714579 (diff)
downloadglibc-3c945c44e79706acd40d279e0468c4035ed5b0ba.tar.gz
glibc-3c945c44e79706acd40d279e0468c4035ed5b0ba.tar.xz
glibc-3c945c44e79706acd40d279e0468c4035ed5b0ba.zip
Update.
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>.
Diffstat (limited to 'manual/message.texi')
-rw-r--r--manual/message.texi48
1 files changed, 39 insertions, 9 deletions
diff --git a/manual/message.texi b/manual/message.texi
index 6b323e476d..eab98e9338 100644
--- a/manual/message.texi
+++ b/manual/message.texi
@@ -1236,7 +1236,7 @@ Languages with this property include:
 @item Finno-Ugric family
 Hungarian
 @item Asian family
-Japanese
+Japanese, Korean
 @item Turkic/Altaic family
 Turkish
 @end table
@@ -1265,7 +1265,7 @@ Greek
 @item Semitic family
 Hebrew
 @item Romance family
-Italian, Spanish
+Italian, Portuguese, Spanish
 @item Artificial
 Esperanto
 @end table
@@ -1282,7 +1282,22 @@ Languages with this property include:
 
 @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
@@ -1297,7 +1312,24 @@ Languages with this property include:
 
 @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]
@@ -1313,7 +1345,7 @@ Languages with this property include:
 
 @table @asis
 @item Slavic family
-Czech, Russian
+Croatian, Czech, Russian, Ukrainian
 @end table
 
 @item Three forms, special cases for 1 and 2, 3, 4
@@ -1341,8 +1373,6 @@ Plural-Forms: nplurals=3; \
            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:
 
@@ -1351,12 +1381,12 @@ 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