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.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Potrošnja ne postoji.',
|
|
|
|
'create' => array(
|
|
'error' => 'Potrošnja nije izrađena, pokušajte ponovo.',
|
|
'success' => 'Potrošnja je uspješno stvorena.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Potrošnja nije ažurirana, pokušajte ponovo',
|
|
'success' => 'Potrošni proizvodi su uspješno ažurirani.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Jeste li sigurni da želite izbrisati ovaj potrošni materijal?',
|
|
'error' => 'Došlo je do problema s brisanjem potrošnog materijala. Molim te pokušaj ponovno.',
|
|
'success' => 'Potrošni materijal je uspješno izbrisan.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'Potrošnja nije provjerena, pokušajte ponovo',
|
|
'success' => 'Isporuka potrošnog materijala uspješno je provjerena.',
|
|
'user_does_not_exist' => 'Taj je korisnik nevažeći. Molim te pokušaj ponovno.'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'Potrošnja nije provjerena, pokušajte ponovo',
|
|
'success' => 'Potrošni materijal uspješno je provjeren.',
|
|
'user_does_not_exist' => 'Taj je korisnik nevažeći. Molim te pokušaj ponovno.'
|
|
)
|
|
|
|
|
|
);
|