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

36 lines
1.1 KiB
PHP
Raw Normal View History

2019-12-06 12:03:04 -08:00
<?php
return [
2019-12-06 12:03:04 -08:00
'does_not_exist' => 'Component does not exist.',
'create' => [
2019-12-06 12:03:04 -08:00
'error' => 'Component was not created, please try again.',
'success' => 'Component created successfully.',
],
2019-12-06 12:03:04 -08:00
'update' => [
2019-12-06 12:03:04 -08:00
'error' => 'Component was not updated, please try again',
'success' => 'Component updated successfully.',
],
2019-12-06 12:03:04 -08:00
'delete' => [
2019-12-06 12:03:04 -08:00
'confirm' => 'Are you sure you wish to delete this component?',
'error' => 'There was an issue deleting the component. Please try again.',
'success' => 'The component was deleted successfully.',
],
2019-12-06 12:03:04 -08:00
'checkout' => [
2019-12-06 12:03:04 -08:00
'error' => 'Component was not checked out, please try again',
'success' => 'Component checked out successfully.',
'user_does_not_exist' => 'That user is invalid. Please try again.',
],
2019-12-06 12:03:04 -08:00
'checkin' => [
2019-12-06 12:03:04 -08:00
'error' => 'Component was not checked in, please try again',
'success' => 'Component checked in successfully.',
'user_does_not_exist' => 'That user is invalid. Please try again.',
],
2019-12-06 12:03:04 -08:00
];