summaryrefslogtreecommitdiff
path: root/src/strgen
diff options
context:
space:
mode:
authormaedhros <maedhros@openttd.org>2008-03-25 17:39:02 +0000
committermaedhros <maedhros@openttd.org>2008-03-25 17:39:02 +0000
commit2023f5954122a7dbb66963cfaa54678719aae011 (patch)
tree28c066eb77e080efcc4b12c7cf16bbacb7f04ef0 /src/strgen
parent6184676ec76e0512f51e98ec06d6f3b152411025 (diff)
downloadopenttd-2023f5954122a7dbb66963cfaa54678719aae011.tar.xz
(svn r12417) -Fix: Add a new plural rule for Icelandic.
Diffstat (limited to 'src/strgen')
-rw-r--r--src/strgen/strgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp
index 1147e7aec..d05f0e796 100644
--- a/src/strgen/strgen.cpp
+++ b/src/strgen/strgen.cpp
@@ -103,7 +103,7 @@ static char _cases[MAX_NUM_CASES][16];
static int _numcases;
// for each plural value, this is the number of plural forms.
-static const byte _plural_form_counts[] = { 2, 1, 2, 3, 3, 3, 3, 3, 4 };
+static const byte _plural_form_counts[] = { 2, 1, 2, 3, 3, 3, 3, 3, 4, 2 };
static const char *_cur_ident;