Compare commits
7 Commits
55f334dd18
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 843bfd0535 | |||
| 6eba4d3a6d | |||
| 3ff63d509f | |||
| 76b69ac82f | |||
| a3a24ace8e | |||
| 8f307cf3d9 | |||
| 4fbf5b51c4 |
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Počet napsaných stran',
|
||||
'number_of_standalone_sheets' => 'Počet samostatných listů',
|
||||
'diameter_image_size' => 'Velikost obrazu (průměr)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Koule',
|
||||
'cone' => 'Kužel',
|
||||
'cylinder' => 'Válec',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$tlPlacetypes = array (
|
||||
0 => 'Administrative',
|
||||
1 => 'Historical',
|
||||
2 => 'Region',
|
||||
3 => 'Street',
|
||||
4 => 'Building',
|
||||
5 => 'Mountains',
|
||||
6 => 'Forest',
|
||||
7 => 'Body of water',
|
||||
0 => 'Správní',
|
||||
1 => 'Historický',
|
||||
2 => 'oblast',
|
||||
3 => 'Ulice',
|
||||
4 => 'Budova',
|
||||
5 => 'Hory',
|
||||
6 => 'Les',
|
||||
7 => 'Vodní plocha',
|
||||
8 => 'Island',
|
||||
);
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$podcast_contributor_roles = array (
|
||||
'onair' => 'On air',
|
||||
'recording' => 'Recording',
|
||||
'technical_support' => 'Technical support',
|
||||
'organization' => 'Organization',
|
||||
'onair' => 'Ve vysílání',
|
||||
'recording' => 'Záznam',
|
||||
'technical_support' => 'Technická podpora',
|
||||
'organization' => 'Organizace',
|
||||
);
|
||||
|
||||
@@ -1,29 +1,29 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$position_set = array (
|
||||
'left' => 'Left',
|
||||
'top_left' => 'Top left',
|
||||
'top' => 'Top',
|
||||
'top_right' => 'Top right',
|
||||
'right' => 'Right',
|
||||
'bottom_right' => 'Bottom right',
|
||||
'bottom' => 'Bottom',
|
||||
'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',
|
||||
'left' => 'Vlevo',
|
||||
'top_left' => 'Vlevo nahoře',
|
||||
'top' => 'Nahoře',
|
||||
'top_right' => 'Vpravo nahoře',
|
||||
'right' => 'Právo',
|
||||
'bottom_right' => 'Vpravo dole',
|
||||
'bottom' => 'Dno',
|
||||
'bottom_left' => 'Vlevo dole',
|
||||
'center' => 'centrum',
|
||||
'rear_side' => 'Zadní strana',
|
||||
'edge' => 'Okraj',
|
||||
'other' => 'Ostatní',
|
||||
'inside' => 'Uvnitř',
|
||||
'underside' => 'Spodní strana',
|
||||
'topside' => 'Vrchní strana',
|
||||
'front_front' => 'Celá přední strana',
|
||||
'rear_left' => 'Zadní strana: levá',
|
||||
'rear_top_left' => 'Zadní strana: vlevo nahoře',
|
||||
'rear_top' => 'Zadní strana: horní',
|
||||
'rear_top_right' => 'Zadní strana: vpravo nahoře',
|
||||
'rear_right' => 'Zadní strana: pravá',
|
||||
'rear_bottom_right' => 'Zadní strana: vpravo dole',
|
||||
'rear_bottom' => 'Zadní strana: spodní',
|
||||
'rear_bottom_left' => 'Zadní strana: vlevo dole',
|
||||
'rear_center' => 'Zadní strana: střed',
|
||||
);
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$process_types = array (
|
||||
'project' => 'Project',
|
||||
'grant_application' => 'Grant application',
|
||||
'exhibition' => 'Exhibition',
|
||||
'appointment' => 'Appointment / Event',
|
||||
'loan_incoming' => 'Loan (incoming)',
|
||||
'loan_outgoing' => 'Loan (outgoing)',
|
||||
'employment_ad' => 'Employment ad',
|
||||
'purchase' => 'Purchase',
|
||||
'deaccession' => 'Deaccession',
|
||||
'construction' => 'Construction measure',
|
||||
'pest_control_campaign' => 'Pest control campaign',
|
||||
'pr_campaign' => 'PR campaign',
|
||||
'relocation' => 'Relocation',
|
||||
'discussion' => 'Discussion',
|
||||
'project' => 'Projekt',
|
||||
'grant_application' => 'Žádost o grant',
|
||||
'exhibition' => 'Výstava',
|
||||
'appointment' => 'Schůzka / Událost',
|
||||
'loan_incoming' => 'Půjčka (příchozí)',
|
||||
'loan_outgoing' => 'Půjčka (odchozí)',
|
||||
'employment_ad' => 'Inzerát na zaměstnání',
|
||||
'purchase' => 'Nákup',
|
||||
'deaccession' => 'Vystoupení',
|
||||
'construction' => 'Stavební opatření',
|
||||
'pest_control_campaign' => 'Kampaň na hubení škůdců',
|
||||
'pr_campaign' => 'PR kampaň',
|
||||
'relocation' => 'Přemístění',
|
||||
'discussion' => 'Diskuse',
|
||||
);
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
declare(strict_types = 1);
|
||||
$recording_types_set = array (
|
||||
'audio' => 'Audio',
|
||||
'video' => 'Video',
|
||||
'video' => 'video',
|
||||
);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$research_status = array (
|
||||
'bad' => 'Not researched much',
|
||||
'medium' => 'Partly researched',
|
||||
'good' => 'Well researched',
|
||||
'bad' => 'Moc se nezkoumalo',
|
||||
'medium' => 'Částečně prozkoumané',
|
||||
'good' => 'Dobře prozkoumané',
|
||||
);
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_contributor_role = array (
|
||||
'author' => 'Author',
|
||||
'director' => 'Director',
|
||||
'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',
|
||||
'author' => 'Autor',
|
||||
'director' => 'Ředitel',
|
||||
'dramaturg' => 'dramaturg',
|
||||
'production_designer' => 'Výtvarník/výtvarnice',
|
||||
'costumer' => 'Zákazník',
|
||||
'musician' => 'Hudebník',
|
||||
'choreographer' => 'Choreograf',
|
||||
'make_up_artist' => 'Vizážista/Vizážistka',
|
||||
'speech_trainer' => 'Řečník',
|
||||
'puppet_maker' => 'Loutkář',
|
||||
'technician' => 'Technik',
|
||||
'inspector' => 'Inspektor',
|
||||
'assistant' => 'Asistent',
|
||||
'actor' => 'Herec',
|
||||
'painter' => 'Malíř',
|
||||
'creator' => 'Tvůrce',
|
||||
'equipment_supplier' => 'Dodavatel vybavení',
|
||||
'contributing_institution' => 'Přispívající instituce',
|
||||
'event_organizer' => 'Organizátor akce',
|
||||
'movement_trainer' => 'Trenér pohybu',
|
||||
);
|
||||
|
||||
@@ -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' => 'Místo výroby',
|
||||
'performance_space' => 'Prostor pro vystoupení',
|
||||
'rehearsal_space' => 'Zkušebna',
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$series_time_role = array (
|
||||
'premiere' => 'Premiere',
|
||||
'time_of_presentation' => 'Time of presentation',
|
||||
'premiere' => 'premiéra',
|
||||
'time_of_presentation' => 'Čas prezentace',
|
||||
);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$shipment_method_set = array (
|
||||
'unknown' => 'Unknown',
|
||||
'car' => 'By car',
|
||||
'ship' => 'By ship',
|
||||
'unknown' => 'Neznámý',
|
||||
'car' => 'Autem',
|
||||
'ship' => 'Lodí',
|
||||
);
|
||||
|
||||
@@ -1,12 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$source_type_set = array (
|
||||
'article' => 'Article',
|
||||
'inbook' => 'Article in collected volume',
|
||||
'book' => 'Book',
|
||||
'phdthesis' => 'PhD thesis',
|
||||
'electronical' => 'Electronic resource',
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'article' => 'Článek',
|
||||
'inbook' => 'Článek ve sborníku',
|
||||
'book' => 'Rezervovat',
|
||||
'phdthesis' => 'Disertační práce',
|
||||
'electronical' => 'Elektronický zdroj',
|
||||
'misc' => 'Smíšený',
|
||||
'patent' => 'patent',
|
||||
'unpublished' => 'Nepublikovaný',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$space_access_status = array (
|
||||
'enter' => 'Enter',
|
||||
'leave' => 'Leave',
|
||||
'enter' => 'Zadejte',
|
||||
'leave' => 'Dovolená',
|
||||
);
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$space_types = array (
|
||||
'building' => 'Building',
|
||||
'depot' => 'Depot room',
|
||||
'utility_room' => 'Utility room',
|
||||
'exhibition_room' => 'Exhibition room',
|
||||
'display_cabinet' => 'Display cabinet',
|
||||
'shelf' => 'Shelf',
|
||||
'box' => 'Box',
|
||||
'folder' => 'Folder',
|
||||
'office' => 'Office',
|
||||
'floor' => 'Floor',
|
||||
'hallway' => 'Hallway',
|
||||
'outdoor_area' => 'Outdoor area',
|
||||
'building' => 'Budova',
|
||||
'depot' => 'Depo',
|
||||
'utility_room' => 'Technická místnost',
|
||||
'exhibition_room' => 'Výstavní místnost',
|
||||
'display_cabinet' => 'Vitrína',
|
||||
'shelf' => 'Police',
|
||||
'box' => 'krabice',
|
||||
'folder' => 'Složka',
|
||||
'office' => 'Kancelář',
|
||||
'floor' => 'Patro',
|
||||
'hallway' => 'Chodba',
|
||||
'outdoor_area' => 'Venkovní prostor',
|
||||
);
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$syndication_repos = array (
|
||||
'ddb' => 'German Digital Library (DDB)',
|
||||
'ddb' => 'Německá digitální knihovna (DDB)',
|
||||
'europeana' => 'Europeana',
|
||||
'smb-digital' => 'SMB-digital',
|
||||
'kalliope-verbund' => 'Kalliope Verbund',
|
||||
'smb-digital' => 'Digitální služby pro malé a střední podniky',
|
||||
'kalliope-verbund' => 'Calliope Network',
|
||||
);
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$tag_relation_type = array (
|
||||
'tag' => 'Tag',
|
||||
'object_type' => 'Object type',
|
||||
'material' => 'Material',
|
||||
'technique' => 'Technique',
|
||||
'display_subject' => 'Display subject',
|
||||
'topic' => 'Topic',
|
||||
'mentioned' => 'Mentioned subject',
|
||||
'tag' => 'den',
|
||||
'object_type' => 'Typ objektu',
|
||||
'material' => 'Typ objektu',
|
||||
'technique' => 'Technika',
|
||||
'display_subject' => 'Zobrazit předmět',
|
||||
'topic' => 'Téma',
|
||||
'mentioned' => 'Zmíněný předmět',
|
||||
'taxon' => 'Taxon',
|
||||
);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$timing_intervals_set = array (
|
||||
'weekly' => 'Weekly',
|
||||
'monthly' => 'Monthly',
|
||||
'annual' => 'Annual',
|
||||
'weekly' => 'Týdně',
|
||||
'monthly' => 'Měsíční',
|
||||
'annual' => 'Výroční',
|
||||
);
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
declare(strict_types = 1);
|
||||
$title_types_set = array (
|
||||
'' => ' ',
|
||||
'Science' => 'Science',
|
||||
'Everyday speech' => 'Everyday speech',
|
||||
'Colloquial speech' => 'Colloquial speech',
|
||||
'Dialect' => 'Dialect',
|
||||
'Professional jargon' => 'Professional jargon',
|
||||
'Sociolect' => 'Sociolect',
|
||||
'Science' => 'Věda',
|
||||
'Everyday speech' => 'Každodenní řeč',
|
||||
'Colloquial speech' => 'Hovorová řeč',
|
||||
'Dialect' => 'Dialekt',
|
||||
'Professional jargon' => 'Profesionální žargon',
|
||||
'Sociolect' => 'Sociolekt',
|
||||
);
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$todo_status = array (
|
||||
'suggested' => 'Suggested',
|
||||
'planned' => 'Planned',
|
||||
'in_progress' => 'In progress',
|
||||
'done' => 'Done',
|
||||
'cancelled' => 'Cancelled',
|
||||
'suggested' => 'Navrhované',
|
||||
'planned' => 'Plánované',
|
||||
'in_progress' => 'Probíhá',
|
||||
'done' => 'Hotovo',
|
||||
'cancelled' => 'Zrušeno',
|
||||
);
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$transcript_status = array (
|
||||
'incomplete' => 'Incomplete',
|
||||
'machine_generated' => 'Machine-generated',
|
||||
'rough_draft' => 'Rough draft',
|
||||
'quality_control_failed' => 'Quality control failed',
|
||||
'quality_control_passed' => 'Quality control passed',
|
||||
'reviewed' => 'Reviewed',
|
||||
'incomplete' => 'Neúplný',
|
||||
'machine_generated' => 'Strojově generované',
|
||||
'rough_draft' => 'Hrubý návrh',
|
||||
'quality_control_failed' => 'Kontrola kvality selhala',
|
||||
'quality_control_passed' => 'Kontrola kvality prošla',
|
||||
'reviewed' => 'Zkontrolováno',
|
||||
);
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$transcript_types = array (
|
||||
'simple_transcription' => 'Simple transcription',
|
||||
'diplomatic_transcription' => 'Diplomatic transcription',
|
||||
'critical_edition' => 'Critical edition',
|
||||
'historical_critical_edition' => 'Historical-critical edition',
|
||||
'reading_edition' => 'Reading edition',
|
||||
'constituted_text' => 'Constituted text',
|
||||
'simple_transcription' => 'Jednoduchý přepis',
|
||||
'diplomatic_transcription' => 'Diplomatický přepis',
|
||||
'critical_edition' => 'Kritické vydání',
|
||||
'historical_critical_edition' => 'Historicko-kritické vydání',
|
||||
'reading_edition' => 'Vydání pro čtení',
|
||||
'constituted_text' => 'Konstituovaný text',
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_copies_set = array (
|
||||
'copies' => 'Copies',
|
||||
'specimen' => 'Specimen',
|
||||
'copies' => 'Kopie',
|
||||
'specimen' => 'Vzorek',
|
||||
);
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_count_parts_set = array (
|
||||
'parts' => 'Parts',
|
||||
'pages' => 'Pages',
|
||||
'sheets' => 'Sheets',
|
||||
'double_pages' => 'Double pages',
|
||||
'standalone_sheets' => 'Standalone sheets',
|
||||
'written_pages' => 'Written pages',
|
||||
'parts' => 'Díly',
|
||||
'pages' => 'Stránky',
|
||||
'sheets' => 'Listy',
|
||||
'double_pages' => 'Dvojité stránky',
|
||||
'standalone_sheets' => 'Samostatné listy',
|
||||
'written_pages' => 'Psané stránky',
|
||||
);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$units_die_axis_set = array (
|
||||
'h' => 'h',
|
||||
'h' => 'hod.',
|
||||
);
|
||||
|
||||
@@ -6,5 +6,5 @@ $units_length_set = array (
|
||||
'cm' => 'cm',
|
||||
'mm' => 'mm',
|
||||
'ft' => 'ft',
|
||||
'in' => 'inch',
|
||||
'in' => 'palec',
|
||||
);
|
||||
|
||||
@@ -3,5 +3,5 @@ declare(strict_types = 1);
|
||||
$units_weight_set = array (
|
||||
't' => 't',
|
||||
'kg' => 'kg',
|
||||
'g' => 'g',
|
||||
'g' => 'G',
|
||||
);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?PHP
|
||||
declare(strict_types = 1);
|
||||
$vocabulary_redaction_level = array (
|
||||
'checked' => 'Checked',
|
||||
'unchecked' => 'Unchecked',
|
||||
'questionable' => 'Questionable',
|
||||
'checked' => 'Zaškrtnuto',
|
||||
'unchecked' => 'Nezaškrtnuto',
|
||||
'questionable' => 'Sporný',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Anzahl beschriebener Seiten',
|
||||
'number_of_standalone_sheets' => 'Anzahl von Einzelblättern',
|
||||
'diameter_image_size' => 'Bildmaß (Durchmesser)',
|
||||
'length_of_base' => 'Länge des Bodens',
|
||||
'height_of_base' => 'Höhe des Bodens',
|
||||
'width_of_base' => 'Breite des Bodens',
|
||||
'diameter_of_base' => 'Bodendurchmesser',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Kugel',
|
||||
'cone' => 'Kegel',
|
||||
'cylinder' => 'Zylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Rund',
|
||||
'square' => 'Quadratisch',
|
||||
'rectangular' => 'Rechteckig',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Weiteres',
|
||||
'patent' => 'Patentschrift',
|
||||
'unpublished' => 'Unveröffentlicht',
|
||||
'periodical' => 'Periodikum',
|
||||
'booklet' => 'Broschüre / Booklet',
|
||||
'proceedings' => 'Tagungsband',
|
||||
'inproceedings' => 'Artikel in Tagungsband',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Autre',
|
||||
'patent' => 'Fascicule de brevet',
|
||||
'unpublished' => 'Non publié',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'गोला',
|
||||
'cone' => 'कोन',
|
||||
'cylinder' => 'सिलेंडर',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'मिश्रित',
|
||||
'patent' => 'पेटेंट',
|
||||
'unpublished' => 'अप्रकाशित',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
declare(strict_types = 1);
|
||||
$conservation_report_type_set = array (
|
||||
'damage' => 'Sérülés',
|
||||
'conservation' => 'Megőrzés',
|
||||
'conservation' => 'Konzerválás',
|
||||
'condition' => 'Állapot',
|
||||
'restoration' => 'Restaurálás',
|
||||
'other_report' => 'Egyéb beszámoló',
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'gömb',
|
||||
'cone' => 'kúp',
|
||||
'cylinder' => 'henger',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Egyéb',
|
||||
'patent' => 'Szabadalom',
|
||||
'unpublished' => 'Kiadatlan',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Lain-lain',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'sfera',
|
||||
'cone' => 'cono',
|
||||
'cylinder' => 'cilindro',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'altra/o',
|
||||
'patent' => 'brevetto (concesso) ',
|
||||
'unpublished' => 'inedito',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'ಗೋಳ',
|
||||
'cone' => 'ಕೋನ್',
|
||||
'cylinder' => 'ಸಿಲಿಂಡರ್',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'ವಿವಿಧ',
|
||||
'patent' => 'ಪೇಟೆಂಟ್',
|
||||
'unpublished' => 'ಪ್ರಕಟಿಸಲಾಗಿಲ್ಲ',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Сфера',
|
||||
'cone' => 'Конус',
|
||||
'cylinder' => 'Цилиндр',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Разное',
|
||||
'patent' => 'Патент',
|
||||
'unpublished' => 'Неопубликованное',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'கோளம்',
|
||||
'cone' => 'கூம்பு',
|
||||
'cylinder' => 'சிலிண்டர்',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'தவறான',
|
||||
'patent' => 'காப்புரிமை',
|
||||
'unpublished' => 'வெளியிடப்படாதது',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'గోళము',
|
||||
'cone' => 'కోన్',
|
||||
'cylinder' => 'సిలెండర్',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'ఇతరాలు',
|
||||
'patent' => 'పేటెంట్',
|
||||
'unpublished' => 'ప్రచురించబడలేదు',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -40,4 +40,8 @@ $measurement_type_set = array (
|
||||
'number_of_written_pages' => 'Number of written pages',
|
||||
'number_of_standalone_sheets' => 'Number of standalone sheets',
|
||||
'diameter_image_size' => 'Image size (diameter)',
|
||||
'length_of_base' => 'Length of base',
|
||||
'height_of_base' => 'Height of base',
|
||||
'width_of_base' => 'Width of base',
|
||||
'diameter_of_base' => 'Diameter of base',
|
||||
);
|
||||
|
||||
@@ -6,4 +6,8 @@ $object_form_set = array (
|
||||
'sphere' => 'Sphere',
|
||||
'cone' => 'Cone',
|
||||
'cylinder' => 'Cylinder',
|
||||
'oval' => 'Oval',
|
||||
'round' => 'Round',
|
||||
'square' => 'Square',
|
||||
'rectangular' => 'Rectangular',
|
||||
);
|
||||
|
||||
@@ -9,4 +9,8 @@ $source_type_set = array (
|
||||
'misc' => 'Miscelaneous',
|
||||
'patent' => 'Patent',
|
||||
'unpublished' => 'Unpublished',
|
||||
'periodical' => 'Periodical',
|
||||
'booklet' => 'Booklet',
|
||||
'proceedings' => 'Proceedings',
|
||||
'inproceedings' => 'Article in proceedings',
|
||||
);
|
||||
|
||||
@@ -56,5 +56,5 @@ $eventname = array (
|
||||
55 => 'Вказаний час',
|
||||
56 => 'Отримання права власності',
|
||||
57 => 'Передача права власності',
|
||||
58 => 'Modified',
|
||||
58 => 'Змінено',
|
||||
);
|
||||
|
||||
@@ -56,5 +56,5 @@ $event_persinst = array (
|
||||
55 => 'згаданий час',
|
||||
56 => 'право власності отримано (ким)',
|
||||
57 => 'право власності передано (ким)',
|
||||
58 => 'Modified by',
|
||||
58 => 'Змінено (ким)',
|
||||
);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user