diff --git a/browse_foreigners.php b/browse_foreigners.php
index 69b210efd..16cf7a2f0 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -35,7 +35,7 @@ if (!isset($pos)) {
}
$foreign_limit = 'LIMIT ' . $pos . ', ' . $per_page . ' ';
-if (isset($foreign_navig) && $foreign_navig == $strShowAll) {
+if (isset($foreign_navig) && $foreign_navig == __('Show all')) {
unset($foreign_limit);
}
@@ -56,7 +56,7 @@ $showall = '';
if (is_array($foreignData['disp_row'])) {
if ($cfg['ShowAll'] && ($foreignData['the_total'] > $per_page)) {
- $showall = '';
+ $showall = '';
}
$session_max_rows = $per_page;
@@ -129,7 +129,7 @@ if (is_array($foreignData['disp_row'])) {
}
}
- alert('');
+ alert('');
}
//]]>
@@ -147,10 +147,10 @@ if (is_array($foreignData['disp_row'])) {
-
+
-
+
@@ -165,11 +165,11 @@ if (is_array($foreignData['disp_row'])) {
-
' . $strKeyname . ' |
- ' . $strDescription . ' |
+ ' . __('Keyname') . ' |
+ ' . __('Description') . ' |
|
- ' . $strDescription . ' |
- ' . $strKeyname . ' |
+ ' . __('Description') . ' |
+ ' . __('Keyname') . ' |
';
echo '' . $header . '' . "\n"
@@ -244,7 +244,7 @@ if (is_array($foreignData['disp_row'])) {
' : '')
- .''
@@ -253,7 +253,7 @@ if (is_array($foreignData['disp_row'])) {
|
' : '')
- . ''
. $key_ordered_current_val . '' . ($key_ordered_current_equals_data ? '' : '');
@@ -265,7 +265,7 @@ if (is_array($foreignData['disp_row'])) {
|
' : '')
- . ''
. $val_ordered_current_val . '' . ($val_ordered_current_equals_data ? '' : '');
@@ -273,7 +273,7 @@ if (is_array($foreignData['disp_row'])) {
|
' : '') . '' . htmlspecialchars($val_ordered_current_key)
. '' . ($val_ordered_current_equals_data ? '' : '');
diff --git a/db_datadict.php b/db_datadict.php
index d10477047..a38b35b16 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -46,7 +46,7 @@ if ($cfgRelation['commwork']) {
*/
if ($comment) {
?>
-
+
= 3.23
*/
if (!empty($show_comment)) {
- echo $strTableComments . ': ' . htmlspecialchars($show_comment) . '
';
+ echo __('Table comments') . ': ' . htmlspecialchars($show_comment) . '
';
}
/**
@@ -171,17 +171,17 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
?>
- |
- |
-*/ ?>
- |
- |
-*/ ?>
+
---|
|
+ |
+*/ ?>
+ |
+ |
+*/ ?>
' . $strLinksTo . '' . "\n";
+ echo ' ' . __('Links to') . ' | ' . "\n";
}
- echo ' ' . $strComments . ' | ' . "\n";
+ echo ' ' . __('Comments') . ' | ' . "\n";
if ($cfgRelation['mimework']) {
echo ' MIME | ' . "\n";
}
@@ -217,15 +217,15 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
$type = ' ';
}
}
- $strAttribute = ' ';
+ $attribute = ' ';
if ($binary) {
- $strAttribute = 'BINARY';
+ $attribute = 'BINARY';
}
if ($unsigned) {
- $strAttribute = 'UNSIGNED';
+ $attribute = 'UNSIGNED';
}
if ($zerofill) {
- $strAttribute = 'UNSIGNED ZEROFILL';
+ $attribute = 'UNSIGNED ZEROFILL';
}
if (!isset($row['Default'])) {
if ($row['Null'] != 'NO') {
@@ -263,8 +263,8 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
?>
xml:lang="en" dir="ltr"> |
->*/ ?>
- |
+>*/ ?>
+ |
|
>*/ ?>
';
+echo '
';
require_once './libraries/footer.inc.php';
?>
diff --git a/db_export.php b/db_export.php
index fda601cf6..887e551f1 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?'
. '&goto=db_export.php';
$multi_values = '';
-$multi_values .= ' ' . $strSelectAll . '
+$multi_values .= ' ' . __('Select All') . '
/
- ' . $strUnselectAll . '';
+ ' . __('Unselect All') . '';
$multi_values .= '
---|
|