Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Localization is the ability to display the user interface in different languages. By default, the EPiServer Commerce user interface comes in a number of languages, and can be further localized with additional languages. The localization procedure differs somewhat between the Commerce user interface and the legacy Commerce Manager back-end system.
The Commerce plugable add-on user interface is localized using the EPiServer localization services in the same way as for CMS. Refer to the Localization service section in the EPiServer Framework SDK for more information.
Do the following to add additional languages for localization of the user interface in the Commerce Manager back-end system:
Example: language configuration
<?xml version="1.0" encoding="utf-8"?>
<Application defaultApplicationName="ecommerceframework">
<Roles>
<add name="AdminRole" value="Admins" />
<add name="ManagerUserRole" value="Management Users" />
<add name="EveryoneRole" value="Everyone" />
<add name="RegisteredRole" value="Registered" />
</Roles>
<Connection connectionStringName="EcfSqlConnection" />
<Cache enabled="true" appTimeout="0:0:10" />
<Languages>
<add key="en-us" value="English"></add>
<add key="ru-ru" value="Russian"></add>
<add key="sv-SE" value=NewSwedishLanguage></add>
</Languages>
</Application>
Last updated: Mar 31, 2014