--- /home/axel/src/drupal-4.5.0/includes/common.inc	2004-10-13 21:21:06.000000000 +0400
+++ includes/common.inc	2004-10-25 17:54:18.000000000 +0400
@@ -869,7 +869,7 @@
  *   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 @@
   else {
     switch ($index) {
       case "0":
-        return t($singular);
+        return t($singular, array("%count" => $count));
       case "1":
         return t($plural, array("%count" => $count));
       default:
