mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
32 lines
1 KiB
PHP
32 lines
1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Malli ei löydy.',
|
|
'assoc_users' => 'Tämä malli on määritetty käyttöön yhdelle tai useammalle laitteelle joten sitä ei voida poistaa. Poista malli käytöstä kaikilta laitteilta ja yritä uudelleen. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Mallia ei luotu, yritä uudelleen.',
|
|
'success' => 'Malli luotiin onnistuneesti.',
|
|
'duplicate_set' => 'An asset model with that name, manufacturer and model number already exists.',
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Mallia ei päivitetty, yritä uudelleen',
|
|
'success' => 'Malli päivitettiin onnistuneesti.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Oletko varma että haluat poistaa tämän laitemallin?',
|
|
'error' => 'Laitemallin poistossa tapahtui virhe. Yritä uudelleen.',
|
|
'success' => 'Malli poistettiin onnistuneesti.'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'Model was not restored, please try again',
|
|
'success' => 'Model restored successfully.'
|
|
),
|
|
|
|
);
|