mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
26 lines
1,000 B
PHP
26 lines
1,000 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Luokkaa ei löydy.',
|
|
'assoc_models' => 'This category is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this category and try again. ',
|
|
'assoc_items' => 'This category is currently associated with at least one :asset_type and cannot be deleted. Please update your :asset_type to no longer reference this category and try again. ',
|
|
|
|
'create' => array(
|
|
'error' => 'Luokkaa ei luotu, yritä uudelleen.',
|
|
'success' => 'Luokka luotiin onnistuneesti.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Luokkaa ei päivitetty, yritä uudelleen',
|
|
'success' => 'Luokka päivitettiin onnistuneesti.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Oletko varma että haluat poistaa tämän luokan?',
|
|
'error' => 'Luokan poistossa tapahtui virhe. Yritä uudelleen.',
|
|
'success' => 'Luokka poistettiin onnistuneesti.'
|
|
)
|
|
|
|
);
|