Index: gc_lang/fr/modules-js/gce_suggestions.js ================================================================== --- gc_lang/fr/modules-js/gce_suggestions.js +++ gc_lang/fr/modules-js/gce_suggestions.js @@ -633,11 +633,11 @@ } const _dNormalizedCharsForInclusiveWriting = new Map([ ['(', '_'], [')', '_'], - ['.', '_'], ['·', '_'], + ['.', '_'], ['·', '_'], ['•', '_'], ['–', '_'], ['—', '_'], ['/', '_'] ]); function normalizeInclusiveWriting (sToken) { Index: gc_lang/fr/modules/gce_suggestions.py ================================================================== --- gc_lang/fr/modules/gce_suggestions.py +++ gc_lang/fr/modules/gce_suggestions.py @@ -501,14 +501,14 @@ _xNormalizedCharsForInclusiveWriting = str.maketrans({ '(': '_', ')': '_', - '.': '_', '·': '_', + '.': '_', '·': '_', '•': '_', '–': '_', '—': '_', '/': '_' }) def normalizeInclusiveWriting (sToken): "typography: replace word separators used in inclusive writing by underscore (_)" return sToken.translate(_xNormalizedCharsForInclusiveWriting)