mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 08:34:25 -08:00
014eab3abc
Signed-off-by: snipe <snipe@snipe.net>
23 lines
970 B
PHP
23 lines
970 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Odjel ne postoji.',
|
|
'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' => 'Ovaj je odjel trenutačno povezan s barem jednim korisnikom i ne može se izbrisati. Ažurirajte svoje korisnike da više ne referiraju ovaj odjeljak i pokušajte ponovo.',
|
|
'create' => array(
|
|
'error' => 'Odjel nije izrađen, pokušajte ponovo.',
|
|
'success' => 'Odjel je uspješno izrađen.'
|
|
),
|
|
'update' => array(
|
|
'error' => 'Odjel nije ažuriran, pokušajte ponovo',
|
|
'success' => 'Odjel je uspješno ažuriran.'
|
|
),
|
|
'delete' => array(
|
|
'confirm' => 'Jeste li sigurni da želite izbrisati taj odjel?',
|
|
'error' => 'Došlo je do problema s brisanjem odjela. Molim te pokušaj ponovno.',
|
|
'success' => 'Odjel je uspješno izbrisan.'
|
|
)
|
|
|
|
);
|