17 lines
		
	
	
		
			411 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			411 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?PHP
 | |
| declare(strict_types = 1);
 | |
| $space_types = array (
 | |
|   'building' => 'edificio',
 | |
|   'depot' => 'deposito',
 | |
|   'utility_room' => 'stanza utile',
 | |
|   'exhibition_room' => 'spazio espositivo ',
 | |
|   'display_cabinet' => 'vetrina',
 | |
|   'shelf' => 'scaffale',
 | |
|   'box' => 'scatola',
 | |
|   'folder' => 'cartella',
 | |
|   'office' => 'ufficio',
 | |
|   'floor' => 'piano',
 | |
|   'hallway' => 'corridoio',
 | |
|   'outdoor_area' => 'Outdoor area',
 | |
| );
 |