mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
8ca4c51186
Signed-off-by: snipe <snipe@snipe.net>
31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
|
|
'does_not_exist' => 'Manufacturer does not exist.',
|
|
'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ',
|
|
|
|
'create' => array(
|
|
'error' => 'Manufacturer was not created, please try again.',
|
|
'success' => 'Manufacturer created successfully.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Manufacturer was not updated, please try again',
|
|
'success' => 'Manufacturer updated successfully.'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'Manufacturer was not restored, please try again',
|
|
'success' => 'Manufacturer restored successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this manufacturer?',
|
|
'error' => 'There was an issue deleting the manufacturer. Please try again.',
|
|
'success' => 'The Manufacturer was deleted successfully.'
|
|
)
|
|
|
|
);
|