mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
25 lines
901 B
PHP
25 lines
901 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'المورد غير مجود.',
|
|
'assoc_users' => 'This supplier is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this supplier and try again. ',
|
|
|
|
'create' => array(
|
|
'error' => 'لم يتم إنشاء المورد، الرجاء المحاولة مرة أخرى.',
|
|
'success' => 'تم إنشاء المورد بنجاح.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Supplier was not updated, please try again',
|
|
'success' => 'Supplier updated successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'هل أنت متأكد من رغبتك في حذف هذا المورد؟',
|
|
'error' => 'There was an issue deleting the supplier. Please try again.',
|
|
'success' => 'تم حذف المورد بنجاح.'
|
|
)
|
|
|
|
);
|