Sensitivity Label Translation

Lordmemphis 0 Reputation points
2025-08-09T19:12:49.7633333+00:00

In my tenant's premises, I have configured sensitivity labels in English and auto labeling enable (recommended label). However, once I have deployed these labels to a different market (non-English country), I noticed that the labels are not being translated into the user's local language. Additionally, the custom messages for the client-side policy tip message are not being translated either. How can I ensure that all the verbage are translated into the local dialect in each country where I have deployed labels?

Microsoft Security | Microsoft Purview
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Venkat Reddy Navari 5,330 Reputation points Microsoft External Staff Moderator
    2025-08-11T08:18:32.7966667+00:00

    Hi Lordmemphis Microsoft Purview sensitivity labels and policy tip messages do not automatically translate into users’ local languages. Here’s how you can handle localization:

    Localizing Sensitivity Labels

    Currently, Microsoft requires you to manually provide translations for sensitivity labels using PowerShell. This means adding localized display names and descriptions for each language you want to support.

    You can do this using the Set-Label cmdlet from the Exchange Online PowerShell module.

    For example:

    
    
    Set-Label -Identity "Confidential" `
      -LocaleSettings @{ 
        "fr-FR" = @{ DisplayName = "Confidentiel"; Tooltip = "Ne partagez pas ce contenu." };
        "de-DE" = @{ DisplayName = "Vertraulich"; Tooltip = "Nicht weitergeben." }
      }
    

    This ensures that users see the label names and tooltips in their preferred language in supported Microsoft 365 apps.

    For details, see the official cmdlet reference here: https://learn.microsoft.com/powershell/module/exchange/set-label?view=exchange-ps

    Localizing Policy Tip Messages

    Custom policy tip messages (such as prompts or justification messages) do not support built-in localization.

    The recommended workaround is:

    • Create separate label policies per language or region.
    • Customize the policy tip message in the local language in each policy.
    • Scope each policy to the appropriate user group (e.g., by country or language).

    More on label publishing here: https://learn.microsoft.com/microsoft-365/compliance/sensitivity-labels#publish-sensitivity-labels


    Hope this helps. If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.