help with subs

U

User_920791

Guest
Guest
Depending on the engine used by the game, yes.

For Ren'py games, use to extract the scripts and edit directly or use the to generate the translation files (Using this method, you will need to "load" the translation using renpy.change_language:
Python:
#startup.rpy example
label splashscreen:
    menu:
        "English":
            $ renpy.change_language(None)
        "Português":
            $ renpy.change_language("Portuguese")
        "Español":
            $ renpy.change_language("Spanish")
   return