Hi Tomasz,
Thanks for contacting Syncfusion support.
Currently we don’t have localization support for the "Select rows were:" "AND" "OR" and "Done" strings. Localization support for these strings will be included in our Volume 2, 2018 SP1 release which is expected to be released by the end of July, 2018.
If you need to change the specified strings in the FilterControl, you can use the SfDataGrid.FilterPopupShowing event and change the required strings. Please refer to the below code example and sample from the given location.
Code Example:
|
sfDataGrid1.FilterPopupShowing += sfDataGrid1_FilterPopupShowing;
void sfDataGrid1_FilterPopupShowing(object sender, Syncfusion.WinForms.DataGrid.Events.FilterPopupShowingEventArgs e)
{
e.Control.FilterDescription = "Sélectionnez les lignes où:";
e.Control.OrButtonText = "Ou";
e.Control.AndButtonText = "Et";
if (e.Control.DoneButton != null)
e.Control.DoneButton.Text = "Terminé";
if (e.Control.OkButton != null)
e.Control.OkButton.Text = "D'accord";
if (e.Control.CancelButton != null)
e.Control.CancelButton.Text = "Annuler";
} |
Regards,
Mohanram A.