17 lines
		
	
	
		
			429 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			429 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?PHP
 | |
| declare(strict_types = 1);
 | |
| $position_set = array (
 | |
|   'left' => 'sinistra',
 | |
|   'top_left' => 'in alto a sinistra',
 | |
|   'top' => 'sopra',
 | |
|   'top_right' => 'in alto a destra',
 | |
|   'right' => 'destra',
 | |
|   'bottom_right' => 'in basso a destra',
 | |
|   'bottom' => 'sotto / in basso',
 | |
|   'bottom_left' => 'in basso a sinistra',
 | |
|   'center' => 'centrale',
 | |
|   'rear_side' => ' parte posteriore ',
 | |
|   'edge' => 'bordo',
 | |
|   'other' => 'altra/o',
 | |
| );
 |