From 2d06ac3e817ff4522468619012b38a155b6501be Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Tue, 17 Feb 2009 13:15:59 +0000 Subject: [PATCH] - LSsmoothbox : Traduction. --- trunk/includes/js/LSsmoothbox.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/trunk/includes/js/LSsmoothbox.js b/trunk/includes/js/LSsmoothbox.js index 60e90bcb..3727f55b 100644 --- a/trunk/includes/js/LSsmoothbox.js +++ b/trunk/includes/js/LSsmoothbox.js @@ -210,10 +210,13 @@ var LSsmoothbox = new Class({ if (!this._closeConfirmOpened) { this._closeConfirmOpened = 1; this.confirmBox = new LSconfirmBox({ - text: 'Etês-vous sur de vouloir fermer cette fênetre et perdre toute les modifications apportées ?', - startElement: this.closeBtn, - onConfirm: this.cancel.bind(this), - onClose: (function(){this._closeConfirmOpened=0;}).bind(this) + text: 'Are you sure you want to close this window and lose all changes ?', + title: 'Caution', + validate_label: 'Validate', + cancel_label: 'Cancel', + startElement: this.closeBtn, + onConfirm: this.cancel.bind(this), + onClose: (function(){this._closeConfirmOpened=0;}).bind(this) }); } }