1 | <?php |
---|
2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
3 | |
---|
4 | $lang['cf_plugin_name'] = 'Formularz kontaktu'; |
---|
5 | $lang['contact_form_debug'] = 'Wyświetl informacje śledzące proces'; |
---|
6 | |
---|
7 | // ================================================================== |
---|
8 | // Default values if not configured |
---|
9 | $lang['contact_form_title'] = 'Formularz kontaktu'; |
---|
10 | $lang['contact_form'] = 'Kontakt'; |
---|
11 | $lang['contact_form_link'] = 'Kontakt do webmastera'; |
---|
12 | |
---|
13 | // ================================================================== |
---|
14 | // Redirect page |
---|
15 | $lang['contact_redirect_title'] = 'Wyślij status wiadomości'; |
---|
16 | |
---|
17 | // ================================================================== |
---|
18 | // Menubar block |
---|
19 | $lang['cf_from_name'] = 'Twoje nazwisko'; |
---|
20 | $lang['cf_from_mail'] = 'Twój e-mail'; |
---|
21 | $lang['cf_subject'] = 'Temat'; |
---|
22 | $lang['cf_message'] = 'Wiadomość'; |
---|
23 | $lang['cf_submit'] = 'Wyślij'; |
---|
24 | |
---|
25 | // ================================================================== |
---|
26 | // Messages |
---|
27 | $lang['cf_from_name_error'] = 'Proszę podać nazwisko'; |
---|
28 | $lang['cf_mail_format_error'] = 'mail musi być w postaci xxx@yyy.eee (przykład : jack@altern.org)'; |
---|
29 | $lang['cf_subject_error'] = 'Proszę podać temat'; |
---|
30 | $lang['cf_message_error'] = 'Proszę wpisać wiadomość'; |
---|
31 | $lang['cf_error_sending_mail'] = 'Błąd podczas wysyłania wiadomości'; |
---|
32 | $lang['cf_sending_mail_successful'] = 'Wiadomość wysłana poprawnie'; |
---|
33 | $lang['cf_form_error'] = 'Nieprawidłowe dane'; |
---|
34 | $lang['cf_no_unlink'] = 'Funkcja \'unlink\' niedostępna...'; |
---|
35 | $lang['cf_unlink_errors'] = 'Wystąpił błąd podczas kasowania pliku'; |
---|
36 | $lang['cf_config_saved'] = 'Konfiguracja zapisana poprawnie'; |
---|
37 | $lang['cf_config_saved_with_errors'] = 'Konfiguracja zapisana z błędami'; |
---|
38 | $lang['cf_length_not_integer'] = 'Rozmiar musi być liczbą'; |
---|
39 | $lang['cf_delay_not_integer'] = 'Opóźnienie musi być liczbą'; |
---|
40 | $lang['cf_link_error'] = 'Zmienna nie może zawierać spacji'; |
---|
41 | $lang['cf_hide'] = 'Ukryj'; |
---|
42 | |
---|
43 | // ================================================================== |
---|
44 | // Admin page |
---|
45 | $lang['cf_validate'] = 'Potwierdź'; |
---|
46 | // Configuration tab |
---|
47 | $lang['cf_tab_config'] = 'Konfiguracja'; |
---|
48 | $lang['cf_config'] = 'Konfiguracja'; |
---|
49 | $lang['cf_config_desc'] = 'Konfiguracja podstawowa wtyczki'; |
---|
50 | $lang['cf_label_config'] = 'Konfiguracja ogólna'; |
---|
51 | $lang['cf_label_mail'] = 'Konfiguracja e-mail'; |
---|
52 | $lang['cf_menu_link'] = 'Dodaj link do menu'; |
---|
53 | $lang['cf_guest_allowed'] = 'Zezwalaj gościom na wysyłanie formularza'; |
---|
54 | $lang['cf_mail_prefix'] = 'Przedrostek tematu wysłanej wiadomości e-mail'; |
---|
55 | $lang['cf_separator'] = 'Znak separatora w formacie tekstowym wiadomości e-mail'; |
---|
56 | $lang['cf_separator_length'] = 'Wielkość paska menu'; |
---|
57 | $lang['cf_mandatory_name'] = 'Nazwisko jest wymagane'; |
---|
58 | $lang['cf_mandatory_mail'] = 'Adres e-mail jest wymagany'; |
---|
59 | $lang['cf_redirect_delay'] = 'Wstrzymaj opóźnienie przekierowania'; |
---|
60 | // Emails tab |
---|
61 | $lang['cf_tab_emails'] = 'Adresy'; |
---|
62 | $lang['cf_emails'] = 'Adresy'; |
---|
63 | $lang['cf_emails_desc'] = 'Zarządzanie adresami e-mail do kontaktu'; |
---|
64 | $lang['cf_active'] = 'Aktywny e-mail'; |
---|
65 | $lang['cf_no_mail'] = 'Brak dostępnych adresów e-mail'; |
---|
66 | $lang['cf_refresh'] = 'Ponowne tworzenie listy adresów e-mail'; |
---|
67 | // translated by emcek |
---|
68 | $lang['title_send_mail'] = 'Komentarz na temat strony'; |
---|
69 | $lang['Text after the contact form'] = 'Tekst pod formularzem'; |
---|
70 | $lang['Text before the contact form'] = 'Tekst przed formularzem'; |
---|
71 | $lang['cf_tab_persoform'] = 'Dodaj własny tekst'; |
---|
72 | ?> |
---|