summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-09-28 22:16:32 +0000
committerDries Buytaert <dries@buytaert.net>2009-09-28 22:16:32 +0000
commit009724f220a46e06ffbdc28d105c4fdb16c028c4 (patch)
tree30838546133d5ba5dd19853c3fd41a37f2f064cf
parent101d520929bb0e718d5a784d25bb1c5629e59269 (diff)
downloadbrdo-009724f220a46e06ffbdc28d105c4fdb16c028c4.tar.gz
brdo-009724f220a46e06ffbdc28d105c4fdb16c028c4.tar.bz2
- Patch #584278 by cam8001, Dave Reid | moshe weitzman: Fixed pending updates always being plural.
-rw-r--r--update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index 20a9caf45..f61d6388d 100644
--- a/update.php
+++ b/update.php
@@ -86,7 +86,7 @@ function update_script_selection_form() {
'#markup' => '<p>The version of Drupal you are updating from has been automatically detected.</p>',
'#weight' => -5,
);
- $form['start']['#title'] = strtr('!num pending updates', array('!num' => $count));
+ $form['start']['#title'] = format_plural($count, '1 pending update', '@count pending updates');
$form['has_js'] = array(
'#type' => 'hidden',
'#default_value' => FALSE,