]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update entry for Turkish.
authorBruno Haible <bruno@clisp.org>
Tue, 27 Jan 2009 12:25:31 +0000 (12:25 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:16:00 +0000 (12:16 +0200)
gettext-tools/src/ChangeLog
gettext-tools/src/plural-table.c

index 3f31dfcc1f7d5aa9056e5eaedb9a1a1d504cee04..d738760fcc085050545ec09a69afcb90b3d43a05 100644 (file)
@@ -1,3 +1,8 @@
+2009-01-27  Bruno Haible  <bruno@clisp.org>
+
+       * plural-table.c (plural_table): Put Turkish under nplurals=2.
+       Reported by Sertaç Ö. Yıldız <sertacyildiz@gmail.com>.
+       
 2009-01-26  Bruno Haible  <bruno@clisp.org>
 
        * msgattrib.c (main): Update year in --version output.
index e49d858670ce5a02dcf5c5928f26d942067d9146..214ef69ef77e2d38fea0df4efab326f3bade37e1 100644 (file)
@@ -1,5 +1,5 @@
 /* Table of known plural form expressions.
-   Copyright (C) 2001-2006 Free Software Foundation, Inc.
+   Copyright (C) 2001-2006, 2009 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
@@ -28,7 +28,6 @@ struct plural_table_entry plural_table[] =
     { "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);" },
     { "en", "English",           "nplurals=2; plural=(n != 1);" },
@@ -47,6 +46,7 @@ struct plural_table_entry plural_table[] =
     { "es", "Spanish",           "nplurals=2; plural=(n != 1);" },
     { "eo", "Esperanto",         "nplurals=2; plural=(n != 1);" },
     { "hu", "Hungarian",         "nplurals=2; plural=(n != 1);" },
+    { "tr", "Turkish",           "nplurals=2; plural=(n != 1);" },
     { "fr", "French",            "nplurals=2; plural=(n > 1);" },
     { "pt_BR", "Brazilian",      "nplurals=2; plural=(n > 1);" },
     { "lv", "Latvian",           "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" },