MOD french -> english (6)
[euphorik.git] / js / pageProfile.js
index 7f3a64b..99f2cfb 100755 (executable)
 // along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.\r
 \r
 euphorik.PageProfile = function(client, formater, util) {\r
-   this.nom = "profile";\r
+   this.name = "profile";\r
    \r
    this.client = client;\r
-   this.formateur = formater;\r
+   this.formater = formater;\r
    this.util = util;\r
 };\r
 \r
@@ -46,7 +46,7 @@ euphorik.PageProfile.prototype.chargerProfile = function() {
    var thisPage = this;\r
    \r
    $("form#profile input.login").val(this.client.login);\r
-   $("form#profile input.pseudo").val(this.client.pseudo);\r
+   $("form#profile input.nick").val(this.client.nick);\r
    $("form#profile input.email").val(this.client.email);\r
    $("form#profile input#viewTooltips").attr("checked", this.client.viewTooltips);\r
    $("form#profile input#viewTimes").attr("checked", this.client.viewTimes);\r
@@ -64,7 +64,7 @@ euphorik.PageProfile.prototype.chargerProfile = function() {
 \r
    $("form#profile button").click(\r
       function() {\r
-         thisPage.client.pseudo = thisPage.formate.filtrerInputPseudo($("form#profile input.pseudo").val());\r
+         thisPage.client.nick = thisPage.formate.filtrerInputPseudo($("form#profile input.nick").val());\r
          thisPage.client.email = $("form#profile input.email").val();\r
          thisPage.client.chatOrder = $("form#profile select#chatOrder option:selected").attr("value");\r
          thisPage.client.nickFormat = $("form#profile select#affichagePseudo option:selected").attr("value");\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
@@ -125,8 +125,8 @@ euphorik.PageProfile.prototype.getHTML = function() {
          '   <td><input class="passwordRe" type="password" size="20" maxlength="20"/></td>' +\r
          '  </tr>' +\r
          '  <tr>' +\r
-         '   <td>pseudo</td>' +\r
-         '   <td><input class="pseudo" type="text" size="40" maxlength="20"/></td>' +\r
+         '   <td>nick</td>' +\r
+         '   <td><input class="nick" type="text" size="40" maxlength="20"/></td>' +\r
          '  </tr>' +\r
          '  <tr>' +\r
          '   <td>e-mail</td>' +\r