2020-08-06 16:08:45 +02:00
|
|
|
<?PHP
|
2023-01-23 22:37:48 +01:00
|
|
|
declare(strict_types = 1);
|
2023-01-23 22:41:01 +01:00
|
|
|
$position_set = array (
|
|
|
|
'left' => 'Слева',
|
|
|
|
'top_left' => 'Вверху слева',
|
|
|
|
'top' => 'Наверху',
|
|
|
|
'top_right' => 'Вверху справа',
|
|
|
|
'right' => 'Справа',
|
|
|
|
'bottom_right' => 'Внизу справа',
|
|
|
|
'bottom' => 'Внизу',
|
2024-12-09 23:18:30 +01:00
|
|
|
'bottom_left' => 'Bottom left',
|
2023-01-23 22:41:01 +01:00
|
|
|
'center' => 'По центру',
|
|
|
|
'rear_side' => 'Обратная сторона',
|
|
|
|
'edge' => 'Край',
|
|
|
|
'other' => 'Другое',
|
2024-06-02 00:58:11 +02:00
|
|
|
'inside' => 'Внутри',
|
2024-12-09 14:57:17 +01:00
|
|
|
'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',
|
2023-01-23 22:41:01 +01:00
|
|
|
);
|