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,11 +501,11 @@ _xNormalizedCharsForInclusiveWriting = str.maketrans({ '(': '_', ')': '_', - '.': '_', '·': '_', + '.': '_', '·': '_', '•': '_', '–': '_', '—': '_', '/': '_' })