Index: gc_lang/fr/oxt/Lexicographer/Enumerator.py ================================================================== --- gc_lang/fr/oxt/Lexicographer/Enumerator.py +++ gc_lang/fr/oxt/Lexicographer/Enumerator.py @@ -307,10 +307,12 @@ for sWord, nOccur in sorted(self.dWord.items(), key=lambda t: t[1], reverse=True): xGridDataModel.addRow(i, (sWord, nOccur)) self.xProgressBar.ProgressValue += 1 i += 1 nTotOccur += nOccur + if sWord.lower().endswith(("-je", "-tu", "-il", "-elle", "-on", "-nous", "-vous", "-ils", "-elles", "-iel", "-iels")): + nTotOccur += nOccur self.xProgressBar.ProgressValue = self.xProgressBar.ProgressValueMax self.xNumWord.Label = str(i) self.xTotWord.Label = nTotOccur def export (self):