2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
return array(
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-10-17 18:52:20 -07:00
|
|
|
'does_not_exist' => 'Komponenttia ei ole olemassa.',
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'create' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'error' => 'Komponenttia ei luotu, yritä uudelleen.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'success' => 'Komponentti on luotu onnistuneesti.'
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'update' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'error' => 'Komponenttia ei ole päivitetty, yritä uudelleen',
|
2022-01-13 21:27:29 -08:00
|
|
|
'success' => 'Komponentti on päivitetty onnistuneesti.'
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'delete' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'confirm' => 'Haluatko varmasti poistaa tämän komponentin?',
|
2020-12-30 12:51:09 -08:00
|
|
|
'error' => 'Komponentti poisto ei onnistunut. Yritä uudelleen.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'success' => 'Komponentti poistettiin.'
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'checkout' => array(
|
2020-12-30 12:51:09 -08:00
|
|
|
'error' => 'Komponenttia ei luovutettu, yritä uudelleen',
|
|
|
|
'success' => 'Komponentin luovutus onnistui.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
|
|
|
),
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'checkin' => array(
|
2020-12-30 12:51:09 -08:00
|
|
|
'error' => 'Komponenttia ei palautettu, yritä uudelleen',
|
|
|
|
'success' => 'Komponentti palautettiin onnistuneesti.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
|
|
|
)
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
|
|
|
|
);
|