source: extensions/ContactForm/language/sk_SK/plugin.lang.php @ 7197

Last change on this file since 7197 was 7197, checked in by plg, 14 years ago

feature 1897 added: the core "Contact Webmaster" link in footer is replaced by
a link to the ContactForm page. It works with a smarty prefilter, so it should
work with all themes.

The configurable template variable name was removed. It is hard coded as
$ContactFormLink. I've seen no example using another variable name. It was
hard to understand for users in the administration panel and not very useful.
The corresponding language keys were removed from all languages.

bug 1916 fixed: apply the same rule for link display in footer as in menu. If
the administrator has allowed the ContactForm page for guests, let's display
it in the menu + footer.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1<?php
2/* $Id: plugin.lang.php 7197 2010-10-15 14:20:39Z plg $ */
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4global $lang;
5
6$lang['cf_plugin_name'] = 'Kontaktný formulár';
7$lang['contact_form_debug'] = 'Zobrazenie opravených informácií';
8
9// ==================================================================
10// Default values if not configured
11$lang['contact_form_title'] = 'Kontaktný formulár';
12$lang['contact_form'] = 'Kontakt';
13$lang['contact_form_link'] = 'Kontaktovanie webmastera';
14
15// ==================================================================
16// Redirect page
17$lang['contact_redirect_title'] = 'Poslať stav správy';
18
19// ==================================================================
20// Menubar block
21$lang['cf_from_name'] = 'Vaše meno';
22$lang['cf_from_mail'] = 'Váš e-mail';
23$lang['cf_subject'] = 'Predmet';
24$lang['cf_message'] = 'Správa';
25$lang['cf_submit'] = 'Poslať';
26$lang['title_send_mail'] = 'Komentár na stránku';
27
28// ==================================================================
29// Messages
30$lang['cf_from_name_error'] = 'Prosím zadajte meno';
31$lang['cf_mail_format_error'] = $lang['reg_err_mail_address'];
32$lang['cf_subject_error'] = 'Prosím zadajte predmet';
33$lang['cf_message_error'] = 'Prosím zadajte správu';
34$lang['cf_error_sending_mail'] = 'Chyba počas posielania e-mailu';
35$lang['cf_sending_mail_successful'] = 'E-mail bol úspešne odoslaný';
36$lang['cf_form_error'] = 'Neplatné údaje';
37$lang['cf_inconsistent_version'] = '%s: Nezhodné čísla verzií';
38$lang['cf_no_unlink'] = 'Funkcia \'unlink\' nie je prístupná...';
39$lang['cf_unlink_errors'] = 'Vyskytla sa chyba v priebehu mazania súboru';
40$lang['cf_config_saved'] = 'Konfigurácia bola úspešne uložená';
41$lang['cf_config_saved_with_errors'] = 'Konfigurácia uložená s chybami';
42$lang['cf_length_not_integer'] = 'Veľkosť musí byť celé číslo';
43$lang['cf_delay_not_integer'] = 'Odklad musí byť celé číslo';
44$lang['cf_link_error'] = 'Parameter nesmie obsahovať medzeru';
45$lang['cf_hide'] = 'Schovať';
46
47// ==================================================================
48// Admin page
49$lang['cf_validate'] = 'Doručiť';
50// Configuration tab
51$lang['cf_tab_config'] = 'Konfigurácia';
52$lang['cf_config'] = 'Konfigurácia';
53$lang['cf_config_desc'] = 'Konfigurácia pluginu';
54$lang['cf_label_config'] = 'Hlavná konfigurácia';
55$lang['cf_label_mail'] = 'Konfigurácia e-mailu';
56$lang['cf_menu_link'] = 'Pridať link do menu';
57$lang['cf_guest_allowed'] = 'Povoliť hosťom vidieť formulár';
58$lang['cf_mail_prefix'] = 'Predpona predmetu poslaného e-mailu';
59$lang['cf_separator'] = 'Znak(y) použité na definovanie oddelenia stĺpca v maili v textovom formáte';
60$lang['cf_separator_length'] = 'Veľkosť stĺpca';
61$lang['cf_mandatory_name'] = 'Meno je povinné';
62$lang['cf_mandatory_mail'] = 'E-mailová adresa je povinná';
63$lang['cf_redirect_delay'] = 'Dĺžka pauzy pri presmerovaní';
64// Emails tab
65$lang['cf_tab_emails'] = 'E-maily';
66$lang['cf_emails'] = 'E-maily';
67$lang['cf_emails_desc'] = 'Cieľový manažment e-mailov';
68$lang['cf_active'] = 'Actívny e-mail';
69$lang['cf_no_mail'] = 'E-mailová adresa nie je dostupná';
70$lang['cf_refresh'] = 'Obnoviť zoznam e-mailých adries';
71// Language tab
72$lang['cf_tab_language'] = 'Lokalizácia';
73$lang['cf_language'] = 'Lokalizácia';
74$lang['cf_language_desc'] = 'Preklad správ';
75$lang['cf_select_item'] = 'Označenie položiek na preklad';
76$lang['cf_default_lang'] = 'Predvolené';
77$lang['contact_form_title_label'] = 'Názov použitý v menu';
78$lang['contact_form_label'] = 'Názov použitý v menu';
79$lang['contact_form_link_label'] = 'Text použitý na kontaktný link v päte stránky';
80// History tab
81$lang['cf_tab_history'] = 'História';
82$lang['cf_history'] = 'History';
83$lang['cf_history_desc'] = 'Zmeny histórie';
84$lang['cf_history_date'] = 'Dátum';
85$lang['cf_history_version'] = 'Verzia';
86$lang['cf_history_log'] = 'Zmeny';
87$lang['cf_file_not_found'] = 'Súbor nenájdený';
88$lang['cf_file_empty'] = 'Súbor je prázdny';
89$lang['cf_format_date'] = '%D %M, %Y';
90?>
Note: See TracBrowser for help on using the repository browser.