There is a way how to deal with the text of Category name using CategoryEditor? For example, for property name I use this PropeertyEditor:
<grids:PropertyEditor>
<grids:PropertyEditor.NameTemplate>
<DataTemplate>
<TextBlock x:Name="txtProperty" Margin="4,0,0,0" HorizontalAlignment="Stretch" VerticalAlignment="Center">
<TextBlock.Text >
<MultiBinding Converter="{StaticResource TranslationConverter}">
<Binding ElementName="txtProperty" Path="."></Binding>
<Binding Path="DisplayName"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</DataTemplate>
</grids:PropertyEditor.NameTemplate>
</grids:PropertyEditor>
so, that way I am able to translate the property name by means of my converter
There is some way how, in a similar way to the code above, to deal with the category name text?