diff --git a/src/MDConcDamageTypes.php b/src/MDConcDamageTypes.php index 0ae1a04..f9e19a7 100644 --- a/src/MDConcDamageTypes.php +++ b/src/MDConcDamageTypes.php @@ -13,6 +13,7 @@ final class MDConcDamageTypes implements MDImporterConcordanceListInterface { private const DAMAGE_TYPES = [ "breakage" => MDObjectDamageType::breakage, + "Wasserschaden" => MDObjectDamageType::water_damage, ]; /** diff --git a/src/MDConcEntryTypes.php b/src/MDConcEntryTypes.php index a04a1eb..3f5f84d 100644 --- a/src/MDConcEntryTypes.php +++ b/src/MDConcEntryTypes.php @@ -191,6 +191,7 @@ final class MDConcEntryTypes implements MDImporterConcordanceListInterface { // 99: Other legal acquisition "Anderer rechtmäßiger Zugang" => "99", + "Bodenreform" => "99", "Other legal acquisition" => "99", "Egyéb hivatalos megszerzés" => "99", "Zurückgegeben" => "99", diff --git a/src/MDConcEventTypes.php b/src/MDConcEventTypes.php index 2482c76..0a62b62 100644 --- a/src/MDConcEventTypes.php +++ b/src/MDConcEventTypes.php @@ -89,6 +89,15 @@ final class MDConcEventTypes implements MDImporterConcordanceListInterface { 'Erwerb' => 41, 'Erwerbung' => 41, 'Acquisition (Activity)' => 41, + 'Bodenreform' => 41, + + // 43: Was sold + 'Kauf' => 43, + + // 49: Gifted, donated + 'Schenkung' => 49, + 'Nachlass' => 49, + 'Übergabe' => 49, ]; @@ -102,7 +111,7 @@ final class MDConcEventTypes implements MDImporterConcordanceListInterface { public static function getConcordanceTarget(string $input):int { if (!isset(self::EVENT_TYPE_NAMES_TO_ID[$input])) { - throw new MDImporterMissingConcordance("Unknown entry type: '" . $input . "'"); + throw new MDImporterMissingConcordance("Unknown event type: '" . $input . "'"); } return self::EVENT_TYPE_NAMES_TO_ID[$input]; diff --git a/src/MDConcMarkingType.php b/src/MDConcMarkingType.php index 063a319..35d7545 100644 --- a/src/MDConcMarkingType.php +++ b/src/MDConcMarkingType.php @@ -61,6 +61,7 @@ final class MDConcMarkingType implements MDImporterConcordanceListInterface { "Federtusche" => "handwritten", "Filzstiftnotiz" => "handwritten", "Füllerbeschriftung auf der Rückseite" => "handwritten", + "Goldschrift" => "handwritten", "handschrifltich" => "handwritten", "Handschriftlich" => "handwritten", "handschriflich" => "handwritten",