Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi Sanjay,
EPiServer UI is using localization service under the hood. You can specify the language in the language node, as follows:
<language name="English" id="en">
The display attribute supports only one language (Name and Description values), so it's recommended to localize strings in the XML file(s) instead.
You can set up Alloy sample project, and take a look at XML files in Resources/LanguageFiles folder.
http://world.episerver.com/documentation/developer-guides/CMS/globalization/Localization-service/
1) Localizing content language(for web site visitors) and localizing editor UI language (for content editors). Are these two implemented differently in Episerver?
There are two ways to localize.
2.1) Xml
What I do not understand is how to get the localized string when there are multiple languages mentioned here?
2.2) Localization service API
This is clear. But can this be used in localizing editor UI language (for content editors)?
The example for #2.1
[ContentType( Description = "This text can you have in XML instead" )] public class StandardPage : PageData { [Display( GroupName = SystemTabNames.Content, Name = "This text can you have in XML instead ", Description = " This text can you have in XML instead " )] public virtual ContentArea MainContentArea { get; set; } }