From: Bruno Haible Date: Tue, 22 Apr 2003 14:18:59 +0000 (+0000) Subject: Add info about Faroese. X-Git-Tag: v0.12~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=783a39415c1033e184dca8e671c2f7c13f03bfb4;p=thirdparty%2Fgettext.git Add info about Faroese. --- diff --git a/gettext-tools/doc/ChangeLog b/gettext-tools/doc/ChangeLog index b0c1093a8..96fd1fba2 100644 --- a/gettext-tools/doc/ChangeLog +++ b/gettext-tools/doc/ChangeLog @@ -1,3 +1,8 @@ +2003-04-22 Bruno Haible + + * gettext.texi (Plural forms): Add info about Faroese. + Reported by Jacob Sparre Andersen . + 2003-04-12 Bruno Haible * Makefile.vms: Don't use the force target. Avoid rules with no lines. diff --git a/gettext-tools/doc/gettext.texi b/gettext-tools/doc/gettext.texi index 0bd82c335..b35d07669 100644 --- a/gettext-tools/doc/gettext.texi +++ b/gettext-tools/doc/gettext.texi @@ -4761,7 +4761,7 @@ Languages with this property include: @table @asis @item Germanic family -Danish, Dutch, English, German, Norwegian, Swedish +Danish, Dutch, English, Faroese, German, Norwegian, Swedish @item Finno-Ugric family Estonian, Finnish @item Latin/Greek family diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 1f9f14993..b6086f0c9 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2003-04-22 Bruno Haible + + * plural-table.c (plural_table): Add an entry about Faroese. + Reported by Jacob Sparre Andersen . + 2003-04-13 Bruno Haible * po.h (po_scan_start, po_scan_end): New declarations. diff --git a/gettext-tools/src/plural-table.c b/gettext-tools/src/plural-table.c index 5bed4e3e4..0bf3b1016 100644 --- a/gettext-tools/src/plural-table.c +++ b/gettext-tools/src/plural-table.c @@ -1,5 +1,5 @@ /* Table of known plural form expressions. - Copyright (C) 2001-2002 Free Software Foundation, Inc. + Copyright (C) 2001-2003 Free Software Foundation, Inc. Written by Bruno Haible , 2002. This program is free software; you can redistribute it and/or modify @@ -33,6 +33,7 @@ struct plural_table_entry plural_table[] = { "da", "Danish", "nplurals=2; plural=(n != 1);" }, { "nl", "Dutch", "nplurals=2; plural=(n != 1);" }, { "en", "English", "nplurals=2; plural=(n != 1);" }, + { "fo", "Faroese", "nplurals=2; plural=(n != 1);" }, { "de", "German", "nplurals=2; plural=(n != 1);" }, { "nb", "Norwegian Bokmal", "nplurals=2; plural=(n != 1);" }, { "no", "Norwegian", "nplurals=2; plural=(n != 1);" },