From 1e80315e11a1855b4f0c2c2f6c08d7093210d0cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Sun, 25 Oct 2020 15:16:06 +0100 Subject: [PATCH] A bit extra work on i18n --- webapp/i18n/en.json | 4 ++++ webapp/i18n/es.json | 4 ++++ webapp/src/components/boardComponent.tsx | 7 ++++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/webapp/i18n/en.json b/webapp/i18n/en.json index 28b2fa991..b9b820eb9 100644 --- a/webapp/i18n/en.json +++ b/webapp/i18n/en.json @@ -6,14 +6,18 @@ "BoardComponent.delete": "Delete", "BoardComponent.hidden-columns": "Hidden Columns", "BoardComponent.hide": "Hide", + "BoardComponent.loading": "Loading...", "BoardComponent.neww": "+ New", "BoardComponent.no-property": "No {property}", "BoardComponent.no-property-title": "Items with an empty {property} property will go here. This column cannot be removed.", "BoardComponent.show": "Show", + "CardDetail.add-content": "Add content", "CardDetail.add-icon": "Add Icon", + "CardDetail.image": "Image", "CardDetail.new-comment-placeholder": "Add a comment...", "CardDetail.random-icon": "Random", "CardDetail.remove-icon": "Remove Icon", + "CardDetail.text": "Text", "Comment.delete": "Delete", "Filter.includes": "includes", "Filter.is-empty": "is empty", diff --git a/webapp/i18n/es.json b/webapp/i18n/es.json index e654923f8..1b8afa352 100644 --- a/webapp/i18n/es.json +++ b/webapp/i18n/es.json @@ -6,14 +6,18 @@ "BoardComponent.delete": "Borrar", "BoardComponent.hidden-columns": "Columnas Ocultas", "BoardComponent.hide": "Ocultar", + "BoardComponent.loading": "Cargando...", "BoardComponent.neww": "+ Nueva", "BoardComponent.no-property": "Sin {property}", "BoardComponent.no-property-title": "Elementos sin la propiedad {property} irán aquí. Esta columna no se puede eliminar.", "BoardComponent.show": "Mostrar", + "CardDetail.add-content": "Añadir contenido", "CardDetail.add-icon": "Añadir icono", + "CardDetail.image": "Imagen", "CardDetail.new-comment-placeholder": "Añadir un comentario...", "CardDetail.random-icon": "Aleatorio", "CardDetail.remove-icon": "Quitar icono", + "CardDetail.text": "Texto", "Comment.delete": "Borrar", "Filter.includes": "incluye", "Filter.is-empty": "está vacío", diff --git a/webapp/src/components/boardComponent.tsx b/webapp/src/components/boardComponent.tsx index 17fc4485f..ea9cae971 100644 --- a/webapp/src/components/boardComponent.tsx +++ b/webapp/src/components/boardComponent.tsx @@ -91,7 +91,12 @@ class BoardComponent extends React.Component { if (!boardTree || !boardTree.board) { return ( -
Loading...
+
+ +
) }