mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
ddfa5776c5
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();` I'll try to fix it. :( FML Signed-off-by: snipe <snipe@snipe.net>
43 lines
1.5 KiB
PHP
43 lines
1.5 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Model ne postoji.',
|
|
'assoc_users' => 'Ovaj je model trenutno povezan s jednom ili više imovina i ne može se izbrisati. Izbrišite imovinu pa pokušajte ponovo. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Model nije kreiran, pokušajte ponovo.',
|
|
'success' => 'Model je uspešno kreiran.',
|
|
'duplicate_set' => 'Model imovine s tim nazivom, proizvođačem i brojem modela već postoji.',
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Model nije ažuriran, pokušajte ponovo',
|
|
'success' => 'Model je uspešno ažuriran.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Jeste li sigurni da želite izbrisati ovaj model imovine?',
|
|
'error' => 'Došlo je do problema s brisanjem modela. Molim pokušajte ponovo.',
|
|
'success' => 'Model je uspešno izbrisan.'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'Model nije obnovljen, pokušajte ponovo',
|
|
'success' => 'Model je uspešno obnovljen.'
|
|
),
|
|
|
|
'bulkedit' => array(
|
|
'error' => 'Polja nisu menjana, tako da ništa nije ažurirano.',
|
|
'success' => 'Modeli su ažurirani.'
|
|
),
|
|
|
|
'bulkdelete' => array(
|
|
'error' => 'Nijedan model nije odabran, tako da ništa nije izbrisano.',
|
|
'success' => ':success_count model(a) izbrisan(o)!',
|
|
'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.'
|
|
),
|
|
|
|
);
|