mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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>
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Kāore i te tīariari te wae.',
|
|
|
|
'create' => array(
|
|
'error' => 'Kāore i hangahia te waehanga, tēnā whakamātau anō.',
|
|
'success' => 'Kua pai te hanga o te wae.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Kāore i whakahoutia te wāhanga, tēnā whakamātau anō',
|
|
'success' => 'Kua whakahoutia te mea.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Kei te hiahia koe ki te muku i tenei waahanga?',
|
|
'error' => 'He raruraru kei te whakakore i te waahanga. Tena ngana ano.',
|
|
'success' => 'I mukua te wāhanga.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'Kāore i tutakina te wāhanga, tēnā whakamātau anō',
|
|
'success' => 'Kua tohua te Waeine.',
|
|
'user_does_not_exist' => 'He muhu te kaiwhakamahi. Tena ngana ano.'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'Kāore i whakauruhia te wāhanga, tēnā whakamātau anō',
|
|
'success' => 'Kua takitakihia te Waeine.',
|
|
'user_does_not_exist' => 'He muhu te kaiwhakamahi. Tena ngana ano.'
|
|
)
|
|
|
|
|
|
);
|