mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -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
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'field' => [
|
|
'invalid' => 'Leyo nsiyo ayikho.',
|
|
'already_added' => 'Inkambu isivele iseziwe',
|
|
|
|
'create' => [
|
|
'error' => 'Inkundla ayidalwanga, sicela uzame futhi.',
|
|
'success' => 'Inkundla idalwe ngempumelelo.',
|
|
'assoc_success' => 'Inkambu ingezwe ngempumelelo ku-fieldset.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Inkambu ayizange ibuyekezwe, sicela uzame futhi',
|
|
'success' => 'Inkundla ibuyekezwe ngempumelelo.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Uqinisekile ukuthi ufisa ukususa le nsimu?',
|
|
'error' => 'Kube nenkinga yokususa insimu. Ngicela uzame futhi.',
|
|
'success' => 'Insimu isusiwe ngempumelelo.',
|
|
'in_use' => 'Insimu isasebenza.',
|
|
],
|
|
|
|
],
|
|
|
|
'fieldset' => [
|
|
|
|
'does_not_exist' => 'I-Fieldset ayikho',
|
|
|
|
'create' => [
|
|
'error' => 'I-Fieldset ayidalwanga, sicela uzame futhi.',
|
|
'success' => 'I-Fieldset idalwe ngempumelelo.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'I-Fieldset ayizange ibuyekezwe, sicela uzame futhi',
|
|
'success' => 'I-Fieldset ibuyekezwe ngempumelelo.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Ingabe uqinisekile ukuthi ufisa ukususa lesi sigaba sendawo?',
|
|
'error' => 'Kube nenkinga ekususeni ukusethwa kwenkambu. Ngicela uzame futhi.',
|
|
'success' => 'I-fieldset isusiwe ngempumelelo.',
|
|
'in_use' => 'I-Fieldset isasebenza.',
|
|
],
|
|
|
|
],
|
|
|
|
];
|