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' => 'Kiri',
|
|
|
|
'top_left' => 'Kiri atas',
|
|
|
|
'top' => 'Atas',
|
|
|
|
'top_right' => 'Kanan atas',
|
|
|
|
'right' => 'Kanan',
|
|
|
|
'bottom_right' => 'Bawah kanan',
|
|
|
|
'bottom' => 'Bawah',
|
|
|
|
'bottom_left' => 'Bawah kiri',
|
|
|
|
'center' => 'Pusat',
|
|
|
|
'rear_side' => 'Belakang',
|
|
|
|
'edge' => 'Pinggir',
|
|
|
|
'other' => 'Lain',
|
2024-05-11 03:55:36 +02:00
|
|
|
'inside' => 'Inside',
|
2023-01-23 22:41:01 +01:00
|
|
|
);
|