snipe-it/resources/lang/ur-PK/admin/consumables/message.php

37 lines
1.1 KiB
PHP
Raw Normal View History

2019-12-06 12:03:04 -08:00
<?php
return array(
2019-12-06 12:03:04 -08:00
'does_not_exist' => 'Consumable does not exist.',
'create' => array(
2019-12-06 12:03:04 -08:00
'error' => 'Consumable was not created, please try again.',
'success' => 'Consumable created successfully.'
),
2019-12-06 12:03:04 -08:00
'update' => array(
2019-12-06 12:03:04 -08:00
'error' => 'Consumable was not updated, please try again',
'success' => 'Consumable updated successfully.'
),
2019-12-06 12:03:04 -08:00
'delete' => array(
2019-12-06 12:03:04 -08: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.'
),
2019-12-06 12:03:04 -08:00
'checkout' => array(
2019-12-06 12:03:04 -08: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.'
),
2019-12-06 12:03:04 -08:00
'checkin' => array(
2019-12-06 12:03:04 -08: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.'
)
2019-12-06 12:03:04 -08:00
);