Skip to content

Commit ff584e2

Browse files
committed
Fixed untranslated strings
git-svn-id: file:///opt/svn/colegios/controlaula/trunk@807 c4774de7-f4ed-435d-9225-5986420fcf7b
1 parent a64e826 commit ff584e2

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
controlaula (1.6.11-1) unstable; urgency=low
2+
3+
* Fix error in thin clients
4+
* Complete some untranslated strings
5+
6+
-- José L. Redrejo Rodríguez <[email protected]> Thu, 17 Mar 2011 10:01:12 +0100
7+
18
controlaula (1.6.10-1) unstable; urgency=low
29

310
* i18n finished

frontend/www/js/modal.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -232,16 +232,18 @@ function modalWeb(){
232232
}
233233

234234
function modalBigBrother(){
235+
var clsButton = translations["Close"];
236+
var dlgButtons = {};
235237

238+
dlgButtons[clsButton]=function() { $( this ).dialog( "close" ); };
239+
236240
$("#dialogBigBrother")
237241
.dialog({
238242
title: translations["bigBrother"],
239243
modal: true,
240244
width: 950,
241245
resizable: false,
242-
buttons: {
243-
"Cerrar": function() { $( this ).dialog( "close" ); }
244-
},
246+
buttons: dlgButtons,
245247
beforeClose: function(event, ui) { connection("disableBigBrother","","disableBigBrother"); }
246248
})
247249
.dialog('open');

frontend/www/js/print.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function showCapture(element,computer){
172172

173173
computerSelected = computer;
174174

175-
$("#imageBigBrother").html("<img src='"+$('#thumbCapture_'+element).attr("src")+"' id='imageCoputer-"+computer+"'/><br><br><input type='button' value='Ver equipo' onClick='javascript:connection(\"openVNC\",\"{\\\"args\\\":\\\""+computer+"\\\"}\" ,\"\");'>");
175+
$("#imageBigBrother").html("<img src='"+$('#thumbCapture_'+element).attr("src")+"' id='imageCoputer-"+computer+"'/><br><br><input type='button' value='" + translations["ShowPC"] + "' onClick='javascript:connection(\"openVNC\",\"{\\\"args\\\":\\\""+computer+"\\\"}\" ,\"\");'>");
176176
$("#imageBigBrother").show("slide",{},500);
177177
}
178178

lang/en_EN.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,15 @@
4040
"saveConfiguration" : "Save configuration",
4141
"licenseText" : "Copyright (C) 2010 - ControlAula is a program under GPL version 2 or later.",
4242
"Off" : "Off",
43-
"OnePCAtLeast" : "At least one PC to send a file must be selected",
43+
"OnePCAtLeast" : "At least one PC must be selected to send a file",
4444
"Close" : "Close",
4545
"SendMessage" : "Send Message",
4646
"mustTypeMessage" : "A message must be typed",
4747
"Send" : "Send" ,
4848
"ConfirmVideo" : "Do you want to begin to broadcast the selected video?",
4949
"WebBrowsing" : "Browse the Web",
50+
"sendWebToSelected" : "Send web to selected PCs",
51+
"sendWebToAll" : "Send web to All",
5052
"mustSelectOneVideo" : "At least one PC must be selected for video broadcasting",
5153
"mustSelectOneSend" : "At least one PC must be select to send a message",
5254
"OpenReceivedFolder" : "Open folder with received files",
@@ -57,4 +59,6 @@
5759
"changeItUp" : "Desktop themes",
5860
"Actions" : "Actions",
5961
"classroomChat" : "Classroom Chat",
62+
"ShowPC" : "Show PC",
63+
"SelectOnePCAtLeast" : "At least one PC must be selected to do this action",
6064
"licenseInfo" : "+Infor"}

lang/es_ES.json

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
"Send" : "Enviar" ,
4747
"ConfirmVideo" : "¿Desea comenzar la emisi&oacute;n del v&iacute;deo seleccionado?",
4848
"WebBrowsing" : "Navegaci&oacute;n Web",
49+
"sendWebToSelected" : "Enviar web a seleccionados",
50+
"sendWebToAll" : "Enviar web a todos",
4951
"mustSelectOneVideo" : "Para realizar una emisi&oacute;n de v&iacute;deo debe seleccionar al menos un equipo",
5052
"mustSelectOneSend" : "Para enviar un mensaje debe seleccionar al menos un equipo",
5153
"OpenReceivedFolder" : "Abrir carpeta con los ficheros recibidos",
@@ -56,4 +58,6 @@
5658
"changeItUp" : "Temas de escritorio",
5759
"Actions" : "Acciones",
5860
"classroomChat" : "Chat de clase",
61+
"ShowPC" : "Ver equipo",
62+
"SelectOnePCAtLeast" : "Para realizar la acci&oacute;n debe seleccionar al menos un equipo",
5963
"licenseInfo" : "+ info"}

0 commit comments

Comments
 (0)