38 lines
1.5 KiB
PHP
Executable File
38 lines
1.5 KiB
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'هذه الفئة غير موجودة.',
|
|
'assoc_users' => 'تم إخراج :count عنصر من هذا الملحق للمستخدمين، الرجاء إيداع الملحقات ثم حاول مرة أخرى. ',
|
|
|
|
'create' => array(
|
|
'error' => 'فشل إنشاء التصنيف، الرجاء المحاولة مرة أخرى.',
|
|
'success' => 'تم إنشاء الفئة بنجاح.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'فشل تحديث التصنيف، الرجاء المحاولة مرة أخرى',
|
|
'success' => 'Category updated successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this category?',
|
|
'error' => 'There was an issue deleting the category. Please try again.',
|
|
'success' => 'The category was deleted successfully.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => 'لم يتم إخراج الملحق، الرجاء المحاولة مرة أخرى',
|
|
'success' => 'تم إخراج الملحق بنجاح.',
|
|
'user_does_not_exist' => 'هذا المستخدم خاطئ، الرجاء المحاولة مرة أخرى.'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => 'لم يتم إيداع الملحق، الرجاء المحاولة مرة أخرى',
|
|
'success' => 'تم إيداع الملحق بنجاح.',
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.'
|
|
)
|
|
|
|
|
|
);
|