- LSsmoothbox : Traduction.

This commit is contained in:
Benjamin Renard 2009-02-17 13:15:59 +00:00
parent 26f2e07cbc
commit 2d06ac3e81

View file

@ -210,10 +210,13 @@ var LSsmoothbox = new Class({
if (!this._closeConfirmOpened) { if (!this._closeConfirmOpened) {
this._closeConfirmOpened = 1; this._closeConfirmOpened = 1;
this.confirmBox = new LSconfirmBox({ this.confirmBox = new LSconfirmBox({
text: 'Etês-vous sur de vouloir fermer cette fênetre et perdre toute les modifications apportées ?', text: 'Are you sure you want to close this window and lose all changes ?',
startElement: this.closeBtn, title: 'Caution',
onConfirm: this.cancel.bind(this), validate_label: 'Validate',
onClose: (function(){this._closeConfirmOpened=0;}).bind(this) cancel_label: 'Cancel',
startElement: this.closeBtn,
onConfirm: this.cancel.bind(this),
onClose: (function(){this._closeConfirmOpened=0;}).bind(this)
}); });
} }
} }