16 lines
363 B
PHP
16 lines
363 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$space_types = array (
|
|
'building' => 'Gebäude',
|
|
'depot' => 'Depotraum',
|
|
'utility_room' => 'Allzweckraum',
|
|
'exhibition_room' => 'Ausstellungsraum',
|
|
'display_cabinet' => 'Vitrine',
|
|
'shelf' => 'Regal',
|
|
'box' => 'Kiste',
|
|
'folder' => 'Mappe',
|
|
'office' => 'Büro',
|
|
'floor' => 'Stockwerk',
|
|
'hallway' => 'Flur',
|
|
);
|