ciao, dopo aver copiato i file , hai visto nelle preferenze dove ti fa selezionare la lingua? a me cosi ha funzionato tranquillamente
init 10:
screen preferences():
tag menu
use game_menu(_("Prefereze"), scroll="viewport"):
vbox:
hbox:
box_wrap True
if renpy.variant("pc") or renpy.variant("web"):
vbox:
style_prefix "radio"
label _("Display")
textbutton _("Window") action Preference("display", "window")
textbutton _("Fullscreen") action Preference("display", "fullscreen")
vbox:
style_prefix "radio"
label _("Language")
textbutton "English" action Language(None)
textbutton "Italiano" action Language("it")
vbox:
style_prefix "radio"
label _("Rollback Side")
textbutton _("Disabilita") action Preference("rollback side", "disable")
textbutton _("Sinistra") action Preference("rollback side", "left")
textbutton _("Destra") action Preference("rollback side", "right")
vbox:
style_prefix "check"
label _("Skip")
textbutton _("Testo invisibile") action Preference("skip", "toggle")
textbutton _("Dopo le scelte") action Preference("after choices", "toggle")
textbutton _("Transizioni") action InvertSelected(Preference("transitions", "toggle"))
## Additional vboxes of type "radio_pref" or "check_pref" can be
## added here, to add additional creator-defined preferences.
null height (4 * gui.pref_spacing)
hbox:
style_prefix "slider"
box_wrap True
vbox:
label _("Text Speed")
bar value Preference("text speed")
label _("Auto-Forward Time")
bar value Preference("auto-forward time")
vbox:
if config.has_music:
label _("Music Volume")
hbox:
bar value Preference("music volume")
if config.has_sound:
label _("Sound Volume")
hbox:
bar value Preference("sound volume")
if config.sample_sound:
textbutton _("Test") action Play("sound", config.sample_sound)
if config.has_voice:
label _("Voice Volume")
hbox:
bar value Preference("voice volume")
if config.sample_voice:
textbutton _("Test") action Play("voice", config.sample_voice)
if config.has_music or config.has_sound or config.has_voice:
null height gui.pref_spacing
textbutton _("Mute All"):
action Preference("all mute", "toggle")
style "mute_all_button"