strings to gettext, first batch

This commit is contained in:
Marc Delisle
2010-05-03 12:57:46 -04:00
parent 86b11a41ab
commit f55823f47f
126 changed files with 84759 additions and 63298 deletions

View File

@@ -32,7 +32,7 @@ require './libraries/server_links.inc.php';
*/
echo '<h2>' . "\n"
. ($cfg['MainPageIconic'] ? '<img class="icon" src="' . $pmaThemeImage . 's_vars.png" width="16" height="16" alt="" />' : '')
. '' . $strServerVars . "\n"
. '' . __('Server variables and settings') . "\n"
. '</h2>' . "\n";
@@ -49,10 +49,10 @@ $serverVarsGlobal = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES;', 0, 1);
?>
<table class="data">
<thead>
<tr><th><?php echo $strVar; ?></th>
<tr><th><?php echo __('Variable'); ?></th>
<th>
<?php
echo $strSessionValue . ' / ' . $strGlobalValue;
echo __('Session value') . ' / ' . __('Global value');
?>
</th>
</tr>
@@ -86,7 +86,7 @@ foreach ($serverVars as $name => $value) {
<tr class="<?php
echo $odd_row ? 'odd' : 'even';
?> marked">
<td>(<?php echo $strGlobalValue; ?>)</td>
<td>(<?php echo __('Global value'); ?>)</td>
<td class="value"><?php
if ($is_numeric) {
echo PMA_formatNumber($serverVarsGlobal[$name], 0);