Forgotten translation

This commit is contained in:
Carlos 2019-08-23 17:49:08 +02:00
parent de0bd6d553
commit 475b9951c1
2 changed files with 4 additions and 1 deletions

View File

@ -197,7 +197,7 @@
Connection was lost with the server you were connected to. Moved back to welcome screen.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal" id="disconnectionModalCloseButton">Close</button>
</div>
</div>
</div>

View File

@ -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;