Introduced handling of max user count.
[timetracker.git] / WEB-INF / resources / fi.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 = 'Finnish (Suomi)';
33 $i18n_months = array('Tammikuu', 'Helmikuu', 'Maaliskuu', 'Huhtikuu', 'Toukokuu', 'Kesäkuu', 'Heinäkuu', 'Elokuu', 'Syyskuu', 'Lokakuu', 'Marraskuu', 'Joulukuu');
34 $i18n_weekdays = array('Sunnuntai', 'Maanantai', 'Tiistai', 'Keskiviikko', 'Torstai', 'Perjantai', 'Lauantai');
35 $i18n_weekdays_short = array('Su', 'Ma', 'Ti', 'Ke', 'To', 'Pe', 'La');
36 // format mm/dd
37 $i18n_holidays = array('01/01', '01/06', '05/01', '06/24', '12/06', '12/25', '12/26');
38
39 $i18n_key_words = array(
40
41 // Menus - short selection strings that are displayed on top of application web pages.
42 // Example: https://timetracker.anuko.com (black menu on top).
43 'menu.login' => 'Kirjaudu',
44 'menu.logout' => 'Kirjaudu ulos',
45 'menu.forum' => 'Keskustelupalsta',
46 'menu.help' => 'Apua',
47 // TODO: translate the following.
48 // 'menu.create_group' => 'Create Group',
49 'menu.profile' => 'Profiili',
50 // TODO: translate the following.
51 // 'menu.group' => 'Group',
52 'menu.plugins' => 'Lisäosat',
53 'menu.time' => 'Tunnit',
54 'menu.expenses' => 'Kulut',
55 'menu.reports' => 'Raportit',
56 'menu.charts' => 'Kaaviot',
57 'menu.projects' => 'Projektit',
58 'menu.tasks' => 'Tehtävät',
59 'menu.users' => 'Käyttäjät',
60 // TODO: translate the following.
61 // 'menu.groups' => 'Groups',
62 // 'menu.subgroups' => 'Subgroups',
63 'menu.export' => 'Vie',
64 'menu.clients' => 'Asiakkaat',
65 'menu.options' => 'Optiot',
66
67 // Footer - strings on the bottom of most pages.
68 'footer.contribute_msg' => 'Voit osallistua Time Tracker -sovelluksen tuotekehitykseen monin tavoin.',
69 // 'Credits' is a bit difficult to translate, the exact literal term might be 'Ansiot' or 'Antaa tunnustus' but that's not widely used in this meaning.
70 // The term that is used is something like 'We are thanking' ('Kiitämme') but that does not sound good, either. So I just let it be as it was for time being as everybody (?) understands the meaning anyway.
71 'footer.credits' => 'Credits',
72 'footer.license' => 'Lisenssi',
73 'footer.improve' => 'Osallistu kehitystyöhön',
74
75 // Error messages.
76 'error.access_denied' => 'Pääsy estetty.',
77 'error.sys' => 'Järjestelmävirhe.',
78 'error.db' => 'Tietokantavirhe.',
79 // TODO: translate the following.
80 // 'error.feature_disabled' => 'Feature is disabled.',
81 'error.field' => 'Virheellinen "{0}" tieto.',
82 'error.empty' => 'Kenttä "{0}" on tyhjä.',
83 'error.not_equal' => 'Kentät "{0}" ja "{1}" eivät ole samat.',
84 'error.interval' => 'Kentän "{0}" arvon tulee olla suurempi kuin kentän "{1}".',
85 'error.project' => 'Valitse projekti.',
86 'error.task' => 'Valitse tehtävä.',
87 'error.client' => 'Valitse asiakas.',
88 'error.report' => 'Valitse raportti.',
89 // TODO: translate the following.
90 // 'error.record' => 'Select record.',
91 'error.auth' => 'Virheellinen käyttäjänimi tai salasana.',
92 'error.user_exists' => 'Tämä käyttäjänimi on jo olemassa.',
93 // TODO: translate the following.
94 // 'error.object_exists' => 'Object with this name already exists.',
95 'error.invoice_exists' => 'Tällä numerolla oleva lasku on jo olemassa.',
96 // TODO: translate the following.
97 // 'error.role_exists' => 'Role with this rank already exists.',
98 'error.no_invoiceable_items' => 'Ei laskutettavia syötteitä.',
99 'error.no_login' => 'Tuntematon käyttäjänimi.',
100 'error.no_groups' => 'Tietokanta on tyhjä. Kirjaudu ylläpitäjänä ja luo uusi tiimi.',  // TODO: replace "team" with "group".
101 'error.upload' => 'Virhe tiedoston lataus.',
102 'error.range_locked' => 'Aikaväli on lukittu.',
103 'error.mail_send' => 'Virhe postinlähetyksessä.',
104 // TODO: improve the translation above by adding MAIL_SMTP_DEBUG part.
105 // 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
106 'error.no_email' => 'Käyttäjätunnukseen ei ole liitetty sähköpostiosoitetta.',
107 'error.uncompleted_exists' => 'Kesken oleva syötetieto on jo olemassa. Sulje tai poista se.',
108 'error.goto_uncompleted' => 'Siirry kesken olevaan syötteeseen.',
109 'error.overlap' => 'Aikavälillä on päällekkäisiä syötteitä.',
110 'error.future_date' => 'Aika on tulevaisuudessa.',
111 // TODO: translate the following.
112 // 'error.xml' => 'Error in XML file at line %d: %s.',
113 // 'error.cannot_import' => 'Cannot import: %s.',
114 // 'error.format' => 'Invalid file format.',
115 // 'error.user_count' => 'Limit on user count.',
116
117 // Warning messages.
118 // TODO: translate the following.
119 // 'warn.sure' => 'Are you sure?',
120 // 'warn.confirm_save' => 'Date has changed. Confirm saving, not copying this item.',
121
122 // Success messages.
123 // TODO: translate the following.
124 // 'msg.success' => 'Operation completed successfully.',
125
126 // Labels for buttons.
127 'button.login' => 'Kirjaudu',
128 'button.now' => 'Nyt',
129 'button.save' => 'Tallenna',
130 'button.copy' => 'Kopioi',
131 'button.cancel' => 'Keskeytä',
132 'button.submit' => 'Hyväksy',
133 'button.add' => 'Lisää',
134 'button.delete' => 'Poista',
135 'button.generate' => 'Luo',
136 'button.reset_password' => 'Nollaa salasana',
137 'button.send' => 'Lähetä',
138 'button.send_by_email' => 'Lähetä sähköpostilla',
139 'button.create_group' => 'Luo tiimi', // TODO: replace "team" with "group".
140 'button.export' => 'Vie tiimi', // TODO: replace "team" with "group".
141 'button.import' => 'Tuo tiimi', // TODO: replace "team" with "group".
142 'button.close' => 'Sulje',
143 'button.stop' => 'Lopeta',
144
145 // Labels for controls on forms. Labels in this section are used on multiple forms.
146 'label.group_name' => 'Tiimin nimi', // TODO: replace "team" with "group".
147 'label.address' => 'Osoite',
148 'label.currency' => 'Valuutta',
149 'label.manager_name' => 'Esimies',
150 'label.manager_login' => 'Esimiehen käyttäjätunnus',
151 'label.person_name' => 'Nimi',
152 'label.thing_name' => 'Nimi',
153 'label.login' => 'Käyttäjätunnus',
154 'label.password' => 'Salasana',
155 'label.confirm_password' => 'Vahvista salasana',
156 'label.email' => 'Sähköposti',
157 'label.cc' => 'Kopio',
158 // TODO: translate the following.
159 // 'label.bcc' => 'Bcc',
160 'label.subject' => 'Aihe',
161 'label.date' => 'Päiväys',
162 'label.start_date' => 'Aloituspäivä',
163 'label.end_date' => 'Päättymispäivä',
164 'label.user' => 'Käyttäjä',
165 'label.users' => 'Käyttäjät',
166 // TODO: translate the following.
167 // 'label.group' => 'Group',
168 // 'label.subgroups' => 'Subgroups',
169 // 'label.roles' => 'Roles',
170 'label.client' => 'Asiakas',
171 'label.clients' => 'Asiakkaat',
172 'label.option' => 'Optio',
173 'label.invoice' => 'Lasku',
174 'label.project' => 'Projekti',
175 'label.projects' => 'Projektit',
176 'label.task' => 'Tehtävä',
177 'label.tasks' => 'Tehtävät',
178 'label.description' => 'Kuvaus',
179 'label.start' => 'Aloitus',
180 'label.finish' => 'Lopetus',
181 'label.duration' => 'Kesto',
182 'label.note' => 'Huom',
183 // TODO: translate the following.
184 // 'label.notes' => 'Notes',
185 'label.item' => 'Syöte',
186 'label.cost' => 'Hinta',
187 // TODO: translate the following.
188 // 'label.ip' => 'IP',
189 'label.day_total' => 'Päivä yhteensä',
190 'label.week_total' => 'Viikko yhteensä',
191 // TODO: translate the following.
192 // 'label.month_total' => 'Month total',
193 'label.today' => 'Tänään',
194 'label.view' => 'Näytä',
195 'label.edit' => 'Muokkaa',
196 'label.delete' => 'Poista',
197 'label.configure' => 'Aseta',
198 'label.select_all' => 'Valitse kaikki',
199 'label.select_none' => 'Poista kaikki valinnat',
200 // TODO: translate the following.
201 // 'label.day_view' => 'Day view',
202 // 'label.week_view' => 'Week view',
203 'label.id' => 'ID',
204 'label.language' => 'Kieli',
205 'label.decimal_mark' => 'Desimaalierotin',
206 'label.date_format' => 'Päiväyksen muoto',
207 'label.time_format' => 'Kellonajan muoto',
208 'label.week_start' => 'Viikon 1. päivä',
209 'label.comment' => 'Kommentti',
210 'label.status' => 'Tila',
211 'label.tax' => 'Vero',
212 'label.subtotal' => 'Välisumma',
213 'label.total' => 'Yhteensä',
214 'label.client_name' => 'Asiakkaan nimi',
215 'label.client_address' => 'Asiakkaan osoite',
216 'label.or' => 'tai',
217 'label.error' => 'Virhe',
218 'label.ldap_hint' => 'Syötä <b>Windows-käyttäjätunnuksesi</b> ja <b>salasanasi</b> ao. kenttiin.',
219 'label.required_fields' => '* - pakolliset kentät',
220 'label.on_behalf' => 'puolesta',
221 'label.role_manager' => '(esimies)',
222 'label.role_comanager' => '(apu-esimies)',
223 'label.role_admin' => '(ylläpitäjä)',
224 'label.page' => 'Sivu',
225 // TODO: translate the following.
226 // 'label.condition' => 'Condition',
227 // 'label.yes' => 'yes',
228 // 'label.no' => 'no',
229 // Labels for plugins (extensions to Time Tracker that provide additional features).
230 'label.custom_fields' => 'Omat kentät',
231 // TODO: translate the following.
232 // 'label.monthly_quotas' => 'Monthly quotas',
233 'label.type' => 'Tyyppi',
234 'label.type_dropdown' => 'pudotusvalikko',
235 'label.type_text' => 'teksti',
236 'label.required' => 'Pakollinen',
237 'label.fav_report' => 'Raporttipohja',
238 // TODO: translate the following.
239 // 'label.schedule' => 'Schedule',
240 'label.what_is_it' => 'Mikä se on?',
241 // 'label.expense' => 'Expense',
242 // 'label.quantity' => 'Quantity',
243 // 'label.paid_status' => 'Paid status',
244 // 'label.paid' => 'Paid',
245 // 'label.mark_paid' => 'Mark paid',
246 // 'label.week_note' => 'Week note',
247 // 'label.week_list' => 'Week list',
248 // 'label.work_units' => 'Work units',
249 // 'label.work_units_short' => 'Units',
250 'label.totals_only' => 'Vain yhteissummat',
251 // TODO: translate the following.
252 // 'label.quota' => 'Quota',
253
254 // Form titles.
255 'title.error' => 'Virhe',
256 // TODO: Translate the following.
257 // 'title.success' => 'Success',
258 'title.login' => 'Kirjautuminen',
259 'title.groups' => 'Tiimit', // TODO: change "teams" to "groups".
260 // TODO: translate the following.
261 // 'title.subgroups' => 'Subgroups',
262 // 'title.add_group' => 'Adding Group',
263 'title.edit_group' => 'Tiimin muokkaus', // TODO: change "team" to "group".
264 'title.delete_group' => 'Tiimin poisto', // TODO: change "team" to "group".
265 'title.reset_password' => 'Salasanan nollaus',
266 'title.change_password' => 'Salasanan vaihto',
267 'title.time' => 'Tuntien kirjaus',
268 'title.edit_time_record' => 'Tuntikirjausten muokkaus',
269 'title.delete_time_record' => 'Tuntikirjausten poisto',
270 'title.expenses' => 'Kulut',
271 'title.edit_expense' => 'Kulutietojen muokkaus',
272 'title.delete_expense' => 'Kulutiedon poisto',
273 'title.reports' => 'Raportit',
274 'title.report' => 'Raportti',
275 'title.send_report' => 'Raportin lähetys',
276 'title.invoice' => 'Lasku',
277 'title.send_invoice' => 'Laskun lähetys',
278 'title.charts' => 'Kaaviot',
279 'title.projects' => 'Projektit',
280 'title.add_project' => 'Projektin lisäys',
281 'title.edit_project' => 'Projektin muokkaus',
282 'title.delete_project' => 'Projektin poisto',
283 'title.tasks' => 'Tehtävät',
284 'title.add_task' => 'Tehtävän lisäys',
285 'title.edit_task' => 'Tehtävän muokkaus',
286 'title.delete_task' => 'Tehtävän poisto',
287 'title.users' => 'Käyttäjät',
288 'title.add_user' => 'Käyttäjän lisäys',
289 'title.edit_user' => 'Käyttäjän muokkaus',
290 'title.delete_user' => 'Käyttäjän poisto',
291 // TODO: translate the following.
292 // 'title.roles' => 'Roles',
293 // 'title.add_role' => 'Adding Role',
294 // 'title.edit_role' => 'Editing Role',
295 // 'title.delete_role' => 'Deleting Role',
296 'title.clients' => 'Asiakkaat',
297 'title.add_client' => 'Asiakkaan lisäys',
298 'title.edit_client' => 'Asiakkaan muokkaus',
299 'title.delete_client' => 'Asiakkaan poisto',
300 'title.invoices' => 'Laskut',
301 'title.add_invoice' => 'Laskun lisäys',
302 'title.view_invoice' => 'Laskun tarkastelu',
303 'title.delete_invoice' => 'Laskun poisto',
304 'title.notifications' => 'Ilmoitukset',
305 'title.add_notification' => 'Ilmoituksen lisäys',
306 'title.edit_notification' => 'Ilmoituksen muokkaus',
307 'title.delete_notification' => 'Ilmoituksen poisto',
308 // TODO: translate the following.
309 // 'title.monthly_quotas' => 'Monthly Quotas',
310 'title.export' => 'Tiimitietojen vienti', // TODO: replace "team" with "group".
311 'title.import' => 'Tiimitietojen tunti', // TODO: replace "team" with "group".
312 'title.options' => 'Optiot',
313 'title.profile' => 'Profiili',
314 'title.plugins' => 'Lisäosat',
315 'title.cf_custom_fields' => 'Omat kentät',
316 'title.cf_add_custom_field' => 'Oman kentän lisäys',
317 'title.cf_edit_custom_field' => 'Oman kentän muokkaus',
318 'title.cf_delete_custom_field' => 'Oman kentän poisto',
319 'title.cf_dropdown_options' => 'Pudotusvalikon vaihtoehdot',
320 'title.cf_add_dropdown_option' => 'Vaihtoehdon lisäys',
321 'title.cf_edit_dropdown_option' => 'Vaihtoehdon muokkaus',
322 'title.cf_delete_dropdown_option' => 'Vaihtoehdon poisto',
323 'title.locking' => 'Lukitus',
324 // TODO: translate the following.
325 // 'title.week_view' => 'Week View',
326 // 'title.swap_roles' => 'Swapping Roles',
327 // 'title.work_units' => 'Work Units',
328
329 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
330 // Strings that are used in a single form must go to the specific form section.
331 'dropdown.all' => '--- kaikki ---',
332 'dropdown.no' => '--- ei ---',
333 // TODO: translate the following.
334 // 'dropdown.current_day' => 'today',
335 // 'dropdown.previous_day' => 'yesterday',
336 'dropdown.selected_day' => 'päivä',
337 'dropdown.current_week' => 'tämä viikko',
338 'dropdown.previous_week' => 'viime viikko',
339 'dropdown.selected_week' => 'viikko',
340 'dropdown.current_month' => 'tämä kuu',
341 'dropdown.previous_month' => 'viime kuu',
342 'dropdown.selected_month' => 'kuu',
343 'dropdown.current_year' => 'tämä vuosi',
344 // TODO: translate the following.
345 // 'dropdown.previous_year' => 'previous year',
346 'dropdown.selected_year' => 'vuosi',
347 'dropdown.all_time' => 'kaikki tunnit',
348 'dropdown.projects' => 'projektit',
349 'dropdown.tasks' => 'tehtävät',
350 'dropdown.clients' => 'asiakkaat',
351 'dropdown.select' => '--- valitse ---',
352 'dropdown.select_invoice' => '--- valitse lasku ---',
353 'dropdown.status_active' => 'aktiivinen',
354 'dropdown.status_inactive' => 'inaktiivinen',
355 'dropdown.delete' => 'poista',
356 'dropdown.do_not_delete' => 'älä poista',
357 // TODO: translate the following.
358 // 'dropdown.paid' => 'paid',
359 // 'dropdown.not_paid' => 'not paid',
360
361 // 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.
362 // One exception is for closely related forms such as "Time" and "Editing Time Record" with similar controls. In such cases
363 // a string can be defined on the main form and used on related forms. The reasoning for this is to make translation effort easier.
364 // Strings that are used on multiple unrelated forms should be placed in shared sections such as label.<stringname>, etc.
365
366 // Login form. See example at https://timetracker.anuko.com/login.php.
367 'form.login.forgot_password' => 'Salasana unohtunut?',
368 'form.login.about' => 'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> on yksinkertainen ja helppokäyttöinen vapaan koodin tuntiseurantaohjelmisto.',
369
370 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
371 'form.reset_password.message' => 'Salasanan nollauspyyntöviesti lähetetty.',
372 'form.reset_password.email_subject' => 'Anuko Time Tracker -salasanan nollauspyyntö',
373 // TODO: English string has changed. "from IP added. Re-translate the beginning.
374 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone from IP %s requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
375 // "IP %s" probably sounds awkward.
376 'form.reset_password.email_body' => "Hyvä käyttäjä,\n\nJoku, IP %s, on pyytänyt nollaamaan Anuko Time Tracker -ohjelman salasanasi. Jos haluat nollata salasanasi, käy sivulla \n\n%s\n\nAnuko Time Tracker on yksinkertainen ja helppokäyttöinen vapaan koodin tuntiseurantaohjelmisto. Lisätietoja sivulla https://www.anuko.com.\n\n",
377
378 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
379 'form.change_password.tip' => 'Syötä uusi salasana ja osoita Tallenna.',
380
381 // Time form. See example at https://timetracker.anuko.com/time.php.
382 'form.time.duration_format' => '(hh:mm tai 0.0h)',
383 'form.time.billable' => 'Laskutettava',
384 'form.time.uncompleted' => 'Keskeneräinen',
385 // TODO: translate the following.
386 // 'form.time.remaining_quota' => 'Remaining quota',
387 // 'form.time.over_quota' => 'Over quota',
388 // 'form.time.remaining_balance' => 'Remaining balance',
389 // 'form.time.over_balance' => 'Over balance',
390
391 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
392 'form.time_edit.uncompleted' => 'Vain aloitusaika tallennettiin tietueeseen. Kyseessä ei ole virhe.',
393
394 // Week view form. See example at https://timetracker.anuko.com/week.php.
395 // TODO: translate the following.
396 // 'form.week.new_entry' => 'New entry',
397
398 // Reports form. See example at https://timetracker.anuko.com/reports.php
399 'form.reports.save_as_favorite' => 'Tallenna raporttipohjaksi',
400 'form.reports.confirm_delete' => 'Haluatko varmasti poistaa tämän raporttipohjan?',
401 'form.reports.include_billable' => 'laskutettavat',
402 'form.reports.include_not_billable' => 'ei-laskutettavat',
403 'form.reports.include_invoiced' => 'laskutettu',
404 'form.reports.include_not_invoiced' => 'laskuttamatta',
405 'form.reports.select_period' => 'Valitse ajanjakso',
406 'form.reports.set_period' => 'tai aseta päivät',
407 'form.reports.show_fields' => 'Näytä kentät',
408 'form.reports.group_by' => 'Ryhmittelyperuste',
409 'form.reports.group_by_no' => '--- ei ryhmitystä ---',
410 'form.reports.group_by_date' => 'päivä',
411 'form.reports.group_by_user' => 'käyttäjä',
412 'form.reports.group_by_client' => 'asiakas',
413 'form.reports.group_by_project' => 'projekti',
414 'form.reports.group_by_task' => 'tehtävä',
415
416 // Report form. See example at https://timetracker.anuko.com/report.php
417 // (after generating a report at https://timetracker.anuko.com/reports.php).
418 'form.report.export' => 'Vie',
419 // TODO: translate the following.
420 // 'form.report.assign_to_invoice' => 'Assign to invoice',
421
422 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
423 // (you can get to this form after generating a report).
424 'form.invoice.number' => 'Laskun numero',
425 'form.invoice.person' => 'Henkilö',
426
427 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
428 'form.invoice.invoice_to_delete' => 'Poistettava lasku',
429 'form.invoice.invoice_entries' => 'Laskurivit',
430 // TODO: translate the following.
431 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
432
433 // Charts form. See example at https://timetracker.anuko.com/charts.php
434 'form.charts.interval' => 'Ajalta',
435 'form.charts.chart' => 'Kaavio',
436
437 // Projects form. See example at https://timetracker.anuko.com/projects.php
438 'form.projects.active_projects' => 'Aktiiviset projektit',
439 'form.projects.inactive_projects' => 'Ei-aktiiviset projektit',
440
441 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
442 'form.tasks.active_tasks' => 'Aktiiviset tehtävät',
443 'form.tasks.inactive_tasks' => 'Ei-aktiiviset tehtävät',
444
445 // Users form. See example at https://timetracker.anuko.com/users.php
446 'form.users.active_users' => 'Aktiiviset käyttäjät',
447 'form.users.inactive_users' => 'Ei-aktiiviset käyttäjät',
448  // TODO: translate the following.
449  // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
450 'form.users.role' => 'Rooli',
451 'form.users.manager' => 'Esimies',
452 'form.users.comanager' => 'Apuesimies',
453 'form.users.rate' => 'Taksa',
454 'form.users.default_rate' => 'Oletustuntitaksa',
455
456 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
457 // TODO: translate the following.
458 // 'form.user_edit.swap_roles' => 'Swap roles',
459
460 // Roles form. See example at https://timetracker.anuko.com/roles.php
461 // TODO: translate the following.
462 // 'form.roles.active_roles' => 'Active Roles',
463 // 'form.roles.inactive_roles' => 'Inactive Roles',
464 // 'form.roles.rank' => 'Rank',
465 // 'form.roles.rights' => 'Rights',
466 // 'form.roles.assigned' => 'Assigned',
467 // 'form.roles.not_assigned' => 'Not assigned',
468
469 // Clients form. See example at https://timetracker.anuko.com/clients.php
470 'form.clients.active_clients' => 'Aktiiviset asiakkaat',
471 'form.clients.inactive_clients' => 'Ei-aktiiviset asiakkaat',
472
473 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
474 'form.client.client_to_delete' => 'Poistettava asiakas',
475 'form.client.client_entries' => 'Asiakassyötteet',
476
477 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
478 // TODO: replace "team" with "group" in the string below.
479 'form.export.hint' => 'Voit viedä tiimin tiedot xml-tiedostoksi, mikä voi helpottaa tietojen siirtoa omalle palvelimelle.',
480 'form.export.compression' => 'Pakkaus',
481 'form.export.compression_none' => 'ei pakata',
482 'form.export.compression_bzip' => 'bzip',
483
484 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
485 'form.import.hint' => 'Tuo tiimitiedot xml-tiedostosta.', // TODO: replace "team" with "group".
486 'form.import.file' => 'Valitse tiedosto',
487 'form.import.success' => 'Tietojen tuonti onnistui.',
488
489 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
490 // TODO: replace "team" with "group" in the string below.
491 'form.groups.hint' => 'Luo uusi tiimi luomalla ensin tiimin esimiehen käyttäjätili.<br>Tiimin tiedot voi myös tuoda toiselta Anuko Time Tracker -palvelimelta xml-muodossa (käyttäjänimien oltava uusia).',
492
493 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
494 'form.group_edit.12_hours' => '12-tuntinen',
495 'form.group_edit.24_hours' => '24-tuntinen',
496 // TODO: translate the following.
497 // 'form.group_edit.show_holidays' => 'Show holidays',
498 'form.group_edit.tracking_mode' => 'Seurantamuoto',
499 'form.group_edit.mode_time' => 'aika',
500 'form.group_edit.mode_projects' => 'projektit',
501 'form.group_edit.mode_projects_and_tasks' => 'projektit ja tehtävät',
502 'form.group_edit.record_type' => 'Tietueen tyyppi',
503 'form.group_edit.type_all' => 'kaikki',
504 'form.group_edit.type_start_finish' => 'aloitus ja lopetus',
505 'form.group_edit.type_duration' => 'kesto',
506 // TODO: translate the following.
507 // 'form.group_edit.punch_mode' => 'Punch mode',
508 // 'form.group_edit.allow_overlap' => 'Allow overlap',
509 // 'form.group_edit.future_entries' => 'Future entries',
510 // 'form.group_edit.uncompleted_indicators' => 'Uncompleted indicators',
511 // 'form.group_edit.confirm_save' => 'Confirm saving',
512 // 'form.group_edit.allow_ip' => 'Allow IP',
513
514 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
515 // TODO: translate the following.
516 // 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
517
518 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
519 'form.mail.from' => 'Lähettäjä',
520 'form.mail.to' => 'Vastaanottaja',
521 'form.mail.report_subject' => 'Time Tracker -raportti',
522 'form.mail.footer' => 'Anuko Time Tracker on yksinkertainen ja helppokäyttöinen vapaan koodin tuntiseurantaohjelmisto. Lisätietoja sivulla <a href="https://www.anuko.com">www.anuko.com</a>.',
523 'form.mail.report_sent' => 'Raportti lähetetty.',
524 'form.mail.invoice_sent' => 'Lasku lähetetty.',
525
526 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
527 // TODO: translate the following.
528 // 'form.quota.year' => 'Year',
529 // 'form.quota.month' => 'Month',
530 // 'form.quota.workday_hours' => 'Hours in a work day',
531 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
532
533 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
534 // TODO: translate the following.
535 // 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
536 // 'form.swap.swap_with' => 'Swap roles with',
537
538 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
539 // TODO: translate the following.
540 // 'form.work_units.minutes_in_unit' => 'Minutes in unit',
541 // 'form.work_units.1st_unit_threshold' => '1st unit threshold',
542
543 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
544 // TODO: translate the following.
545 // 'role.user.label' => 'User',
546 // 'role.user.low_case_label' => 'user',
547 // 'role.user.description' => 'A regular member without management rights.',
548 // 'role.client.label' => 'Client',
549 // 'role.client.low_case_label' => 'client',
550 // 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
551 // 'role.supervisor.label' => 'Supervisor',
552 // 'role.supervisor.low_case_label' => 'supervisor',
553 // 'role.supervisor.description' => 'A person with a small set of management rights.',
554 // 'role.comanager.label' => 'Co-manager',
555 // 'role.comanager.low_case_label' => 'co-manager',
556 // 'role.comanager.description' => 'A person with a big set of management functions.',
557 // 'role.manager.label' => 'Manager',
558 // 'role.manager.low_case_label' => 'manager',
559 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
560 // 'role.top_manager.label' => 'Top manager',
561 // 'role.top_manager.low_case_label' => 'top manager',
562 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
563 // 'role.admin.label' => 'Administrator',
564 // 'role.admin.low_case_label' => 'administrator',
565 // 'role.admin.description' => 'Site adminsitrator.',
566 );