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_engines.php
parent86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (diff)
strings to gettext, first batch
Diffstat (limited to 'server_engines.php')
-rw-r--r--server_engines.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/server_engines.php b/server_engines.php
index 62cf545d41..6fa73ec6ea 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -46,7 +46,7 @@ if (empty($_REQUEST['engine'])
. ($GLOBALS['cfg']['MainPageIconic']
? '<img class="icon" src="' . $pmaThemeImage . 'b_engine.png"'
.' width="16" height="16" alt="" />' : '')
- . "\n" . $strStorageEngines . "\n"
+ . "\n" . __('Storage Engines') . "\n"
. '</h2>' . "\n";
@@ -55,8 +55,8 @@ if (empty($_REQUEST['engine'])
*/
echo '<table>' . "\n"
. '<thead>' . "\n"
- . '<tr><th>' . $strStorageEngine . '</th>' . "\n"
- . ' <th>' . $strDescription . '</th>' . "\n"
+ . '<tr><th>' . __('Storage Engine') . '</th>' . "\n"
+ . ' <th>' . __('Description') . '</th>' . "\n"
. '</tr>' . "\n"
. '</thead>' . "\n"
. '<tbody>' . "\n";
@@ -109,11 +109,11 @@ if (empty($_REQUEST['engine'])
echo '<p>' . "\n"
. ' <strong>[</strong>' . "\n";
if (empty($_REQUEST['page'])) {
- echo ' <strong>' . $strServerTabVariables . '</strong>' . "\n";
+ echo ' <strong>' . __('Variables') . '</strong>' . "\n";
} else {
echo ' <a href="./server_engines.php'
. PMA_generate_common_url(array('engine' => $_REQUEST['engine'])) . '">'
- . $strServerTabVariables . '</a>' . "\n";
+ . __('Variables') . '</a>' . "\n";
}
foreach ($infoPages as $current => $label) {
echo ' <strong>|</strong>' . "\n";