complete 3.4 with qa tests

This commit is contained in:
Naser Mansour
2025-12-26 19:26:02 +02:00
parent 1b3bc0a2cf
commit 875741d906
19 changed files with 1282 additions and 62 deletions
+27
View File
@@ -1,9 +1,36 @@
<?php
return [
// Calendar
'available' => 'Available',
'partial' => 'Partial',
'unavailable' => 'Unavailable',
'available_times' => 'Available Times',
'no_slots_available' => 'No slots available for this date.',
// Booking form
'request_consultation' => 'Request Consultation',
'select_date_time' => 'Select a date and time for your consultation',
'selected_time' => 'Selected Time',
'problem_summary' => 'Problem Summary',
'problem_summary_placeholder' => 'Please describe your legal issue or question in detail...',
'problem_summary_help' => 'Minimum 20 characters. This helps the lawyer prepare for your consultation.',
'continue' => 'Continue',
'confirm_booking' => 'Confirm Your Booking',
'confirm_message' => 'Please review your booking details before submitting.',
'date' => 'Date',
'time' => 'Time',
'duration' => 'Duration',
'submit_request' => 'Submit Request',
'submitted_successfully' => 'Your booking request has been submitted. You will receive an email confirmation shortly.',
// Validation messages
'already_booked_this_day' => 'You already have a booking on this day.',
'slot_no_longer_available' => 'This time slot is no longer available. Please select another.',
'slot_taken' => 'This slot was just booked. Please select another time.',
// Consultations list
'my_consultations' => 'My Consultations',
'no_consultations' => 'You have no consultations yet.',
'book_first_consultation' => 'Book Your First Consultation',
];
+5
View File
@@ -9,4 +9,9 @@ return [
'actions' => 'Actions',
'yes' => 'Yes',
'no' => 'No',
'change' => 'Change',
'back' => 'Back',
'loading' => 'Loading...',
'submitting' => 'Submitting...',
'minutes' => 'minutes',
];
+23
View File
@@ -40,4 +40,27 @@ return [
// Common
'login_now' => 'Login Now',
'regards' => 'Regards',
// Booking Submitted (client)
'booking_submitted_subject' => 'Booking Request Submitted',
'booking_submitted_title' => 'Booking Request Received',
'booking_submitted_greeting' => 'Dear :name,',
'booking_submitted_body' => 'Your consultation booking request has been submitted successfully and is pending review.',
'booking_details' => 'Booking Details:',
'booking_date' => 'Date:',
'booking_time' => 'Time:',
'booking_duration' => 'Duration:',
'booking_submitted_next_steps' => 'Our team will review your request and you will receive a confirmation once approved.',
'booking_submitted_contact' => 'If you have any questions, please do not hesitate to contact us.',
// New Booking Request (admin)
'new_booking_request_subject' => 'New Booking Request',
'new_booking_request_title' => 'New Consultation Booking Request',
'new_booking_request_body' => 'A new consultation booking request has been submitted.',
'client_details' => 'Client Details:',
'client_name' => 'Name:',
'client_email' => 'Email:',
'client_phone' => 'Phone:',
'problem_summary' => 'Problem Summary:',
'view_in_dashboard' => 'View in Dashboard',
];
+12
View File
@@ -0,0 +1,12 @@
<?php
return [
'consultation_status' => [
'pending' => 'Pending',
'approved' => 'Approved',
'rejected' => 'Rejected',
'completed' => 'Completed',
'no_show' => 'No Show',
'cancelled' => 'Cancelled',
],
];