Extend concordance lists

This commit is contained in:
2022-09-21 16:34:45 +02:00
parent fce5b2ebba
commit 65eb40add6
4 changed files with 40 additions and 3 deletions

View File

@ -14,10 +14,14 @@ final class MDConcMarkingPosition {
const MARKING_POSITIONS_VERBOSE = [
// Center
"mittig" => "center",
"Mittig" => "center",
"mittig auf Schild" => "center",
"Vorderseite, mittig" => "center",
"beidseitig mittig" => "center",
"untere Passpartoutkante, mittig" => "center",
"vorn am Kasten, mittig, einseitig" => "center",
"an Gehäuse mittig" => "center",
// Left
"Links" => "left",
@ -27,6 +31,7 @@ final class MDConcMarkingPosition {
"linkes Band" => "left",
"Waagebalken links" => "left",
"Vorderseite links (Brusthöhe)" => "left",
"an Skala links und am Gehäuse Fronseite" => "left",
// Right
"Rechts" => "right",
@ -52,6 +57,9 @@ final class MDConcMarkingPosition {
// Top
"Oberseite" => "top",
"oberer Rand" => "top",
"oberer Balken" => "top",
"Flasche und Verschluß" => "top",
"obere Abdeckung" => "top",
// Bottom left
"links unter der Zeichnung" => "bottom_left",
@ -88,6 +96,7 @@ final class MDConcMarkingPosition {
"unterer seitlicher Rand" => "edge",
"oberer Rand, aussen" => "edge",
"oberer und unterer Rand" => "edge",
"Passepartout" => "edge",
// Rear
"Rückseite" => "rear_side",
@ -98,8 +107,10 @@ final class MDConcMarkingPosition {
"Rückseitig auf ovalem Keilrahmen oben links und rechts" => "rear_side",
"Rückseite Kalender" => "rear_side",
"Rückseite Keilrahmen" => "rear_side",
"Rükseite" => "rear_side",
// Misc.
"x" => "other",
"Vorderseite" => "other",
"Forderseite" => "other",
"VS" => "other",
@ -110,12 +121,20 @@ final class MDConcMarkingPosition {
"VS und RS" => "other",
"vs: oben/ unten" => "other",
"VS Fahne" => "other",
"Balken" => "other",
"Zugbalken" => "other",
"Front" => "other",
"Vorderseite / Stirn" => "other",
"vorn" => "other",
"inneres Lederfutter" => "other",
"Innenseite" => "other",
"unter Gewichtsauflagenschale" => "other",
"Standsäule" => "other",
"Typenschild" => "other",
"Typenschild Alum" => "other",
"Typenschild Alum." => "other",
"Typenschild am Gestell" => "other",
"Typenschild an Gestellfront" => "other",
"Tellerunterseite" => "other",
"Skalenschiene" => "other",
"Skala" => "other",
@ -140,6 +159,7 @@ final class MDConcMarkingPosition {
"Boden/innen, Rand/innen, mittig und Rand/außen" => "other",
"vorn am Gehäuse" => "other",
"Boden/innen (sehr groß, ca. 5x5cm) und am Rand/außen (3x)" => "other",
"Außenrand" => "other",
"vorn an Fußgestell, mittig, beidseitig" => "other",
"Messingschild vorn" => "other",
"inneres Seidenfutter" => "other",
@ -245,8 +265,6 @@ final class MDConcMarkingPosition {
"Skala und schale" => "other",
"am Rand des Mittelteils" => "other",
"am Waagebalken" => "other",
"vorn am Kasten, mittig, einseitig" => "other",
"an Gehäuse mittig" => "other",
"an Front vom Gehäuse" => "other",
"Fußgestell" => "other",
"auf Fuß oben auf" => "other",
@ -268,10 +286,12 @@ final class MDConcMarkingPosition {
"auf Papp-Schmuckrahmen" => "other",
"Fotomitte" => "other",
"Gehäuseboden, innerer Rand" => "other",
"untere Passpartoutkante, mittig" => "other",
"Flasche" => "other",
"auf dem Kontaktbogen unter dem jeweiligen Bild" => "other",
"Waage" => "other",
"auf Kunststoffhülle (für Kleinbildfilmstreifen)" => "other",
"Textplatte" => "other",
"oberer Holzkasten" => "other",
];
}