To me this seems like an obvious functionality of a modern programming language, so i'm hoping i have just missed the information about it in the documentation

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
set the uLocalization["English"]["warning"] of this stack to "Warning"
set the uLocalization["Espanol"]["warning"] of this stack to "Peligro"
Code: Select all
function localize pLanguage, pString
return the uLocalization[pLanguage][pString] of this stack
end localize