:- Patch #12096 by Axel: fixed problem with plurals for some languages.

4.6.x
Dries Buytaert 2004-10-27 18:23:06 +00:00
parent a4cc9aa817
commit 6238bf449d
1 changed files with 2 additions and 2 deletions

View File

@ -869,7 +869,7 @@ function format_rss_item($title, $link, $description, $args = array()) {
* A translated string.
*/
function format_plural($count, $singular, $plural) {
if ($count == 1) return t($singular);
if ($count == 1) return t($singular, array("%count" => $count));
// get the plural index through the gettext formula
$index = (function_exists('locale')) ? locale_get_plural($count) : -1;
@ -879,7 +879,7 @@ function format_plural($count, $singular, $plural) {
else {
switch ($index) {
case "0":
return t($singular);
return t($singular, array("%count" => $count));
case "1":
return t($plural, array("%count" => $count));
default: