complete story 3.2 with qa tests
This commit is contained in:
@@ -10,4 +10,19 @@ return [
|
||||
'to' => 'to',
|
||||
'start_time' => 'Start Time',
|
||||
'end_time' => 'End Time',
|
||||
|
||||
// Blocked Times
|
||||
'blocked_times' => 'Blocked Times',
|
||||
'blocked_times_description' => 'Block specific dates or time ranges when you are unavailable for bookings.',
|
||||
'add_blocked_time' => 'Add Blocked Time',
|
||||
'edit_blocked_time' => 'Edit Blocked Time',
|
||||
'block_date' => 'Date',
|
||||
'all_day' => 'All Day',
|
||||
'reason' => 'Reason',
|
||||
'no_blocked_times' => 'No blocked times found.',
|
||||
'upcoming' => 'Upcoming',
|
||||
'past' => 'Past',
|
||||
'all' => 'All',
|
||||
'confirm_delete' => 'Confirm Delete',
|
||||
'confirm_delete_blocked_time' => 'Are you sure you want to delete this blocked time?',
|
||||
];
|
||||
|
||||
@@ -89,6 +89,9 @@ return [
|
||||
'no_companies_match' => 'No companies match your search criteria.',
|
||||
'company_information' => 'Company Information',
|
||||
|
||||
// Misc
|
||||
'unknown' => 'Unknown',
|
||||
|
||||
// Profile Page
|
||||
'client_information' => 'Client Information',
|
||||
'contact_information' => 'Contact Information',
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'save' => 'Save',
|
||||
'cancel' => 'Cancel',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'optional' => 'Optional',
|
||||
'actions' => 'Actions',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
];
|
||||
@@ -3,5 +3,7 @@
|
||||
return [
|
||||
'unauthorized' => 'You are not authorized to access this resource.',
|
||||
'working_hours_saved' => 'Working hours saved successfully.',
|
||||
'pending_bookings_warning' => 'Note: :count pending booking(s) may be affected.',
|
||||
'pending_bookings_warning' => 'Warning: :count pending booking(s) exist during this time.',
|
||||
'blocked_time_saved' => 'Blocked time saved successfully.',
|
||||
'blocked_time_deleted' => 'Blocked time deleted successfully.',
|
||||
];
|
||||
|
||||
@@ -150,6 +150,7 @@ return [
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
|
||||
'end_time_after_start' => 'End time must be after start time.',
|
||||
'block_date_future' => 'Block date must be today or a future date.',
|
||||
|
||||
'attributes' => [
|
||||
'email' => 'email',
|
||||
|
||||
Reference in New Issue
Block a user