Check the attached screenshot:
Hi,
A possible workaround is to use a custom localization provider with the correct spelling:
public class MyEnglishPivotGridLoclizationProvider : PivotGridLocalizationProvider
{
public override string GetLocalizedString(string id)
{
switch (id)
{
case PivotStringId.ContextGroupByQuaterOptionsMenuText: return "Group by Quarter";
}
return base.GetLocalizedString(id);
}
}
Regards,
Hristo
Progress Telerik