Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
How to translate the UI of Ultracontrols to desired language?
posted

How to translate the UI of Ultracontrols to desired language?  Here is a small piece of code(written in ABL referencing to Infragistics UltraControls) that should make absolutely clear what we are looking for:

DEFINE VARIABLE grid AS Infragistics.Win.UltraWinGrid.UltraGrid NO-UNDO.
DEFINE VARIABLE previewDialog AS Infragistics.Win.Printing.UltraPrintPreviewDialog NO-UNDO.
DEFINE VARIABLE printDoc AS Infragistics.Win.UltraWinGrid.UltraGridPrintDocument NO-UNDO.
ASSIGN
grid = NEW Infragistics.Win.UltraWinGrid.UltraGrid()
previewDialog = NEW Infragistics.Win.Printing.UltraPrintPreviewDialog()
printDoc = NEW Infragistics.Win.UltraWinGrid.UltraGridPrintDocument ( )
printDoc:Grid = grid
previewDialog:Document = printDoc
previewDialog:PrintDialogButtonVisible = TRUE
.
WAIT-FOR previewDialog:ShowDialog().
(You can run this code from Procedure Editor)

We need to translate all the (about 50) strings (menus, labels, tooltips, status bar texts) in the dialog produced by the above code.

Examples:
"File" => "Datei" in German, "Fichier" in French
"Exit" => "Schliessen" in German, "Fermer" in French

Could anyone please advise? Thanks and let me know if anything else is needed.