From 05c2157f6944f37a45c6803f4322bb465e73e72d Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Mon, 16 Mar 2009 10:48:42 +0000 Subject: [PATCH] =?UTF-8?q?-=20Modification=20des=20FX=20JS=20:=20Les=20fp?= =?UTF-8?q?s=20ont=20=C3=A9t=C3=A9=20fix=C3=A9=20=C3=A0=2030=20plut=C3=B4t?= =?UTF-8?q?=20que=2050=20(la=20valeur=20par=20d=C3=A9faut)=20-=20Correctio?= =?UTF-8?q?n=20d'erreur=20de=20traduction=20-=20Traducation=20fran=C3=A7ai?= =?UTF-8?q?se=20:=20fin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../class/class.LSformElement_maildir.php | 4 +- trunk/includes/class/class.LSldapObject.php | 12 ++-- trunk/includes/js/LSconfirmBox.js | 6 +- trunk/includes/js/LSdefault.js | 7 +-- trunk/includes/js/LSsmoothbox.js | 6 +- .../lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo | Bin 24361 -> 28323 bytes .../lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.po | 54 +++++++++--------- trunk/lang/ldapsaisie.pot | 27 +++++---- 8 files changed, 57 insertions(+), 59 deletions(-) diff --git a/trunk/includes/class/class.LSformElement_maildir.php b/trunk/includes/class/class.LSformElement_maildir.php index aa0758fc..21d1214c 100644 --- a/trunk/includes/class/class.LSformElement_maildir.php +++ b/trunk/includes/class/class.LSformElement_maildir.php @@ -66,8 +66,8 @@ class LSformElement_maildir extends LSformElement_text { LSsession :: addHelpInfos ( 'LSformElement_maildir', array( - 'do' => _("Concurrent creation or modification of the maildir by many users is enabled. Click to disable."), - 'nodo' => _("Click to enable concurrent creation/modification of the maildir by many users at the same time.") + 'do' => _("Maildir creation/modification on user creation/modification is enabled. Click to disable."), + 'nodo' => _("Click to enable maildir creation/modification on user creation/modification.") ) ); return parent :: getDisplay($return); diff --git a/trunk/includes/class/class.LSldapObject.php b/trunk/includes/class/class.LSldapObject.php index 891b5db1..88da8277 100644 --- a/trunk/includes/class/class.LSldapObject.php +++ b/trunk/includes/class/class.LSldapObject.php @@ -1875,7 +1875,7 @@ LSerror :: defineError('LSldapObject_08', _("LSldapObject : Class %{class}, which method %{meth} to be executed on the object event %{event}, doesn't exist.") ); LSerror :: defineError('LSldapObject_09', -_("LSldapObject : Method %{meth} within %{class} class to be executed on object event %{event}, deoesn't exist.") +_("LSldapObject : Method %{meth} within %{class} class to be executed on object event %{event}, doesn't exist.") ); LSerror :: defineError('LSldapObject_10', _("LSldapObject : Error during execute %{meth} method within %{class} class, to be executed on object event %{event}.") @@ -1885,7 +1885,7 @@ LSerror :: defineError('LSldapObject_11', _("LSldapObject : Some configuration data of the object type %{obj} are missing to generate the DN of the new object.") ); LSerror :: defineError('LSldapObject_12', -_("LSldapObject : The attibute %{attr} of the object is not yet defined. Impossible to generate DN.") +_("LSldapObject : The attibute %{attr} of the object is not yet defined. Can't generate DN.") ); LSerror :: defineError('LSldapObject_13', _("LSldapObject : Without DN, the object could not be changed.") @@ -1919,16 +1919,16 @@ _("LSldapObject : Error during the actions to be executed after creating the obj ); LSerror :: defineError('LSldapObject_22', -_("LSldapObject : The function %{func} to be generated before creating the object doesn't exist.") +_("LSldapObject : The function %{func} to be executed before creating the object doesn't exist.") ); LSerror :: defineError('LSldapObject_23', -_("LSldapObject : Error during the execution of the function %{func} to be generated after deleting the object.") +_("LSldapObject : Error executing the function %{func} to be execute after deleting the object.") ); LSerror :: defineError('LSldapObject_24', -_("LSldapObject : The function %{func} to be generated after deleting the object doesn't exist.") +_("LSldapObject : The function %{func} to be executed after deleting the object doesn't exist.") ); LSerror :: defineError('LSldapObject_25', -_("LSldapObject : Error during the execution of the function %{func} to be generated after creating the object.") +_("LSldapObject : Error executing the function %{func} to be execute after creating the object.") ); LSerror :: defineError('LSldapObject_26', diff --git a/trunk/includes/js/LSconfirmBox.js b/trunk/includes/js/LSconfirmBox.js index 5cf1caa5..012895c7 100644 --- a/trunk/includes/js/LSconfirmBox.js +++ b/trunk/includes/js/LSconfirmBox.js @@ -73,8 +73,8 @@ var LSconfirmBox = new Class({ this._purge=0; this.fx = { - open: new Fx.Morph(this.box, {duration: 500, transition: Fx.Transitions.Sine.easeOut, onComplete: this.displayContent.bind(this)}), - close: new Fx.Morph(this.box, {duration: 500, transition: Fx.Transitions.Sine.easeOut, onComplete: this.onClose.bind(this)}) + open: new Fx.Morph(this.box, {duration: 500, fps: 30, transition: Fx.Transitions.Sine.easeOut, onComplete: this.displayContent.bind(this)}), + close: new Fx.Morph(this.box, {duration: 500, fps: 30, transition: Fx.Transitions.Sine.easeOut, onComplete: this.onClose.bind(this)}) }; this._scrolling=0; }, @@ -102,7 +102,7 @@ var LSconfirmBox = new Class({ displayContent: function() { [this.title, this.closeBtn, this.text, this.btnsBox].each(function(el) { - var fx = new Fx.Tween(el,{duration: 200}); + var fx = new Fx.Tween(el,{duration: 200, fps: 30}); fx.start('opacity',1); },this); }, diff --git a/trunk/includes/js/LSdefault.js b/trunk/includes/js/LSdefault.js index 3b034ec8..9fd4b5fd 100644 --- a/trunk/includes/js/LSdefault.js +++ b/trunk/includes/js/LSdefault.js @@ -21,9 +21,9 @@ var LSdefault = new Class({ // FX this.fx = { - LSdebug: new Fx.Tween(this.LSdebug,{property: 'opacity',duration:600}), - LSerror: new Fx.Tween(this.LSerror,{property: 'opacity',duration:500}), - LSinfos: new Fx.Tween(this.LSinfos,{property: 'opacity',duration:500}) + LSdebug: new Fx.Tween(this.LSdebug,{property: 'opacity',duration:600, fps:30}), + LSerror: new Fx.Tween(this.LSerror,{property: 'opacity',duration:500, fps:30}), + LSinfos: new Fx.Tween(this.LSinfos,{property: 'opacity',duration:500, fps:30}) }; // LSjsConfig @@ -298,7 +298,6 @@ var LSdefault = new Class({ keepLSsession: function() { LSdebug('Keep LSsession'); - data: {} new Request({url: 'index_ajax.php', data: {}, onSuccess: this.keepLSsessionComplete.bind(this)}).send(); }, diff --git a/trunk/includes/js/LSsmoothbox.js b/trunk/includes/js/LSsmoothbox.js index 2e20b826..6474c0f8 100644 --- a/trunk/includes/js/LSsmoothbox.js +++ b/trunk/includes/js/LSsmoothbox.js @@ -22,9 +22,9 @@ var LSsmoothbox = new Class({ // Fx this.fx = { - over: new Fx.Tween(this.over, {property: 'opacity', duration: 300}), - winOpen: new Fx.Morph(this.win, {duration: 500, transition: Fx.Transitions.Sine.easeOut, onStart: this.hideContent.bind(this), onComplete: this.displayContent.bind(this)}), - winClose: new Fx.Morph(this.win, {duration: 500, transition: Fx.Transitions.Sine.easeOut, onStart: this.hideContent.bind(this), onComplete: this.resetWin.bind(this)}) + over: new Fx.Tween(this.over, {property: 'opacity', duration: 300, fps: 30}), + winOpen: new Fx.Morph(this.win, {duration: 500, fps: 30, transition: Fx.Transitions.Sine.easeOut, onStart: this.hideContent.bind(this), onComplete: this.displayContent.bind(this)}), + winClose: new Fx.Morph(this.win, {duration: 500, fps: 30, transition: Fx.Transitions.Sine.easeOut, onStart: this.hideContent.bind(this), onComplete: this.resetWin.bind(this)}) }; this.asNew(options); diff --git a/trunk/lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo b/trunk/lang/fr_FR.UTF8/LC_MESSAGES/ldapsaisie.mo index fe370c2d5bc10c02571039c010c5e66d053a530f..ad9f249f7e755d03a4c6355efbbe680c273222c8 100644 GIT binary patch delta 6857 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 QHtWWP=}CbDlj__36C*aY>i_@% delta 4878 zcmYk<3v`d?0mtztk%&Zu2$Cidkw}oBA!15MNRWtI5)zk6)MYN2#4V{({%PDL`{bOwr@wrj=l$pZKKEC;>ubM# zC;dD(n+I$(T(u;Y+-Yb`lAkdLn&_@E+0ChAKMcdE7=$&LfQzv$zKQz1vzU+fu?40_ z@C?ku09=VJaV^r6$Lyw{2kysK=*32O83XYPRL5#D93P|l)`+L;d#$iF#$hOC+WYyo zUWg&wFGF=;I?}MI#OAbbswt?!SFkaz^L=2!{xbuuWvCI=U^85b{Hj@x z!MG2Hpcm<@F;N;RoyRuV0oAcQ^r*+fDQIfSQ1wZu2Ik;kT!c;W5^9FN!ZN&LKhJr} zn4#3y;tc#N4#z>!?m#x-Gt}>60Vc+{R>d&?x!gF;jdrN{)YK$lADn{v!Y)lbGS7B$|j{J(bhNJOe9P?j7A(wfXf?H5i=NIof3^lSX z*8A9(`Y+h>TA~^(!b@0+F&v5RI2RLfFV4ZMs8f-}&GEPrv+r1Rz*)Eh699aVx|P@8fY@{u`?jqo3+?|p|F zNFzqc0Wi%_dngrSY2VDCpmV$e^^2QreFv&T@1xfCEUKZlZ0VI)iagtVgXP#X&7JZp z)brj#Ey+>q71RvgLf$>*E_&3%CloZ|2o|3GXrfRJWulJD9P4YyNi_#iGjZAagEhXJ zyEFx;nVE})`aOF;mb1yL!Q^5*mZh`)oDAc!AM8YJsuLK7XD}3R*!wq8Q+o&1;eVoL z?0eK&{|D8;|B!ubqBx6Ml76UxRN_59W7ePsIIjouuZG^~;XddXYWJQ-J>VW@Vl%dC z1rEhXJcc9j25L%^IfGi;&ZrLMp*GtHRKsI!eLiXcFQI07wTD703h$wMegXBx+sF|% z4^T4@&ihlwq1G-H^?UtL9VoE%B2)*T#l|?#x&-yTHK+mY#HY}6ivn*|^Al-LN&A)HNs`cwlS|FlVDEbV0?_ju^(@>A-E35<4qimnY6BfY($pcV|G%A z=f-)|gYRMlev2*8zmGeTNE}2x5u>pJ_4#ttRBl0i{}gHlF53Dn45xk%H6uUaLJZ^# zhSR=TNBd!y4+jd}#t6$8wCNchBOB=+Q`PDew%Fk>~F61vrNKU0ctlyR3#efbH-;zKmfk z_;g&4TH7b6nHW{zc5EN&xqrtIn8Jpr#Dz%T%!47!zdlGC>TaT?s7-Xt8ZeBFM}0WX z#Z$<4O*%VF4_<;(@H}e9QhAu}mt!^V#^*7bw~)^JdepJKgqqpbMa+K}3ge307sx8q zE?(vI0=I}YufEIQB$}VBk?2a=cpNbfHC+3CSo`{I{-6K9qNVJ zbmiCv_h5p~|9M}5f3Hy^Ys}eD2fCq-RRwD8SD|+MVbuE|cD(xs$0}5Zj-VR)6t$H9 z!dOfwb7v|GwHF4UmaIh5zL`WpYdQ+CDPp9`_g*Gs*|8&nL@N=VMKeu*ZvW_tcty6Ti>p`fs<`{6}GhH z3;25yW9wPgD4aqz+Ik%s6gX67FX>A1iKl`e+P%w3{Yx86R}L9Lu9DBl9-6Mv%XX&186M;baQd8eI``A?jdV\n" "Language-Team: LdapSaisie \n" "MIME-Version: 1.0\n" @@ -379,11 +379,11 @@ msgstr "La valeur du champ %{label} est incorrecte." #: includes/class/class.LSattribute.php:690 msgid "LSattribute : Attribute %{attr} : LDAP or HTML types unknow (LDAP = %{ldap} & HTML = %{html})." -msgstr "" +msgstr "LSattribute : Attribut %{attr} : Les types LDAP ou HTML sont inconnus (LDAP = %{ldap} & HTML = %{html})." #: includes/class/class.LSattribute.php:693 msgid "LSattribute : The function %{func} to display the attribute %{attr} is unknow." -msgstr "" +msgstr "LSattribute : La fonction %{func} pour afficher l'attribut %{attr} est inconnue." #: includes/class/class.LSattribute.php:696 msgid "LSattribute : The rule %{rule} to validate the attribute %{attr} is unknow." @@ -411,7 +411,7 @@ msgstr "LSattribute : La génération de l'attribut %{attr} n'a pas retournée d #: includes/class/class.LSattribute.php:714 msgid "LSattribute : The attr_%{type} of the attribute %{name} is not yet defined." -msgstr "" +msgstr "LSattribute : L'objet attr_%{type} de l'attribut %{name} n'est pas encore défini." #: includes/class/class.LSconfirmBox.php:35 msgid "Confirmation" @@ -467,12 +467,12 @@ msgid "Display RSS stack." msgstr "Afficher la file RSS." #: includes/class/class.LSformElement_maildir.php:69 -msgid "Concurrent creation or modification of the maildir by many users is enabled. Click to disable." -msgstr "" +msgid "Maildir creation/modification on user creation/modification is enabled. Click to disable." +msgstr "La création/modification de la maildir en même temps que la création/modification de l'utilisateur est activée. Cliquer pour désactiver." #: includes/class/class.LSformElement_maildir.php:70 -msgid "Click to enable concurrent creation/modification of the maildir by many users at the same time." -msgstr "" +msgid "Click to enable maildir creation/modification on user creation/modification." +msgstr "Cliquer pour activer la création/modification de la maildir en même temps que la création/modification du l'utilisateur." #: includes/class/class.LSformElement_maildir.php:143 msgid "The mailbox has been renamed successfully." @@ -661,7 +661,7 @@ msgstr "Maintenant." #: includes/class/class.LSattr_html_select_list.php:146 msgid "LSattr_html_select_list : Configuration data are missing to generate the select list of the attribute %{attr}." -msgstr "" +msgstr "LSattr_html_select_list : Des données de configuration sont manquantes pour générer la liste de sélection de l'attribut %{attr}." #: includes/class/class.LSldapObject.php:429 msgid "The attribute %{attr} is not valid." @@ -681,7 +681,7 @@ msgstr "LSldapObject : Aucun formulaire n'existe pour l'objet %{obj}" #: includes/class/class.LSldapObject.php:1861 msgid "LSldapObject : The function %{func} to validate the attribute %{attr} the object %{obj} is unknow." -msgstr "" +msgstr "LSldapObject : La fonction %{func} pour valider l'attribut %{attr} de l'objet %{obj} est inconnu." #: includes/class/class.LSldapObject.php:1864 msgid "LSldapObject : Configuration data are missing to validate the attribute %{attr} of the object %{obj}." @@ -689,7 +689,7 @@ msgstr "LSldapObject : Des données de configurations sont manquant pour pouvoir #: includes/class/class.LSldapObject.php:1868 msgid "LSldapObject : The function %{func} to be executed on the object event %{event} doesn't exist." -msgstr "" +msgstr "LSldapObject : La fonction %{func} devant être exécutée lors de l'évènement %{event} de l'objet n'existe pas." #: includes/class/class.LSldapObject.php:1871 msgid "LSldapObject : The %{func} execution on the object event %{event} failed." @@ -697,23 +697,23 @@ msgstr "LSldapObject : L'exécution de la fonction %{func} lors de l'évènement #: includes/class/class.LSldapObject.php:1875 msgid "LSldapObject : Class %{class}, which method %{meth} to be executed on the object event %{event}, doesn't exist." -msgstr "" +msgstr "La classe %{class}, contenant la méthode %{meth} devant être exécutée lors de l'évènement %{event} de l'objet, n'existe pas." #: includes/class/class.LSldapObject.php:1878 -msgid "LSldapObject : Method %{meth} within %{class} class to be executed on object event %{event}, deoesn't exist." -msgstr "" +msgid "LSldapObject : Method %{meth} within %{class} class to be executed on object event %{event}, doesn't exist." +msgstr "LSldapObject : La méthode %{meth} de la classe %{class} devant être exécutée lors de l'évènement %{event} de l'objet n'existe pas." #: includes/class/class.LSldapObject.php:1881 msgid "LSldapObject : Error during execute %{meth} method within %{class} class, to be executed on object event %{event}." -msgstr "" +msgstr "LSldapObject : Erreur durant l'exécution de la méthode %{meth} de la classe %{class} devant être exécutée lors de l'évènement %{event} de l'objet." #: includes/class/class.LSldapObject.php:1885 msgid "LSldapObject : Some configuration data of the object type %{obj} are missing to generate the DN of the new object." msgstr "LSldapObject : Des informations de configuration du type d'objet %{obj} sont manquantes pour la génération du DN du nouvel objet." #: includes/class/class.LSldapObject.php:1888 -msgid "LSldapObject : The attibute %{attr} of the object is not yet defined. Impossible to generate DN." -msgstr "" +msgid "LSldapObject : The attibute %{attr} of the object is not yet defined. Can't generate DN." +msgstr "LSldapObjet : L'attribut %{attr} de l'objet n'est pas encore défini. Impossible de générer le DN." #: includes/class/class.LSldapObject.php:1891 msgid "LSldapObject : Without DN, the object could not be changed." @@ -749,23 +749,23 @@ msgstr "LSldapObject : Erreur durant les actions devant être exécutée avant d #: includes/class/class.LSldapObject.php:1918 msgid "LSldapObject : Error during the actions to be executed after creating the object. It was created anyway." -msgstr "" +msgstr "LSldapObject : Erreur durant les actions devant être exécutées après la création de l'objet. Il a tout de même été créé." #: includes/class/class.LSldapObject.php:1922 -msgid "LSldapObject : The function %{func} to be generated before creating the object doesn't exist." -msgstr "" +msgid "LSldapObject : The function %{func} to be executed before creating the object doesn't exist." +msgstr "LSldapObject : La fonction %{func} devant être exécutée avant la création de l'objet n'existe pas." #: includes/class/class.LSldapObject.php:1925 -msgid "LSldapObject : Error during the execution of the function %{func} to be generated after deleting the object." -msgstr "" +msgid "LSldapObject : Error executing the function %{func} to be execute after deleting the object." +msgstr "LSldapObject : Erreur durant l'exécution de la fonction %{func} devant être exécutée après la suppression de l'objet." #: includes/class/class.LSldapObject.php:1928 -msgid "LSldapObject : The function %{func} to be generated after deleting the object doesn't exist." -msgstr "" +msgid "LSldapObject : The function %{func} to be executed after deleting the object doesn't exist." +msgstr "LSldapObject : La fonction %{func} devant être exécutée après la suppression de l'objet n'existe pas." #: includes/class/class.LSldapObject.php:1931 -msgid "LSldapObject : Error during the execution of the function %{func} to be generated after creating the object." -msgstr "" +msgid "LSldapObject : Error executing the function %{func} to be execute after creating the object." +msgstr "LSldapObject : Erreur durant l'exécution de la fonction %{func} devant être exécutée après la création de l'objet." #: includes/class/class.LSldapObject.php:1935 msgid "LSldapObject : %{func} function, to be executed on object event %{event}, doesn't exist." diff --git a/trunk/lang/ldapsaisie.pot b/trunk/lang/ldapsaisie.pot index cf2660ca..31243e85 100644 --- a/trunk/lang/ldapsaisie.pot +++ b/trunk/lang/ldapsaisie.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-03-15 22:04+0100\n" +"POT-Creation-Date: 2009-03-16 11:36+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -486,14 +486,13 @@ msgstr "" #: includes/class/class.LSformElement_maildir.php:69 msgid "" -"Concurrent creation or modification of the maildir by many users is enabled. " +"Maildir creation/modification on user creation/modification is enabled. " "Click to disable." msgstr "" #: includes/class/class.LSformElement_maildir.php:70 msgid "" -"Click to enable concurrent creation/modification of the maildir by many " -"users at the same time." +"Click to enable maildir creation/modification on user creation/modification." msgstr "" #: includes/class/class.LSformElement_maildir.php:143 @@ -742,7 +741,7 @@ msgstr "" #: includes/class/class.LSldapObject.php:1878 msgid "" "LSldapObject : Method %{meth} within %{class} class to be executed on object " -"event %{event}, deoesn't exist." +"event %{event}, doesn't exist." msgstr "" #: includes/class/class.LSldapObject.php:1881 @@ -759,8 +758,8 @@ msgstr "" #: includes/class/class.LSldapObject.php:1888 msgid "" -"LSldapObject : The attibute %{attr} of the object is not yet defined. " -"Impossible to generate DN." +"LSldapObject : The attibute %{attr} of the object is not yet defined. Can't " +"generate DN." msgstr "" #: includes/class/class.LSldapObject.php:1891 @@ -811,26 +810,26 @@ msgstr "" #: includes/class/class.LSldapObject.php:1922 msgid "" -"LSldapObject : The function %{func} to be generated before creating the " +"LSldapObject : The function %{func} to be executed before creating the " "object doesn't exist." msgstr "" #: includes/class/class.LSldapObject.php:1925 msgid "" -"LSldapObject : Error during the execution of the function %{func} to be " -"generated after deleting the object." +"LSldapObject : Error executing the function %{func} to be execute after " +"deleting the object." msgstr "" #: includes/class/class.LSldapObject.php:1928 msgid "" -"LSldapObject : The function %{func} to be generated after deleting the " -"object doesn't exist." +"LSldapObject : The function %{func} to be executed after deleting the object " +"doesn't exist." msgstr "" #: includes/class/class.LSldapObject.php:1931 msgid "" -"LSldapObject : Error during the execution of the function %{func} to be " -"generated after creating the object." +"LSldapObject : Error executing the function %{func} to be execute after " +"creating the object." msgstr "" #: includes/class/class.LSldapObject.php:1935