MOD French -> English (1)
[euphorik.git] / js / pageProfile.js
index 7f3a64b..41e9fd5 100755 (executable)
@@ -20,7 +20,7 @@ euphorik.PageProfile = function(client, formater, util) {
    this.nom = "profile";\r
    \r
    this.client = client;\r
-   this.formateur = formater;\r
+   this.formater = formater;\r
    this.util = util;\r
 };\r
 \r
@@ -78,17 +78,17 @@ euphorik.PageProfile.prototype.chargerProfile = function() {
          var passwordRe = $("form#profile input.passwordRe").val();\r
          if (password !== "" || passwordRe !== "") {\r
             if (password !== passwordRe) {            \r
-               thisPage.util.messageDialogue("Les mots de passes ne correspondent pas");\r
+               thisPage.util.messageDialog("Les mots de passes ne correspondent pas");\r
                return;\r
             }\r
             thisPage.client.password = thisPage.util.md5(password);\r
          }\r
          \r
          if(!thisPage.client.flush()) {\r
-            thisPage.util.messageDialogue("Impossible de mettre à jour votre profile, causes inconnues", euphorik.Util.messageType.erreur);\r
+            thisPage.util.messageDialog("Impossible de mettre à jour votre profile, causes inconnues", euphorik.Util.messageType.erreur);\r
          } else { \r
-            thisPage.util.messageDialogue("Votre profile a été mis à jour");\r
-            thisPage.pages.afficherPage("minichat");\r
+            thisPage.util.messageDialog("Votre profile a été mis à jour");\r
+            thisPage.pages.displayPage("minichat");\r
          }\r
       }\r
    );\r
@@ -101,7 +101,7 @@ euphorik.PageProfile.prototype.chargerLogin = function() {
       function() {\r
          if(thisPage.client.connexionLogin($("form#profile input.login").val(), thisPage.util.md5($("form#profile input.password").val()))) {\r
             // TODO afficher un message "ok"\r
-            thisPage.pages.afficherPage("minichat");\r
+            thisPage.pages.displayPage("minichat");\r
          }\r
       }\r
    );\r