mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
26 lines
905 B
PHP
26 lines
905 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'حالة التصنيف غير موجود.',
|
|
'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Status Label was not created, please try again.',
|
|
'success' => 'تم إنشاء تسمية الحالة بنجاح.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Status Label was not updated, please try again',
|
|
'success' => 'تم تحديث تسمية الحالة بنجاح.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this Status Label?',
|
|
'error' => 'There was an issue deleting the Status Label. Please try again.',
|
|
'success' => 'The Status Label was deleted successfully.'
|
|
)
|
|
|
|
);
|