Grammalecte  Check-in [aae1c5282e]

Overview
Comment:[fx] intitulé pour le lancement du Thesaurus
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | fx
Files: files | file ages | folders
SHA3-256: aae1c5282e10c39b3452026ba9f3e3ddd4024fab2d212bee3b23e815d0705092
User & Date: olr on 2025-12-15 17:15:30
Other Links: manifest | tags
Context
2025-12-15
17:58
[fr] mise à jour du fichier des modifications Leaf check-in: ebad16e59f user: olr tags: trunk, fr, v2.3.0
17:15
[fx] intitulé pour le lancement du Thesaurus check-in: aae1c5282e user: olr tags: trunk, fx
14:53
[fr][build][fx] split the thesaurus in two parts to bypass AMO, then merge them after loading check-in: 6e729d98df user: olr tags: trunk, fr, build, fx
Changes

Modified gc_lang/fr/webext/content_scripts/html_src.js from [9a834c7c56] to [8be962c666].

165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
    </div>

    <div class="grammalecte_clearer"></div>

    <h1 class="grammalecte_thes_title" id="grammalecte_thes_title" class="center">&nbsp;</h1>

    <div id="grammalecte_separator">❦</div>
    <div id="grammalecte_thes_word_info" class="center" style="display: none;">Aucun synonyme trouvé</div>

    <div id="grammalecte_synonyms_list">

    </div>

    <div class="grammalecte_clearer"></div>
`;







|







165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
    </div>

    <div class="grammalecte_clearer"></div>

    <h1 class="grammalecte_thes_title" id="grammalecte_thes_title" class="center">&nbsp;</h1>

    <div id="grammalecte_separator">❦</div>
    <div id="grammalecte_thes_word_info" class="center">Entrez un mot pour rechercher des synonymes</div>

    <div id="grammalecte_synonyms_list">

    </div>

    <div class="grammalecte_clearer"></div>
`;

Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [e2f46957ed] to [25b413a070].

980
981
982
983
984
985
986

987
988
989
990
991
992
993
        try {
            if (sWord) {
                this.xParent.getElementById('grammalecte_thes_title').textContent = sWord;
                this.emptySynList();
                if (lSyns.length == 0) {
                    this.xParent.getElementById('grammalecte_thes_word').style = "color: #BB4411;";
                    this.xParent.getElementById('grammalecte_thes_word_info').style = "display: block";

                } else {
                    this.xParent.getElementById('grammalecte_thes_word').style = "";
                    this.xParent.getElementById('grammalecte_thes_word_info').style = "display: none";
                    this.populateSynList(lSyns);
                }
            }
        }







>







980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
        try {
            if (sWord) {
                this.xParent.getElementById('grammalecte_thes_title').textContent = sWord;
                this.emptySynList();
                if (lSyns.length == 0) {
                    this.xParent.getElementById('grammalecte_thes_word').style = "color: #BB4411;";
                    this.xParent.getElementById('grammalecte_thes_word_info').style = "display: block";
                    this.xParent.getElementById('grammalecte_thes_word_info').textContent = "Aucun synonyme trouvé";
                } else {
                    this.xParent.getElementById('grammalecte_thes_word').style = "";
                    this.xParent.getElementById('grammalecte_thes_word_info').style = "display: none";
                    this.populateSynList(lSyns);
                }
            }
        }