From a5f9b7b0123a2be0d50e6294db35029a9e9b5ccc Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 19 Jul 2008 19:35:49 +0000 Subject: [PATCH] =?UTF-8?q?-=20Patch=20#284721=20by=20zeta=20=CE=B6:=20tra?= =?UTF-8?q?nslation=20simplifications.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/system/system.admin.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 38c11a98f9a..73dcb85671a 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1829,10 +1829,10 @@ function system_sql() { $output = '

' . t('Command counters') . '

'; $output .= _system_sql($data, array( - 'Com_select' => t('The number of SELECT-statements.'), - 'Com_insert' => t('The number of INSERT-statements.'), - 'Com_update' => t('The number of UPDATE-statements.'), - 'Com_delete' => t('The number of DELETE-statements.'), + 'Com_select' => t('The number of !sql statements.', array('!sql' => 'SELECT')), + 'Com_insert' => t('The number of !sql statements.', array('!sql' => 'INSERT')), + 'Com_update' => t('The number of !sql statements.', array('!sql' => 'UPDATE')), + 'Com_delete' => t('The number of !sql statements.', array('!sql' => 'DELETE')), 'Com_lock_tables' => t('The number of table locks.'), 'Com_unlock_tables' => t('The number of table unlocks.') ));