From 475b9951c1db60d99544bb15f3385229a080a72b Mon Sep 17 00:00:00 2001 From: Carlos <28845529+mesacarlos@users.noreply.github.com> Date: Fri, 23 Aug 2019 17:49:08 +0200 Subject: [PATCH] Forgotten translation --- client/index.html | 2 +- client/scripts/WebConsoleLanguage.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/client/index.html b/client/index.html index c6015d4..90d4222 100644 --- a/client/index.html +++ b/client/index.html @@ -197,7 +197,7 @@ Connection was lost with the server you were connected to. Moved back to welcome screen.
diff --git a/client/scripts/WebConsoleLanguage.js b/client/scripts/WebConsoleLanguage.js index 93edd0c..b489c79 100644 --- a/client/scripts/WebConsoleLanguage.js +++ b/client/scripts/WebConsoleLanguage.js @@ -31,6 +31,7 @@ function setLanguage(locale){ "passwordSendButton": "Login", "disconnectionModalLongTitle": "Disconnected", "disconnectionModalDescription": "Connection was lost with the server you were connected to, probably caused by a server stop. Moved back to welcome screen.", + "disconnectionModalCloseButton": "Close", "players_online": "Players Online", "deleteServerButton": "Delete server", "sendCommandButton": "Send" @@ -58,6 +59,7 @@ function setLanguage(locale){ "passwordSendButton": "Iniciar sesión", "disconnectionModalLongTitle": "Desconectado", "disconnectionModalDescription": "Se ha perdido la conexión con el servidor al que estabas conectado. Esto puede ser debido a que el servidor se ha cerrado. Se ha vuelto a la ventana principal.", + "disconnectionModalCloseButton": "Cerrar", "players_online": "Jugadores en línea", "deleteServerButton": "Borrar servidor", "sendCommandButton": "Enviar" @@ -87,6 +89,7 @@ function setLanguage(locale){ document.getElementById("passwordSendButton").textContent = lang.passwordSendButton; document.getElementById("disconnectionModalLongTitle").textContent = lang.disconnectionModalLongTitle; document.getElementById("disconnectionModalDescription").textContent = lang.disconnectionModalDescription; + document.getElementById("disconnectionModalCloseButton").textContent = lang.disconnectionModalCloseButton; document.getElementById("players_online").textContent = lang.players_online; document.getElementById("deleteServerButton").textContent = lang.deleteServerButton; document.getElementById("sendCommandButton").textContent = lang.sendCommandButton;