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:
authorMarc Delisle <marc@infomarc.info>2010-05-03 20:57:46 +0400
committerMarc Delisle <marc@infomarc.info>2010-05-03 20:57:46 +0400
commitf55823f47fd099cbbc3717fdbf0cfec8135927ed (patch)
treeba1f8c432878264debe7559f7efe667bf0b3e46f /server_collations.php
parent86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (diff)
strings to gettext, first batch
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/server_collations.php b/server_collations.php
index aa228130b3..0abeaab405 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -37,7 +37,7 @@ echo '<h2>' . "\n"
. ' ' . ($GLOBALS['cfg']['MainPageIconic']
? '<img class="icon" src="'. $GLOBALS['pmaThemeImage'] . 's_asci.png" alt="" />'
: '')
- . '' . $strCharsetsAndCollations . "\n"
+ . '' . __('Character Sets and Collations') . "\n"
. '</h2>' . "\n";
/**
@@ -51,8 +51,8 @@ require_once './libraries/mysql_charsets.lib.php';
*/
echo '<div id="div_mysql_charset_collations">' . "\n"
. '<table class="data">' . "\n"
- . '<tr><th>' . $strCollation . '</th>' . "\n"
- . ' <th>' . $strDescription . '</th>' . "\n"
+ . '<tr><th>' . __('Collation') . '</th>' . "\n"
+ . ' <th>' . __('Description') . '</th>' . "\n"
. '</tr>' . "\n";
$i = 0;
@@ -63,8 +63,8 @@ foreach ($mysql_charsets as $current_charset) {
$i = 0;
echo '</table>' . "\n"
. '<table class="data">' . "\n"
- . '<tr><th>' . $strCollation . '</th>' . "\n"
- . ' <th>' . $strDescription . '</th>' . "\n"
+ . '<tr><th>' . __('Collation') . '</th>' . "\n"
+ . ' <th>' . __('Description') . '</th>' . "\n"
. '</tr>' . "\n";
}
$i++;