Hi.
We are a company from Spain. We are using the trial version and are interested in acquiring the full version.
We have seen several prompts, for example in grids (filtering), that we would want to translate into Spanish. Is that possible?
Thanks.
Best regards from Spain.
Hi,
you can use the customizer property of the wingrid assembly.
Have a look here:
http://help.infragistics.com/NetAdvantage/NET/Current/CLR2.0/?target=Win_Customizing_Assembly_Resource_Strings.html
a list of customizable strings can be found here:
http://help.infragistics.com/NetAdvantage/NET/Current/CLR2.0/?target=Win_Assembly_Resource_Strings.html
a sample for the filtering dialog would look like this (unfortunately in german):
rc.SetCustomizedString("GroupByBoxDefaultPrompt", "Um nach einer Spalte zu gruppieren, ziehen Sie die Spaltenüberschrift hierhin.");
rc.SetCustomizedString("RowFilterDropDownBlanksItem", "(Leere)");
rc.SetCustomizedString("RowFilterDropDownNonBlanksItem", "(Nicht Leere)");
// Filter Dialog
rc.SetCustomizedString("FilterDialogAddConditionButtonText", "Bedingung &hinzufügen");
rc.SetCustomizedString("FilterDialogOkButtonNoFiltersText", "&Keine Filter");
rc.SetCustomizedString("FilterDialogOrRadio_AccessibleDescription", "Bedingungen mit logischem Oder verbinden.");
rc.SetCustomizedString("FilterDialogAndRadio_AccessibleDescription", "Bedingungen mit logischem Und verbinden.");
rc.SetCustomizedString("RowFilterDropDownGreaterThan", "Größer als");
rc.SetCustomizedString("RowFilterDropDownLessThan", "Kleiner als");
rc.SetCustomizedString("RowFilterDropDownLike", "Wie");
rc.SetCustomizedString("RowFilterDropDownNotEquals", "Ungleich");
rc.SetCustomizedString("RowFilterDropDown_Operator_DoesNotContain", "Enthält nicht");
rc.SetCustomizedString("RowFilterDropDown_Operator_DoesNotMatch", "Entspricht nicht");
rc.SetCustomizedString("RowFilterDropDown_Operator_EndsWith", "Endet mit");
rc.SetCustomizedString("RowFilterDropDown_Operator_NotLike", "Nicht wie");
}
Thanks much!!!