MOD some translation fr -> en
authorGreg Burri <greg.burri@gmail.com>
Thu, 19 Feb 2009 23:17:45 +0000 (23:17 +0000)
committerGreg Burri <greg.burri@gmail.com>
Thu, 19 Feb 2009 23:17:45 +0000 (23:17 +0000)
js/chat/conversations.js
js/util.js

index 5ba27d8..c7be4e0 100644 (file)
@@ -136,12 +136,12 @@ euphorik.Conversations.prototype.ajouterMessageRepond = function(mess) {
 \r
 /**\r
   * Construit tous les id potentiels d'un message, renvoie par exemple :\r
-  * "conv9b28mess1h, conv9b2amess1h, conv9b32mess1h"\r
+  * "#conv9b28mess1h, #conv9b2amess1h, #conv9b32mess1h"\r
   */\r
 euphorik.Conversations.prototype.exprIdsPotentiels = function(mess) {\r
    var exprMess = "";\r
    this.conversations.each(function(i, conv) {\r
-      exprMess += (mess !== "" ? ", " : "") + "#" + mess.getId(conv.getId());\r
+      exprMess += (exprMess !== "" ? ", " : "") + "#" + mess.getId(conv.getId());\r
    });\r
    return exprMess;\r
 };\r
@@ -165,7 +165,7 @@ euphorik.Conversations.prototype.rafraichireNombreMessagesRepond = function() {
 \r
 /**\r
   * Affiche les messages auquel l'utilisateur souhaite répondre au sein des messages des conversations.\r
-  * Utilisé lorsqu'une conversation est extraite.\r
+  * Utilisé après qu'une conversation soit extraite.\r
   */\r
 euphorik.Conversations.prototype.afficherMessagesRepondConversations = function() {\r
    var expr = "";\r
index aff9d6e..5554c51 100644 (file)
@@ -190,14 +190,6 @@ euphorik.Util.prototype.infoBulle = function(message, element, position) {
    ).click(cacherBulle);\r
 };\r
 \r
-/**\r
-  * Utilisé pour l'envoie de données avec la méthode ajax de jQuery.\r
-  * Obsolète : à virer\r
-  */\r
-/*euphorik.Util.prototype.jsonVersAction = function(json) {\r
-   return { action : JSON.stringify(json) };\r
-};*/\r
-\r
 /**\r
   * Retourne un hash md5 d'une chaine, dépend de md5.js.\r
   * @param chaine un string quelconque\r
@@ -207,7 +199,7 @@ euphorik.Util.prototype.md5 = function(chaine) {
    return hex_md5(chaine);\r
 };\r
 \r
-// pompé de http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130\r
+// Taken from http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130\r
 euphorik.Util.prototype.setSelectionRange = function(input, selectionStart, selectionEnd) {\r
    if (input.setSelectionRange) {\r
       input.focus();\r
@@ -261,9 +253,10 @@ euphorik.Util.prototype.replaceSelection = function(input, replaceString) {
 };\r
 \r
 /**\r
-  * Rot13 d'une chaine, voir : http://fr.wikipedia.org/wiki/ROT13\r
+  * Applies rot13 to a given string. See : http://en.wikipedia.org/wiki/ROT13.
+  * @param str the string.\r
   */\r
-euphorik.Util.prototype.rot13 = function(chaine) {\r
+euphorik.Util.prototype.rot13 = function(str) {\r
    var ACode = 'A'.charCodeAt(0);\r
    var aCode = 'a'.charCodeAt(0);\r
    var MCode = 'M'.charCodeAt(0);\r
@@ -283,5 +276,5 @@ euphorik.Util.prototype.rot13 = function(chaine) {
          (c > MCode && c <= ZCode || c > mCode && c <= zCode ? -13 : 0))\r
       ) + f(ch, pos + 1);\r
    };\r
-   return f(chaine, 0);\r
+   return f(str, 0);\r
 };\r