mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -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
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'The accessory [:id] does not exist.',
|
|
'assoc_users' => 'Ovaj pribor trenutačno ima: brojčanu stavku označenu korisnicima. Provjerite pribor i pokušajte ponovo.',
|
|
|
|
'create' => [
|
|
'error' => 'Dodatak nije izrađen, pokušajte ponovo.',
|
|
'success' => 'Dodatak je uspješno izrađen.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Dodatak nije ažuriran, pokušajte ponovo',
|
|
'success' => 'Dodatak je uspješno ažuriran.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Jeste li sigurni da želite izbrisati ovaj dodatak?',
|
|
'error' => 'Došlo je do problema s brisanjem dodatne opreme. Molim te pokušaj ponovno.',
|
|
'success' => 'Dodatak je uspješno izbrisan.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'Dodatak nije provjeren, pokušajte ponovo',
|
|
'success' => 'Usluga je uspješno provjerena.',
|
|
'user_does_not_exist' => 'Taj je korisnik nevažeći. Molim te pokušaj ponovno.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'Dodatna oprema nije prijavljena, pokušajte ponovo',
|
|
'success' => 'Pristup je uspješno prijavljen.',
|
|
'user_does_not_exist' => 'Taj je korisnik nevažeći. Molim te pokušaj ponovno.',
|
|
],
|
|
|
|
];
|