Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
df57e940
Commit
df57e940
authored
Nov 26, 2010
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#962458
by BarisW, Crell: Fixed database driver names aren't translated.
parent
385bf02c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
includes/database/mysql/install.inc
includes/database/mysql/install.inc
+1
-1
includes/database/pgsql/install.inc
includes/database/pgsql/install.inc
+1
-1
includes/database/sqlite/install.inc
includes/database/sqlite/install.inc
+1
-1
No files found.
includes/database/mysql/install.inc
View file @
df57e940
...
...
@@ -21,7 +21,7 @@ class DatabaseTasks_mysql extends DatabaseTasks {
* Returns a human-readable name string for MySQL and equivalent databases.
*/
public
function
name
()
{
return
'MySQL, MariaDB, or equivalent'
;
return
st
(
'MySQL, MariaDB, or equivalent'
)
;
}
/**
...
...
includes/database/pgsql/install.inc
View file @
df57e940
...
...
@@ -28,7 +28,7 @@ public function __construct() {
}
public
function
name
()
{
return
'PostgreSQL'
;
return
st
(
'PostgreSQL'
)
;
}
public
function
minimumVersion
()
{
...
...
includes/database/sqlite/install.inc
View file @
df57e940
...
...
@@ -10,7 +10,7 @@ class DatabaseTasks_sqlite extends DatabaseTasks {
protected
$pdoDriver
=
'sqlite'
;
public
function
name
()
{
return
'SQLite'
;
return
st
(
'SQLite'
)
;
}
/**
...
...
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