68 lines
2.7 KiB
PHP
68 lines
2.7 KiB
PHP
<?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.',
|
|
'slot_not_available' => 'This time slot is not available. Please select another.',
|
|
|
|
// Consultations list
|
|
'my_consultations' => 'My Consultations',
|
|
'no_consultations' => 'You have no consultations yet.',
|
|
'book_first_consultation' => 'Book Your First Consultation',
|
|
'add_to_calendar' => 'Add to Calendar',
|
|
|
|
// Consultations sections
|
|
'upcoming_consultations' => 'Upcoming Consultations',
|
|
'pending_requests' => 'Pending Requests',
|
|
'past_consultations' => 'Past Consultations',
|
|
'no_upcoming_consultations' => 'No upcoming consultations',
|
|
'no_pending_requests' => 'No pending requests',
|
|
'no_past_consultations' => 'No past consultations',
|
|
'book_consultation' => 'Book Consultation',
|
|
|
|
// Consultation types
|
|
'type_free' => 'Free',
|
|
'type_paid' => 'Paid',
|
|
|
|
// Payment status
|
|
'payment_pending' => 'Payment Pending',
|
|
'payment_received' => 'Payment Received',
|
|
|
|
// Other
|
|
'submitted_on' => 'Submitted',
|
|
'pending_review' => 'Pending Review',
|
|
|
|
// Booking status
|
|
'can_book_today' => 'You can book a consultation today',
|
|
'already_booked_today' => 'You already have a booking for today',
|
|
'pending_for_date' => 'You have a pending request for :date',
|
|
'pending_count' => 'You have :count pending requests',
|
|
'limit_message' => 'Note: You can book a maximum of 1 consultation per day.',
|
|
'user_booked' => 'Your booking',
|
|
];
|