- LSrelation : Traduction

This commit is contained in:
Benjamin Renard 2009-02-17 13:16:48 +00:00
parent 2d06ac3e81
commit 8c0d1e5c1e

View file

@ -35,9 +35,12 @@ var LSrelation = new Class({
if (this._confirmDelete) { if (this._confirmDelete) {
var a = img.getPrevious('a'); var a = img.getPrevious('a');
this.confirmBox = new LSconfirmBox({ this.confirmBox = new LSconfirmBox({
text: 'Etês-vous sur de vouloir supprimer "'+a.innerHTML+'" ?', text: 'Do you really want to delete "'+a.innerHTML+'" ?',
startElement: img, title: 'Caution',
onConfirm: this.deleteFromImg.bind(this,img) validate_label: 'Delete',
cancel_label: 'Cancel',
startElement: img,
onConfirm: this.deleteFromImg.bind(this,img)
}); });
} }
else { else {
@ -82,7 +85,7 @@ var LSrelation = new Class({
} }
} }
catch(e) { catch(e) {
LSdebug('Erreur durant la suppression du li du DN : '+data.dn); LSdebug('Error during the li of DN delete : '+data.dn);
} }
} }
}, },