0
1)本地化內容語言(針對網站訪問者)和本地化編輯器UI語言(針對內容編輯者)。 Episerver中的這兩種實現方式有何不同?Episerver爲編輯器UI(內容編輯器)本地化語言
有兩種方法進行本地化。
2.1)的Xml
我不明白的是如何獲得本地化的字符串時,有這裏所說的多國語言?
2.2)本地化服務API
這很明確。但是,這可以用於本地化編輯器UI語言(用於內容編輯器)嗎?
爲#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; }
}
<language name="en">
<contenttypes>
<standardpage>
<description>A description of the page type</description>
<properties>
<maincontentarea>
<caption>Name text from XML</caption>
<help>Description text from XML</help>
</ maincontentarea >
</properties>
</standardpage>
</contenttypes>
</language>
考慮到三個題目拆分此的XML –