translations, remove random empty lines, refactor

This commit is contained in:
Helena
2025-09-19 17:28:45 +03:00
parent c50b75ce9b
commit 961f726520
11 changed files with 166 additions and 115 deletions

View File

@@ -5,10 +5,16 @@
"title": "Analysis packages",
"description": "Get to know the personal analysis packages and order"
},
"noCategories": "List of services not found, try again later",
"noResults": "No availabilities found for selected dates",
"serviceNotFound": "Service not found",
"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

@@ -16,7 +16,9 @@
"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",

View File

@@ -147,5 +147,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"
}
}
}