Localization
With Developer Express VCL products, localizing your application for different markets is no longer a nightmare since our products have been designed and developed with localization in mind. We offer you a simple and complete mechanism for specifying the localized versions of resource strings that can be used throughout our products. Using a single procedure call you can substitute any resource string with the required translation. Once you localize the ExpressQuantumGrid and ExpressEditors Library, your end-users will be able to see button captions, menu items and the various element names used in the grid control and editors in their native language. The sample code below demonstrates how you can provide German equivalents for the menu options available in the ExpressQuantumGrid: 
[Delphi]
uses ... cxGridPopupMenuConsts ...
cxSetResourceString(@cxSGridSortColumnAsc, 'Aufsteigend sortieren'); cxSetResourceString(@cxSGridSortColumnDesc, 'Absteigend sortieren'); cxSetResourceString(@cxSGridClearSorting, 'Freies sortieren'); cxSetResourceString(@cxSGridGroupByThisField, 'Nach diesem Feld gruppieren'); cxSetResourceString(@cxSGridGroupByBox, 'Nach Auswahl gruppieren');
|