376dbbaf82410cc2cd7594f1125513d2ee84bc9e
[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 // TODO: translate the following.
125 // 'button.mark_paid' => 'Mark paid',
126
127 // Labels for controls on forms. Labels in this section are used on multiple forms.
128 'label.team_name' => 'Nazwa zespołu',
129 'label.address' => 'Adres',
130 'label.currency' => 'Waluta',
131 'label.manager_name' => 'Nazwa managera',
132 'label.manager_login' => 'Login managera',
133 'label.person_name' => 'Nazwa',
134 'label.thing_name' => 'Nazwa',
135 'label.login' => 'Login',
136 'label.password' => 'Hasło',
137 'label.confirm_password' => 'Potwierdź hasło',
138 'label.email' => 'E-mail',
139 // TODO: translate the following.
140 // 'label.cc' => 'Cc',
141 // 'label.bcc' => 'Bcc',
142 'label.subject' => 'Temat',
143 'label.date' => 'Data',
144 'label.start_date' => 'Data początkowa',
145 'label.end_date' => 'Data końcowa',
146 'label.user' => 'Użytkownik',
147 'label.users' => 'Użytkownicy',
148 'label.client' => 'Klient',
149 'label.clients' => 'Klienci',
150 'label.option' => 'Opcja',
151 'label.invoice' => 'Faktura',
152 'label.project' => 'Projekt',
153 'label.projects' => 'Projekty',
154 'label.task' => 'Zadanie',
155 'label.tasks' => 'Zadania',
156 'label.description' => 'Opis',
157 'label.start' => 'Początek',
158 'label.finish' => 'Koniec',
159 'label.duration' => 'Czas trwania',
160 'label.note' => 'Uwagi',
161 // TODO: translate the following.
162 // 'label.notes' => 'Notes',
163 'label.item' => 'Pozycja',
164 'label.cost' => 'Koszt',
165 'label.day_total' => 'Dziś',
166 'label.week_total' => 'W tym tygodniu',
167 // TODO: translate the following.
168 // 'label.month_total' => 'Month total',
169 'label.today' => 'Dziś',
170 'label.total_hours' => 'Całkowita liczba godzin',
171 'label.total_cost' => 'Koszt całkowity',
172 'label.view' => 'Widok',
173 'label.edit' => 'Edycja',
174 'label.delete' => 'Usuń',
175 'label.configure' => 'Konfiguruj',
176 'label.select_all' => 'Zaznacz wszystko',
177 'label.select_none' => 'Odznacz wszystko',
178 // TODO: translate the following.
179 // 'label.day_view' => 'Day view',
180 // 'label.week_view' => 'Week view',
181 'label.id' => 'ID',
182 'label.language' => 'Język',
183 'label.decimal_mark' => 'Znak dziesiętny',
184 'label.date_format' => 'Format daty',
185 'label.time_format' => 'Format godziny',
186 'label.week_start' => 'Początek tygodnia',
187 'label.comment' => 'Komentarz',
188 'label.status' => 'Status',
189 'label.tax' => 'Podatek',
190 'label.subtotal' => 'Suma netto',
191 'label.total' => 'Suma',
192 'label.client_name' => 'Nazwa klienta',
193 'label.client_address' => 'Adres klienta',
194 'label.or' => 'lub',
195 'label.error' => 'Błąd',
196 'label.ldap_hint' => 'Wpisz swoją <b> nazwę użytkownika Windows<b> i <b>hasło<b> w polach poniżej.',
197 'label.required_fields' => '* - pola wymagane',
198 'label.on_behalf' => 'w imieniu',
199 'label.role_manager' => '(Manager)',
200 'label.role_comanager' => '(Co-manager)',
201 'label.role_admin' => '(Administrator)',
202 // TODO: translate the following.
203 // 'label.page' => 'Page',
204 // 'label.condition' => 'Condition',
205 // 'label.yes' => 'yes',
206 // 'label.no' => 'no',
207 // Labels for plugins (extensions to Time Tracker that provide additional features).
208 'label.custom_fields' => 'Niestandardowe pola',
209 // Translate the following.
210 // 'label.monthly_quotas' => 'Monthly quotas',
211 'label.type' => 'Rodzaj',
212 'label.type_dropdown' => 'lista rozwijana',
213 'label.type_text' => 'tekst',
214 'label.required' => 'Wymagane',
215 'label.fav_report' => 'Ulubiony raport',
216 'label.cron_schedule' => 'Harmonogram crona',
217 'label.what_is_it' => 'Co to jest?',
218 // 'label.expense' => 'Expense',
219 // 'label.quantity' => 'Quantity',
220 // 'label.paid_status' => 'Paid status',
221 // 'label.paid' => 'Paid',
222
223 // Form titles.
224 'title.login' => 'Logowanie',
225 'title.teams' => 'Zespoły',
226 'title.create_team' => 'Zakładanie zespołu',
227 'title.edit_team' => 'Edytowanie zespołu',
228 'title.delete_team' => 'Usuwanie zespołu',
229 'title.reset_password' => 'Resetowanie hasła',
230 'title.change_password' => 'Zmiana hasła',
231 'title.time' => 'Wybrana data',
232 'title.edit_time_record' => 'Edytowanie wpisu',
233 'title.delete_time_record' => 'Usuwanie wpisu',
234 'title.expenses' => 'Wydatki',
235 'title.edit_expense' => 'Edytowanie wpisu',
236 'title.delete_expense' => 'Usuwanie wpisu',
237 'title.reports' => 'Raporty',
238 'title.report' => 'Raport',
239 'title.send_report' => 'Wysyłanie raportu',
240 'title.invoice' => 'Faktura',
241 'title.send_invoice' => 'Wysyłanie faktury',
242 'title.charts' => 'Statystyki',
243 'title.projects' => 'Projekty',
244 'title.add_project' => 'dodawanie projektu',
245 'title.edit_project' => 'Edytowanie projektu',
246 'title.delete_project' => 'Usuwanie projektu',
247 'title.tasks' => 'Zadania',
248 'title.add_task' => 'Dodawanie zadania',
249 'title.edit_task' => 'Edytowanie zadania',
250 'title.delete_task' => 'Usuwanie zadania',
251 'title.users' => 'Użytkownicy',
252 'title.add_user' => 'Dodawanie użytkownika',
253 'title.edit_user' => 'Edytowanie użytkownika',
254 'title.delete_user' => 'Usuwanie użytkownika',
255 'title.clients' => 'Klienci',
256 'title.add_client' => 'Dodawanie klienta',
257 'title.edit_client' => 'Edytowanie klienta',
258 'title.delete_client' => 'Usuwanie klienta',
259 'title.invoices' => 'Faktury',
260 'title.add_invoice' => 'Dodawanie faktury',
261 'title.view_invoice' => 'Podgląd faktury',
262 'title.delete_invoice' => 'Usuwanie faktury',
263 'title.notifications' => 'Powiadomienia',
264 'title.add_notification' => 'Dodawanie powiadomienia',
265 'title.edit_notification' => 'Edytowanie powiadomienia',
266 'title.delete_notification' => 'Usuwanie powiadomienia',
267 // 'title.monthly_quotas' => 'Monthly Quotas',
268 'title.export' => 'Eksport danych zespołu',
269 'title.import' => 'Import danych zespołu',
270 'title.options' => 'Opcje',
271 'title.profile' => 'Profil',
272 'title.cf_custom_fields' => 'Pola niestandardowe',
273 'title.cf_add_custom_field' => 'Dodawanie pola niestandardowego',
274 'title.cf_edit_custom_field' => 'Edytowanie pola niestandardowego',
275 'title.cf_delete_custom_field' => 'Usuwanie pola niestandardowego',
276 'title.cf_dropdown_options' => 'Opcje listy rozwijanej',
277 'title.cf_add_dropdown_option' => 'Dodawanie opcji',
278 'title.cf_edit_dropdown_option' => 'Edytowanie opcji',
279 'title.cf_delete_dropdown_option' => 'Usuwanie opcji',
280 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
281 // It is also a name for the Locking plugin on the Team profile page.
282 // TODO: translate the following.
283 // 'title.locking' => 'Locking',
284
285 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
286 // Strings that are used in a single form must go to the specific form section.
287 'dropdown.all' => '--- wszystkie ---',
288 'dropdown.no' => '--- żaden ---',
289 // TODO: translate the following.
290 // 'dropdown.current_day' => 'today',
291 // 'dropdown.previous_day' => 'yesterday',
292 'dropdown.selected_day' => 'dzień',
293 'dropdown.current_week' => 'ten tydzień',
294 'dropdown.previous_week' => 'poprzedni tydzień',
295 'dropdown.selected_week' => 'tydzień',
296 'dropdown.current_month' => 'ten miesiąc',
297 'dropdown.previous_month' => 'poprzedni miesiąc',
298 'dropdown.selected_month' => 'miesiąc',
299 'dropdown.current_year' => 'ten rok',
300 // TODO: translate the following.
301 // 'dropdown.previous_year' => 'previous year',
302 'dropdown.selected_year' => 'rok',
303 'dropdown.all_time' => 'od początku',
304 'dropdown.projects' => 'projekty',
305 'dropdown.tasks' => 'zadania',
306 'dropdown.clients' => 'klienci',
307 'dropdown.select' => '--- wybierz ---',
308 'dropdown.select_invoice' => '--- wybierz fakturę ---',
309 'dropdown.status_active' => 'aktywny',
310 'dropdown.status_inactive' => 'nieaktywny',
311 'dropdown.delete'=>'usuń',
312 'dropdown.do_not_delete'=>'nie usuwaj',
313 // TODO: translate the following.
314 // 'dropdown.paid' => 'paid',
315 // 'dropdown.not_paid' => 'not paid',
316
317 // 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.
318 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
319 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
320 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
321
322 // Login form. See example at https://timetracker.anuko.com/login.php.
323 'form.login.forgot_password' =>  'Nie pamiętasz hasła?',
324 '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.',
325
326 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
327 'form.reset_password.message' => 'Instrukcje zmiany hasła zostały wysłane na adres e-mail połączony z kontem.',
328 'form.reset_password.email_subject' => 'Anuko Time Tracker - żądanie zmiany hasła',
329 '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",
330
331 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
332 'form.change_password.tip' => 'Wpisz nowe hasło i kliknij Zapisz.',
333
334 // Time form. See example at https://timetracker.anuko.com/time.php.
335 'form.time.duration_format' => '(hh:mm or 0.0h)',
336 'form.time.billable' => 'Płatne dla klienta',
337 'form.time.uncompleted' => 'Nieukończone',
338 // TODO: translate the following.
339 // 'form.time.remaining_quota' => 'Remaining quota',
340 // 'form.time.over_quota' => 'Over quota',
341
342 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
343 'form.time_edit.uncompleted' => 'Ten wpis ma określony jedynie czas rozpoczęcia. To nie jest błąd.',
344
345 // Week view form. See example at https://timetracker.anuko.com/week.php.
346 // TODO: translate the following.
347 // 'form.week.new_entry' => 'New entry',
348
349 // Reports form. See example at https://timetracker.anuko.com/reports.php
350 'form.reports.save_as_favorite' => 'Zapisz jako ulubiony',
351 'form.reports.confirm_delete' => 'Czy na pewno chcesz usunąć ten ulubiony raport?',
352 'form.reports.include_records' => 'Zawrzyj wpisy',
353 'form.reports.include_billable' => 'płatne',
354 'form.reports.include_not_billable' => 'bezpłatne',
355 'form.reports.include_invoiced' => 'fakturowane',
356 'form.reports.include_not_invoiced' => 'nie fakturowane',
357 'form.reports.select_period' => 'Wybierz okres',
358 'form.reports.set_period' => 'lub ustaw daty',
359 'form.reports.show_fields' => 'Pokaż pola',
360 'form.reports.group_by' => 'Grupowanie wg',
361 'form.reports.group_by_no' => '--- bez grupowania ---',
362 'form.reports.group_by_date' => 'daty',
363 'form.reports.group_by_user' => 'użytkowników',
364 'form.reports.group_by_client' => 'klientów',
365 'form.reports.group_by_project' => 'projektów',
366 'form.reports.group_by_task' => 'zadań',
367 'form.reports.totals_only' => 'Tylko sumy',
368
369 // Report form. See example at https://timetracker.anuko.com/report.php
370 // (after generating a report at https://timetracker.anuko.com/reports.php).
371 'form.report.export' => 'Eksport',
372
373 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
374 // (you can get to this form after generating a report).
375 'form.invoice.number' => 'Numer faktury',
376 'form.invoice.person' => 'Osoba',
377 'form.invoice.invoice_to_delete' => 'Faktura do usunięcia',
378 'form.invoice.invoice_entries' => 'Wpisy dot. faktury',
379 // TODO: translate the following.
380 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
381
382 // Charts form. See example at https://timetracker.anuko.com/charts.phpp
383 'form.charts.interval' => 'Okres',
384 'form.charts.chart' => 'Wykres',
385
386 // Projects form. See example at https://timetracker.anuko.com/projects.php
387 'form.projects.active_projects' => 'Aktywne projekty',
388 'form.projects.inactive_projects' => 'Nieaktywne projekty',
389
390 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
391 'form.tasks.active_tasks' => 'Aktywne zadania',
392 'form.tasks.inactive_tasks' => 'Nieaktywne zadania',
393
394 // Users form. See example at https://timetracker.anuko.com/users.php
395 'form.users.active_users' => 'Aktywni użytkownicy',
396 'form.users.inactive_users' => 'Nieaktywni użytkownicy',
397  // TODO: translate the following.
398  // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
399 'form.users.role' => 'Rola',
400 'form.users.manager' => 'Manager',
401 'form.users.comanager' => 'Co-manager',
402 'form.users.rate' => 'Stawka',
403 'form.users.default_rate' => 'Domyślna stawka godzinowa',
404
405 // Client delete form. See example at https://timetracker.anuko.com/client_delete.php.
406 'form.client.client_to_delete' => 'Klient do usunięcia',
407 'form.client.client_entries' => 'Wpisy dot. klienta',
408
409 // Clients form. See example at https://timetracker.anuko.com/clients.phpp
410 'form.clients.active_clients' => 'Aktywni klienci',
411 'form.clients.inactive_clients' => 'Nieaktywni klienci',
412
413 // Strings for Exporting Team Data form. See example at https://timetracker.anuko.com/export.php
414 'form.export.hint' => 'Możesz wyeksportować wszystkie dane zespołu do pliku xml. Przydatne przy migracji danych na własny serwer.',
415 'form.export.compression' => 'Kompresja',
416 'form.export.compression_none' => 'brak',
417 'form.export.compression_bzip' => 'bzip',
418
419 // Strings for Importing Team Data form. See example at https://timetracker.anuko.com/imort.php (login as admin first).
420 'form.import.hint' => 'Import danych zespołu z pliku xml.',
421 'form.import.file' => 'Wybierz plik',
422 'form.import.success' => 'Import zakończony powodzeniem.',
423
424 // Teams form. See example at https://timetracker.anuko.com/admin_teams.php (login as admin first).
425 '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ć).',
426
427 // Profile form. See example at https://timetracker.anuko.com/profile_edit.php.
428 'form.profile.12_hours' => '12 godzin',
429 'form.profile.24_hours' => '24 godziny',
430 'form.profile.tracking_mode' => 'Tryb śledzenia',
431 'form.profile.mode_time' => 'czas',
432 'form.profile.mode_projects' => 'projekty',
433 'form.profile.mode_projects_and_tasks' => 'projekty i zadania',
434 'form.profile.record_type' => 'Rejestrowanie czasu',
435 'form.profile.type_all' => 'wszystko',
436 'form.profile.type_start_finish' => 'początek i koniec',
437 'form.profile.type_duration' => 'czas trwania',
438 'form.profile.plugins' => 'Dodatkowe moduły',
439
440 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
441 'form.mail.from' => 'Od',
442 'form.mail.to' => 'Do',
443 'form.mail.report_subject' => 'Raport Time Tracker',
444 '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.',
445 'form.mail.report_sent' => 'Wysłano raport',
446 'form.mail.invoice_sent' => 'Wysłano fakturę',
447
448 // Quotas configuration form.
449 // TODO: translate the following.
450 // 'form.quota.year' => 'Year',
451 // 'form.quota.month' => 'Month',
452 // 'form.quota.quota' => 'Quota',
453 // 'form.quota.workday_hours' => 'Hours in a work day',
454 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
455 );