The branch, master has been updated via 5d78431052393c7f1e64f4b694c897898fd738f5 (commit) from 2185d39b3e42b91f93f4bdefde394867215297d4 (commit)
- Log ----------------------------------------------------------------- commit 5d78431052393c7f1e64f4b694c897898fd738f5 Author: Yuichiro rdeq08@users.sourceforge.net Date: Tue Nov 29 12:41:58 2011 +0100
Add gettext
-----------------------------------------------------------------------
Summary of changes: server_status.php | 4 ++-- server_variables.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/server_status.php b/server_status.php index 4fa4707..2a7f11a 100644 --- a/server_status.php +++ b/server_status.php @@ -827,7 +827,7 @@ echo __('Runtime Information'); <?php echo __('Refresh'); ?> </a> </div> - <legend>Filters</legend> + <legend><?php echo __('Filters'); ?></legend> <div class="formelement"> <label for="filterText"><?php echo __('Containing the word:'); ?></label> <input name="filterText" type="text" id="filterText" style="vertical-align: baseline;" /> @@ -1628,7 +1628,7 @@ function printMonitor() <?php } ?> </div>
- <div id="addChartDialog" title="Add chart" style="display:none;"> + <div id="addChartDialog" title="<?php echo __('Add chart'); ?>" style="display:none;"> <div id="tabGridVariables"> <p><input type="text" name="chartTitle" value="<?php echo __('Chart Title'); ?>" /></p>
diff --git a/server_variables.php b/server_variables.php index 35a3568..1e7d707 100644 --- a/server_variables.php +++ b/server_variables.php @@ -112,9 +112,9 @@ $serverVars = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES;', 0, 1); */ ?> <fieldset id="tableFilter" style="display:none;"> -<legend>Filters</legend> +<legend><?php echo __('Filters'); ?></legend> <div class="formelement"> - <label for="filterText">Containing the word:</label> + <label for="filterText"><?php echo __('Containing the word:'); ?></label> <input name="filterText" type="text" id="filterText" style="vertical-align: baseline;" /> </div> </fieldset>
hooks/post-receive