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-19 15:48:40 +0400
committerMarc Delisle <marc@infomarc.info>2010-04-19 15:48:40 +0400
commit9ec1ce03dd4a8172cb133176333da4d44411c055 (patch)
treec1ee7124377b024836f150d09f747bf6d38d85b8 /tbl_relation.php
parentef0019cd909457d957920b7c31ec0b1097444652 (diff)
New message "Foreign key constraint"
Diffstat (limited to 'tbl_relation.php')
-rw-r--r--tbl_relation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_relation.php b/tbl_relation.php
index 19a85af81a..bacce4c310 100644
--- a/tbl_relation.php
+++ b/tbl_relation.php
@@ -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">REFERENCES (' . $tbl_type . ')';
+ echo '<th colspan="2">' . __('Foreign key constraint') . ' (' . $tbl_type . ')';
echo '</th>';
}
?>