mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -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
20 lines
785 B
PHP
20 lines
785 B
PHP
<?php
|
|
|
|
return [
|
|
'does_not_exist' => 'Kāore te Kamupene i te tīariari.',
|
|
'assoc_users' => 'Kei te hono tenei kamupene ki te tauira kotahi, kaore e taea te muku. Tena koa whakahou i o tauira kia kaua e tohutohutia tenei kamupene ka ngana ano.',
|
|
'create' => [
|
|
'error' => 'Kāore i hangaia te Kamupene, tēnā whakamātau anō.',
|
|
'success' => 'I angitu te Kamupene.',
|
|
],
|
|
'update' => [
|
|
'error' => 'Kāore te Kamupene i whakahoutia, tēnā whakamātau anō',
|
|
'success' => 'Kua angitu te Kamupene.',
|
|
],
|
|
'delete' => [
|
|
'confirm' => 'Kei te hiahia koe ki te muku i tenei kamupene?',
|
|
'error' => 'He raru kei te whakakore i te kamupene. Tena ngana ano.',
|
|
'success' => 'I mukua te Kamupene.',
|
|
],
|
|
];
|