/
/

How to Enable or Disable Pop-Up Page Translation in Microsoft Edge

by Andrew Gono, IT Technical Writer
How to Enable or Disable Offer to Translate Pages in Microsoft Edge blog banner image

The Microsoft Edge browser translate prompt appears whenever you visit a website that isn’t in your preferred language. While this greatly improves accessibility, your organization’s IT may want to hide the feature to standardize and refine the user experience.

This guide explains how to enable or disable pop-up translation in Microsoft Edge, key points, and the best deployment strategies.

Configure Edge browser translate pop-ups efficiently

Make sure to consider your technical constraints and policy goals to find the best method for your enterprise.

📌 Prerequisites:

  • Windows 10/11 operating system
  • Microsoft Edge version 77 and later
  • Edge ADMX templates (Group Policy)

📌 Recommended deployment strategies:

Click to Choose a Method

💻

Best for Individual Users

💻💻💻

Best for Enterprises

Method 1: Microsoft Edge Settings
Method 2: Registry Editor 
Method 3: CMD
Method 4: PowerShell
Method 5: Group Policy

Method 1: Configure via Microsoft Edge Settings (per user)

The easiest, most straightforward way to control page translations is to set your preferences in MS Edge Settings.

📌 Use Cases: IT support-assisted changes.

Steps:

  1. Open Microsoft Edge.
  2. Press Alt + F, then click Settings.
  3. On the left-hand side, select Languages.
  4. Toggle Offer to translate pages that aren’t in a language I read on or off, as needed.Open Settings go to Languages
  5. To manage specific page translations:
    • Click the three-dot menu next to a language under Preferred languages.
    • Select or deselect “Offer to translate pages in this language”.

Method 2: Configure via Registry Editor (All Users)

⚠️ Warning: Editing the registry can cause system issues. Create a backup before proceeding.

📌 Use Cases: Enforce system-wide changes that impact all users who share a workstation.

📌 Prerequisites: Administrator privileges.

Steps:

  1. Press Win + R, type regedit, and press Ctrl + Shift + Enter.
  2. Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge
    • If you don’t see the Edge key, do the following:
    • Go to HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft
    • Right-click on the right-hand pane.
    • Select New > Key.
    • Name the new key “Edge”.
  3. Right-click on the right-hand pane.
  4. Select New > DWORD (32-bit) Value.Go to Registry Editor find Edge folder and create New DWORD (32-bit) Value
  5. Name the new value “TranslateEnabled”.
  6. Modify the value.
    • To enable the translation feature, type 1.
    • To disable the translation feature, type 0.
  7. Close Registry Editor.
  8. Restart Microsoft Edge to apply your changes.

Method 3: Configure Edge browser translate via Command Prompt

📌 Use Cases: Batch configuration and automated changes to a registry.

📌 Prerequisites: Administrator privileges.

Steps:

  1. Press Win + R, type cmd, and press Ctrl + Shift + Enter.
  2. To enable the translation feature, run this command:
    reg add “HKLM\SOFTWARE\Policies\Microsoft\Edge” /v TranslateEnabled /t REG_DWORD /d 1 /f
  3. To disable the translation feature, run this command:
    reg add “HKLM\SOFTWARE\Policies\Microsoft\Edge” /v TranslateEnabled /t REG_DWORD /d 0 /f
  4. Restart Microsoft Edge to apply your changes.

Method 4: Configure Edge browser translate via PowerShell

📌 Use Cases: Deploy scriptable solutions that automate registry changes across your entire enterprise.

📌 Prerequisites: Administrator privileges.

Steps:

  1. Press Win + R, type powershell, and press Ctrl + Shift + Enter.
  2. To turn translation on, run the following:
    New-Item -Path “HKLM:\SOFTWARE\Policies\Microsoft\Edge” -Force

    New-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Edge” -Name “TranslateEnabled” -Value 1 -PropertyType DWord -Force

  3. To disable translation, run the following:
    New-Item -Path “HKLM:\SOFTWARE\Policies\Microsoft\Edge” -Force

    New-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Edge” -Name “TranslateEnabled” -Value 0 -PropertyType DWord -Force

  4. Restart Microsoft Edge to apply your changes.

