30 lines
991 B
PHP
30 lines
991 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$position_set = array (
|
|
'left' => 'Слева',
|
|
'top_left' => 'Вверху слева',
|
|
'top' => 'Наверху',
|
|
'top_right' => 'Вверху справа',
|
|
'right' => 'Справа',
|
|
'bottom_right' => 'Внизу справа',
|
|
'bottom' => 'Внизу',
|
|
'bottom_left' => 'Внизу слева',
|
|
'center' => 'По центру',
|
|
'rear_side' => 'Обратная сторона',
|
|
'edge' => 'Край',
|
|
'other' => 'Другое',
|
|
'inside' => 'Внутри',
|
|
'underside' => 'Underside',
|
|
'topside' => 'Topside',
|
|
'front_front' => 'Full front',
|
|
'rear_left' => 'Rear side: left',
|
|
'rear_top_left' => 'Rear side: top left',
|
|
'rear_top' => 'Rear side: top',
|
|
'rear_top_right' => 'Rear side: top right',
|
|
'rear_right' => 'Rear side: right',
|
|
'rear_bottom_right' => 'Rear side: bottom right',
|
|
'rear_bottom' => 'Rear side: bottom',
|
|
'rear_bottom_left' => 'Rear side: bottom left',
|
|
'rear_center' => 'Rear side: center',
|
|
);
|