snipe-it/resources/lang/tl/admin/consumables/message.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2018-03-22 20:01:45 -07:00
<?php
return [
2018-03-22 20:01:45 -07:00
'does_not_exist' => 'Consumable does not exist.',
'create' => [
2018-03-22 20:01:45 -07:00
'error' => 'Consumable was not created, please try again.',
'success' => 'Consumable created successfully.',
],
2018-03-22 20:01:45 -07:00
'update' => [
2018-03-22 20:01:45 -07:00
'error' => 'Consumable was not updated, please try again',
'success' => 'Consumable updated successfully.',
],
2018-03-22 20:01:45 -07:00
'delete' => [
2018-03-22 20:01:45 -07:00
'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.',
],
2018-03-22 20:01:45 -07:00
'checkout' => [
2018-03-22 20:01:45 -07:00
'error' => 'Consumable was not checked out, please try again',
'success' => 'Consumable checked out successfully.',
'user_does_not_exist' => 'That user is invalid. Please try again.',
],
2018-03-22 20:01:45 -07:00
'checkin' => [
2018-03-22 20:01:45 -07:00
'error' => 'Consumable was not checked in, please try again',
'success' => 'Consumable checked in successfully.',
'user_does_not_exist' => 'That user is invalid. Please try again.',
],
2018-03-22 20:01:45 -07:00
];