1<?php
2/**
3 * Polish language file
4 *
5 * @license GNU General Public License 3 <http://www.gnu.org/licenses/>
6 * @author Aleksander Setlak <http://alek.magazynek.org>
7 */
8
9// settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// for admin plugins, the menu prompt to be displayed in the admin menu
14// if set here, the plugin doesn't need to override the getMenuText() method
15$lang['menu'] = 'Modern Contact Form';
16
17// custom language strings for the plugin
18$lang["field"] = 'Pole';
19$lang["value"] = 'Wartość';
20$lang["name"] = 'Twoje imię';
21$lang["email"] = 'Twój email';
22$lang["subject"] = 'Temat';
23$lang["content"] = 'Wiadomość';
24$lang["send"] = 'Wyślij';
25
26// FIXME - provide translation:
27$lang["from"] = 'przez ';
28$lang["datetime"] = ' o %Y-%m-%d %H:%M';
29$lang["sent by"] = 'sent by';
30$lang["via"] = 'via DokuWiki at ';
31$lang["viewonline"] = 'view the message online at ';
32
33// error messages
34$lang["error"]["unknown"] = 'E-mail nie został wysłany. Skontaktuj się z administratorem.';
35$lang["error"]["name"] = 'Wpisz nazwę. Powinna wynosić co najmniej 2 znaki.';
36$lang["error"]["email"] = 'Proszę podać adres e-mail. Musi być poprawny.';
37$lang["error"]["content"] = 'Proszę wpisać treść wiadomości. Powinna wynosić co najmniej 10 znaków.';
38$lang["error"]["captcha"] = 'Wiadomość nie została wysłana. Nie można zweryfikować jako człowieka.';
39$lang["error"]["valid_name"] = 'Nieprawidłowy wpis w nazwie.';
40$lang["error"]["valid_email"] = 'Nieprawidłowy wpis w adresie e-mail.';
41$lang["error"]["valid_subject"] = 'Nieprawidłowy wpis w temacie.';
42$lang["error"]["valid_to"] = 'Adres docelowy jest nieprawidłowy.';
43$lang["error"]["valid_content"] = 'Nieprawidłowy wpis w polu wiadomości.';
44$lang["success"] = 'E-mail został wysłany.';
45