First, I added
init -3 python:
if persistent.lang is None:
persistent.lang = "spanish"
lang = persistent.lang
in the options.rpy because the primary language is in spanish. Then I made a language button in the game menu
frame:
style_group "pref"
has vbox
label _("Language")
textbutton "Español" action Language(None)
textbutton "English" action Language("english")
in the screens.rpy. I translated the common and screens files in the game>tl folder and started to translate the script.rpy to english
until I noticed this problem so what did I miss?