diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-28 22:16:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-28 22:16:32 +0000 |
commit | 009724f220a46e06ffbdc28d105c4fdb16c028c4 (patch) | |
tree | 30838546133d5ba5dd19853c3fd41a37f2f064cf /update.php | |
parent | 101d520929bb0e718d5a784d25bb1c5629e59269 (diff) | |
download | drupal-009724f220a46e06ffbdc28d105c4fdb16c028c4.tar.gz drupal-009724f220a46e06ffbdc28d105c4fdb16c028c4.zip |
- Patch #584278 by cam8001, Dave Reid | moshe weitzman: Fixed pending updates always being plural.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index 20a9caf45c3..f61d6388d2d 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, |