Add field for tag GND IDs

Close 
This commit is contained in:
Joshua Ramon Enslin 2025-02-27 13:34:40 +01:00
parent ac6665ce00
commit 02b8fdb15e
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
7 changed files with 11 additions and 7 deletions

@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="assets/css/csvxml.min.css?67bc92fc82e77" /> <link rel="stylesheet" type="text/css" href="assets/css/csvxml.min.css?67c05ba79a767" />
<link rel="manifest" href="/manifest.json" /> <link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#aa4400" /> <meta name="theme-color" content="#aa4400" />
@ -27,7 +27,7 @@
</head> </head>
<body class="loading"> <body class="loading">
<script src="assets/js/csvxmlV2.min.js?67bc92fc82e7e" type="text/javascript" async></script> <script src="assets/js/csvxmlV2.min.js?67c05ba79a768" type="text/javascript" async></script>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -991,6 +991,10 @@ final class CsvxmlAvailableFields {
dependsOn: ["tag" . $i], dependsOn: ["tag" . $i],
name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (Wikidata)", name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (Wikidata)",
); );
$availableFields[$tlLoader->tl("overview", "overview", 'tags')]["tag_gnd" . $i] = new FieldEntry(
dependsOn: ["tag" . $i],
name_human_readable: $tlLoader->tl("overview", "overview", 'tags') . " (GND)",
);
} }