From f851eb50a87affaee8851b84939f91c06ebd1874 Mon Sep 17 00:00:00 2001 From: Sourabh Raghuwanshi Date: Thu, 14 Mar 2024 18:56:32 +0530 Subject: [PATCH 1/2] Fixed: Update translations in the app(#456) --- src/locales/en.json | 10 +++++++++- src/locales/es.json | 8 ++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/locales/en.json b/src/locales/en.json index 570ab755..1119e161 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -1,4 +1,5 @@ -{ +{ + "Add": "Add", "All": "All", "All variance": "All variance", "App": "App", @@ -103,6 +104,7 @@ "Export orders that are packed and haven't been shipped yet. Use the exported file to send the packed order details to a carrier where shipping labels and tracking codes will be generated.": "Export orders that are packed and haven't been shipped yet. Use the exported file to send the packed order details to a carrier where shipping labels and tracking codes will be generated.", "Export packed orders": "Export packed orders", "Ext Other Gateways": "Ext Other Gateways", + "EXT_SHOP_OTHR_GTWAY": "EXT_SHOP_OTHR_GTWAY", "Facility": "Facility", "Facility Address 1": "Facility Address 1", "Facility Address 2": "Facility Address 2", @@ -208,6 +210,7 @@ "On": "On", "Online Order Fulfillment": "Online Order Fulfillment", "Open": "Open", + "ORDER_APPROVED": "ORDER_APPROVED", "Order details": "Order details", "orders allocated today": "{orderCount} orders allocated today", "orders in fulfillment queue": "{orderCount} orders in fulfillment queue", @@ -239,6 +242,7 @@ "Pack using default packaging": "Pack using default packaging", "Packed Orders": "Packed Orders", "Password": "Password", + "PAYMENT_AUTHORIZED": "PAYMENT_AUTHORIZED", "Pending allocation": "Pending allocation", "Phone Number": "Phone Number", "Pick order": "Pick order", @@ -254,6 +258,7 @@ "Please provide unique labels": "Please provide unique labels", "Please select at least one field to generate CSV": "Please select at least one field to generate CSV", "Please upload a valid csv to continue": "Please upload a valid csv to continue", + "Primary": "Primary", "Print Customer Letter": "Print Customer Letter", "Print Picklist": "Print Picklist", "Print Picksheet": "Print Picksheet", @@ -299,6 +304,7 @@ "Search orders": "Search orders", "Search rejection reasons": "Search rejection reasons", "Search time zones": "Search time zones", + "Secondary": "Secondary", "Select": "Select", "Select all": "Select all", "Select all the fields to continue": "Select all the fields to continue", @@ -348,6 +354,8 @@ "Specify whether the store should fulfill online orders or not.": "Specify whether the store should fulfill online orders or not.", "Specify which facility you want to operate from. Order, inventory and other configuration data will be specific to the facility you select.": "Specify which facility you want to operate from. Order, inventory and other configuration data will be specific to the facility you select.", "Staff": "Staff", + "Standard": "Standard", + "STANDARD": "STANDARD", "State": "State", "Status": "Status", "store name": "store name", diff --git a/src/locales/es.json b/src/locales/es.json index 5520679e..e703a56f 100644 --- a/src/locales/es.json +++ b/src/locales/es.json @@ -1,4 +1,5 @@ { + "Add": "Add", "All": "Todo", "All variance": "All variance", "App": "Aplicación", @@ -102,6 +103,7 @@ "Export orders that are packed and haven't been shipped yet. Use the exported file to send the packed order details to a carrier where shipping labels and tracking codes will be generated.": "Exporta pedidos que están empacados y aún no se han enviado. Utiliza el archivo exportado para enviar los detalles de los pedidos empacados a una empresa de transporte donde se generarán etiquetas de envío y códigos de seguimiento.", "Export packed orders": "Exportar pedidos empacados", "Ext Other Gateways": "Ext Otros Pasarelas de Pago", + "EXT_SHOP_OTHR_GTWAY": "EXT_SHOP_OTHR_GTWAY", "Facility": "Tiendas", "Facility Address 1": "Direccion de tiendas 1", "Facility Address 2": "Direccion de tiendas 2", @@ -208,6 +210,7 @@ "On": "Encendido", "Online Order Fulfillment": "Cumplimiento de pedidos en línea", "Open": "Abierto", + "ORDER_APPROVED": "ORDER_APPROVED", "Order details": "Detalles del pedido", "Options": "Opciones", "Ordered": "Ordenado", @@ -237,6 +240,7 @@ "Pack using default packaging": "Empacar utilizando el empaque predeterminado", "Packed Orders": "Pedidos Empacados", "Password": "Contraseña", + "PAYMENT_AUTHORIZED": "PAYMENT_AUTHORIZED", "Pending allocation": "Asignación pendiente", "Phone Number": "Numero de telefono", "picklists": "{count} Listas de seleccion", @@ -252,6 +256,7 @@ "Please provide unique labels": "Por favor, proporciona etiquetas únicas", "Please select at least one field to generate CSV": "Por favor, selecciona al menos un campo para generar el archivo CSV", "Please upload a valid csv to continue": "Por favor, carga un archivo CSV válido para continuar", + "Primary": "Primary", "Print Customer Letter": "Imprimir Carta al Cliente", "Print Picklist": "Imprimir Lista de Selección", "Print Picksheet": "Imprimir Hoja de Selección", @@ -296,6 +301,7 @@ "Search": "Buscar", "Search rejection reasons": "Search rejection reasons", "Search time zones": "Buscar zonas horarias", + "Secondary": "Secondary", "Select": "Seleccionar", "Select all": "Seleccionar todos", "Select all the fields to continue": "Selecciona todos los campos para continuar", @@ -345,6 +351,8 @@ "Specify whether the store should fulfill online orders or not.": "Especifique si la tienda debe cumplir con los pedidos en línea o no.", "Specify which facility you want to operate from. Order, inventory and other configuration data will be specific to the facility you select.": "Especifique desde qué instalación desea operar. Los pedidos, el inventario y otros datos de configuración serán específicos de la instalación que seleccione.", "Staff": "Personal", + "Standard": "Standard", + "STANDARD": "STANDARD", "State": "Estado", "Status": "Estatus", "Store name": "Nombre de la tienda", From 46e0713b1fc2f89060b6da39505021068980765d Mon Sep 17 00:00:00 2001 From: R-Sourabh Date: Fri, 15 Mar 2024 15:59:31 +0530 Subject: [PATCH 2/2] Improved: Added some static text for translation error(#456) --- src/locales/en.json | 3 ++- src/locales/es.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/locales/en.json b/src/locales/en.json index 1119e161..69fff8e9 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -104,7 +104,6 @@ "Export orders that are packed and haven't been shipped yet. Use the exported file to send the packed order details to a carrier where shipping labels and tracking codes will be generated.": "Export orders that are packed and haven't been shipped yet. Use the exported file to send the packed order details to a carrier where shipping labels and tracking codes will be generated.", "Export packed orders": "Export packed orders", "Ext Other Gateways": "Ext Other Gateways", - "EXT_SHOP_OTHR_GTWAY": "EXT_SHOP_OTHR_GTWAY", "Facility": "Facility", "Facility Address 1": "Facility Address 1", "Facility Address 2": "Facility Address 2", @@ -124,6 +123,7 @@ "Failed to get packed orders information": "Failed to get packed orders information", "Failed to pack order": "Failed to pack order", "Failed to pack orders": "Failed to pack orders", + "Failed to unpack the order":"Failed to unpack the order", "Failed to parse the data": "Failed to parse the data", "Failed to print shipping label and packing slip": "Failed to print shipping label and packing slip", "Failed to save CSV mapping.": "Failed to save CSV mapping.", @@ -347,6 +347,7 @@ "Some of the mapping fields are missing in the CSV: ": "Some of the mapping fields are missing in the CSV: {missingFields}", "Something went wrong": "Something went wrong", "Something went wrong while getting complete user permissions.": "Something went wrong while getting complete user permissions.", + "Something went wrong, could not ship the shipment":"Something went wrong, could not ship the shipment", "Something went wrong, could not fetch order details.": "Something went wrong, could not fetch order details.", "Something went wrong, could not edit picker(s)": "Something went wrong, could not edit picker(s)", "Something went wrong while login. Please contact administrator.": "Something went wrong while login. Please contact administrator.", diff --git a/src/locales/es.json b/src/locales/es.json index e703a56f..666ad3b4 100644 --- a/src/locales/es.json +++ b/src/locales/es.json @@ -103,7 +103,6 @@ "Export orders that are packed and haven't been shipped yet. Use the exported file to send the packed order details to a carrier where shipping labels and tracking codes will be generated.": "Exporta pedidos que están empacados y aún no se han enviado. Utiliza el archivo exportado para enviar los detalles de los pedidos empacados a una empresa de transporte donde se generarán etiquetas de envío y códigos de seguimiento.", "Export packed orders": "Exportar pedidos empacados", "Ext Other Gateways": "Ext Otros Pasarelas de Pago", - "EXT_SHOP_OTHR_GTWAY": "EXT_SHOP_OTHR_GTWAY", "Facility": "Tiendas", "Facility Address 1": "Direccion de tiendas 1", "Facility Address 2": "Direccion de tiendas 2", @@ -123,6 +122,7 @@ "Failed to get packed orders information": "Error al obtener la información de los pedidos empacados", "Failed to pack order": "Error al empacar el pedido", "Failed to pack orders": "Error al empacar los pedidos", + "Failed to unpack the order":"Failed to unpack the order", "Failed to parse the data": "Error al analizar los datos", "Failed to print shipping label and packing slip": "Error al imprimir la etiqueta de envío y el documento de embalaje", "Failed to save CSV mapping.": "Error al guardar el mapeo de CSV", @@ -345,6 +345,7 @@ "Something went wrong": "Algo salió mal", "Something went wrong while getting complete user permissions.": "Algo salió mal al obtener permisos de usuario completos.", "Something went wrong, could not fetch order details.": "Algo salió mal, no se pudieron recuperar los detalles del pedido.", + "Something went wrong, could not ship the shipment":"Something went wrong, could not ship the shipment", "Something went wrong, could not edit picker(s)": "Algo salió mal, no se pudieron editar los selectores", "Something went wrong while login. Please contact administrator.": "Algo salió mal al iniciar sesión. Por favor contacte al administrador.", "Sorry, your username or password is incorrect. Please try again.": "Lo siento, tu nombre de usuario o contraseña es incorrecto. Por favor, inténtalo nuevamente.",