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>
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Komponenta ne postoji.',
|
|
|
|
'create' => array(
|
|
'error' => 'Komponenta nije kreirana, pokušajte ponovo.',
|
|
'success' => 'Komponenta je uspešno kreirana.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Komponenta nije ažurirana, pokušajte ponovo',
|
|
'success' => 'Komponenta je uspešno ažurirana.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Da li ste sigurni da želite izbrisati ovu komponentu?',
|
|
'error' => 'Došlo je do problema s brisanjem komponente. Molim pokušaj te ponovo.',
|
|
'success' => 'Komponenta je uspješno izbrisana.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'Component was not checked out, please try again',
|
|
'success' => 'Component checked out successfully.',
|
|
'user_does_not_exist' => 'Korisnik nevažeći. Molim pokušaj te ponovo.'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'Komponenta nije prijavljena, pokušajte ponovo',
|
|
'success' => 'Komponenta je uspešno prijavljena.',
|
|
'user_does_not_exist' => 'Korisnik je nevažeći. Molim pokušajte ponovo.'
|
|
)
|
|
|
|
|
|
);
|