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. Connection was lost with the server you were connected to. Moved back to welcome screen.
</div> </div>
<div class="modal-footer"> <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> </div>
</div> </div>

View File

@ -31,6 +31,7 @@ function setLanguage(locale){
"passwordSendButton": "Login", "passwordSendButton": "Login",
"disconnectionModalLongTitle": "Disconnected", "disconnectionModalLongTitle": "Disconnected",
"disconnectionModalDescription": "Connection was lost with the server you were connected to, probably caused by a server stop. Moved back to welcome screen.", "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", "players_online": "Players Online",
"deleteServerButton": "Delete server", "deleteServerButton": "Delete server",
"sendCommandButton": "Send" "sendCommandButton": "Send"
@ -58,6 +59,7 @@ function setLanguage(locale){
"passwordSendButton": "Iniciar sesión", "passwordSendButton": "Iniciar sesión",
"disconnectionModalLongTitle": "Desconectado", "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.", "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", "players_online": "Jugadores en línea",
"deleteServerButton": "Borrar servidor", "deleteServerButton": "Borrar servidor",
"sendCommandButton": "Enviar" "sendCommandButton": "Enviar"
@ -87,6 +89,7 @@ function setLanguage(locale){
document.getElementById("passwordSendButton").textContent = lang.passwordSendButton; document.getElementById("passwordSendButton").textContent = lang.passwordSendButton;
document.getElementById("disconnectionModalLongTitle").textContent = lang.disconnectionModalLongTitle; document.getElementById("disconnectionModalLongTitle").textContent = lang.disconnectionModalLongTitle;
document.getElementById("disconnectionModalDescription").textContent = lang.disconnectionModalDescription; document.getElementById("disconnectionModalDescription").textContent = lang.disconnectionModalDescription;
document.getElementById("disconnectionModalCloseButton").textContent = lang.disconnectionModalCloseButton;
document.getElementById("players_online").textContent = lang.players_online; document.getElementById("players_online").textContent = lang.players_online;
document.getElementById("deleteServerButton").textContent = lang.deleteServerButton; document.getElementById("deleteServerButton").textContent = lang.deleteServerButton;
document.getElementById("sendCommandButton").textContent = lang.sendCommandButton; document.getElementById("sendCommandButton").textContent = lang.sendCommandButton;