11 lines
216 B
PHP
11 lines
216 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$phone_types = array (
|
|
'work' => 'Práce',
|
|
'home' => 'Domov',
|
|
'mobile' => 'mobilní',
|
|
'work mobile' => 'Pracovní mobil',
|
|
'fax' => 'fax',
|
|
'fax work' => 'Fax (práce)',
|
|
);
|