From 57129a29a3fae6d73d1427b06592e8bc476eb547 Mon Sep 17 00:00:00 2001 From: Aditya Patel Date: Fri, 22 Dec 2023 09:59:34 +0530 Subject: [PATCH] Update some labels --- src/components/ShippingLabelErrorModal.vue | 2 +- src/locales/en.json | 4 ++-- src/locales/es.json | 4 ++-- src/store/modules/stock/actions.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/ShippingLabelErrorModal.vue b/src/components/ShippingLabelErrorModal.vue index 7d214e06..71483905 100644 --- a/src/components/ShippingLabelErrorModal.vue +++ b/src/components/ShippingLabelErrorModal.vue @@ -15,7 +15,7 @@ {{ message }} - {{ translate("No data Found.") }} + {{ translate("No shipping label error received from carrier") }} diff --git a/src/locales/en.json b/src/locales/en.json index 8542dc22..345fb555 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -135,8 +135,8 @@ "Missing shipping label": "Missing shipping label", "Next day": "Next day", "New mapping": "New mapping", - "No data available!": "No data available!", - "No data Found.": "No data Found.", + "No data available": "No data available", + "No shipping label error received from carrier.": "No shipping label error received from carrier", "No capacity sets the fulfillment capacity to 0, preventing any new orders from being allocated to this facility. Use the \"Reject all orders\" option in the fulfillment pages to clear your facilities fulfillment queue. To add a fulfillment capacity to this facility, use the custom option.": "No capacity sets the fulfillment capacity to 0, preventing any new orders from being allocated to this facility. Use the \"Reject all orders\" option in the fulfillment pages to clear your facilities fulfillment queue. {space}To add a fulfillment capacity to this facility, use the custom option.", "No new file upload. Please try again": "No new file upload. Please try again", "No fulfillment capacity": "No fulfillment capacity", diff --git a/src/locales/es.json b/src/locales/es.json index 7da23f14..0d0281ff 100644 --- a/src/locales/es.json +++ b/src/locales/es.json @@ -137,8 +137,8 @@ "New mapping": "Nuevo mapeo", "No Capacity": "Sin Capacidad", "No capacity sets the fulfillment capacity to 0, preventing any new orders from being allocated to this facility. Use the 'Reject all orders' option in the fulfillment pages to clear your facility's fulfillment queue. To add a fulfillment capacity to this facility, use the custom option.": "La falta de capacidad establece la capacidad de cumplimiento en 0, evitando que se asignen nuevos pedidos a esta instalación. Utiliza la opción 'Rechazar todos los pedidos' en las páginas de cumplimiento para eliminar la cola de cumplimiento de tu instalación. {space}Para agregar una capacidad de cumplimiento a esta instalación, utiliza la opción personalizada.", - "No data available!": "¡No hay datos disponibles!", - "No data Found.": "No se encontraron datos.", + "No data available": "¡No hay datos disponibles!", + "No shipping label error received from carrier": "No se encontraron datos.", "No new file upload. Please try again": "No se cargó ningún archivo nuevo. Por favor, inténtalo nuevamente.", "No orders are currently able to be shipped due to missing tracking codes.": "No orders are currently able to be shipped due to missing tracking codes.", "No reason": "Sin motivo", diff --git a/src/store/modules/stock/actions.ts b/src/store/modules/stock/actions.ts index 86b88889..0233e673 100644 --- a/src/store/modules/stock/actions.ts +++ b/src/store/modules/stock/actions.ts @@ -27,7 +27,7 @@ const actions: ActionTree = { } } catch(err) { logger.error(err) - showToast(translate('No data available!')) + showToast(translate('No data available')) } } }