source: extensions/ContactForm/language/pl_PL/plugin.lang.php @ 7626

Last change on this file since 7626 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.

File size: 4.0 KB
Line 
1<?php
2/* $Id: plugin.lang.php 3864 2009-09-17 22:55:20Z ddtddt $ */
3// translated by emcek
4if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
5global $lang;
6
7$lang['cf_plugin_name'] = 'Formularz kontaktu';
8$lang['contact_form_debug'] = 'Wyświetl informacje śledzące proces';
9
10// ==================================================================
11// Default values if not configured
12$lang['contact_form_title'] = 'Formularz kontaktu';
13$lang['contact_form'] = 'Kontakt';
14$lang['contact_form_link'] = 'Kontakt do webmastera';
15
16// ==================================================================
17// Redirect page
18$lang['contact_redirect_title'] = 'Wyślij status wiadomości';
19
20// ==================================================================
21// Menubar block
22$lang['cf_from_name'] = 'Twoje nazwisko';
23$lang['cf_from_mail'] = 'Twój e-mail';
24$lang['cf_subject'] = 'Temat';
25$lang['cf_message'] = 'Wiadomość';
26$lang['cf_submit'] = 'Wyślij';
27
28// ==================================================================
29// Messages
30$lang['cf_from_name_error'] = 'Proszę podać nazwisko';
31$lang['cf_mail_format_error'] = $lang['reg_err_mail_address'];
32$lang['cf_subject_error'] = 'Proszę podać temat';
33$lang['cf_message_error'] = 'Proszę wpisać wiadomość';
34$lang['cf_error_sending_mail'] = 'Błąd podczas wysyłania wiadomości';
35$lang['cf_sending_mail_successful'] = 'Wiadomość wysłana poprawnie';
36$lang['cf_form_error'] = 'Nieprawidłowe dane';
37$lang['cf_inconsistent_version'] = '%s: niesłaściwy numer wersji';
38$lang['cf_no_unlink'] = 'Funkcja \'unlink\' niedostępna...';
39$lang['cf_unlink_errors'] = 'Wystąpił błąd podczas kasowania pliku';
40$lang['cf_config_saved'] = 'Konfiguracja zapisana poprawnie';
41$lang['cf_config_saved_with_errors'] = 'Konfiguracja zapisana z błędami';
42$lang['cf_length_not_integer'] = 'Rozmiar musi być liczbą';
43$lang['cf_delay_not_integer'] = 'Opóźnienie musi być liczbą';
44$lang['cf_link_error'] = 'Zmienna nie może zawierać spacji';
45$lang['cf_hide'] = 'Ukryj';
46
47// ==================================================================
48// Admin page
49$lang['cf_validate'] = 'Potwierdź';
50// Configuration tab
51$lang['cf_tab_config'] = 'Konfiguracja';
52$lang['cf_config'] = 'Konfiguracja';
53$lang['cf_config_desc'] = 'Konfiguracja podstawowa wtyczki';
54$lang['cf_label_config'] = 'Konfiguracja ogólna';
55$lang['cf_label_mail'] = 'Konfiguracja e-mail';
56$lang['cf_menu_link'] = 'Dodaj link do menu';
57$lang['cf_guest_allowed'] = 'Zezwalaj gościom na wysyłanie formularza';
58$lang['cf_mail_prefix'] = 'Przedrostek tematu wysłanej wiadomości e-mail';
59$lang['cf_separator'] = 'Znak separatora w formacie tekstowym wiadomości e-mail';
60$lang['cf_separator_length'] = 'Wielkość menubar';
61$lang['cf_mandatory_name'] = 'Nazwisko jest wymagane';
62$lang['cf_mandatory_mail'] = 'Adres e-mail address is wymagany';
63$lang['cf_redirect_delay'] = 'Wstrzymaj opóźnienie przekierowania';
64// Emails tab
65$lang['cf_tab_emails'] = 'Adresy';
66$lang['cf_emails'] = 'Adresy';
67$lang['cf_emails_desc'] = 'Zarządzanie adresami e-mail do kontaktu';
68$lang['cf_active'] = 'Aktywny e-mail';
69$lang['cf_no_mail'] = 'Brak dostępnych adresów e-mail';
70$lang['cf_refresh'] = 'Ponowne tworzenie listy adresów e-mail';
71// Language tab
72$lang['cf_tab_language'] = 'Lokalizacja';
73$lang['cf_language'] = 'Lokalizacja';
74$lang['cf_language_desc'] = 'Tłumaczenie wiadomości';
75$lang['cf_select_item'] = 'Wybierz pole do przetłumaczenia';
76$lang['cf_default_lang'] = 'Domyślny';
77$lang['contact_form_title_label'] = 'Tytuł używany in menubar';
78$lang['contact_form_label'] = 'Nazwa używana w menubar';
79$lang['contact_form_link_label'] = 'Tekst używany w stopce strony jako link kontaktu';
80// History tab
81$lang['cf_tab_history'] = 'Historia';
82$lang['cf_history'] = 'Historia';
83$lang['cf_history_desc'] = 'Histora zmian';
84$lang['cf_history_date'] = 'Data';
85$lang['cf_history_version'] = 'Wersja';
86$lang['cf_history_log'] = 'Zmiany';
87$lang['cf_file_not_found'] = 'Pliku nie znaleziono';
88$lang['cf_file_empty'] = 'Plik jest pusty';
89$lang['cf_format_date'] = '%D %M %Y';
90?>
Note: See TracBrowser for help on using the repository browser.