mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 23:19:42 -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
26 lines
991 B
PHP
26 lines
991 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Kāhore he kāwai.',
|
|
'assoc_models' => 'Kei te honohia tenei waahanga ki te tauira kotahi, kaore e taea te muku. Tena koa whakahou i o tauira kia kaua e tautuhi i tenei waahanga ka ngana ano.',
|
|
'assoc_items' => 'Ko tenei waahanga kei te hono tahi me te iti rawa: asset_type kaore e taea te muku. Tena koa whakahou i to: asset_type kia kaua e tohutohutia tenei waahanga ka ngana ano.',
|
|
|
|
'create' => [
|
|
'error' => 'Kāore i hangaia te kāwai, tēnā whakamātau anō.',
|
|
'success' => 'Kua angitu te hanga o te hanga.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Kāhore i whakahoutia te kāwai, tēnā whakamātau anō',
|
|
'success' => 'Kua pai te whakahoutanga o te momo.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Kei te hiahia koe ki te muku i tenei kāwai?',
|
|
'error' => 'He raruraru kei te whakakore i te kāwai. Tena ngana ano.',
|
|
'success' => 'Kua mukua te kāwai.',
|
|
],
|
|
|
|
];
|