diff --git a/src/locales/en.json b/src/locales/en.json index adb64cbc..c4449f29 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -40,7 +40,11 @@ "Configure the order fulfillment capacity of your facility.": "Configure the order fulfillment capacity of your facility.", "Consumed Order Limit": "Consumed Order Limit", "Create login credentials": "Create login credentials", + "Create Outlet Store": "Create Outlet Store", + "Create Outlet Warehouse": "Create Outlet Warehouse", + "Create Retail Store": "Create Retail Store", "Create store": "Create store", + "Create Warehouse": "Create Warehouse", "Custom": "Custom", "Custom fulfillment capacity": "Custom fulfillment capacity", "Custom mapping": "Custom mapping", diff --git a/src/views/CreateFacility.vue b/src/views/CreateFacility.vue index 92dec0f3..c972b920 100644 --- a/src/views/CreateFacility.vue +++ b/src/views/CreateFacility.vue @@ -15,7 +15,7 @@ {{ translate("Type") }} - + {{ type.description }} @@ -48,7 +48,7 @@
- {{ translate("Create store") }} + {{ facilityTypes[selectedFacilityTypeId] ? translate(`Create ${facilityTypes[selectedFacilityTypeId]?.description}`) : translate("Create store") }}
@@ -72,6 +72,8 @@ import { IonList, IonNote, IonPage, + IonSelect, + IonSelectOption, IonText, IonTitle, IonToolbar, @@ -103,6 +105,8 @@ export default defineComponent({ IonList, IonNote, IonPage, + IonSelect, + IonSelectOption, IonText, IonTitle, IonToolbar,