Add concordance list for title types
This commit is contained in:
parent
85fa7954b3
commit
03dd9f1376
35
src/MDConcTitleTypes.php
Normal file
35
src/MDConcTitleTypes.php
Normal 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",
|
||||
|
||||
];
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user