diff options
author | Bruno Haible <bruno@clisp.org> | 2005-02-07 11:40:54 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:12:08 +0200 |
commit | d78c911e16a5d2a15febfa1112c88612a9bb0a0b (patch) | |
tree | 9064a0e59874592685b5efbed896ceb943965af0 /gettext-tools | |
parent | 38081828918d21753d4a73eead50efd59f64354f (diff) | |
download | external_gettext-d78c911e16a5d2a15febfa1112c88612a9bb0a0b.zip external_gettext-d78c911e16a5d2a15febfa1112c88612a9bb0a0b.tar.gz external_gettext-d78c911e16a5d2a15febfa1112c88612a9bb0a0b.tar.bz2 |
Add info about Vietnamese.
Diffstat (limited to 'gettext-tools')
-rw-r--r-- | gettext-tools/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/doc/gettext.texi | 2 | ||||
-rw-r--r-- | gettext-tools/src/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/src/plural-table.c | 3 |
4 files changed, 13 insertions, 2 deletions
diff --git a/gettext-tools/doc/ChangeLog b/gettext-tools/doc/ChangeLog index 0d96402..aef03ce 100644 --- a/gettext-tools/doc/ChangeLog +++ b/gettext-tools/doc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-04 Bruno Haible <bruno@clisp.org> + + * gettext.texi (Plural forms): Add info about Vietnamese. + Explanations by Clytie Siddall <clytie@riverland.net.au>. + 2005-01-20 Bruno Haible <bruno@clisp.org> * gettext.texi (Scheme): Correct information about setlocale. diff --git a/gettext-tools/doc/gettext.texi b/gettext-tools/doc/gettext.texi index 41183e6..00e1aa6 100644 --- a/gettext-tools/doc/gettext.texi +++ b/gettext-tools/doc/gettext.texi @@ -5032,7 +5032,7 @@ Languages with this property include: @item Finno-Ugric family Hungarian @item Asian family -Japanese, Korean +Japanese, Korean, Vietnamese @item Turkic/Altaic family Turkish @end table diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 8ba07bb..a1388ab 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2005-02-04 Bruno Haible <bruno@clisp.org> + + * plural-table.c (plural_table): Add an entry about Vietnamese. + Explanations by Clytie Siddall <clytie@riverland.net.au>. + 2005-01-29 Bruno Haible <bruno@clisp.org> * Makefile.am (msgcmp_LDADD, msgfmt_LDADD, msgmerge_LDADD, diff --git a/gettext-tools/src/plural-table.c b/gettext-tools/src/plural-table.c index 4c1e8bf..19063ca 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-2004 Free Software Foundation, Inc. + Copyright (C) 2001-2005 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 @@ -29,6 +29,7 @@ struct plural_table_entry plural_table[] = { "hu", "Hungarian", "nplurals=1; plural=0;" }, { "ja", "Japanese", "nplurals=1; plural=0;" }, { "ko", "Korean", "nplurals=1; plural=0;" }, + { "vi", "Vietnamese", "nplurals=1; plural=0;" }, { "tr", "Turkish", "nplurals=1; plural=0;" }, { "da", "Danish", "nplurals=2; plural=(n != 1);" }, { "nl", "Dutch", "nplurals=2; plural=(n != 1);" }, |