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-04-18 16:52:44 +0400
committerMarc Delisle <marc@infomarc.info>2010-04-18 16:52:44 +0400
commite537f8831377dcef9ae944dd782308ca817491a5 (patch)
treea5423e48f5b991c8fc9fa5e2e98d92c8dabe2d33 /tbl_relation.php
parent5a75ca180ae0eb5c47a80428c7707cca6d5d1269 (diff)
rfe 2988629 Improve labels in relation view
Diffstat (limited to 'tbl_relation.php')
-rw-r--r--tbl_relation.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tbl_relation.php b/tbl_relation.php
index e1b32531db..19a85af81a 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -396,13 +396,13 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
$saved_row_cnt = count($save_row);
?>
<fieldset>
- <legend><?php echo $strLinksTo; ?></legend>
+ <legend><?php echo __('Relations'); ?></legend>
<table>
- <tr><th></th>
+ <tr><th><?php echo $strField; ?></th>
<?php
if ($cfgRelation['relwork']) {
- echo '<th>' . $strInternalRelations;
+ echo '<th>' . __('Internal relation');
if (PMA_foreignkey_supported($tbl_type)) {
echo PMA_showHint($strInternalAndForeign);
}
@@ -410,7 +410,7 @@ if ($col_rs && PMA_DBI_num_rows($col_rs) > 0) {
}
if (PMA_foreignkey_supported($tbl_type)) {
// this does not have to be translated, it's part of the MySQL syntax
- echo '<th colspan="2">FOREIGN KEY (' . $tbl_type . ')';
+ echo '<th colspan="2">REFERENCES (' . $tbl_type . ')';
echo '</th>';
}
?>