FR | EN

Tools to Block Inclusive Writing

Install these in under 2 minutes. No registration. Works everywhere.

PlatformFix (English)
Gmail / Google Workspace Use LanguageTool → In settings: Style → Disable “Inclusive language” suggestions
(No dedicated “Écrire Droit” add-on in English — but LanguageTool does the job)
Chrome / Firefox Install Grammarly or LanguageTool
→ Turn off “gender-neutral” or “inclusive” suggestions
Thunderbird Install LanguageTool → Same: disable inclusive rules
Microsoft Word / Office 365 File → Options → Proofing → Untick “Flag inclusive language” (available in English versions)
LibreOffice Tools → Options → Language Settings → Only enable “French (classic)”

Protect Your Own Website (PHP)

<?php
if (preg_match('/[·•]|\b(iel|folx|womxn|latinx)\b/i', $_POST['message'] ?? '')) {
    die("Inclusive writing detected. Please use standard language.");
}
?>

Client-Side JavaScript (any form)

<script src="script.js"></script>
<form>
  <textarea name="message"></textarea>
  <button type="submit">Send</button>
</form>

← Back to homepage | Why English inclusive terms hurt accessibility →