We have moved!

You are currently looking at documentation for Umbraco 8 and older versions.
An automated guess is that docs.umbraco.com/umbraco-cms/extending/language-files/ could be the link to the new documentation for Umbraco 9 and newer versions.

    Language Files & Localization

    Language files are used to translate the Umbraco backoffice user interface so that end users can use Umbraco in their native language. This is particularly important for content editors who do not speak English.

    If you are a package developer, see here for docs on how to include translations for your own package.

    Supported Languages

    Current languages that are included in the core are:

    • English (UK)
    • English (US)
    • Danish
    • German
    • Spanish
    • French
    • Hebrew (Israel)
    • Italian
    • Japanese
    • Korean
    • Dutch
    • Norwegian
    • Polish
    • Portuguese
    • Russian
    • Swedish
    • Chinese
    • Chinese (Taiwan)
    • Czech
    • Turkish
    • Welsh

    Where to find the language files

    Core language files

    The core Umbraco language files are found at the following location within the Umbraco source:

    Umbraco-CMS/src/Umbraco.Web.UI/Umbraco/Config/Lang/
    

    These language files are the ones shipped with Umbraco and should not be modified.

    Package language files

    If you are a package developer, see here for docs on how to include translations for your own package, package language files are located in:

    ~/App_Plugins/mypackage/lang/{language}.xml
    

    User language files

    If you want to override Umbraco core translations or translations shipped with packages, you can do that too, these files are located here:

    ~/config/lang/{language}.user.xml
    

    By default, these files are empty but you can add any new keys you want or override existing ones with your own translations. The nice part about the user files is that they will not get overwritten by the installer when you upgrade your Umbraco versions.

    Using the language keys

    Using core or custom language keys from your code:

    From .NET

    Services are available in most Umbraco base classes like Controllers and UserControls, from there, use TextService to localize string with format [area]/[key]:

    using Umbraco.Core.Services;
    var localizedLabel = Services.TextService.Localize("dialog/myKey");
    

    From Angular

    In the Umbraco backoffice UI, labels can be localized with the localize directive:

    <button>
        <localize key="dialog_myKey">Default value</localize>
    </button>
    

    The localize directive can also be used as an attribute like below where the value of the title attribute is then populated with the dictionary key "title_name" from the language file using "@title_name".

    <button localize="title" title="@title_name">
        <localize key="dialog_myKey">Default value</localize>
    </button>
    

    Or from a controller by using the LocalizationService which returns an async translation in a promise:

    localizationService.localize("dialog_myKey").then(function(value){
                    element.html(value);
    });
    

    Help keep the language files up to date

    As Umbraco is a continually evolving product it is inevitable that new text is added on a fairly regular basis to the English language version of these files. This may mean that some of the above languages are no longer up to date.

    If a translation is missing, the key "alias" used will be shown within the user interface, as an example:

    [assignDomain]
    

    The language files are XML files with a straight-forward layout as seen below.

    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <language alias="en" intName="English (UK)" localName="English (UK)" lcid="" culture="en-GB">
        <creator>
            <name>The Umbraco community</name>
            <link>https://our.umbraco.com</link>
        </creator>
        <area alias="actions">
            <key alias="assignDomain">Culture and Hostnames</key>
            <key alias="auditTrail">Audit Trail</key>
            ...
        </area>
        ...
    </language>
    

    In the above example of a missing translation for "assignDomain", locate this string in the en.xml file and then copy the whole "Key" element into the relevant language file. Then you can translate the text, as an example here is the Spanish version of the above snippet:

    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <language alias="es" intName="Spanish" localName="español" lcid="10" culture="es-ES">
        <creator>
            <name>The Umbraco community</name>
            <link>https://our.umbraco.com</link>
        </creator>
        <area alias="actions">
            <key alias="assignDomain">Administrar hostnames</key>
            <key alias="auditTrail">Auditoría</key>
            ...
        </area>
        ...
    </language>
    

    If you do update any of the core language files or you add a new language, don't forget to help the rest of the community by submitting a pull request so that your changes are merged into the core.