Code: Select all
'AGO' => array(
0 => 'less than a minute ago',
1 => '%d minute ago',
2 => '%d minutes ago',
60 => '1 hour ago',
),
The problem is that the "60" case will not be reached anymore, because the plural rule will calculate the case we shall use for a value 60.
Things like this may also be done by MODs.
E.g. a user could have edited this case:
Code: Select all
'NUM_POSTS_IN_QUEUE' => array(
0 => 'No posts in queue', // 0
1 => '1 post in queue', // 1
2 => '%d posts in queue', // 2+
),
Code: Select all
'NUM_POSTS_IN_QUEUE' => array(
0 => 'No posts in queue', // 0
1 => '1 post in queue', // 1
2 => '%d posts in queue', // 2-25
25 => 'Moderators go do your job or you get fired!', // 25+
),
or whether we try to find a way to implement lang() so it supports both ways.