mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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' => 'Ko tenei taputapu i tenei wa: ko nga nama kua taatatia ki nga kaiwhakamahi. Titiro koa ki nga taputapu me te ngana ano.',
|
|
|
|
'create' => [
|
|
'error' => 'Kaore i hangaia te taputapu, ngana ano ngana.',
|
|
'success' => 'I angitu te waihanga i te taputapu.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Kāore i te whakahouhia te taputapu, tēnā whakamātau anō',
|
|
'success' => 'Kua pai te whakahoutanga o te taputapu.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Kei te hiahia koe ki te muku i tenei taputapu?',
|
|
'error' => 'He raruraru kei te whakakore i te taputapu. Tena ngana ano.',
|
|
'success' => 'Kua whakakorehia te taputapu.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'Kaore ano kia uruhia te uru, ka ngana ano',
|
|
'success' => 'He pai te tirotiro i te Accessory.',
|
|
'user_does_not_exist' => 'He muhu te kaiwhakamahi. Tena ngana ano.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'Kaore i te takiuruhia te Accessory, tēnā whakamātau anō',
|
|
'success' => 'Whakaratohia te Accessory i te angitu.',
|
|
'user_does_not_exist' => 'He muhu te kaiwhakamahi. Tena ngana ano.',
|
|
],
|
|
|
|
];
|