Overview
Comment: | [fx] conjugueur: panneau et onglet |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext2 |
Files: | files | file ages | folders |
SHA3-256: |
1f91810c3db1d1339faf09aa6abbbf8a |
User & Date: | olr on 2017-08-08 17:25:26 |
Other Links: | branch diff | manifest | tags |
Context
2017-08-08
| ||
17:44 | [core][js] use typeof(require) instead of typeof(exports) check-in: b844f2ba25 user: olr tags: core, webext2 | |
17:25 | [fx] conjugueur: panneau et onglet check-in: 1f91810c3d user: olr tags: fx, webext2 | |
13:08 | [fx] attempt for the lexicographer (can’t work that way, it seems) check-in: fd7a9b5ca3 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/background.js from [f23ea27e23] to [d13b1b16d2].
︙ | ︙ | |||
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | }); browser.contextMenus.create({ id: "lexicographer", title: "Lexicographe", contexts: ["selection", "editable", "page"] }); browser.contextMenus.onClicked.addListener(function (xInfo, xTab) { // xInfo = https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/contextMenus/OnClickData // xTab = https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/tabs/Tab console.log(xInfo); console.log(xTab); console.log("Item " + xInfo.menuItemId + " clicked in tab " + xTab.id); console.log("editable: " + xInfo.editable + " · selected: " + xInfo.selectionText); // confusing: no way to get the node where we click?! switch (xInfo.menuItemId) { case "grammar_checking": break; case "lexicographer": if (xInfo.selectionText) { xGCEWorker.postMessage(["getListOfTokens", {sText: xInfo.selectionText}]); } break; } }); | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | }); browser.contextMenus.create({ id: "lexicographer", title: "Lexicographe", contexts: ["selection", "editable", "page"] }); browser.contextMenus.create({ id: "conjugueur_panel", title: "Conjugueur [fenêtre]", contexts: ["all"] }); browser.contextMenus.create({ id: "conjugueur_tab", title: "Conjugueur [onglet]", contexts: ["all"] }); function onCreated(windowInfo) { console.log(`Created window: ${windowInfo.id}`); } function onError(error) { console.log(`Error: ${error}`); } browser.contextMenus.onClicked.addListener(function (xInfo, xTab) { // xInfo = https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/contextMenus/OnClickData // xTab = https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/tabs/Tab console.log(xInfo); console.log(xTab); console.log("Item " + xInfo.menuItemId + " clicked in tab " + xTab.id); console.log("editable: " + xInfo.editable + " · selected: " + xInfo.selectionText); // confusing: no way to get the node where we click?! switch (xInfo.menuItemId) { case "grammar_checking": break; case "lexicographer": if (xInfo.selectionText) { xGCEWorker.postMessage(["getListOfTokens", {sText: xInfo.selectionText}]); } break; case "conjugueur_panel": var xConjWindow = browser.windows.create({ url: browser.extension.getURL("panel/conjugueur.html"), type: "detached_panel", width: 710, height: 980 }); xConjWindow.then(onCreated, onError); break; case "conjugueur_tab": var xConjTab = browser.tabs.create({ url: browser.extension.getURL("panel/conjugueur.html"), pinned: true }); xConjTab.then(onCreated, onError); break; } }); |
Added gc_lang/fr/webext/img/lines.png version [e4f15f2e8d].
cannot compute difference between binary files
Added gc_lang/fr/webext/img/logo-80.png version [17bf2efae3].
cannot compute difference between binary files
Modified gc_lang/fr/webext/manifest.json from [ebaa1e6143] to [de1e478a6e].
︙ | ︙ | |||
22 23 24 25 26 27 28 | "64": "img/logo-64.png", "96": "img/logo-96.png" }, "browser_action": { "default_icon": "img/logo-32.png", "default_popup": "panel/main.html", "default_title": "Grammalecte [fr]", | | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | "64": "img/logo-64.png", "96": "img/logo-96.png" }, "browser_action": { "default_icon": "img/logo-32.png", "default_popup": "panel/main.html", "default_title": "Grammalecte [fr]", "browser_style": true }, "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ |
︙ | ︙ |
Added gc_lang/fr/webext/panel/conjugueur.css version [763dd8903a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | /* CSS Document White Design par Olivier R. */ * { margin: 0; padding: 0; } img { border: none; } /* Generic classes */ .fleft { float: left; } .fright { float: right; } .center { text-align: center; } .right { text-align: right; } .left { text-align: left; } .justify { text-align: justify; } .hidden { display: none; } .clearer { clear: both; font-size: 0; height: 0; } body { background: #FFFFFF url(../img/lines.png); font: normal 16px Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; color: #505050; /*text-rendering: optimizeLegibility;*/ } .mainflow { width: 600px; margin: 0 auto 0 auto; } .logo { position: absolute; background-color: #FFFFFF; border: 3px solid #F0F0F0; border-radius: 96px; padding: 4px 4px 0 4px; } /* MAIN ====================================================================== */ #main .inbox { width: 600px; margin: 20px auto 10px auto; padding: 10px 30px 30px 30px; background: #FFFFFF; border: 2px solid #F0F0F0; border-radius: 20px; } #main h1 { margin: 5px 0 2px 0; color: hsl(210, 50%, 50%); font: bold 30px Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; } #main h2 { margin: 5px 0 2px 0; color: hsl(0, 50%, 50%); font: bold 16px Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; } #main h3 { margin: 5px 0 2px 0; color: hsl(210, 50%, 50%); font: bold 14px Tahoma, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", sans-serif; } #main .container { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: center; align-items: flex-start; } #main .colonne { width: 280px; padding: 0 10px; } .colonne p { font-size: 12px; } /*.box { border-left: 2px solid #8BC5EF; border-bottom: 2px solid #8BC5EF; border-radius: 5px; padding: 0 0 2px 10px; }*/ input#verb { display: inline-block; width: 230px; margin-left: 5px; padding: 5px 10px; border: 2px solid hsl(0, 0%, 80%); border-radius: 3px; height: 24px; background: transparent; font: normal 20px Tahoma, "Ubuntu Condensed"; color: hsl(0, 0%, 30%); } input[placeholder]#verb { color: hsl(0, 0%, 70%); } a#conjugate { display: inline-block; padding: 7px 10px; font-size: 20px; background-color: hsl(0, 30%, 30%); color: hsl(0, 30%, 60%); border-radius: 3px; text-transform: uppercase; text-align: center; text-decoration: none; } a#conjugate:hover { background-color: hsl(0, 60%, 40%); color: hsl(0, 60%, 70%); box-shadow: 0 0 2px hsl(0, 60%, 50%); } #options { margin: 10px 0 0 5px; font-size: 16px; text-align: center; } #smallnote { margin: 10px 0 10px 0; font-size: 11px; color: hsl(0, 0%, 60%); text-align: center; } |
Added gc_lang/fr/webext/panel/conjugueur.html version [6be4a8cb3a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 | <!DOCTYPE HTML> <html> <head> <link rel="stylesheet" type="text/css" href="conjugueur.css" /> <title>Grammalecte · Conjugueur</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> </head> <body> <header> <div class="mainflow"> <div class="logo" style="margin: -10px 0 0 0;"> <img src="../img/logo-96.png" alt="" /> </div> </div> </header> <div id="main"> <div class="inbox"> <p class="right" style="margin: 10px 30px 0 0"> <input type="text" id="verb" name="verb" maxlength="40" value="" placeholder="entrez un verbe" autofocus /> <a id="conjugate" href="#" onclick="return false;">Conjuguer</a> <p> <h1 id="verb_title" class="center"> </h1> <p id="info" class="center"> </p> <p id="options"> <label for="oneg">Négation</label> <input type="checkbox" id="oneg" name="oneg" value="ON" /> · <label id="opro_lbl" for="opro">Pronominal</label> <input type="checkbox" id="opro" name="opro" value="ON" /> · <label for="ofem">Féminin</label> <input type="checkbox" id="ofem" name="ofem" value="ON" /> · <label for="oint">Interrogatif</label> <input type="checkbox" id="oint" name="oint" value="ON" /> · <label id="otco_lbl" for="otco">Temps composés</label> <input type="checkbox" id="otco" name="otco" value="ON" /> </p> <p id="smallnote">❦</p> <div class="clearer"></div> <!-- section 1 --> <div class="container"> <div class="colonne"> <div id="infinitif" class="box"> <h2 id="infinitif_title">Infinitif</h2> <p id="infi"> </p> </div> <div id="imperatif" class="box"> <h2 id="imperatif_title">Impératif</h2> <h3 id="impe_temps">Présent</h3> <p id="impe1"> </p> <p id="impe2"> </p> <p id="impe3"> </p> </div> </div> <div class="colonne"> <div id="partpre" class="box"> <h2 id="partpre_title">Participe présent</h2> <p id="ppre"> </p> </div> <div id="partpas" class="box"> <h2 id="partpas_title">Participes passés</h2> <p id="ppas1"> </p> <p id="ppas2"> </p> <p id="ppas3"> </p> <p id="ppas4"> </p> </div> </div> </div> <div class="clearer"></div> <!-- section 2 --> <div class="container"> <div class="colonne"> <div id="indicatif" class="box"> <h2 id="indicatif_title">Indicatif</h2> <div id="ipre"> <h3 id="ipre_temps">Présent</h3> <p id="ipre1"> </p> <p id="ipre2"> </p> <p id="ipre3"> </p> <p id="ipre4"> </p> <p id="ipre5"> </p> <p id="ipre6"> </p> </div> <div id="iimp"> <h3 id="iimp_temps">Imparfait</h3> <p id="iimp1"> </p> <p id="iimp2"> </p> <p id="iimp3"> </p> <p id="iimp4"> </p> <p id="iimp5"> </p> <p id="iimp6"> </p> </div> <div id="ipsi"> <h3 id="ipsi_temps">Passé simple</h3> <p id="ipsi1"> </p> <p id="ipsi2"> </p> <p id="ipsi3"> </p> <p id="ipsi4"> </p> <p id="ipsi5"> </p> <p id="ipsi6"> </p> </div> <div id="ifut"> <h3 id="ifut_temps">Futur</h3> <p id="ifut1"> </p> <p id="ifut2"> </p> <p id="ifut3"> </p> <p id="ifut4"> </p> <p id="ifut5"> </p> <p id="ifut6"> </p> </div> </div> </div> <div class="colonne"> <div id="subjonctif" class="box"> <h2 id="subjontif_title">Subjonctif</h2> <div id="spre"> <h3 id="spre_temps">Présent</h3> <p id="spre1"> </p> <p id="spre2"> </p> <p id="spre3"> </p> <p id="spre4"> </p> <p id="spre5"> </p> <p id="spre6"> </p> </div> <div id="simp"> <h3 id="simp_temps">Imparfait</h3> <p id="simp1"> </p> <p id="simp2"> </p> <p id="simp3"> </p> <p id="simp4"> </p> <p id="simp5"> </p> <p id="simp6"> </p> </div> </div> <div id="conditionnel" class="box"> <h2 id="conditionnel_title">Conditionnel</h2> <div id="conda"> <h3 id="conda_temps">Présent</h3> <p id="conda1"> </p> <p id="conda2"> </p> <p id="conda3"> </p> <p id="conda4"> </p> <p id="conda5"> </p> <p id="conda6"> </p> </div> <div id="condb"> <h3 id="condb_temps"> </h3> <p id="condb1"> </p> <p id="condb2"> </p> <p id="condb3"> </p> <p id="condb4"> </p> <p id="condb5"> </p> <p id="condb6"> </p> </div> </div> </div> </div> <div class="clearer"></div> </div> </div> <script src="../grammalecte/helpers.js"></script> <script src="../grammalecte/fr/conj.js"></script> <script src="conjugueur.js"></script> </body> </html> |
Added gc_lang/fr/webext/panel/conjugueur.js version [532fc861da].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | // JavaScript let oVerb = null; // button document.getElementById('conjugate').addEventListener("click", function (event) { createVerbAndConjugate(document.getElementById('verb').value); }); // text field document.getElementById('verb').addEventListener("change", function (event) { createVerbAndConjugate(document.getElementById('verb').value); }); // options document.getElementById('oneg').addEventListener("click", function (event) { _displayResults(); }); document.getElementById('opro').addEventListener("click", function (event) { _displayResults(); }); document.getElementById('oint').addEventListener("click", function (event) { _displayResults(); }); document.getElementById('ofem').addEventListener("click", function (event) { _displayResults(); }); document.getElementById('otco').addEventListener("click", function (event) { _displayResults(); }); function createVerbAndConjugate (sVerb) { try { document.getElementById('oneg').checked = false; document.getElementById('opro').checked = false; document.getElementById('oint').checked = false; document.getElementById('otco').checked = false; document.getElementById('ofem').checked = false; // request analyzing sVerb = sVerb.trim().toLowerCase().replace(/’/g, "'").replace(/ +/g, " "); if (sVerb) { if (sVerb.startsWith("ne pas ")) { document.getElementById('oneg').checked = true; sVerb = sVerb.slice(7); } if (sVerb.startsWith("se ")) { document.getElementById('opro').checked = true; sVerb = sVerb.slice(3); } else if (sVerb.startsWith("s'")) { document.getElementById('opro').checked = true; sVerb = sVerb.slice(2); } if (sVerb.endsWith("?")) { document.getElementById('oint').checked = true; sVerb = sVerb.slice(0,-1).trim(); } if (!conj.isVerb(sVerb)) { document.getElementById('verb').style = "color: #BB4411;"; } else { document.getElementById('verb_title').textContent = sVerb; document.getElementById('verb').style = "color: #999999;"; document.getElementById('verb').value = ""; oVerb = new Verb(sVerb); let sRawInfo = oVerb._sRawInfo; document.getElementById('info').textContent = oVerb.sInfo; document.getElementById('opro').textContent = "pronominal"; if (sRawInfo.endsWith("zz")) { document.getElementById('opro').checked = false; document.getElementById('opro').disabled = true; document.getElementById('opro_lbl').style = "color: #CCC;"; document.getElementById('otco').checked = false; document.getElementById('otco').disabled = true; document.getElementById('otco_lbl').style = "color: #CCC;"; document.getElementById('smallnote').textContent = "Ce verbe n’a pas encore été vérifié. C’est pourquoi les options “pronominal” et “temps composés” sont désactivées."; } else { document.getElementById('smallnote').textContent = "❦"; if (sRawInfo[5] == "_") { document.getElementById('opro').checked = false; document.getElementById('opro').disabled = true; document.getElementById('opro_lbl').style = "color: #CCC;"; } else if (["q", "u", "v", "e"].includes(sRawInfo[5])) { document.getElementById('opro').checked = false; document.getElementById('opro').disabled = false; document.getElementById('opro_lbl').style = "color: #000;"; } else if (sRawInfo[5] == "p" || sRawInfo[5] == "r") { document.getElementById('opro').checked = true; document.getElementById('opro').disabled = true; document.getElementById('opro_lbl').style = "color: #CCC;"; } else if (sRawInfo[5] == "x") { document.getElementById('opro').textContent = "cas particuliers"; document.getElementById('opro').checked = false; document.getElementById('opro').disabled = true; document.getElementById('opro_lbl').style = "color: #CCC;"; } else { document.getElementById('opro').textContent = "# erreur #"; document.getElementById('opro').checked = false; document.getElementById('opro').disabled = true; document.getElementById('opro_lbl').style = "color: #CCC;"; } document.getElementById('otco').disabled = false; document.getElementById('otco_lbl').style = "color: #000;"; } _displayResults(); } } } catch (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } } function _displayResults () { if (oVerb === null) { return; } try { let opro = document.getElementById('opro').checked; let oneg = document.getElementById('oneg').checked; let otco = document.getElementById('otco').checked; let oint = document.getElementById('oint').checked; let ofem = document.getElementById('ofem').checked; // titles _setTitles() // participes passés document.getElementById('ppas1').textContent = oVerb.participePasse(":Q1") || " "; // something or nbsp document.getElementById('ppas2').textContent = oVerb.participePasse(":Q2") || " "; document.getElementById('ppas3').textContent = oVerb.participePasse(":Q3") || " "; document.getElementById('ppas4').textContent = oVerb.participePasse(":Q4") || " "; // infinitif document.getElementById('infi').textContent = oVerb.infinitif(opro, oneg, otco, oint, ofem); // participe présent document.getElementById('ppre').textContent = oVerb.participePresent(opro, oneg, otco, oint, ofem) || " "; // conjugaisons document.getElementById('ipre1').textContent = oVerb.conjugue(":Ip", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipre2').textContent = oVerb.conjugue(":Ip", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipre3').textContent = oVerb.conjugue(":Ip", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipre4').textContent = oVerb.conjugue(":Ip", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipre5').textContent = oVerb.conjugue(":Ip", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipre6').textContent = oVerb.conjugue(":Ip", ":3p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('iimp1').textContent = oVerb.conjugue(":Iq", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('iimp2').textContent = oVerb.conjugue(":Iq", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('iimp3').textContent = oVerb.conjugue(":Iq", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('iimp4').textContent = oVerb.conjugue(":Iq", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('iimp5').textContent = oVerb.conjugue(":Iq", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('iimp6').textContent = oVerb.conjugue(":Iq", ":3p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipsi1').textContent = oVerb.conjugue(":Is", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipsi2').textContent = oVerb.conjugue(":Is", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipsi3').textContent = oVerb.conjugue(":Is", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipsi4').textContent = oVerb.conjugue(":Is", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipsi5').textContent = oVerb.conjugue(":Is", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ipsi6').textContent = oVerb.conjugue(":Is", ":3p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ifut1').textContent = oVerb.conjugue(":If", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ifut2').textContent = oVerb.conjugue(":If", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ifut3').textContent = oVerb.conjugue(":If", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ifut4').textContent = oVerb.conjugue(":If", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ifut5').textContent = oVerb.conjugue(":If", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('ifut6').textContent = oVerb.conjugue(":If", ":3p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('conda1').textContent = oVerb.conjugue(":K", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('conda2').textContent = oVerb.conjugue(":K", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('conda3').textContent = oVerb.conjugue(":K", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('conda4').textContent = oVerb.conjugue(":K", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('conda5').textContent = oVerb.conjugue(":K", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('conda6').textContent = oVerb.conjugue(":K", ":3p", opro, oneg, otco, oint, ofem) || " "; if (!oint) { document.getElementById('spre1').textContent = oVerb.conjugue(":Sp", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('spre2').textContent = oVerb.conjugue(":Sp", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('spre3').textContent = oVerb.conjugue(":Sp", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('spre4').textContent = oVerb.conjugue(":Sp", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('spre5').textContent = oVerb.conjugue(":Sp", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('spre6').textContent = oVerb.conjugue(":Sp", ":3p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('simp1').textContent = oVerb.conjugue(":Sq", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('simp2').textContent = oVerb.conjugue(":Sq", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('simp3').textContent = oVerb.conjugue(":Sq", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('simp4').textContent = oVerb.conjugue(":Sq", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('simp5').textContent = oVerb.conjugue(":Sq", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('simp6').textContent = oVerb.conjugue(":Sq", ":3p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('impe1').textContent = oVerb.imperatif(":2s", opro, oneg, otco, ofem) || " "; document.getElementById('impe2').textContent = oVerb.imperatif(":1p", opro, oneg, otco, ofem) || " "; document.getElementById('impe3').textContent = oVerb.imperatif(":2p", opro, oneg, otco, ofem) || " "; } else { document.getElementById('spre_temps').textContent = " "; document.getElementById('spre1').textContent = " "; document.getElementById('spre2').textContent = " "; document.getElementById('spre3').textContent = " "; document.getElementById('spre4').textContent = " "; document.getElementById('spre5').textContent = " "; document.getElementById('spre6').textContent = " "; document.getElementById('simp_temps').textContent = " "; document.getElementById('simp1').textContent = " "; document.getElementById('simp2').textContent = " "; document.getElementById('simp3').textContent = " "; document.getElementById('simp4').textContent = " "; document.getElementById('simp5').textContent = " "; document.getElementById('simp6').textContent = " "; document.getElementById('impe_temps').textContent = " "; document.getElementById('impe1').textContent = " "; document.getElementById('impe2').textContent = " "; document.getElementById('impe3').textContent = " "; } if (otco) { document.getElementById('condb1').textContent = oVerb.conjugue(":Sq", ":1s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('condb2').textContent = oVerb.conjugue(":Sq", ":2s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('condb3').textContent = oVerb.conjugue(":Sq", ":3s", opro, oneg, otco, oint, ofem) || " "; document.getElementById('condb4').textContent = oVerb.conjugue(":Sq", ":1p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('condb5').textContent = oVerb.conjugue(":Sq", ":2p", opro, oneg, otco, oint, ofem) || " "; document.getElementById('condb6').textContent = oVerb.conjugue(":Sq", ":3p", opro, oneg, otco, oint, ofem) || " "; } else { document.getElementById('condb1').textContent = " "; document.getElementById('condb2').textContent = " "; document.getElementById('condb3').textContent = " "; document.getElementById('condb4').textContent = " "; document.getElementById('condb5').textContent = " "; document.getElementById('condb6').textContent = " "; } document.getElementById('verb').Text = ""; } catch (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } } function _setTitles () { try { if (!document.getElementById('otco').checked) { document.getElementById('ipre_temps').textContent = "Présent"; document.getElementById('ifut_temps').textContent = "Futur"; document.getElementById('iimp_temps').textContent = "Imparfait"; document.getElementById('ipsi_temps').textContent = "Passé simple"; document.getElementById('spre_temps').textContent = "Présent"; document.getElementById('simp_temps').textContent = "Imparfait"; document.getElementById('conda_temps').textContent = "Présent"; document.getElementById('condb_temps').textContent = " "; document.getElementById('impe_temps').textContent = "Présent"; } else { document.getElementById('ipre_temps').textContent = "Passé composé"; document.getElementById('ifut_temps').textContent = "Futur antérieur"; document.getElementById('iimp_temps').textContent = "Plus-que-parfait"; document.getElementById('ipsi_temps').textContent = "Passé antérieur"; document.getElementById('spre_temps').textContent = "Passé"; document.getElementById('simp_temps').textContent = "Plus-que-parfait"; document.getElementById('conda_temps').textContent = "Passé (1ʳᵉ forme)"; document.getElementById('condb_temps').textContent = "Passé (2ᵉ forme)"; document.getElementById('impe_temps').textContent = "Passé"; } } catch (e) { console.error(e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message); } } createVerbAndConjugate("être"); document.getElementById("verb").focus(); |