diff --git a/adminer/lang/cs.inc.php b/adminer/lang/cs.inc.php index 0d98870e..5551ab93 100644 --- a/adminer/lang/cs.inc.php +++ b/adminer/lang/cs.inc.php @@ -195,6 +195,7 @@ Lang::$translations = array( 'Partition name' => 'Název oddílu', 'Values' => 'Hodnoty', 'Inherits from' => 'Zděděná z', + 'Inherited by' => 'Zděděné', 'View' => 'Pohled', 'Materialized view' => 'Materializovaný pohled', diff --git a/adminer/lang/xx.inc.php b/adminer/lang/xx.inc.php index d5b9ce76..e3e95722 100644 --- a/adminer/lang/xx.inc.php +++ b/adminer/lang/xx.inc.php @@ -197,6 +197,7 @@ Lang::$translations = array( 'Partition name' => 'Xx', 'Values' => 'Xx', 'Inherits from' => 'Xx', + 'Inherited by' => 'Xx', 'View' => 'Xx', 'Materialized view' => 'Xx', diff --git a/adminer/table.inc.php b/adminer/table.inc.php index 56fe7c34..a50eb4a0 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -112,7 +112,7 @@ if (support(is_view($table_status) ? "view_trigger" : "trigger")) { $inherited = driver()->inheritedTables($TABLE); if ($inherited) { - echo "

" . lang('Partitions') . "

\n"; + echo "

" . lang('Inherited by') . "

\n"; $partition = driver()->partitionsInfo($TABLE); if ($partition) { echo "

BY " . h("$partition[partition_by]($partition[partition])") . "\n";