Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorninadsp <ninadsp16289@gmail.com>2010-06-09 21:19:38 +0400
committerninadsp <ninadsp16289@gmail.com>2010-06-09 21:19:38 +0400
commit834b36bd6a1d8c12d683932b19805bfc1c3bb8ba (patch)
treecd2c7db130a19b4a760dc4d90b5e49e628ed50bc /server_databases.php
parent5f255406bde5d63b67806c323f8891c3295610d2 (diff)
parent3fc1f82e3ef9bf4408786335f224aad8ad4977ae (diff)
Merge remote branch 'origin/master'
Diffstat (limited to 'server_databases.php')
-rwxr-xr-xserver_databases.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server_databases.php b/server_databases.php
index bfb2946b29..9a05c707d1 100755
--- a/server_databases.php
+++ b/server_databases.php
@@ -196,7 +196,7 @@ if ($databases_count > 0) {
elseif($type == "slave")
$name = __('Slave replication');
if (${"server_{$type}_status"})
- echo ' <th>'.$GLOBALS[$name].'</th>' . "\n";
+ echo ' <th>'. $name .'</th>' . "\n";
}
if ($is_superuser) {
@@ -264,13 +264,13 @@ if ($databases_count > 0) {
echo '<td class="tool" style="text-align: center;">' . "\n";
if (strlen(array_search($current["SCHEMA_NAME"], ${"server_{$type}_Ignore_DB"}))>0) {
- echo '<img class="icon" src="' . $pmaThemeImage . 's_cancel.png" width="16" height="16" alt="NOT REPLICATED" />' . "\n";
+ echo '<img class="icon" src="' . $pmaThemeImage . 's_cancel.png" width="16" height="16" alt="' . __('Not replicated') . '" />' . "\n";
} else {
$key = array_search($current["SCHEMA_NAME"], ${"server_{$type}_Do_DB"});
if (strlen($key) > 0 || (${"server_{$type}_Do_DB"}[0] == "" && count(${"server_{$type}_Do_DB"}) == 1)) {
// if ($key != null) did not work for index "0"
- echo '<img class="icon" src="' . $pmaThemeImage . 's_success.png" width="16" height="16" alt="REPLICATED" />' . "\n";
+ echo '<img class="icon" src="' . $pmaThemeImage . 's_success.png" width="16" height="16" alt="' . __('Replicated') . '" />' . "\n";
} else {
echo '';
}