2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
2017-10-17 18:52:20 -07:00
|
|
|
'does_not_exist' => 'Komponenttia ei ole olemassa.',
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
'create' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'error' => 'Komponenttia ei luotu, yritä uudelleen.',
|
|
|
|
'success' => 'Komponentti on luotu onnistuneesti.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'update' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'error' => 'Komponenttia ei ole päivitetty, yritä uudelleen',
|
|
|
|
'success' => 'Komponentti on päivitetty onnistuneesti.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'delete' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'confirm' => 'Haluatko varmasti poistaa tämän komponentin?',
|
|
|
|
'error' => 'Komponentti poistettiin ongelmasta. Yritä uudelleen.',
|
|
|
|
'success' => 'Komponentti poistettiin onnistuneesti.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'checkout' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'error' => 'Komponenttia ei ole tarkistettu, yritä uudelleen',
|
|
|
|
'success' => 'Komponentti onnistui.',
|
|
|
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'checkin' => array(
|
2017-10-17 18:52:20 -07:00
|
|
|
'error' => 'Komponenttia ei ole tarkistettu, yritä uudelleen',
|
|
|
|
'success' => 'Komponentti tarkistettiin onnistuneesti.',
|
|
|
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
2016-03-25 01:18:05 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
);
|