Add concordance list for title types

This commit is contained in:
Joshua Ramon Enslin 2022-10-26 01:15:36 +02:00
parent 85fa7954b3
commit 03dd9f1376
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

35
src/MDConcTitleTypes.php Normal file
View File

@ -0,0 +1,35 @@
<?PHP
/**
* Constains lists for resolving title type names to their internally used names.
* ones.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Constains lists for resolving title type names to their internally used names.
*/
final class MDConcTitleTypes {
const TITLE_TYPES = [
// Empty
"" => "",
// Scientific names
"Science" => "Science",
// Everyday speech
"Everyday speech" => "Everyday speech",
"Alltagssprache" => "Everyday speech",
// Colloquialisms
"Colloquial speech" => "Colloquial speech",
// Names in dialect
"Dialect" => "Dialect",
];
}