flatpress/fp-interface/lang/cs-cz/lang.contact.php
Fraenkiman c0e21ef0de Multilingual support for reporting to the site admin
fixes #205

fixes #207
Fixes the problem when the subject contains umlauts that the email cannot be delivered.
2023-02-18 23:35:37 +01:00

36 lines
994 B
PHP

<?php
$lang ['contact'] = array(
'head' => 'Kontaktujte nás',
'descr' => 'Vyplňte prosím formulář (níže) pro zaslání dotazu. Napište email, pokud chcete, aby Vám přišla odpověď.',
'fieldset1' => 'Údaje o uživateli',
'name' => 'Jméno (*)',
'email' => 'Email:',
'www' => 'Web:',
'cookie' => 'Pamatovat',
'fieldset2' => 'Vaše zpráva',
'comment' => 'Zpráva (*):',
'fieldset3' => 'Poslat',
'submit' => 'Poslat',
'reset' => 'Resetovat',
);
$lang ['contact'] ['notification'] = array(
'name' => 'Název:',
'email' => 'E-mail:',
'www' => 'Web:',
'content' => 'Zpráva:',
'subject' => 'Kontakt zaslaný prostřednictvím ',
);
$lang ['contact'] ['error'] = array(
'name' => 'Musíte vložit jméno',
'email' => 'Musíte vložit správný email',
'www' => 'Musíte vložit správné URL',
'content' => 'Musíte vložit zprávu',
);
$lang ['contact'] ['msgs'] = array(
1 => 'Zpráva byla úspěšně odeslána',
-1 => 'Zpráva nemohla být odeslána',
);
?>