16 lines
361 B
PHP
16 lines
361 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$space_types = array (
|
|
'building' => 'Épület',
|
|
'depot' => 'Raktárhelyiség',
|
|
'utility_room' => 'Szoba',
|
|
'exhibition_room' => 'Kiállítótér',
|
|
'display_cabinet' => 'Vitrin',
|
|
'shelf' => 'Polc',
|
|
'box' => 'Doboz',
|
|
'folder' => 'Mappa',
|
|
'office' => 'Iroda',
|
|
'floor' => 'Emelet',
|
|
'hallway' => 'Folyosó',
|
|
);
|