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

47 lines
1.9 KiB
PHP
Raw Normal View History

2018-03-22 20:01:45 -07:00
<?php
return array(
2018-03-22 20:01:45 -07:00
'does_not_exist' => 'Model does not exist.',
'no_association' => 'NO MODEL ASSOCIATED.',
'no_association_fix' => 'This will break things in weird and horrible ways. Edit this asset now to assign it a model.',
2018-03-22 20:01:45 -07:00
'assoc_users' => 'This model is currently associated with one or more assets and cannot be deleted. Please delete the assets, and then try deleting again. ',
'create' => array(
2018-03-22 20:01:45 -07:00
'error' => 'Model was not created, please try again.',
'success' => 'Model created successfully.',
'duplicate_set' => 'An asset model with that name, manufacturer and model number already exists.',
),
2018-03-22 20:01:45 -07:00
'update' => array(
2018-03-22 20:01:45 -07:00
'error' => 'Model was not updated, please try again',
'success' => 'Model updated successfully.',
),
2018-03-22 20:01:45 -07:00
'delete' => array(
2018-03-22 20:01:45 -07:00
'confirm' => 'Are you sure you wish to delete this asset model?',
'error' => 'There was an issue deleting the model. Please try again.',
'success' => 'The model was deleted successfully.'
),
2018-03-22 20:01:45 -07:00
'restore' => array(
2018-03-22 20:01:45 -07:00
'error' => 'Model was not restored, please try again',
'success' => 'Model restored successfully.'
),
2018-03-22 20:01:45 -07:00
'bulkedit' => array(
2018-03-22 20:01:45 -07:00
'error' => 'No fields were changed, so nothing was updated.',
'success' => 'Model successfully updated. |:model_count models successfully updated.',
'warn' => 'You are about to update the properies of the following model: |You are about to edit the properties of the following :model_count models:',
),
2018-03-22 20:01:45 -07:00
'bulkdelete' => array(
2018-03-22 20:01:45 -07:00
'error' => 'No models were selected, so nothing was deleted.',
'success' => 'Model deleted!|:success_count models deleted!',
'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.'
),
2018-03-22 20:01:45 -07:00
);