MOD french -> english (2)
[euphorik.git] / js / euphorik.js
index 107a5c0..e3bd720 100755 (executable)
@@ -34,14 +34,14 @@ $(document).ready(
       );
       var client = new euphorik.Client(util, communication);
       var pages = new euphorik.Pages(fragment, communication);
-      
-      // connexion vers le serveur (utilise un cookie qui traine)
-      client.connexionCookie();
+           
+      // Client authentification with the cookie information (if  it exists).
+      client.connectionCookie();
       
       $("#menuCss").change(function() { client.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css"); });
 
       // FIXME : doesn't work under Opera
-      // voir : http://dev.jquery.com/ticket/2892#preview
+      // see : http://dev.jquery.com/ticket/2892#preview
       $(window).unload(function() { client.flush(); });
       
       $("#menu .minichat").click(function() { pages.displayPage("minichat"); });
@@ -51,7 +51,7 @@ $(document).ready(
          util.messageDialog("Are you sure you want to log out?", euphorik.Util.messageType.question,
             {
                "Yes" : function() {
-                  client.deconnexion();
+                  client.disconnect();
                   pages.displayPage("minichat", true);
                },
                "No" : function() {}
@@ -63,15 +63,15 @@ $(document).ready(
       
       // TODO : simplification : such link[1] should be created and automatically open the right page without\r
       //  explicitly add a page.\r
-      // [1] : <a class="lien" href="conditions">Conditions d'utilisation</a>
-      $("#footer .conditions").click(function(){ pages.displayPage("conditions_utilisation"); });
+      // [1] : <a class="pageLink" href="termes_of_use">Terms of use</a>
+      $("#footer .termsOfUse").click(function(){ pages.displayPage("terms_of_use"); });
       
       pages.addPage(new euphorik.PageMinichat(client, formater, util, communication), true);
       pages.addPage(new euphorik.PageAdmin(client, formater, util, communication));
       pages.addPage(new euphorik.PageProfile(client, formater, util));
       pages.addPage(new euphorik.PageRegister(client, formater, util));
       pages.addPage(new euphorik.PageAbout(client, formater, util, communication));
-      pages.addPage("conditions_utilisation");
+      pages.addPage("terms_of_use");
       
       pages.displayPage(); // display the default page
    }