Implements language selector

This commit is contained in:
2022-11-28 06:52:18 -03:00
parent 7d70247bbd
commit 1b3f5d615a
3 changed files with 107 additions and 238 deletions

View File

@ -971,7 +971,25 @@ screen preferences():
label _("Naughty Stuff")
textbutton _("Enable Lewd Images") action [Function(onclick_audio, persistent.lewd), ToggleVariable("persistent.lewd", True, False)]
use translator_roulette
vbox:
style_prefix "check"
label _("Language")
vpgrid:
rows len(languages)
cols 1
mousewheel True
draggable True
xsize 300
ysize 250
if len(languages)>5:
scrollbars "vertical"
for lang in languages:
fixed:
xsize 250
ysize 60
hbox:
textbutton lang["name"] action Language(lang["value"]) activate_sound "audio/ui/uiRollover.wav"
add lang["image"] at icon
vbox:
style_prefix "check"