Hello, Ive noticed the frequent use of the getText() function that, if im not mistaken, refers to a global java function of some sort that handles correct language display. An example of the function call in some random lua file: local doorOption = subMenu:addOption(getText("ContextMenu_Door"), worldobjects, nil);Ive also noticed that, for example, the english language files required for this function seem to be residing in: media/lua/Translate/EN/ So, i have tried adding a custom textfile with custom identifiers, using the same formatting as these files found in above mentioned directory, to my_mod_directory/media/lua/Translate/EN/: MyMod_EN.txtMyMod_EN = { MyMod_TitleDisplay = "MyMod Title!!!",}but this did not seem to work. Thus my question; is there at this moment a way to properly utilize this getText() funtion for you mod? Regards, Turbo