libra/lang/ar/enums.php

26 lines
637 B
PHP

<?php
return [
'consultation_status' => [
'pending' => 'قيد الانتظار',
'approved' => 'موافق عليه',
'rejected' => 'مرفوض',
'completed' => 'مكتمل',
'no_show' => 'لم يحضر',
'cancelled' => 'ملغي',
],
'payment_status' => [
'pending' => 'معلق',
'received' => 'مستلم',
'na' => 'غير متاح',
],
'consultation_type' => [
'free' => 'مجانية',
'paid' => 'مدفوعة',
],
'timeline_status' => [
'active' => 'نشط',
'archived' => 'مؤرشف',
],
];