Closed skyeskie closed 8 years ago
Allow the item name, tooltip, description, and other text display take in a string ID for localization instead of a string.
Example current:
LAMCreateControl.checkbox(parent, { type = "checkbox", name = GetString(SI_SOME_CHECKBOX_NAME), tooltip = GetString(SI_SOME_CHECKBOX_TOOLTIP), -- .... }
With change:
LAMCreateControl.checkbox(parent, { type = "checkbox", name = SI_SOME_CHECKBOX_NAME, tooltip = SI_SOME_CHECKBOX_TOOLTIP, -- .... }
This would be a simple type check since IDs are integers. Not really necessary, but would be a nice integration to promote localizing.
Has been implemented for all name, tooltip and warning values. Dropdowns may also profit from this, but there are some other changes necessary before it will work. Going to handle this in a separate ticket.
Allow the item name, tooltip, description, and other text display take in a string ID for localization instead of a string.
Example current:
With change:
This would be a simple type check since IDs are integers. Not really necessary, but would be a nice integration to promote localizing.