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;