Approval.

This commit is contained in:
2023-01-23 21:37:48 +00:00
committed by md translation bot
parent 08aa8753aa
commit 6922772f3e
860 changed files with 11842 additions and 6622 deletions

View File

@ -1,12 +1,18 @@
<?PHP
$space_types['building'] = 'Building';
$space_types['depot'] = 'Depot room';
$space_types['utility_room'] = 'Utility room';
$space_types['exhibition_room'] = 'Exhibition room';
$space_types['display_cabinet'] = 'Display cabinet';
$space_types['shelf'] = 'Shelf';
$space_types['box'] = 'Box';
$space_types['folder'] = 'Folder';
$space_types['office'] = 'Office';
$space_types['floor'] = 'Floor';
$space_types['hallway'] = 'Hallway';
declare(strict_types = 1);
array (
'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',
),
)