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 /db_export.php
parent86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (diff)
strings to gettext, first batch
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/db_export.php b/db_export.php
index fda601cf62..887e551f11 100644
--- a/db_export.php
+++ b/db_export.php
@@ -26,7 +26,7 @@ require_once './libraries/db_info.inc.php';
/**
* Displays the form
*/
-$export_page_title = $strViewDumpDB;
+$export_page_title = __('View dump (schema) of database');
// exit if no tables in db found
if ($num_tables < 1) {
@@ -40,9 +40,9 @@ $checkall_url = 'db_export.php?'
. '&amp;goto=db_export.php';
$multi_values = '<div align="center">';
-$multi_values .= '<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
+$multi_values .= '<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>
/
- <a href="' . $checkall_url . '&amp;unselectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a><br />';
+ <a href="' . $checkall_url . '&amp;unselectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . __('Unselect All') . '</a><br />';
$multi_values .= '<select name="table_select[]" size="10" multiple="multiple">';
$multi_values .= "\n";