Method 5: Configure via Group Policy

Modify your policy to set the rules for website translation in your organization.

📌 Use Cases: Centrally manage translation prompts in AD-joined environments.

📌 Prerequisites: Administrator privileges. Updated Microsoft Edge ADMX templates

Steps:

  1. Press Win + R, type gpedit.msc, and press Ctrl + Shift + Enter.
  2. Navigate to: Computer Configuration > Administrative Templates > Microsoft Edge > Languages
  3. Double-click the “Offer to translate pages that aren’t in a language I read” policy.
    • To enforce Edge browser translate, choose Enabled.
    • To block Edge browser translate, choose Disabled.
    • To let users decide, choose Not Configured.

⚠️ Things to look out for

Risks

Potential Consequences

Reversals

Incorrect registry pathErratic MS Edge Language servicesDelete the faulty key and restart Edge
Incorrect value/syntax used in Command PromptMisconfigured registryExecute the correct “reg add” command with the proper values
Incorrect ADMX templates usedThe translation feature becomes unavailable to all usersCorrect the policy in gpedit.msc and run gpupdate /force

How to verify Microsoft Edge translation policies

To ensure that your Microsoft Edge translation policies were successfully applied, simply do the following:

  1. Open Microsoft Edge.
  2. Type edge://policy in the address bar and press Enter to view applied policies.
  3. Confirm that the TranslateEnabled policy is set to your desired configuration.

Additional considerations for Edge browser translate management

Use these valuable insights about using Microsoft Translator in Edge for efficient and hassle-free rollouts.

Manual translation

You can configure how Edge’s translate feature behaves via in-browser settings or other means. But keep in mind that these changes don’t remove the option to manually translate pages (further restrictions can limit this).

User changes are overwritten

The Microsoft Edge translation policies you set will always override user-made changes. This is especially useful for standardization purposes and lowers the chances of misconfigurations, which can threaten a computer’s stability.

Troubleshooting Microsoft Edge translation

Certain methods that toggle Edge browser translate involve low-level settings, which can risk your cyber stability. Here are the most common problems you may encounter and how to solve them.

Edge translation policy is not taking effect

You may be noticing that no Edge browser changes are taking place. If so, confirm the registry path you used (if relevant) and check for any typos in your syntax. Know the risks and what to look out for in our tabled guide.

Group Policy setting is not applying

If your Group Policy changes aren’t materializing, check your ADMX templates by going to Computer Configuration > Administrative Templates > Microsoft Edge and manually refresh your Group Policy settings using gpupdate /force.

Managing the Microsoft Edge translate page function

Tailoring the Edge browser translate experience to your user base ensures accessibility when you need it or optimized workflows for online tasks. When updating translation tools via advanced methods, always save a backup to serve as your organization’s configuration baseline.

Related links:

Quick-Start Guide

NinjaOne can help you manage Microsoft Edge translation settings. The NinjaOne blog provides a detailed guide on enabling or disabling pop-up page translation in Microsoft Edge. You have several options to manage this setting:

  1. Manual Settings Method:
    • Open Microsoft Edge Settings
    • Go to the Languages section
    • Toggle the “Offer to translate pages that aren’t in a language I read” option on or off
  2. Policy Management:
    • NinjaOne’s MDM (Mobile Device Management) features allow you to configure browser settings across your organization
    • You can create policies to control translation settings for Microsoft Edge
  3. Registry Modification:
    • The script suggests you can modify registry settings to control translation prompts
    • This can be done through Group Policy, PowerShell, or CMD

The exact method will depend on your specific organizational needs and management approach. If you want a consistent setting across all devices, I recommend using NinjaOne’s MDM policy configuration to centrally manage this setting.

FAQs

Open Edge, navigate to Settings > Languages, and deactivate “Offer to translate pages that aren’t in a language I read.”

Open Edge, navigate to Settings > Languages, and enable “Offer to translate pages that aren’t in a language I read.”

Click the Translate icon on the address bar, select your preferred language, and click Translate.

When the translate prompt appears, click the dropdown arrow and click Never translate [Language].

You might also like

Ready to simplify the hardest parts of IT?