[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4776-g58ee5d4

The branch, master has been updated via 58ee5d4bd205a7ee52b5bbba6eeacd449e2be157 (commit) from 017c8c42215223c51c3e1426f27e4c3e9f168668 (commit) - Log ----------------------------------------------------------------- commit 58ee5d4bd205a7ee52b5bbba6eeacd449e2be157 Author: Michal Čihař <mcihar@novell.com> Date: Tue Jun 8 10:40:43 2010 +0200 Make it possible to translate this. ----------------------------------------------------------------------- Summary of changes: server_databases.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server_databases.php b/server_databases.php index de962b8..9a05c70 100644 --- a/server_databases.php +++ b/server_databases.php @@ -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 ''; } hooks/post-receive -- phpMyAdmin
participants (1)
-
Michal Čihař