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
42 lines
1.5 KiB
PHP
42 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Kāore te tauira i te tīariari.',
|
|
'assoc_users' => 'Kei te hono tenei tauira ki te kotahi, neke atu ranei nga rawa, kaore e taea te muku. Nganahia nga rawa, ka ngana ki te muku ano.',
|
|
|
|
'create' => [
|
|
'error' => 'Kāore i hangaia te tauira, tēnā whakamātau anō.',
|
|
'success' => 'I waihangahia te tauira i pai.',
|
|
'duplicate_set' => 'Ko te tauira o te taonga me te ingoa, te kaiwhakanao me te tau tauira kei te noho tonu.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Kāore i te whakahouhia te tauira, na me ngana ano',
|
|
'success' => 'He pai te whakahoutanga o te tauira.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Kei te hiahia koe ki te muku i tenei tauira taonga?',
|
|
'error' => 'I puta he take e whakakore ana i te tauira. Tena ngana ano.',
|
|
'success' => 'Kua mukua te tauira.',
|
|
],
|
|
|
|
'restore' => [
|
|
'error' => 'Kaore ano kia whakahokia mai te tauira, na me ngana ano',
|
|
'success' => 'He tauira kua whakahokia mai.',
|
|
],
|
|
|
|
'bulkedit' => [
|
|
'error' => 'Kaore i whakarereke nga mara, naore i whakahoutia.',
|
|
'success' => 'Kua whakahoutia nga tauira.',
|
|
],
|
|
|
|
'bulkdelete' => [
|
|
'error' => 'No models were selected, so nothing was deleted.',
|
|
'success' => ':success_count model(s) deleted!',
|
|
'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.',
|
|
],
|
|
|
|
];
|