Compare commits
22 Commits
eb9834ca20
...
master
Author | SHA1 | Date | |
---|---|---|---|
a7e3056f09 | |||
ec5a15a8b1 | |||
b3adbadf7e | |||
63f12e097f | |||
d00a827bab | |||
26d1fa3365 | |||
63d9d55cde | |||
1563a72bf9 | |||
eefedde50c | |||
6d8b713c07 | |||
8128c284df | |||
7bfd222f94 | |||
a2fa7b7bf2 | |||
76256a823c | |||
2619277713 | |||
690f60a307 | |||
1aff60d35e | |||
b8f0d94647 | |||
ffb9c18d93 | |||
715fd84d98 | |||
f33074a662 | |||
78c35964fb |
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'bottom_left' => 'Unten links',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Geerbt',
|
||||
51 => 'Hat zum Hauptgegenstand',
|
||||
52 => 'Entstanden',
|
||||
53 => 'Herstellung des Materials',
|
||||
54 => 'Erwähnter Ort',
|
||||
55 => 'Erwähnte Zeit',
|
||||
56 => 'In Eigentum übernommen',
|
||||
57 => 'In Eigentum übergeben in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'geerbt von',
|
||||
51 => 'hat zum Hauptgegenstand',
|
||||
52 => 'entstanden durch',
|
||||
53 => 'Material produziert von',
|
||||
54 => 'Erwähnter Ort',
|
||||
55 => 'Erwähnte Zeit',
|
||||
56 => 'In Eigentum übernommen von',
|
||||
57 => 'In Eigentum übergeben von',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'geerbt in',
|
||||
51 => 'hat zum Hauptgegenstand',
|
||||
52 => 'entstanden in',
|
||||
53 => 'Material hergestellt in',
|
||||
54 => 'Erwähnter Ort',
|
||||
55 => 'Erwähnte Zeit',
|
||||
56 => 'In Eigentum übernommen in',
|
||||
57 => 'In Eigentum übergeben in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'geerbt',
|
||||
51 => 'hat zum Hauptgegenstand',
|
||||
52 => 'entstanden am',
|
||||
53 => 'Material hergestellt',
|
||||
54 => 'Erwähnter Ort',
|
||||
55 => 'Erwähnte Zeit',
|
||||
56 => 'In Eigentum übernommen',
|
||||
57 => 'In Eigentum übergeben',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Geritzt',
|
||||
'cast' => 'Guss',
|
||||
'painted' => 'Gemalt',
|
||||
'drawn' => 'Gezeichnet',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Länge (Sockel)',
|
||||
'height_socle' => 'Höhe (Sockel)',
|
||||
'width_socle' => 'Breite (Sockel)',
|
||||
'height_sheet_size' => 'Blattmaß (Höhe)',
|
||||
'length_sheet_size' => 'Blattmaß (Länge)',
|
||||
'width_sheet_size' => 'Blattmaß (Breite)',
|
||||
'height_image_size' => 'Bildmaß (Höhe)',
|
||||
'length_image_size' => 'Bildmaß (Länge)',
|
||||
'width_image_size' => 'Bildmaß (Breite)',
|
||||
'length_frame' => 'Rahmen (Länge)',
|
||||
'height_frame' => 'Rahmen (Höhe)',
|
||||
'width_frame' => 'Rahmen (Breite)',
|
||||
'length_min' => 'Länge (min.)',
|
||||
'length_max' => 'Länge (max.)',
|
||||
'height_min' => 'Höhe (min.)',
|
||||
'height_max' => 'Höhe (max.)',
|
||||
'width_min' => 'Breite (min.)',
|
||||
'width_max' => 'Breite (max.)',
|
||||
'diameter_min' => 'Durchmesser (min.)',
|
||||
'diameter_max' => 'Durchmesser (max.)',
|
||||
'diameter_frame' => 'Rahmen (Durchmesser)',
|
||||
);
|
||||
|
@ -14,4 +14,16 @@ $position_set = array (
|
||||
'edge' => 'Rand',
|
||||
'other' => 'Weiteres',
|
||||
'inside' => 'Innen',
|
||||
'underside' => 'Unterseite',
|
||||
'topside' => 'Oberseite',
|
||||
'front_front' => 'Volle Frontseite',
|
||||
'rear_left' => 'Rückseite: Links',
|
||||
'rear_top_left' => 'Rückseite: Oben links',
|
||||
'rear_top' => 'Rückseite: Oben',
|
||||
'rear_top_right' => 'Rückseite: Oben rechts',
|
||||
'rear_right' => 'Rückseite: Rechts',
|
||||
'rear_bottom_right' => 'Rückseite: Unten rechts',
|
||||
'rear_bottom' => 'Rückseite: Unten',
|
||||
'rear_bottom_left' => 'Rückseite: Unten links',
|
||||
'rear_center' => 'Rückseite: Mittig',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Bestandteile',
|
||||
'pages' => 'Seiten',
|
||||
'sheets' => 'Blatt',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'bottom_left' => 'Unten links',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'bottom_left' => 'Unten links',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'bottom_left' => 'Unten links',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Taillé',
|
||||
'cast' => 'Fonte',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Droite',
|
||||
'bottom_right' => 'En bas à droite',
|
||||
'bottom' => 'Bas',
|
||||
'bottom_left' => 'En bas à gauche',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Au centre',
|
||||
'rear_side' => 'Arrière',
|
||||
'edge' => 'Bord',
|
||||
'other' => 'Autre',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'bottom_left' => 'Unten links',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -50,5 +50,10 @@ $eventname = array (
|
||||
49 => 'Adományozó',
|
||||
50 => 'Örökölte',
|
||||
51 => 'Témakör (személy/intézmény)',
|
||||
52 => 'Emerged',
|
||||
52 => 'Keletkezés',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -50,5 +50,10 @@ $event_persinst = array (
|
||||
49 => 'Adományozó',
|
||||
50 => 'Örökölte',
|
||||
51 => 'Témakör (személy/intémzény)',
|
||||
52 => 'emerged by',
|
||||
52 => 'Keletkezett',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'Öröklés helyszíne',
|
||||
51 => 'Témakör (helyszín)',
|
||||
52 => 'Természetes keletkezés helye',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'Öröklés időpontja',
|
||||
51 => 'Témakör (időpont)',
|
||||
52 => 'Természetes keletkezés időponjta',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -6,5 +6,5 @@ $institution_basic_category_set = array (
|
||||
'memorial_site' => 'Emlékhely',
|
||||
'private_collection' => 'Magánygyűjtemény',
|
||||
'museum' => 'Múzeum',
|
||||
'university_collection' => 'University collection',
|
||||
'university_collection' => 'Egyetemi gyűjtemény',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Karcolt',
|
||||
'cast' => 'Öntött',
|
||||
'painted' => 'Festett',
|
||||
'drawn' => 'Rajzolt',
|
||||
);
|
||||
|
@ -1,16 +1,34 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$measurement_type_set = array (
|
||||
'length' => 'Length',
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
'number_of_copies' => 'Number of copies',
|
||||
'weight' => 'Weight',
|
||||
'diameter' => 'Diameter',
|
||||
'wall' => 'Wall',
|
||||
'number_of_parts' => 'Number of parts',
|
||||
'length' => 'Hosszúság',
|
||||
'height' => 'Magasság',
|
||||
'width' => 'Szélesség',
|
||||
'number_of_copies' => 'Darabszám',
|
||||
'weight' => 'Súly',
|
||||
'diameter' => 'Átmérő',
|
||||
'wall' => 'Falvastagság',
|
||||
'number_of_parts' => 'Részegységek',
|
||||
'die_axis' => 'Die-axis',
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'length_socle' => 'Hosszúság (talapzat)',
|
||||
'height_socle' => 'Magasság (talapzat)',
|
||||
'width_socle' => 'Szélesség (talapzat)',
|
||||
'height_sheet_size' => 'Papír mérete (magasság)',
|
||||
'length_sheet_size' => 'Papír mérete (hosszúság)',
|
||||
'width_sheet_size' => 'Papír mérete (szélesség)',
|
||||
'height_image_size' => 'Kép mérete (magasság)',
|
||||
'length_image_size' => 'Kép mérete (hosszúság)',
|
||||
'width_image_size' => 'Kép mérete (szélesség)',
|
||||
'length_frame' => 'Keret (hosszúság)',
|
||||
'height_frame' => 'Keret (magasság)',
|
||||
'width_frame' => 'Keret (szélesség)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -3,6 +3,6 @@ declare(strict_types = 1);
|
||||
$object_check_types_set = array (
|
||||
'condition_check' => 'Állapotellenőrzés',
|
||||
'completeness_check' => 'Teljesség-ellenőrzés',
|
||||
'data_correctness_check' => 'Adatok helyességének ellenőrzése',
|
||||
'data_correctness_check' => 'Adathelyességi ellenőrzése',
|
||||
'location_accuracy_check' => 'Elhelyezés ellenőrzése',
|
||||
);
|
||||
|
@ -2,7 +2,7 @@
|
||||
declare(strict_types = 1);
|
||||
$object_document_type_set = array (
|
||||
'undefined' => 'Egyéb',
|
||||
'provenance_report' => 'Proveniencia riport',
|
||||
'provenance_report' => 'Proveniencia jelentés',
|
||||
'purchase_contract' => 'Adásvételi szerződés',
|
||||
'restoration_report' => 'Restaurálási dokumentáció',
|
||||
'assessment' => 'Értékelés',
|
||||
|
@ -13,5 +13,17 @@ $position_set = array (
|
||||
'rear_side' => 'Hátoldal',
|
||||
'edge' => 'Szegély',
|
||||
'other' => 'Egyéb',
|
||||
'inside' => 'Inside',
|
||||
'inside' => 'Belül',
|
||||
'underside' => 'Alsó oldal',
|
||||
'topside' => 'Felső oldal',
|
||||
'front_front' => 'Teljes front',
|
||||
'rear_left' => 'Hátoldal: bal',
|
||||
'rear_top_left' => 'Hátoldal: bal felső',
|
||||
'rear_top' => 'Hátoldal: felső',
|
||||
'rear_top_right' => 'Hátoldal: jobb felső',
|
||||
'rear_right' => 'Hátoldal: jobb',
|
||||
'rear_bottom_right' => 'Hátoldal: jobb alsó',
|
||||
'rear_bottom' => 'Hátoldal: alsó',
|
||||
'rear_bottom_left' => 'Hátoldal: bal alsó',
|
||||
'rear_center' => 'Hátoldal: közép',
|
||||
);
|
||||
|
@ -10,7 +10,7 @@ $process_types = array (
|
||||
'employment_ad' => 'Álláshirdetés',
|
||||
'purchase' => 'Vétel',
|
||||
'deaccession' => 'Kivonás a gyűjteményből (deaccessioning)',
|
||||
'construction' => 'Épitkezés',
|
||||
'construction' => 'Építési intézkedések',
|
||||
'pest_control_campaign' => 'Kártevők elleni védekezés',
|
||||
'pr_campaign' => 'PR-kampány',
|
||||
'relocation' => 'Áthelyezés',
|
||||
|
@ -1,24 +1,24 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_contributor_role = array (
|
||||
'author' => 'Author',
|
||||
'director' => 'Director',
|
||||
'author' => 'Szerző',
|
||||
'director' => 'Rendező',
|
||||
'dramaturg' => 'Dramaturg',
|
||||
'production_designer' => 'Production designer',
|
||||
'costumer' => 'Costumer',
|
||||
'musician' => 'Musician',
|
||||
'choreographer' => 'Choreographer',
|
||||
'make_up_artist' => 'Make-up artist',
|
||||
'speech_trainer' => 'Speech trainer',
|
||||
'puppet_maker' => 'Puppet maker',
|
||||
'technician' => 'Technician',
|
||||
'inspector' => 'Inspector',
|
||||
'assistant' => 'Assistant',
|
||||
'actor' => 'Actor',
|
||||
'painter' => 'Painter',
|
||||
'creator' => 'Creator',
|
||||
'equipment_supplier' => 'Equipment supplier',
|
||||
'contributing_institution' => 'Contributing institution',
|
||||
'event_organizer' => 'Event organizer',
|
||||
'movement_trainer' => 'Movement trainer',
|
||||
'production_designer' => 'Díszlettervező',
|
||||
'costumer' => 'Jelmeztervező',
|
||||
'musician' => 'Zenész',
|
||||
'choreographer' => 'Koreográfus',
|
||||
'make_up_artist' => 'Sminkes',
|
||||
'speech_trainer' => 'Beszédtanár',
|
||||
'puppet_maker' => 'Bábkészítő',
|
||||
'technician' => 'Technikus',
|
||||
'inspector' => 'Felügyelő',
|
||||
'assistant' => 'Asszisztens',
|
||||
'actor' => 'Színész',
|
||||
'painter' => 'Festő',
|
||||
'creator' => 'Alkotó',
|
||||
'equipment_supplier' => 'Eszközbeszállító',
|
||||
'contributing_institution' => 'Közreműködő intézmény',
|
||||
'event_organizer' => 'Rendezvényszervező',
|
||||
'movement_trainer' => 'Mozgástréner',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_place_role = array (
|
||||
'place_of_production' => 'Place of production',
|
||||
'performance_space' => 'Performance space',
|
||||
'rehearsal_space' => 'Rehearsal space',
|
||||
'place_of_production' => 'Gyártási helyszín',
|
||||
'performance_space' => 'Előadóhely',
|
||||
'rehearsal_space' => 'Próbahelyszín',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_time_role = array (
|
||||
'premiere' => 'Premiere',
|
||||
'time_of_presentation' => 'Time of presentation',
|
||||
'premiere' => 'Premier',
|
||||
'time_of_presentation' => 'Bemutató időpontja',
|
||||
);
|
||||
|
@ -6,7 +6,7 @@ $source_type_set = array (
|
||||
'book' => 'Könyv',
|
||||
'phdthesis' => 'Disszertáció',
|
||||
'electronical' => 'Elektronikus publikáció',
|
||||
'misc' => 'Különböző',
|
||||
'misc' => 'Egyéb',
|
||||
'patent' => 'Szabadalom',
|
||||
'unpublished' => 'Kiadatlan',
|
||||
);
|
||||
|
@ -12,5 +12,5 @@ $space_types = array (
|
||||
'office' => 'Iroda',
|
||||
'floor' => 'Emelet',
|
||||
'hallway' => 'Folyosó',
|
||||
'outdoor_area' => 'Outdoor area',
|
||||
'outdoor_area' => 'Kültér',
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
'copies' => 'db',
|
||||
'specimen' => 'egyed',
|
||||
);
|
||||
|
@ -1,6 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'parts' => 'db',
|
||||
'pages' => 'oldal',
|
||||
'sheets' => 'lap',
|
||||
);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$vocabulary_redaction_level = array (
|
||||
'checked' => 'Checked',
|
||||
'unchecked' => 'Unchecked',
|
||||
'questionable' => 'Questionable',
|
||||
'checked' => 'Ellenőrzött',
|
||||
'unchecked' => 'Nem ellenőrzött',
|
||||
'questionable' => 'Kérdéses',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Kanan',
|
||||
'bottom_right' => 'Bawah kanan',
|
||||
'bottom' => 'Bawah',
|
||||
'bottom_left' => 'Bawah kiri',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Pusat',
|
||||
'rear_side' => 'Belakang',
|
||||
'edge' => 'Pinggir',
|
||||
'other' => 'Lain',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'ereditato',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'ereditato da',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'ereditato in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'ereditato',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'scarificato',
|
||||
'cast' => 'colata',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'destra',
|
||||
'bottom_right' => 'in basso a destra',
|
||||
'bottom' => 'sotto / in basso',
|
||||
'bottom_left' => 'in basso a sinistra',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'centrale',
|
||||
'rear_side' => ' parte posteriore ',
|
||||
'edge' => 'bordo',
|
||||
'other' => 'altra/o',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $eventname = array (
|
||||
50 => 'Inherited',
|
||||
51 => 'Had subject',
|
||||
52 => 'Emerged',
|
||||
53 => 'Production of material',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Received ownership',
|
||||
57 => 'Transferred ownership',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_persinst = array (
|
||||
50 => 'inherited by',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged by',
|
||||
53 => 'Material produced by',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received by',
|
||||
57 => 'Ownership transfered by',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_place = array (
|
||||
50 => 'inherited in',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced in',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received in',
|
||||
57 => 'Ownership transfered in',
|
||||
);
|
||||
|
@ -51,4 +51,9 @@ $event_time = array (
|
||||
50 => 'inherited at',
|
||||
51 => 'had subject',
|
||||
52 => 'emerged at',
|
||||
53 => 'Material produced',
|
||||
54 => 'Mentioned place',
|
||||
55 => 'Mentioned time',
|
||||
56 => 'Ownership received',
|
||||
57 => 'Ownership transfered',
|
||||
);
|
||||
|
@ -21,4 +21,5 @@ $marking_types = array (
|
||||
'scarified' => 'Scarified',
|
||||
'cast' => 'Cast',
|
||||
'painted' => 'Painted',
|
||||
'drawn' => 'Drawn',
|
||||
);
|
||||
|
@ -13,4 +13,22 @@ $measurement_type_set = array (
|
||||
'length_socle' => 'Length of socle',
|
||||
'height_socle' => 'Height of socle',
|
||||
'width_socle' => 'Width of socle',
|
||||
'height_sheet_size' => 'Sheet size (height)',
|
||||
'length_sheet_size' => 'Sheet size (length)',
|
||||
'width_sheet_size' => 'Sheet size (width)',
|
||||
'height_image_size' => 'Image size (height)',
|
||||
'length_image_size' => 'Image size (length)',
|
||||
'width_image_size' => 'Image size (width)',
|
||||
'length_frame' => 'Frame (length)',
|
||||
'height_frame' => 'Frame (height)',
|
||||
'width_frame' => 'Frame (width)',
|
||||
'length_min' => 'Length (min.)',
|
||||
'length_max' => 'Length (max.)',
|
||||
'height_min' => 'Height (min.)',
|
||||
'height_max' => 'Height (max.)',
|
||||
'width_min' => 'Width (min.)',
|
||||
'width_max' => 'Width (max.)',
|
||||
'diameter_min' => 'Diameter (min.)',
|
||||
'diameter_max' => 'Diameter (max.)',
|
||||
'diameter_frame' => 'Frame (diameter)',
|
||||
);
|
||||
|
@ -8,10 +8,22 @@ $position_set = array (
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'bottom_left' => 'Unten links',
|
||||
'bottom_left' => 'Bottom left',
|
||||
'center' => 'Center',
|
||||
'rear_side' => 'Rear side',
|
||||
'edge' => 'Edge',
|
||||
'other' => 'Other',
|
||||
'inside' => 'Inside',
|
||||
'underside' => 'Underside',
|
||||
'topside' => 'Topside',
|
||||
'front_front' => 'Full front',
|
||||
'rear_left' => 'Rear side: left',
|
||||
'rear_top_left' => 'Rear side: top left',
|
||||
'rear_top' => 'Rear side: top',
|
||||
'rear_top_right' => 'Rear side: top right',
|
||||
'rear_right' => 'Rear side: right',
|
||||
'rear_bottom_right' => 'Rear side: bottom right',
|
||||
'rear_bottom' => 'Rear side: bottom',
|
||||
'rear_bottom_left' => 'Rear side: bottom left',
|
||||
'rear_center' => 'Rear side: center',
|
||||
);
|
||||
|
@ -3,4 +3,5 @@ declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
);
|
||||
|
13
kn/actor_variant_types_set.php
Normal file
13
kn/actor_variant_types_set.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$actor_variant_types_set = array (
|
||||
'birth_name' => 'ಹುಟ್ಟಿದ ಹೆಸರು',
|
||||
'married_name' => 'ವಿವಾಹಿತ ಹೆಸರು',
|
||||
'monastic_name' => 'ಸನ್ಯಾಸಿಗಳ ಹೆಸರು',
|
||||
'pseudonym' => 'ಗುಪ್ತನಾಮ',
|
||||
'regnal_name' => 'ರಾಜನ ಹೆಸರು',
|
||||
'nickname' => 'ಅಡ್ಡಹೆಸರು',
|
||||
'artist_name' => 'ಕಲಾವಿದನ ಹೆಸರು',
|
||||
'civil_name' => 'ನಾಗರಿಕ ಹೆಸರು',
|
||||
'generic_other_name' => 'ಪರ್ಯಾಯ ಹೆಸರು (ಸಾಮಾನ್ಯ)',
|
||||
);
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user