translation-value-sets/tl/position_set.php

18 lines
392 B
PHP
Raw Permalink Normal View History

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' => 'Left',
'top_left' => 'Top left',
'top' => 'Top',
'top_right' => 'Top right',
'right' => 'Right',
'bottom_right' => 'Bottom right',
'bottom' => 'Bottom',
'bottom_left' => 'Unten links',
'center' => 'Center',
'rear_side' => 'Rear side',
'edge' => 'Edge',
'other' => 'Other',
2024-05-11 03:55:36 +02:00
'inside' => 'Inside',
2023-01-23 22:41:01 +01:00
);