d52e38bfe048e273cd995ecd4face9d5a6b02ce5
[timetracker.git] / WEB-INF / resources / pl.lang.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
31
32 $i18n_language = 'Polski';
33 $i18n_months = array('Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień');
34 $i18n_weekdays = array('Niedziela', 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek', 'Sobota');
35 $i18n_weekdays_short = array('Nd', 'Pon', 'Wt', 'Śr', 'Czw', 'Pt', 'Sob');
36 // format mm/dd
37 $i18n_holidays = array('01/01', '01/05', '04/05', '04/06', '05/01', '05/03', '05/24', '06/04', '08/15', '11/01', '11/11', '12/25', '12/26');
38
39 $i18n_key_words = array(
40
41 // Menus - short selection strings that are displayed on the top of application web pages.
42 // Example: https://timetracker.anuko.com (black menu on top).
43 'menu.login' => 'Zaloguj',
44 'menu.logout' => 'Wyloguj',
45 'menu.forum' => 'Forum',
46 'menu.help' => 'Pomoc',
47 'menu.create_team' => 'Stwórz zespół',
48 'menu.profile' => 'Profil',
49 'menu.time' => 'Czas',
50 'menu.expenses' => 'Wydatki',
51 'menu.reports' => 'Raporty',
52 'menu.charts' => 'Statystyki', // TODO: is this correct translation for Charts?
53 'menu.projects' => 'Projekty',
54 'menu.tasks' => 'Zadania',
55 'menu.users' => 'Użytkownicy',
56 'menu.teams' => 'Zespoły',
57 'menu.export' => 'Eksport',
58 'menu.clients' => 'Klienci',
59 'menu.options' => 'Opcje',
60
61 // Footer - strings on the bottom of most pages.
62 // TODO: translate the following.
63 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
64 'footer.credits' => 'Twórcy',
65 'footer.license' => 'Licencja',
66 // TODO: translate the following.
67 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
68                                      // This is a link to a webpage that describes how to contribute to the project.
69
70 // Error messages.
71 'error.access_denied' => 'Odmowa dostępu.',
72 'error.sys' => 'Błąd systemu.',
73 'error.db' => 'Błąd bazy danych.',
74 'error.field' => 'Niepoprawne dane: "{0}".',
75 'error.empty' => 'Pole "{0}" jest puste.',
76 'error.not_equal' => 'Wartość z pola "{0}" jest inna niż wartość z pola "{1}".',
77 'error.interval' => 'Wartość z pola "{0}" musi być większe niż wartość z pola "{1}".',
78 'error.project' => 'Wybierz projekt.',
79 'error.task' => 'Wybierz zadanie.',
80 'error.client' => 'Wybierz klienta.',
81 'error.report' => 'Wybierz raport.',
82 'error.auth' => 'Błędny login lub hasło.',
83 'error.user_exists' => 'Użytkownik o takiej nazwie już istnieje.',
84 'error.project_exists' => 'Projekt o takiej nazwie już istnieje.',
85 'error.task_exists' => 'Zadanie o takiej nazwie już istnieje.',
86 'error.client_exists' => 'Klient o takiej nazwie już istnieje.',
87 'error.invoice_exists' => 'Faktura o tym numerze już istnieje.',
88 'error.no_invoiceable_items' => 'Brak przedmiotów do faktury.',
89 'error.no_login' => 'Użytkownik o takiej nazwie nie istnieje.',
90 'error.no_teams' => 'Twoja baza danych jest pusta. Zaloguj się jako administrator i stwórz nowy zespół.',
91 'error.upload' => 'Błąd podczas wysyłania pliku.',
92 // TODO: translate the following.
93 // 'error.range_locked' => 'Date range is locked.',
94 'error.mail_send' => 'Błąd podczas wysyłania wiadomości e-mail.',
95 'error.no_email' => 'Żaden adres e-mail nie jest skojarzony z tym loginem.',
96 'error.uncompleted_exists' => 'Istnieje niedokończony wpis. Zamknij go lub usuń.',
97 'error.goto_uncompleted' => 'Przejdź do niedokończonego wpisu.',
98 'error.overlap' => 'Okres czasowy nakłada się z istniejącymi wpisami.',
99 'error.future_date' => 'Data jest w przyszłości.',
100
101 // Labels for buttons
102 'button.login' => 'Login',
103 'button.now' => 'Teraz',
104 'button.save' => 'Zapisz',
105 'button.copy' => 'Kopiuj',
106 'button.cancel' => 'Anuluj',
107 'button.submit' => 'Zatwierdź',
108 'button.add_user' => 'Dodaj użytkownika',
109 'button.add_project' => 'Dodaj projekt',
110 'button.add_task' => 'Dodaj zadanie',
111 'button.add_client' => 'Dodaj klienta',
112 'button.add_invoice' => 'Dodaj fakturę',
113 'button.add_option' => 'Dodaj opcję',
114 'button.add' => 'Dodaj',
115 'button.generate' => 'Wygeneruj',
116 'button.reset_password' => 'Resetuj hasło',
117 'button.send' => 'Wyślij',
118 'button.send_by_email' => 'Wyślij e-mail',
119 'button.create_team' => 'Stwórz zespół',
120 'button.export' => 'Eksportuj zespół',
121 'button.import' => 'Importuj zespół',
122 'button.close' => 'Zamknij',
123 'button.stop' => 'Zatrzymaj',
124
125 // Labels for controls on forms. Labels in this section are used on multiple forms.
126 'label.team_name' => 'Nazwa zespołu',
127 'label.address' => 'Adres',
128 'label.currency' => 'Waluta',
129 'label.manager_name' => 'Nazwa managera',
130 'label.manager_login' => 'Login managera',
131 'label.person_name' => 'Nazwa',
132 'label.thing_name' => 'Nazwa',
133 'label.login' => 'Login',
134 'label.password' => 'Hasło',
135 'label.confirm_password' => 'Potwierdź hasło',
136 'label.email' => 'E-mail',
137 // TODO: translate the following.
138 // 'label.cc' => 'Cc',
139 // 'label.bcc' => 'Bcc',
140 // 'label.subject' => 'Subject',
141 'label.date' => 'Data',
142 'label.start_date' => 'Data początkowa',
143 'label.end_date' => 'Data końcowa',
144 'label.user' => 'Użytkownik',
145 'label.users' => 'Użytkownicy',
146 'label.client' => 'Klient',
147 'label.clients' => 'Klienci',
148 'label.option' => 'Opcja',
149 'label.invoice' => 'Faktura',
150 'label.project' => 'Projekt',
151 'label.projects' => 'Projekty',
152 'label.task' => 'Zadanie',
153 'label.tasks' => 'Zadania',
154 'label.description' => 'Opis',
155 'label.start' => 'Początek',
156 'label.finish' => 'Koniec',
157 'label.duration' => 'Czas trwania',
158 'label.note' => 'Uwagi',
159 'label.item' => 'Pozycja',
160 'label.cost' => 'Koszt',
161 'label.day_total' => 'Dziś',
162 'label.week_total' => 'W tym tygodniu',
163 // TODO: translate the following.
164 // 'label.month_total' => 'Month total',
165 'label.today' => 'Dziś',
166 'label.total_hours' => 'Całkowita liczba godzin',
167 'label.total_cost' => 'Koszt całkowity',
168 'label.view' => 'Widok',
169 'label.edit' => 'Edycja',
170 'label.delete' => 'Usuń',
171 'label.configure' => 'Konfiguruj',
172 'label.select_all' => 'Zaznacz wszystko',
173 'label.select_none' => 'Odznacz wszystko',
174 'label.id' => 'ID',
175 'label.language' => 'Język',
176 'label.decimal_mark' => 'Znak dziesiętny',
177 'label.date_format' => 'Format daty',
178 'label.time_format' => 'Format godziny',
179 'label.week_start' => 'Początek tygodnia',
180 'label.comment' => 'Komentarz',
181 'label.status' => 'Status',
182 'label.tax' => 'Podatek',
183 'label.subtotal' => 'Suma netto',
184 'label.total' => 'Suma',
185 'label.client_name' => 'Nazwa klienta',
186 'label.client_address' => 'Adres klienta',
187 'label.or' => 'lub',
188 'label.error' => 'Błąd',
189 'label.ldap_hint' => 'Wpisz swoją <b> nazwę użytkownika Windows<b> i <b>hasło<b> w polach poniżej.',
190 'label.required_fields' => '* - pola wymagane',
191 'label.on_behalf' => 'w imieniu',
192 'label.role_manager' => '(Manager)',
193 'label.role_comanager' => '(Co-manager)',
194 'label.role_admin' => '(Administrator)',
195 // TODO: translate the following.
196 // 'label.page' => 'Page',
197 // 'label.condition' => 'Condition',
198 // Labels for plugins (extensions to Time Tracker that provide additional features).
199 'label.custom_fields' => 'Niestandardowe pola',
200 // Translate the following.
201 // 'label.monthly_quotas' => 'Monthly quotas',
202 'label.type' => 'Rodzaj',
203 'label.type_dropdown' => 'lista rozwijana',
204 'label.type_text' => 'tekst',
205 'label.required' => 'Wymagane',
206 'label.fav_report' => 'Ulubiony raport',
207 'label.cron_schedule' => 'Harmonogram crona',
208 'label.what_is_it' => 'Co to jest?',
209
210 // Form titles.
211 'title.login' => 'Logowanie',
212 'title.teams' => 'Zespoły',
213 'title.create_team' => 'Zakładanie zespołu',
214 'title.edit_team' => 'Edytowanie zespołu',
215 'title.delete_team' => 'Usuwanie zespołu',
216 'title.reset_password' => 'Resetowanie hasła',
217 'title.change_password' => 'Zmiana hasła',
218 'title.time' => 'Wybrana data',
219 'title.edit_time_record' => 'Edytowanie wpisu',
220 'title.delete_time_record' => 'Usuwanie wpisu',
221 'title.expenses' => 'Wydatki',
222 'title.edit_expense' => 'Edytowanie wpisu',
223 'title.delete_expense' => 'Usuwanie wpisu',
224 'title.reports' => 'Raporty',
225 'title.report' => 'Raport',
226 'title.send_report' => 'Wysyłanie raportu',
227 'title.invoice' => 'Faktura',
228 'title.send_invoice' => 'Wysyłanie faktury',
229 'title.charts' => 'Statystyki',
230 'title.projects' => 'Projekty',
231 'title.add_project' => 'dodawanie projektu',
232 'title.edit_project' => 'Edytowanie projektu',
233 'title.delete_project' => 'Usuwanie projektu',
234 'title.tasks' => 'Zadania',
235 'title.add_task' => 'Dodawanie zadania',
236 'title.edit_task' => 'Edytowanie zadania',
237 'title.delete_task' => 'Usuwanie zadania',
238 'title.users' => 'Użytkownicy',
239 'title.add_user' => 'Dodawanie użytkownika',
240 'title.edit_user' => 'Edytowanie użytkownika',
241 'title.delete_user' => 'Usuwanie użytkownika',
242 'title.clients' => 'Klienci',
243 'title.add_client' => 'Dodawanie klienta',
244 'title.edit_client' => 'Edytowanie klienta',
245 'title.delete_client' => 'Usuwanie klienta',
246 'title.invoices' => 'Faktury',
247 'title.add_invoice' => 'Dodawanie faktury',
248 'title.view_invoice' => 'Podgląd faktury',
249 'title.delete_invoice' => 'Usuwanie faktury',
250 'title.notifications' => 'Powiadomienia',
251 'title.add_notification' => 'Dodawanie powiadomienia',
252 'title.edit_notification' => 'Edytowanie powiadomienia',
253 'title.delete_notification' => 'Usuwanie powiadomienia',
254 // 'title.monthly_quotas' => 'Monthly Quotas',
255 'title.export' => 'Eksport danych zespołu',
256 'title.import' => 'Import danych zespołu',
257 'title.options' => 'Opcje',
258 'title.profile' => 'Profil',
259 'title.cf_custom_fields' => 'Pola niestandardowe',
260 'title.cf_add_custom_field' => 'Dodawanie pola niestandardowego',
261 'title.cf_edit_custom_field' => 'Edytowanie pola niestandardowego',
262 'title.cf_delete_custom_field' => 'Usuwanie pola niestandardowego',
263 'title.cf_dropdown_options' => 'Opcje listy rozwijanej',
264 'title.cf_add_dropdown_option' => 'Dodawanie opcji',
265 'title.cf_edit_dropdown_option' => 'Edytowanie opcji',
266 'title.cf_delete_dropdown_option' => 'Usuwanie opcji',
267 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
268 // It is also a name for the Locking plugin on the Team profile page.
269 // TODO: translate the following.
270 // 'title.locking' => 'Locking',
271
272 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
273 // Strings that are used in a single form must go to the specific form section.
274 'dropdown.all' => '--- wszystkie ---',
275 'dropdown.no' => '--- żaden ---',
276 // NOTE TO TRANSLATORS: dropdown.this_day does not necessarily means "today". It means a specific ("this") day selected on calendar. See Charts.
277 'dropdown.this_day' => 'wybrany dzień',
278 'dropdown.this_week' => 'ten tydzień',
279 'dropdown.last_week' => 'poprzedni tydzień',
280 'dropdown.this_month' => 'ten miesiąc',
281 'dropdown.last_month' => 'poprzedni miesiąc',
282 'dropdown.this_year' => 'ten rok',
283 'dropdown.all_time' => 'od początku',
284 'dropdown.projects' => 'projekty',
285 'dropdown.tasks' => 'zadania',
286 'dropdown.clients' => 'klienci',
287 'dropdown.select' => '--- wybierz ---',
288 'dropdown.select_invoice' => '--- wybierz fakturę ---',
289 'dropdown.status_active' => 'aktywny',
290 'dropdown.status_inactive' => 'nieaktywny',
291 'dropdown.delete'=>'usuń',
292 'dropdown.do_not_delete'=>'nie usuwaj',
293
294 // Below is a section for strings that are used on individual forms. When a string is used only on one form it should be placed here.
295 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
296 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
297 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
298
299 // Login form. See example at https://timetracker.anuko.com/login.php.
300 'form.login.forgot_password' =>  'Nie pamiętasz hasła?',
301 'form.login.about' =>'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> jest prostym, łatwym w użyciu, otwartoźródłowym systemem śledzenia czasu.',
302
303 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
304 'form.reset_password.message' => 'Instrukcje zmiany hasła zostały wysłane na adres e-mail połączony z kontem.',
305 'form.reset_password.email_subject' => 'Anuko Time Tracker - żądanie zmiany hasła',
306 'form.reset_password.email_body' => "Drogi Użytkowniku,\n\nktoś, prawdopodobnie Ty, poprosił o zmianę hasła w aplikacji Anuko Time Tracker. Aby ustawić nowe hasło, proszę kliknąć na poniższy link lub go skopiować i otworzyć w oknie przeglądarki WWW.\n\n%s\n\nJeśli to nie Ty poprosiłeś o zmianę hasła, zignoruj tą wiadomość.\n\nAnuko Time Tracker jest prostym, łatwym w użyciu, otwartoźródłowym systemem do śledzenia czasu. Odwiedź https://www.anuko.com aby uzyskać więcej informacji.\n\n",
307
308 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
309 'form.change_password.tip' => 'Wpisz nowe hasło i kliknij Zapisz.',
310
311 // Time form. See example at https://timetracker.anuko.com/time.php.
312 'form.time.duration_format' => '(hh:mm or 0.0h)',
313 'form.time.billable' => 'Płatne dla klienta',
314 'form.time.uncompleted' => 'Nieukończone',
315 // TODO: translate the following.
316 // 'form.time.remaining_quota' => 'Remaining quota',
317 // 'form.time.over_quota' => 'Over quota',
318
319 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
320 'form.time_edit.uncompleted' => 'Ten wpis ma określony jedynie czas rozpoczęcia. To nie jest błąd.',
321
322 // Reports form. See example at https://timetracker.anuko.com/reports.php
323 'form.reports.save_as_favorite' => 'Zapisz jako ulubiony',
324 'form.reports.confirm_delete' => 'Czy na pewno chcesz usunąć ten ulubiony raport?',
325 'form.reports.include_records' => 'Zawrzyj wpisy',
326 'form.reports.include_billable' => 'płatne',
327 'form.reports.include_not_billable' => 'bezpłatne',
328 'form.reports.include_invoiced' => 'fakturowane',
329 'form.reports.include_not_invoiced' => 'nie fakturowane',
330 'form.reports.select_period' => 'Wybierz okres',
331 'form.reports.set_period' => 'lub ustaw daty',
332 'form.reports.show_fields' => 'Pokaż pola',
333 'form.reports.group_by' => 'Grupowanie wg',
334 'form.reports.group_by_no' => '--- bez grupowania ---',
335 'form.reports.group_by_date' => 'daty',
336 'form.reports.group_by_user' => 'użytkowników',
337 'form.reports.group_by_client' => 'klientów',
338 'form.reports.group_by_project' => 'projektów',
339 'form.reports.group_by_task' => 'zadań',
340 'form.reports.totals_only' => 'Tylko sumy',
341
342 // Report form. See example at https://timetracker.anuko.com/report.php
343 // (after generating a report at https://timetracker.anuko.com/reports.php).
344 'form.report.export' => 'Eksport',
345
346 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
347 // (you can get to this form after generating a report).
348 'form.invoice.number' => 'Numer faktury',
349 'form.invoice.person' => 'Osoba',
350 'form.invoice.invoice_to_delete' => 'Faktura do usunięcia',
351 'form.invoice.invoice_entries' => 'Wpisy dot. faktury',
352
353 // Charts form. See example at https://timetracker.anuko.com/charts.phpp
354 'form.charts.interval' => 'Okres',
355 'form.charts.chart' => 'Wykres',
356
357 // Projects form. See example at https://timetracker.anuko.com/projects.php
358 'form.projects.active_projects' => 'Aktywne projekty',
359 'form.projects.inactive_projects' => 'Nieaktywne projekty',
360
361 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
362 'form.tasks.active_tasks' => 'Aktywne zadania',
363 'form.tasks.inactive_tasks' => 'Nieaktywne zadania',
364
365 // Users form. See example at https://timetracker.anuko.com/users.php
366 'form.users.active_users' => 'Aktywni użytkownicy',
367 'form.users.inactive_users' => 'Nieaktywni użytkownicy',
368  // TODO: translate the following.
369  // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
370 'form.users.role' => 'Rola',
371 'form.users.manager' => 'Manager',
372 'form.users.comanager' => 'Co-manager',
373 'form.users.rate' => 'Stawka',
374 'form.users.default_rate' => 'Domyślna stawka godzinowa',
375
376 // Client delete form. See example at https://timetracker.anuko.com/client_delete.php.
377 'form.client.client_to_delete' => 'Klient do usunięcia',
378 'form.client.client_entries' => 'Wpisy dot. klienta',
379
380 // Clients form. See example at https://timetracker.anuko.com/clients.phpp
381 'form.clients.active_clients' => 'Aktywni klienci',
382 'form.clients.inactive_clients' => 'Nieaktywni klienci',
383
384 // Strings for Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
385 'form.export.hint' => 'Możesz wyeksportować wszystkie dane zespołu do pliku xml. Przydatne przy migracji danych na własny serwer.',
386 'form.export.compression' => 'Kompresja',
387 'form.export.compression_none' => 'brak',
388 'form.export.compression_bzip' => 'bzip',
389
390 // Strings for Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
391 'form.import.hint' => 'Import danych zespołu z pliku xml.',
392 'form.import.file' => 'Wybierz plik',
393 'form.import.success' => 'Import zakończony powodzeniem.',
394
395 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
396 'form.teams.hint' =>  'Załóż nowy zespół najpierw tworząc konto managera.<br>Możesz także zaimportować plik xml z danymi zespołu z innego serwera Anuko Time Tracker (nazwy loginów nie mogą się powtarzać).',
397
398 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
399 'form.profile.12_hours' => '12 godzin',
400 'form.profile.24_hours' => '24 godziny',
401 'form.profile.tracking_mode' => 'Tryb śledzenia',
402 'form.profile.mode_time' => 'czas',
403 'form.profile.mode_projects' => 'projekty',
404 'form.profile.mode_projects_and_tasks' => 'projekty i zadania',
405 'form.profile.record_type' => 'Rejestrowanie czasu',
406 'form.profile.type_all' => 'wszystko',
407 'form.profile.type_start_finish' => 'początek i koniec',
408 'form.profile.type_duration' => 'czas trwania',
409 'form.profile.plugins' => 'Dodatkowe moduły',
410
411 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
412 'form.mail.from' => 'Od',
413 'form.mail.to' => 'Do',
414 'form.mail.cc' => 'DW',
415 'form.mail.subject' => 'Temat',
416 'form.mail.report_subject' => 'Raport Time Tracker',
417 'form.mail.footer' => 'Anuko Time Tracker jest prostym, łatwym w użyciu, otwartoźródłowym<br>systemem śledzenia czasu. Odwiedź <a href="https://www.anuko.com">www.anuko.com</a>, aby uzyskać więcej informacji.',
418 'form.mail.report_sent' => 'Wysłano raport',
419 'form.mail.invoice_sent' => 'Wysłano fakturę',
420
421 // Quotas configuration form.
422 // TODO: translate the following.
423 // 'form.quota.year' => 'Year',
424 // 'form.quota.month' => 'Month',
425 // 'form.quota.quota' => 'Quota',
426 // 'form.quota.workday_hours' => 'Hours in a work day',
427 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
428 );