summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-17 21:49:24 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-17 21:49:24 +0000
commit6dd4ea0164a8ed5dcc5807cb3b15c48043c78d0a (patch)
treebb3595e7629b4df3f00d80b58528107f5752ccdb /modules/system/system.module
parentc1f9032c9170940dbf01f161b52d0067ad0cf7c1 (diff)
downloadbrdo-6dd4ea0164a8ed5dcc5807cb3b15c48043c78d0a.tar.gz
brdo-6dd4ea0164a8ed5dcc5807cb3b15c48043c78d0a.tar.bz2
- Patch #103784 by Gabor: fixed translation problems.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 238deb75d..0963745d4 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -1399,9 +1399,8 @@ function system_modules_confirm_form($modules, $form_values = array()) {
$t_argument = array(
'%module' => $modules[$name]->info['name'],
'%dependencies' => implode(', ', $missing_dependencies),
- '!modules' => format_plural(count($missing_dependencies), ' module', ' modules'),
);
- $items[] = t('You must enable the %dependencies !modules to install %module.', $t_argument);
+ $items[] = strtr(format_plural(count($missing_dependencies), 'You must enable the %dependencies module to install %module.', 'You must enable the %dependencies modules to install %module.'), $t_argument);
}
$form['text'] = array('#value' => theme('item_list', $items));
}