- Modification des FX JS : Les fps ont été fixé à 30 plutôt que 50 (la valeur par défaut)

- Correction d'erreur de traduction
- Traducation française : fin
This commit is contained in:
Benjamin Renard 2009-03-16 10:48:42 +00:00
parent 53a67c878f
commit 05c2157f69
8 changed files with 57 additions and 59 deletions

View file

@ -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);

View file

@ -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',

View file

@ -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);
},

View file

@ -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();
},

View file

@ -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);

View file

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LdapSaisie\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-03-15 22:04+0100\n"
"PO-Revision-Date: 2009-03-15 22:04+0100\n"
"POT-Creation-Date: 2009-03-16 11:36+0100\n"
"PO-Revision-Date: 2009-03-16 11:46+0100\n"
"Last-Translator: Benjamin Renard <brenard@easter-eggs.com>\n"
"Language-Team: LdapSaisie <ldapsaisie-users@lists.labs.libre-entreprise.org>\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."

View file

@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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