mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Consumable does not exist.',
|
|
|
|
'create' => array(
|
|
'error' => 'Consumable was not created, please try again.',
|
|
'success' => 'Consumable created successfully.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Consumable was not updated, please try again',
|
|
'success' => 'Consumable updated successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this consumable?',
|
|
'error' => 'There was an issue deleting the consumable. Please try again.',
|
|
'success' => 'The consumable was deleted successfully.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'Consumable was not checked out, please try again',
|
|
'success' => 'Consumable checked out successfully.',
|
|
'user_does_not_exist' => 'Użytkownik nie istnieje. Spróbuj ponownie.'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'Consumable was not checked in, please try again',
|
|
'success' => 'Consumable checked in successfully.',
|
|
'user_does_not_exist' => 'Użytkownik nie istnieje. Spróbuj ponownie.'
|
|
)
|
|
|
|
|
|
);
|