We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

English to Italian phrases translate

Hi,
it's possible change the text

"Show row where" to "Mostra le righe dove"
or
"equals" to "uguale

and all the phrases in english to Italian?
Thanks

1 Reply

PM Piruthiviraj Malaimelraj Syncfusion Team February 1, 2017 10:32 AM UTC

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

Loader.
Live Chat Icon For mobile
Up arrow icon