Approval.
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$actor_variant_types_set = array (
|
$actor_variant_types_set = array (
|
||||||
'birth_name' => 'Birth name',
|
'birth_name' => 'Rodné jméno',
|
||||||
'married_name' => 'Married name',
|
'married_name' => 'Jméno po svatbě',
|
||||||
'monastic_name' => 'Monastic name',
|
'monastic_name' => 'Klášterní jméno',
|
||||||
'pseudonym' => 'Pseudonym',
|
'pseudonym' => 'pseudonym',
|
||||||
'regnal_name' => 'Regnal name',
|
'regnal_name' => 'královské jméno',
|
||||||
'nickname' => 'Nickname',
|
'nickname' => 'Přezdívka',
|
||||||
'artist_name' => 'Artist name',
|
'artist_name' => 'Jméno umělce',
|
||||||
'civil_name' => 'Civil name',
|
'civil_name' => 'občanské jméno',
|
||||||
'generic_other_name' => 'Alternative Name (generic)',
|
'generic_other_name' => 'Alternativní pravopis (obecný)',
|
||||||
);
|
);
|
||||||
|
@@ -3,5 +3,5 @@ declare(strict_types = 1);
|
|||||||
$appointment_attendance_modes = array (
|
$appointment_attendance_modes = array (
|
||||||
'offline' => 'Offline',
|
'offline' => 'Offline',
|
||||||
'online' => 'Online',
|
'online' => 'Online',
|
||||||
'mixed' => 'Offline and online',
|
'mixed' => 'Offline a online',
|
||||||
);
|
);
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$appointment_cancellation_status_set = array (
|
$appointment_cancellation_status_set = array (
|
||||||
'scheduled_done' => 'Scheduled or done as planned',
|
'scheduled_done' => 'Naplánováno nebo provedeno dle plánu',
|
||||||
'cancelled' => 'Cancelled',
|
'cancelled' => 'Zrušeno',
|
||||||
);
|
);
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$appointment_contributor_roles = array (
|
$appointment_contributor_roles = array (
|
||||||
'organizer' => 'Organizer',
|
'organizer' => 'Organizátor',
|
||||||
'presenter' => 'Presenter',
|
'presenter' => 'Přednášející',
|
||||||
);
|
);
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$appointment_status = array (
|
$appointment_status = array (
|
||||||
'scheduled' => 'Scheduled',
|
'scheduled' => 'Naplánováno',
|
||||||
'cancelled' => 'Cancelled',
|
'cancelled' => 'Zrušeno',
|
||||||
'moved_online' => 'Moved online',
|
'moved_online' => 'Přesunuto online',
|
||||||
'postponed' => 'Postponed',
|
'postponed' => 'Odloženo',
|
||||||
);
|
);
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$closer_location_types_set = array (
|
$closer_location_types_set = array (
|
||||||
0 => '',
|
0 => '',
|
||||||
1 => 'Place of recording',
|
1 => 'Místo záznamu',
|
||||||
2 => 'Place of discovery',
|
2 => 'Místo objevu',
|
||||||
3 => 'Former place',
|
3 => 'Bývalé místo',
|
||||||
);
|
);
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$colors_set = array (
|
$colors_set = array (
|
||||||
'black' => 'Black',
|
'black' => 'Černý',
|
||||||
'green' => 'Green',
|
'green' => 'Zelený',
|
||||||
'silver' => 'Silver',
|
'silver' => 'Stříbro',
|
||||||
'lime' => 'Lime',
|
'lime' => 'Vápno',
|
||||||
'gray' => 'Gray',
|
'gray' => 'Šedá',
|
||||||
'olive' => 'Olive',
|
'olive' => 'olivový',
|
||||||
'white' => 'White',
|
'white' => 'Bílý',
|
||||||
'yellow' => 'Yellow',
|
'yellow' => 'Žluť',
|
||||||
'maroon' => 'Maroon',
|
'maroon' => 'Hnědý',
|
||||||
'navy' => 'Navy',
|
'navy' => 'tmavě modrá',
|
||||||
'red' => 'Red',
|
'red' => 'Červený',
|
||||||
'blue' => 'Blue',
|
'blue' => 'Modrý',
|
||||||
'purple' => 'Purple',
|
'purple' => 'Fialová',
|
||||||
'teal' => 'Teal',
|
'teal' => 'modrozelená',
|
||||||
'fuchsia' => 'Fuchsia',
|
'fuchsia' => 'sytě růžová',
|
||||||
'aqua' => 'Aqua',
|
'aqua' => 'Tyrkysový',
|
||||||
);
|
);
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$conservation_report_type_set = array (
|
$conservation_report_type_set = array (
|
||||||
'damage' => 'Damage',
|
'damage' => 'Poškození',
|
||||||
'conservation' => 'Conservation',
|
'conservation' => 'Zachování',
|
||||||
'condition' => 'Condition',
|
'condition' => 'Stav',
|
||||||
'restoration' => 'Restoration',
|
'restoration' => 'Obnovení',
|
||||||
'other_report' => 'Other report',
|
'other_report' => 'Jiná zpráva',
|
||||||
'other' => 'Other report',
|
'other' => 'Jiná zpráva',
|
||||||
);
|
);
|
||||||
|
@@ -2,27 +2,27 @@
|
|||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$currencies_set = array (
|
$currencies_set = array (
|
||||||
'eu-EUR' => 'Euro',
|
'eu-EUR' => 'Euro',
|
||||||
'de-DM' => 'Deutsche Mark',
|
'de-DM' => 'Německá marka',
|
||||||
'de-RM' => 'Reichsmark (Germany)',
|
'de-RM' => 'Říšská marka (Německo)',
|
||||||
'es-Real' => 'Spanish Real',
|
'es-Real' => 'Španělský real',
|
||||||
'hu-Ft' => 'Forint',
|
'hu-Ft' => 'Forint',
|
||||||
'hu-Lari' => 'Lari',
|
'hu-Lari' => 'Lari',
|
||||||
'hu-Pengő' => 'Pengő',
|
'hu-Pengő' => 'Pengő',
|
||||||
'id-IDR' => 'Indonesian Rupiah',
|
'id-IDR' => 'Indonéská rupie',
|
||||||
'pl-Złoty' => 'Złoty',
|
'pl-Złoty' => 'Złoty',
|
||||||
'us-USD' => 'US Dollar',
|
'us-USD' => 'US Dollar',
|
||||||
'ddr-Mark' => 'Mark (GDR)',
|
'ddr-Mark' => 'Marka (NDR)',
|
||||||
'ddr-MDN' => 'MDN (GDR)',
|
'ddr-MDN' => 'MDN (NDR)',
|
||||||
'hu-Korona' => 'Austro-Hungarian krone',
|
'hu-Korona' => 'Rakousko-uherská koruna',
|
||||||
'fr-FF' => 'French Franc',
|
'fr-FF' => 'Francouzský frank',
|
||||||
'uk-GBP' => 'Pound Sterling',
|
'uk-GBP' => 'Libra šterlinků',
|
||||||
'by-BYN' => 'Belarusian ruble',
|
'by-BYN' => 'Běloruský rubl',
|
||||||
'ru-RUB' => 'Russian ruble',
|
'ru-RUB' => 'Ruský rubl',
|
||||||
'su-SUR' => 'Soviet ruble',
|
'su-SUR' => 'Sovětský rubl',
|
||||||
'ua-UAH' => 'Ukrainian hryvnia',
|
'ua-UAH' => 'Ukrajinská hřivna',
|
||||||
'ch-CHF' => 'Swiss franc',
|
'ch-CHF' => 'Švýcarský frank',
|
||||||
'ua-UAK' => 'Ukrainian karbovanets',
|
'ua-UAK' => 'Ukrajinské karbovanety',
|
||||||
);
|
);
|
||||||
$license_full_names = array (
|
$license_full_names = array (
|
||||||
'CC BY-NC-ND' => 'Attribution - Non Commercial - No Derivates',
|
'CC BY-NC-ND' => 'Uvedení zdroje - Nekomerční - Bez odvozenin',
|
||||||
);
|
);
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$custom_report_targets_set = array (
|
$custom_report_targets_set = array (
|
||||||
'object_single' => 'Single object',
|
'object_single' => 'Jeden objekt',
|
||||||
'object_list' => 'Multiple objects',
|
'object_list' => 'Více objektů',
|
||||||
'loan' => 'Loan',
|
'loan' => 'Půjčka',
|
||||||
'exhibition' => 'Exhibition',
|
'exhibition' => 'Výstava',
|
||||||
);
|
);
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$disposal_method_set = array (
|
$disposal_method_set = array (
|
||||||
'sold' => 'Sold',
|
'sold' => 'Prodáno',
|
||||||
'destroyed' => 'Destroyed',
|
'destroyed' => 'Zničeno',
|
||||||
'garbage' => 'Thrown away / garbage collection',
|
'garbage' => 'Vyhozený / svoz odpadu',
|
||||||
);
|
);
|
||||||
|
@@ -2,21 +2,21 @@
|
|||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$entry_types = array (
|
$entry_types = array (
|
||||||
0 => '',
|
0 => '',
|
||||||
1 => 'Donation',
|
1 => 'Dar',
|
||||||
2 => 'Purchase',
|
2 => 'Nákup',
|
||||||
3 => 'Excavation',
|
3 => 'Výkop',
|
||||||
4 => 'Emergency Rescue',
|
4 => 'Záchrana v nouzi',
|
||||||
5 => 'Inheritance',
|
5 => 'Dědictví',
|
||||||
6 => 'Endowment',
|
6 => 'Nadace',
|
||||||
7 => 'Dispossession',
|
7 => 'Vyvlastnění',
|
||||||
8 => 'Original condition',
|
8 => 'Původní stav',
|
||||||
9 => 'Loan',
|
9 => 'Půjčka',
|
||||||
10 => 'Exchange',
|
10 => 'Výměna',
|
||||||
11 => 'In-house production',
|
11 => 'Vlastní výroba',
|
||||||
12 => 'Material Strain (Törzsanyag)',
|
12 => 'Materiální deformace (Törzsanyag)',
|
||||||
14 => 'Vorlass',
|
14 => 'Předchůdce',
|
||||||
15 => 'Finding',
|
15 => 'Nález',
|
||||||
98 => 'To be checked',
|
98 => 'K zkontrolování',
|
||||||
99 => 'Other legal acquisition',
|
99 => 'Jiné právní nabytí',
|
||||||
16 => 'Permanent loan',
|
16 => 'Trvalá půjčka',
|
||||||
);
|
);
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$eventtype_groups = array (
|
$eventtype_groups = array (
|
||||||
'production' => 'Production',
|
'production' => 'Výroba',
|
||||||
'post_production' => 'Post-production',
|
'post_production' => 'Postprodukce',
|
||||||
'pre_production' => 'Pre-production',
|
'pre_production' => 'Předprodukce',
|
||||||
'no_production' => 'No production',
|
'no_production' => 'Žádná produkce',
|
||||||
);
|
);
|
||||||
|
@@ -1,29 +1,29 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$eventname = array (
|
$eventname = array (
|
||||||
1 => 'Created',
|
1 => 'Vytvořeno',
|
||||||
2 => 'Found',
|
2 => 'Nalezeno',
|
||||||
3 => 'Published',
|
3 => 'Publikováno',
|
||||||
4 => 'Template creation',
|
4 => 'Vytvoření šablony',
|
||||||
5 => 'Was depicted (Actor)',
|
5 => 'Byl zobrazen (herec)',
|
||||||
6 => 'Was used',
|
6 => 'Byl použit',
|
||||||
7 => 'Written',
|
7 => 'Písemné',
|
||||||
8 => 'Collected',
|
8 => 'Sebrané',
|
||||||
9 => 'Painted',
|
9 => 'Malované',
|
||||||
10 => 'Image taken',
|
10 => 'Pořízený snímek',
|
||||||
11 => 'Received',
|
11 => 'Přijato',
|
||||||
12 => 'Printing plate produced',
|
12 => 'Vyrobená tisková deska',
|
||||||
13 => 'Sent',
|
13 => 'Odesláno',
|
||||||
14 => 'Issued',
|
14 => 'Vydáno',
|
||||||
15 => 'Signed',
|
15 => 'Podepsaný',
|
||||||
16 => 'First description',
|
16 => 'První popis',
|
||||||
19 => 'Drawn',
|
19 => 'Nakresleno',
|
||||||
20 => 'Copied (by hand)',
|
20 => 'Zkopírováno (ručně)',
|
||||||
21 => 'Lived',
|
21 => 'Žil',
|
||||||
22 => '[Relationship to location]',
|
22 => '[Vztah k lokalitě]',
|
||||||
23 => '[Relation to person or institution]',
|
23 => '[Vztah k osobě nebo instituci]',
|
||||||
24 => '[Relation to time]',
|
24 => '[Vztah k času]',
|
||||||
25 => 'Commissioned',
|
25 => 'Uvedeno do provozu',
|
||||||
26 => 'Printed',
|
26 => 'Printed',
|
||||||
27 => 'Recorded',
|
27 => 'Recorded',
|
||||||
28 => 'Sung',
|
28 => 'Sung',
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
declare(strict_types = 1);
|
declare(strict_types = 1);
|
||||||
$event_persinst = array (
|
$event_persinst = array (
|
||||||
1 => 'created by',
|
1 => 'vytvořil(a)',
|
||||||
2 => 'found by',
|
2 => 'found by',
|
||||||
3 => 'published by',
|
3 => 'published by',
|
||||||
4 => 'templates created by',
|
4 => 'templates created by',
|
||||||
|
Reference in New Issue
Block a user