This commit is contained in:
2024-04-21 14:42:52 +02:00
parent 4b69674ede
commit 8a25f53c99
10700 changed files with 55767 additions and 14201 deletions

View File

@ -0,0 +1,22 @@
<?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.'
)
);

View File

@ -0,0 +1,11 @@
<?php
return array(
'id' => 'iskaznica',
'name' => 'Naziv odjela',
'manager' => 'Menadžer',
'location' => 'Mjesto',
'create' => 'Izradi odjel',
'update' => 'Odjel za ažuriranje',
);