mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
ddfa5776c5
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();` I'll try to fix it. :( FML Signed-off-by: snipe <snipe@snipe.net>
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Komponenttia ei ole olemassa.',
|
|
|
|
'create' => array(
|
|
'error' => 'Komponenttia ei luotu, yritä uudelleen.',
|
|
'success' => 'Komponentti on luotu onnistuneesti.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Komponenttia ei ole päivitetty, yritä uudelleen',
|
|
'success' => 'Komponentti on päivitetty onnistuneesti.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Haluatko varmasti poistaa tämän komponentin?',
|
|
'error' => 'Komponentti poisto ei onnistunut. Yritä uudelleen.',
|
|
'success' => 'Komponentti poistettiin.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'Komponenttia ei luovutettu, yritä uudelleen',
|
|
'success' => 'Komponentin luovutus onnistui.',
|
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'Komponenttia ei palautettu, yritä uudelleen',
|
|
'success' => 'Komponentti palautettiin onnistuneesti.',
|
|
'user_does_not_exist' => 'Kyseinen käyttäjä on virheellinen. Yritä uudelleen.'
|
|
)
|
|
|
|
|
|
);
|