i am using godot 4.5.1 and the localisation translation is not working and just defaults to the finnish one (which is the last one in the localisation list)
I’m not sure how you’re using the tr(“string“, language_locale), I’ve never personally used it this way, you should probably use: TranslationServer.set_locale(global.language)to set the language of the whole game to use it, and you should be able to just set the string of your Apply button to b_apply (in-editor) and it will automatically translate it when you change the locale. Otherwise I would only use tr(“string”) when you need to do more complex stuff like bbcodes and concatenated strings that need different bits pieced together. tr() will use the language of whatever the locale is set to in the Translation Server.