Check documentation for the latest version of dhtmlxSuite i18n DHTMLX Docs

i18n

defines a collection of language settings

object i18n;

Example

dhtmlXColorPicker.prototype.i18n["en-us"] = {
    langname: 'en-us', // name of the language
    labelHue : "Hue",  // label name of the hue input
    labelSat : "Sat",  // label name of the saturation input
    labelLum : "Lum",  // label name of the lightness input
    labelRed : "Red",  // label name of the Red input
    labelGreen : "Green", // label name of the Green input
    labelBlue : "Blue",   // label name of the Blue input
    btnAddColor : "Add to Custom Colors", // button "add a color to custom colors"
    btnSelect : "Select", // button "select"
    btnCancel : "Cancel"  // button "cancel"
};

See also
Back to top