Add concordance lists (moved from MDImporter)

This commit is contained in:
2022-04-02 00:55:38 +02:00
parent ebf5466890
commit 99f8534d17
10 changed files with 1712 additions and 2 deletions

28
src/MDConcCurrencies.php Normal file
View File

@@ -0,0 +1,28 @@
<?PHP
/**
* Constains lists for grouping currencies.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Provides lists for categorizing spelled out currencies.
*/
final class MDConcCurrencies {
const CURRENCIES_LIST = [
"^" => "",
"-" => "",
"Forint" => "hu-Ft",
"DM" => "de-DM",
"DEM" => "de-DM",
"Mark" => "de-DM",
"EUR" => "eu-EUR",
"Euro" => "eu-EUR",
"EURO" => "eu-EUR",
"" => "eu-EUR",
"Mark (DDR)" => "ddr-Mark",
];
}