From fea76bbb78b335c58f99e03d8906372cb1d895be Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 12 Jan 2013 17:21:30 +0000 Subject: (svn r24910) -Fix: [strgen] Description of plural form 3 was incorrect. --- src/strings.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/strings.cpp') diff --git a/src/strings.cpp b/src/strings.cpp index 45e1d5597..0fd9b5b41 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -539,6 +539,7 @@ static int DeterminePluralForm(int64 count, int plural_form) return n > 1 ? 1 : 0; /* Three forms: special cases for 0, and numbers ending in 1 except when ending in 11. + * Note: Cases are out of order for hysterical reasons. '0' is last. * Used in: * Latvian */ case 3: -- cgit v1.2.3-54-g00ecf