mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08:00
af2e407543
Signed-off-by: snipe <snipe@snipe.net>
27 lines
1.2 KiB
PHP
27 lines
1.2 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Supplier does not exist.',
|
|
|
|
'create' => [
|
|
'error' => 'Supplier was not created, please try again.',
|
|
'success' => 'Supplier created successfully.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Supplier was not updated, please try again',
|
|
'success' => 'Supplier updated successfully.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Are you sure you wish to delete this supplier?',
|
|
'error' => 'There was an issue deleting the supplier. Please try again.',
|
|
'success' => 'Supplier was deleted successfully.',
|
|
'assoc_assets' => 'This supplier is currently associated with :asset_count asset(s) and cannot be deleted. Please update your assets to no longer reference this supplier and try again. ',
|
|
'assoc_licenses' => 'This supplier is currently associated with :licenses_count licences(s) and cannot be deleted. Please update your licenses to no longer reference this supplier and try again. ',
|
|
'assoc_maintenances' => 'This supplier is currently associated with :asset_maintenances_count asset maintenances(s) and cannot be deleted. Please update your asset maintenances to no longer reference this supplier and try again. ',
|
|
],
|
|
|
|
);
|