mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 18:14:09 -08:00
2a0697022e
Signed-off-by: snipe <snipe@snipe.net>
44 lines
1.9 KiB
PHP
44 lines
1.9 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Tillbehöret [:id] finns inte.',
|
|
'not_found' => 'Tillbehöret hittades inte.',
|
|
'assoc_users' => 'Detta tillbehör har för närvarande :count objekt utcheckade till användare. Checka in tillbehöret och försök igen. ',
|
|
|
|
'create' => array(
|
|
'error' => 'Tillbehöret skapades inte, vänligen försök igen.',
|
|
'success' => 'Tillbehöret skapades.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Tillbehöret uppdaterades inte, försök igen',
|
|
'success' => 'Tillbehöret uppdaterades.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Är du säker på att du vill ta bort det här tillbehöret?',
|
|
'error' => 'Ett problem uppstod då tillbehöret skulle tas bort. Vänligen försök igen.',
|
|
'success' => 'Tillbehöret togs bort.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'Tillbehöret checkades inte ut. Vänligen försök igen',
|
|
'success' => 'Tillbehöret checkades ut.',
|
|
'unavailable' => 'Tillbehöret är inte tillgängligt för utcheckning. Kontrollera antal tillgängligt',
|
|
'user_does_not_exist' => 'Användaren är ogiltig. Försök igen.',
|
|
'checkout_qty' => array(
|
|
'lte' => 'There is currently only one available accessory of this type, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.|There are :number_currently_remaining total available accessories, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.',
|
|
),
|
|
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'Tillbehöret checkades inte in. Vänligen försök igen',
|
|
'success' => 'Tillbehöret checkades in.',
|
|
'user_does_not_exist' => 'Användaren är ogiltig. Försök igen.'
|
|
)
|
|
|
|
|
|
);
|