Creating a Multilingual Site
A guide to multilanguage setup in Umbraco
Last updated
A guide to multilanguage setup in Umbraco
Last updated
You can use language variants to set up a multilingual site. Language Variants allow you to have variants of the same content all under the same project. So, if you open a page and a language variant is enabled, you will see the option to switch the language from the drop-down list. Additionally, you can view or input the translated content.
This tutorial explains how to set up a basic multilingual website.
To add a new language, follow these steps:
Go to the Settings section.
Go to Languages in the Settings tree. The Languages window opens in the editor.
Click Add Language. The Add Language window opens in the editor.
Select a Language from the dropdown list. In this tutorial, we will pick Danish.
In Settings, select the following options to set the new language as the:
Default language for your site, toggle Default Language.
Mandatory language for your site, toggle Mandatory Language.
Select a Fallback Language from the drop-down list.
Click Save.
We can add multiple languages depending on our website requirements. In the previous step, we have already set Danish as our default language. We will now set-up English and German as our variants for this tutorial.
Go to Languages in the Settings tree and click Add Language.
For English Variant:
Select English (United States) from the drop-down list.
Click Save.
For German Variant:
Select German from the drop-down list.
Toggle Mandatory Language option.
Select Danish from the Fallback Language drop-down list.
Click Save.
To change the default language of a website:
Go to Languages in the Settings tree.
Select the language you want to set as the new default language.
Toggle Default Language.
Click Save.
To change the default backoffice language, update the Umbraco:CMS:Global:DefaultUILanguage
value in the appsettings.json
file. For more information, see the Global Settings article.
To change the default language of a User:
Go to Users section.
Select the user whose backoffice language you wish to change.
Select the new language from the Language drop-down list.
Click Save.
For this tutorial, we will create the following document types:
Home Page
Blogs
Contact Us
To enable language variants on Document Types, follow these steps:
Go to the Settings tab.
Select Contact Us from the Document Types folder.
Go to the Permissions tab and toggle Allow vary by culture
Click Save.
Go to the Design tab.
Click on the gear icon ⚙ of the Page Title and toggle Allow vary by culture.
Click Submit.
For this tutorial, we will not make any changes to the Address. Click Save.
When you return to your content node you will notice two things:
At the top of the content tree, there is a dropdown to view the content tree in the language of your choice.
To the right of the content name, there is now a dropdown where you can select a language. You can also open a split view so you can see two languages at once.
To add culture and hostnames, follow these steps:
Go to the Content tab.
Right-click on the ... dots next to the Contact Us content node and select Culture and Hostnames...
In the Culture and Hostnames... pane, let's add a domain for each hostname, like it's done here:
Click Save.
To use side-by-side mode for editing content at the same time, follow these steps:
Go to the Contact Us node. You will find a language dropdown next to the title at the top:
Click the dropdown and hover over the new language. You will see an Open in Splitview option will appear.
Click Open in Splitview. In this splitview, we can see the content node with each language side by side.
You may notice that the Address and other fields are greyed out - this is because we haven't checked the Allow vary by culture checkbox.
To enable these fields, follow the steps mentioned in the Enabling Language Variants on Document Types and Properties section.
To add language variants to the content.
Go to the Contact Us node.
Enter the Name for your content node and the Page Title in the new language.
Click Save and Publish. The Ready to Publish window opens providing the option to publish in one or more languages.
You can select either one or multiple languages and click Publish.
To render the values of the Contact Us page, use the following in the template:
The .Value()
method has a number of optional parameters that support scenarios where we want to "fall-back" to some other content, when the property value does not exist on the current content item. To use the fallback type, add the @using Umbraco.Cms.Core.Models.PublishedContent;
directive.
To display a value for a different language, if the language we are requesting does not have content populated:
For more information, see the Using fall-back methods article.
Depending on how your site is set up, not all content is edited through the content section. Some of the content may be written in the template or labels of the content node and dictionary items can play a part here. Dictionary items store a value for each language. They have a unique key and can be managed from the Translation section. For this tutorial, let's add dictionary items for the Address and Contact Number labels of the Contact Us page.
To create dictionary items:
Go to the Translation section.
Right-click Dictionary in the Translation tree and select Create.
Enter a Name for the dictionary item. Let's say Address and click Create.
Enter the different language versions for the dictionary item.
Click Save.
Similarly, we will add different language versions for the Contact Number field.
To render dictionary items in the template, replace the text with the following snippet:
You can assign a Translator when you need a 1-1 translation of your site. For example, let's say we originally created a website in "Danish" which works from a .dk
domain and now there is a need for an "English" site on a .com
domain. In this case, it might be easier to copy the entire danish site and then provide access to a Translator who can then translate the site page by page.
Translators are used for the translation workflow. By default, Translators have permission to Browse and Update nodes. Someone must review the translations of site pages before publishing the nodes. For more information on managing User Groups, assigning access or User permissions, see the Users article.
To view the language variant on the browser, follow these steps:
Go to the Content tab.
Select your new language from the language dropdown above your content tree.
Select the Contact Us node and go to the Info tab.
You will notice the links with the new language domain added to it. If it's not there, you might need to refresh the page.
Click on the link to view the new language varied node in the browser.
Alternatively, you can add the domain name to your localhost in the browser. For example: http://localhost:xxxx/da/
For viewing purposes, I've added a stylesheet to my website. The final result should look similar to the image below:
Danish Version:
German Version:
When requesting content over an API, the culture will fall back to the default, unless explicitly set.
To do this, you can use the IVariationContextAccessor.
To navigate between languages, we need to do two key things:
Get all the languages that the site can provide
Identify the language used on the current page
Once you have these, you need to loop through the languages and provide links to each home node.
There are two ways to achieve this. One is to use localizationService.GetAllLanguages();
to call the database, which is expensive and ideally includes caching.
The alternative is to get the Home node and find all cultures associated with it. This has a few benefits including speed and providing us with a link to show the user. It is the process you will use when following this guide.
This is achieved in cs.html
files using umbracoHelper.AssignedContentItem.GetCultureFromDomains();
.
Now that you have what you need, take the following steps to create a working example.
Create a new view called Navigation.cshtml
Paste in the following code:
Replace {{homeNodeContentAlias}}
with the Document Type alias of your Home node.
This will render links to either the language variant of the current page or the home node for the language variant.
Additionally, System.Globalization.CultureInfo
is used to obtain the native name of the language being rendered. This is useful if a user does not speak the default language.