File diff r20975:deac4fa0133a → r20976:d85274d0c70e
src/table/strgen_tables.h
Show inline comments
 
@@ -151,12 +151,15 @@ static const CmdStruct _cmd_structs[] = 
 
struct PluralForm {
 
	int plural_count;        ///< The number of plural forms
 
	const char *description; ///< Human readable description of the form
 
	const char *names;       ///< Plural names
 
};
 

	
 
/** The maximum number of plurals. */
 
static const int MAX_PLURALS = 5;
 

	
 
/** All plural forms used */
 
static const PluralForm _plural_forms[] = {
 
	{ 2, "Two forms: special case for 1.", "\"1\" \"other\"" },
 
	{ 1, "Only one form.", "\"other\"" },
 
	{ 2, "Two forms: special case for 0 to 1.", "\"0..1\" \"other\"" },
 
	{ 3, "Three forms: special cases for 0, and numbers ending in 1 except when ending in 11.", "\"1,21,31,...\" \"other\" \"0\"" },