Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
a5f9b7b0
Commit
a5f9b7b0
authored
Jul 19, 2008
by
Dries
Browse files
- Patch
#284721
by zeta ζ: translation simplifications.
parent
892d001d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/system/system.admin.inc
View file @
a5f9b7b0
...
...
@@ -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.'
)
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment