Select to view content in your preferred language

Localize tooltips EditorWidget

896
1
08-09-2010 12:51 AM
MannusEtten
Emerging Contributor
The EditorWidget uses English text for the tooltips like "add to selection". Of course a lot of people in the world speak/read English but we have to deal with Dutch reading/speaking customers. How can I translate or localize the textmessages?
0 Kudos
1 Reply
AliMirzabeigi
Emerging Contributor
Dear Mannus,

You would need to customize default template of EditorWidget control and replace text strings with translated values. Here is what you can find in the EditorWidget template (for your case you should modify the part with TooltipService.Tooltip="Add to selection", etc...):
...
<Button x:Name="AddSelect" Command="{Binding Select}" CommandParameter="Add" ToolTipService.ToolTip="Add to selection" Style="{StaticResource ButtonStyle}">
       <Image  Stretch="None" Source="/ESRI.ArcGIS.Client.Toolkit;component/Images/AddToSelection.png"/>
</Button>
...
0 Kudos