snipe-it/resources/lang/fr/admin/consumables/message.php
snipe ddfa5776c5 Updated language strings
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>
2022-01-13 21:27:29 -08:00

37 lines
1.3 KiB
PHP

<?php
return array(
'does_not_exist' => 'Cette fourniture n\'existe pas.',
'create' => array(
'error' => 'La fourniture n\'a pas été créé, veuillez réessayer.',
'success' => 'La fourniture a été créé correctement.'
),
'update' => array(
'error' => 'La fourniture n\'a pas été actualisé, veuillez réessayer',
'success' => 'La fourniture a été actualisé correctement.'
),
'delete' => array(
'confirm' => 'Êtes-vous certain de vouloir détruire cette fourniture ?',
'error' => 'Il y a eu un problème en détruisant la fourniture. Veuillez réessayer.',
'success' => 'La fourniture a été détruite correctement.'
),
'checkout' => array(
'error' => 'La fourniture n\'a pas été attribué correctement, veuillez réessayer',
'success' => 'La fourniture a été attribué correctement.',
'user_does_not_exist' => 'Cet utilisateur est invalide. Veuillez réessayer.'
),
'checkin' => array(
'error' => 'La fourniture n\'a pas été dissocié correctement, veuillez réessayer',
'success' => 'La fourniture à été dissocié correctement.',
'user_does_not_exist' => 'Cet utilisateur est invalide. Veuillez réessayer.'
)
);