
- For future new language packs, a clean basis has been created with the existing language packs. - Removed unnecessary line breaks, spaces and tabs to avoid unexpected views in the responsive design. - Updated links to external sources. - Missing language files created in plugins. - Gallerycaptions plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Mediamanager plugin: el-gr, fr-fr - PhotoSwipe plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Readmore plugin: el-gr, fr-fr - Seometataginfo plugin: pt-br
36 lines
993 B
PHP
36 lines
993 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',
|
|
);
|
|
?>
|