]> git.joonet.de Git - adminer.git/commitdiff
Fix heading of inherited tables
authorJakub Vrana <jakub@vrana.cz>
Tue, 3 Jun 2025 12:40:08 +0000 (14:40 +0200)
committerJakub Vrana <jakub@vrana.cz>
Tue, 3 Jun 2025 12:40:08 +0000 (14:40 +0200)
adminer/lang/cs.inc.php
adminer/lang/xx.inc.php
adminer/table.inc.php

index 0d98870e6a750f606e5105e7cb8bc36791f83016..5551ab9327006ee8c0e25f914904dcd415927767 100644 (file)
@@ -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',
index d5b9ce7601a57cfd04a37df3239e9841d4ed0c5a..e3e9572207f9119fe381f8f1c631053171205a27 100644 (file)
@@ -197,6 +197,7 @@ Lang::$translations = array(
        'Partition name' => 'Xx',
        'Values' => 'Xx',
        'Inherits from' => 'Xx',
+       'Inherited by' => 'Xx',
 
        'View' => 'Xx',
        'Materialized view' => 'Xx',
index 56fe7c34cbb4c651f53fb5e0a5ebbadf8a43d810..a50eb4a0f8e9852ff15e80ad02571f9add782f3d 100644 (file)
@@ -112,7 +112,7 @@ if (support(is_view($table_status) ? "view_trigger" : "trigger")) {
 
 $inherited = driver()->inheritedTables($TABLE);
 if ($inherited) {
-       echo "<h3 id='partitions'>" . lang('Partitions') . "</h3>\n";
+       echo "<h3 id='partitions'>" . lang('Inherited by') . "</h3>\n";
        $partition = driver()->partitionsInfo($TABLE);
        if ($partition) {
                echo "<p><code class='jush-" . JUSH . "'>BY " . h("$partition[partition_by]($partition[partition])") . "</code>\n";