mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 00:24:07 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
32 lines
1.5 KiB
PHP
32 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Oznaka statusa ne postoji.',
|
|
'assoc_assets' => 'Oznaka statusa je trenutno povezana s barem jednim resursom i ne može se izbrisati. Ažurirajte resurs da se više ne referencira na tu oznaku statusa i pokušajte ponovno. ',
|
|
|
|
'create' => [
|
|
'error' => 'Oznaka statusa nije kreirana, pokušajte ponovo.',
|
|
'success' => 'Oznaka statusa je uspešno kreirana.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Oznaka statusa nije ažurirana, pokušajte ponovo',
|
|
'success' => 'Oznaka statusa je uspešno ažurirana.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Jeste li sigurni da želite da izbrišete ovu oznaku statusa?',
|
|
'error' => 'Došlo je do problema sa brisanjem oznake statusa. Molim pokušajte ponovo.',
|
|
'success' => 'Oznaka statusa je uspešno izbrisana.',
|
|
],
|
|
|
|
'help' => [
|
|
'undeployable' => 'Ova imovina ne može biti dodeljena nikome.',
|
|
'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of <i class="fa fa-circle text-blue"></i> <strong>Deployed</strong>.',
|
|
'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.',
|
|
'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.',
|
|
],
|
|
|
|
];
|