xref: /dokuwiki/lib/plugins/config/lang/pl/lang.php (revision 1ef8efdac923215cecaf114a3bedcb96fca97781)
1*1ef8efdaSGrzegorz Zur<?php
2*1ef8efdaSGrzegorz Zur/**
3*1ef8efdaSGrzegorz Zur * polish language file
4*1ef8efdaSGrzegorz Zur *
5*1ef8efdaSGrzegorz Zur * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6*1ef8efdaSGrzegorz Zur * @author     Grzegorz Żur <grzegorz.zur@gmail.com>
7*1ef8efdaSGrzegorz Zur */
8*1ef8efdaSGrzegorz Zur
9*1ef8efdaSGrzegorz Zur// for admin plugins, the menu prompt to be displayed in the admin menu
10*1ef8efdaSGrzegorz Zur// if set here, the plugin doesn't need to override the getMenuText() method
11*1ef8efdaSGrzegorz Zur$lang['menu']       = 'Menadżer konfiguracji';
12*1ef8efdaSGrzegorz Zur
13*1ef8efdaSGrzegorz Zur$lang['error']      = 'Ustawienia nie zostały zapisane z powodu błędnych wartości, przejrzyj je i ponów próbę zapisu.
14*1ef8efdaSGrzegorz Zur                       <br />Niepoprawne wartości są wyróżnione kolorem czerwonym.';
15*1ef8efdaSGrzegorz Zur$lang['updated']    = 'Ustawienia zostały zmienione.';
16*1ef8efdaSGrzegorz Zur$lang['nochoice']   = '(brak innych możliwości)';
17*1ef8efdaSGrzegorz Zur$lang['locked']     = 'Plik ustawień nie mógł zostać zmieniony, upewnij się, czy uprawnienia do plik są odpowiednie.';
18*1ef8efdaSGrzegorz Zur
19*1ef8efdaSGrzegorz Zur// settings prompts
20*1ef8efdaSGrzegorz Zur$lang['umask']       = 'maska uprawnień nowego pliku';     //set the umask for new files
21*1ef8efdaSGrzegorz Zur$lang['fmode']       = 'tryb tworzenia pliku';         //directory mask accordingly
22*1ef8efdaSGrzegorz Zur$lang['dmode']       = 'tryb tworzenia katalogu';    //directory mask accordingly
23*1ef8efdaSGrzegorz Zur$lang['lang']        = 'język';           //your language
24*1ef8efdaSGrzegorz Zur$lang['basedir']     = 'katalog główny';     //absolute dir from serveroot - blank for autodetection
25*1ef8efdaSGrzegorz Zur$lang['baseurl']     = 'główny URL';           //URL to server including protocol - blank for autodetect
26*1ef8efdaSGrzegorz Zur$lang['savedir']     = 'katalog z danymi';     //where to store all the files
27*1ef8efdaSGrzegorz Zur$lang['start']       = 'tytuł strony początkowej';    //name of start page
28*1ef8efdaSGrzegorz Zur$lang['title']       = 'tytuł wiki';         //what to show in the title
29*1ef8efdaSGrzegorz Zur$lang['template']    = 'wzorzec';           //see tpl directory
30*1ef8efdaSGrzegorz Zur$lang['fullpath']    = 'wyświetlanie pełnych ścieżek';      //show full path of the document or relative to datadir only? 0|1
31*1ef8efdaSGrzegorz Zur$lang['recent']      = 'ilość ostatnich zmiań';     //how many entries to show in recent
32*1ef8efdaSGrzegorz Zur$lang['breadcrumbs'] = 'długość śladu';        //how many recent visited pages to show
33*1ef8efdaSGrzegorz Zur$lang['typography']  = 'konwersja cudzysłowu, myślników itp.';         //convert quotes, dashes and stuff to typographic equivalents? 0|1
34*1ef8efdaSGrzegorz Zur$lang['htmlok']      = 'wstawki HTML';//may raw HTML be embedded? This may break layout and XHTML validity 0|1
35*1ef8efdaSGrzegorz Zur$lang['phpok']       = 'wstawki PHP'; //may PHP code be embedded? Never do this on the internet! 0|1
36*1ef8efdaSGrzegorz Zur$lang['dformat']     = 'format daty';        //dateformat accepted by PHPs date() function
37*1ef8efdaSGrzegorz Zur$lang['signature']   = 'podpis';          //signature see wiki:langig for details
38*1ef8efdaSGrzegorz Zur$lang['toptoclevel'] = 'minimalny poziom spisu treści';      //Level starting with and below to include in AutoTOC (max. 5)
39*1ef8efdaSGrzegorz Zur$lang['maxtoclevel'] = 'maksymalny poziom spisu treści';      //Up to which level include into AutoTOC (max. 5)
40*1ef8efdaSGrzegorz Zur$lang['maxseclevel'] = 'maksymalny poziom podziału na sekcje edycyjne';   //Up to which level create editable sections (max. 5)
41*1ef8efdaSGrzegorz Zur$lang['camelcase']   = 'bikapitalizacja (CamelCase)';  //Use CamelCase for linking? (I don't like it) 0|1
42*1ef8efdaSGrzegorz Zur$lang['deaccent']    = 'podmieniaj znaki spoza ASCII w nazwach';    //convert accented chars to unaccented ones in pagenames?
43*1ef8efdaSGrzegorz Zur$lang['useheading']  = 'pierwszy nagłówek jako tytuł';        //use the first heading in a page as its name
44*1ef8efdaSGrzegorz Zur$lang['refcheck']    = 'sprawdzanie odwołań przed usunięciem pliku';    //check for references before deleting media files
45*1ef8efdaSGrzegorz Zur$lang['refshow']     = 'ilość pokazywanych odwołań do pliku'; //how many references should be shown, 5 is a good value
46*1ef8efdaSGrzegorz Zur$lang['allowdebug']  = 'debugowanie (niebezpieczne!)';   //make debug possible, disable after install! 0|1
47*1ef8efdaSGrzegorz Zur
48*1ef8efdaSGrzegorz Zur$lang['usewordblock']= 'blokowanie spamu na podstawie słów';  //block spam based on words? 0|1
49*1ef8efdaSGrzegorz Zur$lang['indexdelay']  = 'okres indeksowania w sekundach'; //allow indexing after this time (seconds) default is 5 days
50*1ef8efdaSGrzegorz Zur$lang['relnofollow'] = 'nagłówek rel="nofollow" dla odnośników zewnętrznych';         //use rel="nofollow" for external links?
51*1ef8efdaSGrzegorz Zur$lang['mailguard']   = 'utrudnianie odczytu adresów e-mail';  //obfuscate email addresses against spam harvesters?
52*1ef8efdaSGrzegorz Zur
53*1ef8efdaSGrzegorz Zur/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
54*1ef8efdaSGrzegorz Zur$lang['useacl']      = 'kontrola uprawnień ACL';                //Use Access Control Lists to restrict access?
55*1ef8efdaSGrzegorz Zur$lang['openregister']= 'pozwolenie na rejestrację nowych użytkowników';          //Should users to be allowed to register?
56*1ef8efdaSGrzegorz Zur$lang['autopasswd']  = 'automatyczne generowanie haseł'; //autogenerate passwords and email them to user
57*1ef8efdaSGrzegorz Zur$lang['resendpasswd']= 'przypominanie hasła';  //allow resend password function?
58*1ef8efdaSGrzegorz Zur$lang['authtype']    = 'typ autoryzacji'; //which authentication backend should be used
59*1ef8efdaSGrzegorz Zur$lang['passcrypt']   = 'kodowanie hasła';    //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
60*1ef8efdaSGrzegorz Zur$lang['defaultgroup']= 'domyślna grupa';          //Default groups new Users are added to
61*1ef8efdaSGrzegorz Zur$lang['superuser']   = 'administrator';              //The admin can be user or @group
62*1ef8efdaSGrzegorz Zur$lang['profileconfirm'] = 'potwierdzanie zmiany profilu hasłem';     //Require current password to langirm changes to user profile
63*1ef8efdaSGrzegorz Zur
64*1ef8efdaSGrzegorz Zur/* Advanced Options */
65*1ef8efdaSGrzegorz Zur$lang['userewrite']  = 'proste adresy URL';             //this makes nice URLs: 0: off 1: .htaccess 2: internal
66*1ef8efdaSGrzegorz Zur$lang['useslash']    = 'ukośnik';                 //use slash instead of colon? only when rewrite is on
67*1ef8efdaSGrzegorz Zur$lang['sepchar']     = 'znak rozdzielający wyrazy nazw';  //word separator character in page names; may be a
68*1ef8efdaSGrzegorz Zur$lang['canonical']   = 'kanoniczne adresy URL';  //Should all URLs use full canonical http://... style?
69*1ef8efdaSGrzegorz Zur$lang['autoplural']  = 'automatyczne tworzenie liczby mnogiej';               //try (non)plural form of nonexisting files?
70*1ef8efdaSGrzegorz Zur$lang['usegzip']     = 'kompresja gzip dla starych wersji';      //gzip old revisions?
71*1ef8efdaSGrzegorz Zur$lang['cachetime']   = 'maksymalny wiek cache w sekundach';  //maximum age for cachefile in seconds (defaults to a day)
72*1ef8efdaSGrzegorz Zur$lang['purgeonadd']  = 'czyść cache po dodaniu strony';        //purge cache when a new file is added (needed for up to date links)
73*1ef8efdaSGrzegorz Zur$lang['locktime']    = 'maksymalny wiek blockad w sekundach';  //maximum age for lockfiles (defaults to 15 minutes)
74*1ef8efdaSGrzegorz Zur$lang['notify']      = 'wysyłanie powiadomień na adres e-mail';      //send change info to this email (leave blank for nobody)
75*1ef8efdaSGrzegorz Zur$lang['mailfrom']    = 'adres e-mail tego wiki';            //use this email when sending mails
76*1ef8efdaSGrzegorz Zur$lang['gdlib']       = 'wersja biblioteki GDLib';              //the GDlib version (0, 1 or 2) 2 tries to autodetect
77*1ef8efdaSGrzegorz Zur$lang['im_convert']  = 'ścieżka do programu imagemagick';            //path to ImageMagicks convert (will be used instead of GD)
78*1ef8efdaSGrzegorz Zur$lang['spellchecker']= 'sprawdzanie pisownii';         //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed)
79*1ef8efdaSGrzegorz Zur$lang['subscribers'] = 'subskrypcja'; //enable change notice subscription support
80*1ef8efdaSGrzegorz Zur$lang['compress']    = 'kompresja arkuszy CSS & i plików JavaScript';  //Strip whitespaces and comments from Styles and JavaScript? 1|0
81*1ef8efdaSGrzegorz Zur$lang['hidepages']   = 'ukrywanie stron pasujących do wzorca (regex)';      //Regexp for pages to be skipped from RSS, Search and Recent Changes
82*1ef8efdaSGrzegorz Zur$lang['send404']     = 'nagłówek "HTTP404/Page Not Found" dla nieistniejących stron';    //Send a HTTP 404 status for non existing pages?
83*1ef8efdaSGrzegorz Zur$lang['sitemap']     = 'okres generowania Google Sitemap w dniach';   //Create a google sitemap? How often? In days.
84*1ef8efdaSGrzegorz Zur
85*1ef8efdaSGrzegorz Zur$lang['rss_type']    = 'typ RSS';             //type of RSS feed to provide, by default:
86*1ef8efdaSGrzegorz Zur$lang['rss_linkto']  = 'odnośniki w RSS';              //what page RSS entries link to:
87*1ef8efdaSGrzegorz Zur
88*1ef8efdaSGrzegorz Zur//Set target to use when creating links - leave empty for same window
89*1ef8efdaSGrzegorz Zur$lang['target____wiki']      = 'okno docelowe odnośników wewnętrznych';
90*1ef8efdaSGrzegorz Zur$lang['target____interwiki'] = 'okno docelowe odnośników do innych wiki';
91*1ef8efdaSGrzegorz Zur$lang['target____extern']    = 'okno docelowe odnośników zewnętrznych';
92*1ef8efdaSGrzegorz Zur$lang['target____media']     = 'okno docelowe odnośników do plików';
93*1ef8efdaSGrzegorz Zur$lang['target____windows']   = 'okno docelowe odnośników zasobów Windows';
94*1ef8efdaSGrzegorz Zur
95*1ef8efdaSGrzegorz Zur//Proxy setup - if your Server needs a proxy to access the web set these
96*1ef8efdaSGrzegorz Zur$lang['proxy____host'] = 'proxy - serwer';
97*1ef8efdaSGrzegorz Zur$lang['proxy____port'] = 'proxy - port';
98*1ef8efdaSGrzegorz Zur$lang['proxy____user'] = 'proxy - nazwa użytkownika';
99*1ef8efdaSGrzegorz Zur$lang['proxy____pass'] = 'proxy - hasło';
100*1ef8efdaSGrzegorz Zur$lang['proxy____ssl']  = 'proxy - SSL';
101*1ef8efdaSGrzegorz Zur
102*1ef8efdaSGrzegorz Zur/* Safemode Hack */
103*1ef8efdaSGrzegorz Zur$lang['safemodehack'] = 'bezpieczny tryb (przez FTP)';  //read http://wiki.splitbrain.org/wiki:safemodehack !
104*1ef8efdaSGrzegorz Zur$lang['ftp____host'] = 'ftp - serwer';
105*1ef8efdaSGrzegorz Zur$lang['ftp____port'] = 'ftp - port';
106*1ef8efdaSGrzegorz Zur$lang['ftp____user'] = 'ftp - nazwa użytkownika';
107*1ef8efdaSGrzegorz Zur$lang['ftp____pass'] = 'ftp - hasło';
108*1ef8efdaSGrzegorz Zur$lang['ftp____root'] = 'ftp - katalog główny';
109*1ef8efdaSGrzegorz Zur
110*1ef8efdaSGrzegorz Zur/* userewrite options */
111*1ef8efdaSGrzegorz Zur$lang['userewrite_o_0'] = 'brak';
112*1ef8efdaSGrzegorz Zur$lang['userewrite_o_1'] = 'htaccess';
113*1ef8efdaSGrzegorz Zur$lang['userewrite_o_2'] = 'dokuwiki';
114*1ef8efdaSGrzegorz Zur
115*1ef8efdaSGrzegorz Zur/* gdlib options */
116*1ef8efdaSGrzegorz Zur$lang['gdlib_o_0'] = 'biblioteka GDLib niedostępna';
117*1ef8efdaSGrzegorz Zur$lang['gdlib_o_1'] = 'wersja 1.x';
118*1ef8efdaSGrzegorz Zur$lang['gdlib_o_2'] = 'automatyczne wykrywanie';
119*1ef8efdaSGrzegorz Zur
120*1ef8efdaSGrzegorz Zur/* rss_type options */
121*1ef8efdaSGrzegorz Zur$lang['rss_type_o_rss']  = 'RSS 0.91';
122*1ef8efdaSGrzegorz Zur$lang['rss_type_o_rss1'] = 'RSS 1.0';
123*1ef8efdaSGrzegorz Zur$lang['rss_type_o_rss2'] = 'RSS 2.0';
124*1ef8efdaSGrzegorz Zur$lang['rss_type_o_atom'] = 'Atom 0.3';
125*1ef8efdaSGrzegorz Zur
126*1ef8efdaSGrzegorz Zur/* rss_linkto options */
127*1ef8efdaSGrzegorz Zur$lang['rss_linkto_o_diff']    = 'różnice';
128*1ef8efdaSGrzegorz Zur$lang['rss_linkto_o_page']    = 'zmodyfikowana strona';
129*1ef8efdaSGrzegorz Zur$lang['rss_linkto_o_rev']     = 'lista zmian';
130*1ef8efdaSGrzegorz Zur$lang['rss_linkto_o_current'] = 'aktualna strona';
131*1ef8efdaSGrzegorz Zur
132