translation-value-sets/uk/units_length_set.php
2023-01-23 21:41:01 +00:00

11 lines
175 B
PHP

<?PHP
declare(strict_types = 1);
$units_length_set = array (
'm' => 'м',
'dm' => 'дм',
'cm' => 'см',
'mm' => 'мм',
'ft' => 'фут',
'in' => 'дюйм',
);