Index: gc_lang/fr/mailext/content/file_handler.js ================================================================== --- gc_lang/fr/mailext/content/file_handler.js +++ gc_lang/fr/mailext/content/file_handler.js @@ -2,13 +2,13 @@ "use strict"; // Assuming that Cc, Ci and Cu are already loaded -//const {OS} = ChromeUtils.import("resource://gre/modules/osfile.jsm", {}); +const { OS } = ChromeUtils.import("resource://gre/modules/osfile.jsm", {}); -ChromeUtils.import("resource://gre/modules/osfile.jsm") +//ChromeUtils.import("resource://gre/modules/osfile.jsm") const oFileHandler = { // https://developer.mozilla.org/fr/docs/Mozilla/JavaScript_code_modules/OSFile.jsm/OS.File_for_the_main_thread xDataFolder: null, Index: gc_lang/fr/mailext/content/lex_editor.js ================================================================== --- gc_lang/fr/mailext/content/lex_editor.js +++ gc_lang/fr/mailext/content/lex_editor.js @@ -63,18 +63,18 @@ this.nEntry = 0 this._createHeader(); } _createHeader () { - let xListheadNode = createNode("listhead"); + let xListheadNode = createNode("richlistitem"); for (let sColumn of this.lColumn) { - xListheadNode.appendChild(createNode("listheader", { label: sColumn })); + xListheadNode.appendChild(createNode("div", { class: "listheader", label: sColumn })); } this.xTable.appendChild(xListheadNode); - let xListcolsNode = createNode("listcols"); + let xListcolsNode = createNode("richlistitem"); for (let cColumn of this.lColumnWidth) { - xListcolsNode.appendChild(createNode("listcol", { flex: cColumn })); + xListcolsNode.appendChild(createNode("div", { class: "listcol", flex: cColumn })); } this.xTable.appendChild(xListcolsNode); } clear () { @@ -116,13 +116,13 @@ this.xNumEntry.value = this.nEntry; } } _addRow (lData) { - let xRowNode = createNode("listitem", { id: this.sNodeId + "_item_" + this.iEntryIndex, value: this.iEntryIndex }); + let xRowNode = createNode("richlistitem", { id: this.sNodeId + "_item_" + this.iEntryIndex, value: this.iEntryIndex }); for (let data of lData) { - xRowNode.appendChild(createNode("listcell", { label: data })); + xRowNode.appendChild(createNode("div", { class:"listcell", label: data })); } this.xTable.appendChild(xRowNode); this.iEntryIndex += 1; } Index: gc_lang/fr/mailext/content/lex_editor.xul ================================================================== --- gc_lang/fr/mailext/content/lex_editor.xul +++ gc_lang/fr/mailext/content/lex_editor.xul @@ -39,13 +39,13 @@ - + - + @@ -98,11 +98,11 @@ - + @@ -139,11 +139,11 @@ - + - - + + +