mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
014eab3abc
Signed-off-by: snipe <snipe@snipe.net>
23 lines
961 B
PHP
23 lines
961 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Osastoa ei ole olemassa.',
|
|
'department_already_exists' => 'A department already exists with that name at this company location. Or choose a more specific name for this department. ',
|
|
'assoc_users' => 'Tällä osastolla on tällä hetkellä vähintään yksi käyttäjä, eikä sitä voi poistaa. Poista käyttäjiltä viitaus tähän osastoon ja yritä uudelleen. ',
|
|
'create' => array(
|
|
'error' => 'Osastoa ei luotu, yritä uudelleen.',
|
|
'success' => 'Osasto luotiin onnistuneesti.'
|
|
),
|
|
'update' => array(
|
|
'error' => 'Osastoa ei päivitetty, yritä uudelleen',
|
|
'success' => 'Osasto päivitettiin onnistuneesti.'
|
|
),
|
|
'delete' => array(
|
|
'confirm' => 'Haluatko varmasti poistaa tämän osaston?',
|
|
'error' => 'Osaston poistamisessa tapahtui jotain. Yritä uudelleen.',
|
|
'success' => 'Osasto poistettiin onnistuneesti.'
|
|
)
|
|
|
|
);
|