diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-19 19:35:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-19 19:35:49 +0000 |
commit | a5f9b7b0123a2be0d50e6294db35029a9e9b5ccc (patch) | |
tree | 0a8a53e31bfba34025d856191ea95e94f97a33d4 /modules/system | |
parent | 892d001d7ad66dc51ce72f29fb20205f5b9d4327 (diff) | |
download | brdo-a5f9b7b0123a2be0d50e6294db35029a9e9b5ccc.tar.gz brdo-a5f9b7b0123a2be0d50e6294db35029a9e9b5ccc.tar.bz2 |
- Patch #284721 by zeta ζ: translation simplifications.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 8 |
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.') )); |