Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 39
|
Hello,
If i want set the text of items(bold,underline,font size..) in french, i can do? If possible how?
Thank for you help!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Yes. You can do that. You can find a summary at here: http://www.essentialobjects.com/ViewDoc.aspx?t=Editor%2flocalization.htmlFor example, if you wish to change the prompt text for "Bold", you would do something like this:
Code: HTML/ASPX
<eo:Editor ....>
<CustomHeaderTemplate>
<eo:ToolBar runat="server" id="ToolBar1" ....>
<eo:ToolBarItem Text="Bold in french" CommandName="Bold" />
......
</eo:ToolBar>
</CustomHeaderTemplate>
</eo:Editor>
Note you need to keep the command name unchanged, but you can change the toolbar item's Text to anything. Thanks!
|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 39
|
Ok. Thank!
|