Limited German language support in Loop on the web

Employees may be surprised when they open Loop on the web and find the display language is English. The system uses the default language German in many other Microsoft Cloud products.

As an example in my screenshot:

As I mentioned in my post in November 2023, Loop on the web uses the language configuration from the preferredlanguage property of the Entra ID account.
The preferredLanguage for the account is de-CH. The display language in Microsoft 365 Home and many other products is “German-Switzerland.”

Sprachkonfiguration im Entra ID Konto
Language configuration in the Entra ID account

Loop on the web does not adopt this configuration.
It behaves identically with configurations for de-AT, de-LI, and de-LU.

I tried to change the preferredlanguage configuration to de-DE and changed the account settings using PowerShell via the Microsoft Graph API.

PowerShell
Import-Module Microsoft.Graph.Authentication
Connect-MgGraph -Scopes User.ReadWrite

$Body = @"
{ "preferredLanguage": "de-DE" }
"@

$Url = "https://graph.microsoft.com/v1.0/users/[email protected]"
Invoke-MgGraphRequest -Method PATCH -Uri $Url -Body $Body -ContentType "application/json"

preferredLanguage has been changed
preferredLanguage has been changed

A re-login to Loop on the web is required for the updated language configuration to take effect. Loop on the web has changed the display language to German.

The test confirms that Loop on the web only switches the display language with de-DE and does not yet support alternative German language configurations.
If employees can change their language via My Account, the system uses German (Germany) > de-DE.

Screenshot

If administrators set the language configuration for the users or if the language configuration is synchronized via an On-prem AD, de-CH and de-AT might be used.

Share
Avatar photo

Tobias Asböck

Tobias is a Senior System Engineer with around ten years of professional experience with Microsoft 365 products such as SharePoint Online, OneDrive for Business, Teams Collaboration, Entra ID, Information Protection, Universal Print, and Microsoft 365 Licensing. He also has 15+ years of experience planning, administering, and operating SharePoint Server environments. Tobias is a PowerShell Scripter with certifications for Microsoft 365 products. In his spare time, Tobias is busy with updates in the Microsoft 365 world or on the road with his road bike and other sports activities.

Leave a Reply

Your email address will not be published. Required fields are marked *