summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-07-19 19:35:49 +0000
committerDries Buytaert <dries@buytaert.net>2008-07-19 19:35:49 +0000
commita5f9b7b0123a2be0d50e6294db35029a9e9b5ccc (patch)
tree0a8a53e31bfba34025d856191ea95e94f97a33d4 /modules
parent892d001d7ad66dc51ce72f29fb20205f5b9d4327 (diff)
downloadbrdo-a5f9b7b0123a2be0d50e6294db35029a9e9b5ccc.tar.gz
brdo-a5f9b7b0123a2be0d50e6294db35029a9e9b5ccc.tar.bz2
- Patch #284721 by zeta ζ: translation simplifications.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.admin.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 38c11a98f..73dcb8567 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1829,10 +1829,10 @@ function system_sql() {
$output = '<h2>' . t('Command counters') . '</h2>';
$output .= _system_sql($data, array(
- 'Com_select' => t('The number of <code>SELECT</code>-statements.'),
- 'Com_insert' => t('The number of <code>INSERT</code>-statements.'),
- 'Com_update' => t('The number of <code>UPDATE</code>-statements.'),
- 'Com_delete' => t('The number of <code>DELETE</code>-statements.'),
+ 'Com_select' => t('The number of !sql statements.', array('!sql' => '<code>SELECT</code>')),
+ 'Com_insert' => t('The number of !sql statements.', array('!sql' => '<code>INSERT</code>')),
+ 'Com_update' => t('The number of !sql statements.', array('!sql' => '<code>UPDATE</code>')),
+ 'Com_delete' => t('The number of !sql statements.', array('!sql' => '<code>DELETE</code>')),
'Com_lock_tables' => t('The number of table locks.'),
'Com_unlock_tables' => t('The number of table unlocks.')
));