Home
Search

Start | Blogs | Umbraco | Add translations

2019-10-24

Umbraco

How to add translations in Umbraco

If you have found missing translations in Umbraco for your language, you can go to this folder in Umbraco core: https://github.com/umbraco/Umbraco-CMS/tree/v7/dev/src/Umbraco.Web.UI/umbraco/config/lang which is the place where the translations are stored. Open the english file and search for the error message that you will be getting in english instead of your desired language. Find the area alias and the key alias of the key you want to translate. 
In your own project you can now go to www(the location where umbraco is installed)/config/lang/{language}.user.xml. Add the area alias and key alias to the file if they don't already exist there and add your own translations. Compile and reload the site and the translations should be there. You can also create a pull request to Umbraco with your translations so that others can benefit.