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