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.') ));