mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
ddfa5776c5
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();` I'll try to fix it. :( FML Signed-off-by: snipe <snipe@snipe.net>
43 lines
1.6 KiB
PHP
43 lines
1.6 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'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' => array(
|
|
'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' => array(
|
|
'error' => 'Kāore i te whakahouhia te tauira, na me ngana ano',
|
|
'success' => 'He pai te whakahoutanga o te tauira.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'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' => array(
|
|
'error' => 'Kaore ano kia whakahokia mai te tauira, na me ngana ano',
|
|
'success' => 'He tauira kua whakahokia mai.'
|
|
),
|
|
|
|
'bulkedit' => array(
|
|
'error' => 'Kaore i whakarereke nga mara, naore i whakahoutia.',
|
|
'success' => 'Kua whakahoutia nga tauira.'
|
|
),
|
|
|
|
'bulkdelete' => array(
|
|
'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.'
|
|
),
|
|
|
|
);
|