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
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'field' => [
|
|
'invalid' => 'Kāore te mara i te tīariari.',
|
|
'already_added' => 'Kua tapirihia te mara',
|
|
|
|
'create' => [
|
|
'error' => 'Kāore i hanga te mara, tēnā whakamātau anō.',
|
|
'success' => 'Kua angitu te hanganga o te mara.',
|
|
'assoc_success' => 'Kua angitu te uru o te mara ki te raruraru.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Kāore i te whakahou te mara, tēnā whakamātau anō',
|
|
'success' => 'Kua oti te whakahoutanga o te mara.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Kei te hiahia koe ki te muku i tenei mara?',
|
|
'error' => 'He raru kei te whakakore i te mara. Tena ngana ano.',
|
|
'success' => 'Kua mukua te mara.',
|
|
'in_use' => 'Kei te whakamahia tonu te mara.',
|
|
],
|
|
|
|
],
|
|
|
|
'fieldset' => [
|
|
|
|
'does_not_exist' => 'Kāore i te tīariari te āpure',
|
|
|
|
'create' => [
|
|
'error' => 'Kaore i hangahia te papawai, me ngana ano.',
|
|
'success' => 'I hanga angitu a Fieldset.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Kāore i te whakahoutia a Fieldset, tēnā whakamātau anō',
|
|
'success' => 'Kua pai te whakahōu o Fieldfield.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Kei te hiahia koe kia mukua tenei raruraru?',
|
|
'error' => 'He raru kei te whakakore i te raruraru. Tena ngana ano.',
|
|
'success' => 'Kua mukua te raruraru.',
|
|
'in_use' => 'Kei te whakamahia tonu a Fieldset.',
|
|
],
|
|
|
|
],
|
|
|
|
];
|