Hi Gennaro,
Thanks for your interest in Syncfusion products.
In order to localize the excel filter, you can use the Localizer which is inherited from ILocalizationProvider and LocalizationProvider.Provider property can be used to localize the excel filter. Please make use of the below code,
Code example:
Localizer loc = new Localizer();
loc.getstring(true,false,true,false);
LocalizationProvider.Provider = loc;
public string GetLocalizedString(System.Globalization.CultureInfo culture, string name, object obj)
{
switch (name)
{
case DynamicFilterResourceIdentifiers.ShowRowsWhere:
if (office2007Filter)
return "Mostra le righe dove";
else
return "Shows the rows where:";
case DynamicFilterResourceIdentifiers.CustomComboboxAutoFilterEqual:
if (office2007Filter)
return "uguale";
else
return "Equal";
}
}
Sample link:
Regards,
Piruthiviraj