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'] = 'Gebäude';
$space_types['depot'] = 'Depotraum';
$space_types['utility_room'] = 'Allzweckraum';
$space_types['exhibition_room'] = 'Ausstellungsraum';
$space_types['display_cabinet'] = 'Vitrine';
$space_types['shelf'] = 'Regal';
$space_types['box'] = 'Kiste';
$space_types['folder'] = 'Mappe';
$space_types['office'] = 'Büro';
$space_types['floor'] = 'Stockwerk';
$space_types['hallway'] = 'Flur';
declare(strict_types = 1);
array (
'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',
),
)