mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-27 14:39:49 -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.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'The accessory [:id] does not exist.',
|
|
'assoc_users' => 'Lesi sesekeli samanje sino: ukubala izinto ezihlolwe kubasebenzisi. Sicela uhlole izesekeli bese uzama futhi.',
|
|
|
|
'create' => [
|
|
'error' => 'Impahla ayidalwanga, sicela uzame futhi.',
|
|
'success' => 'I-accessory yenziwe ngempumelelo.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Isesekeli asizange sibuyekezwe, sicela uzame futhi',
|
|
'success' => 'I-accessory ibuyekezwe ngempumelelo.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Ingabe uqinisekile ukuthi ufisa ukususa le ndawo yokufinyelela?',
|
|
'error' => 'Kube nenkinga yokususa i-accessory. Ngicela uzame futhi.',
|
|
'success' => 'Isesekeli sisusiwe ngempumelelo.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'Ukufinyelela akuzange kuhlolwe, sicela uzame futhi',
|
|
'success' => 'Ukufinyelela kufakwe ngempumelelo.',
|
|
'user_does_not_exist' => 'Lo msebenzisi awuvumelekile. Ngicela uzame futhi.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'Ukufinyelela akuzange kungenwe, sicela uzame futhi',
|
|
'success' => 'Okufinyeleleka kuhlolwe ngempumelelo.',
|
|
'user_does_not_exist' => 'Lo msebenzisi awuvumelekile. Ngicela uzame futhi.',
|
|
],
|
|
|
|
];
|