Merge branch 'develop' into MED-97

This commit is contained in:
2025-09-26 17:01:24 +03:00
86 changed files with 11249 additions and 3151 deletions

View File

@@ -4,5 +4,17 @@
"analysisPackages": {
"title": "Analysis packages",
"description": "Get to know the personal analysis packages and order"
}
},
"noCategories": "Service list not found, please try again later",
"noResults": "No available times on the selected dates",
"services": "Services",
"locations": "Locations",
"showAll": "Show all",
"showAllLocations": "Show all locations",
"bookTimeSuccess": "Time selected",
"bookTimeError": "Failed to select time",
"bookTimeLoading": "Selecting time...",
"serviceNotFound": "Service not found",
"noProducts": "No products found",
"timeSlotUnavailable": "Service availability has changed, please select a new time"
}

View File

@@ -7,14 +7,18 @@
"item": "Item",
"quantity": "Quantity",
"price": "Price",
"total": "Total"
"total": "Total",
"time": "Time",
"location": "Location"
},
"checkout": {
"goToCheckout": "Go to checkout",
"goToDashboard": "Continue",
"error": {
"title": "Something went wrong",
"description": "Please try again later."
"description": "Please try again later.",
"BOOKING_FAILED": "Service error, please try again later.",
"TIME_SLOT_UNAVAILABLE": "The selected time is not available."
},
"timeLeft": "Time left {{timeLeft}}",
"timeoutTitle": "Reservation expired",
@@ -86,5 +90,9 @@
"title": "Location for analysis",
"description": "If you are unable to go to the lab to collect the sample, you can go to any other suitable collection point.",
"locationSelect": "Select location"
},
"editServiceItem": {
"title": "Edit booking",
"description": "Edit booking details"
}
}

View File

@@ -148,5 +148,7 @@
"language": "Language",
"yes": "Yes",
"no": "No",
"preferNotToAnswer": "Prefer not to answer"
"preferNotToAnswer": "Prefer not to answer",
"book": "Book",
"change": "Change"
}

View File

@@ -9,12 +9,27 @@
"status": "Status"
},
"status": {
"QUEUED": "Waiting to send to lab",
"PROCESSING": "Waiting for results",
"PARTIAL_ANALYSIS_RESPONSE": "Partial analysis response",
"FULL_ANALYSIS_RESPONSE": "All analysis responses received, waiting for doctor response",
"COMPLETED": "Completed",
"QUEUED": "Queued",
"PROCESSING": "Processing",
"PARTIAL_ANALYSIS_RESPONSE": "Partial results",
"FULL_ANALYSIS_RESPONSE": "All results received",
"COMPLETED": "Confirmed",
"REJECTED": "Rejected",
"CANCELLED": "Cancelled"
"CANCELLED": "Cancelled",
"analysisOrder": {
"QUEUED": "Queued",
"PROCESSING": "Sent to Synlab",
"PARTIAL_ANALYSIS_RESPONSE": "Partial results",
"FULL_ANALYSIS_RESPONSE": "All results received, awaiting doctor's summary",
"COMPLETED": "Confirmed",
"REJECTED": "Rejected",
"CANCELLED": "Cancelled"
},
"ttoService": {
"PENDING": "Started",
"CONFIRMED": "Confirmed",
"REJECTED": "Rejected",
"CANCELLED": "Cancelled"
}
}
}