Translation additonal and bonus flash fix

This commit is contained in:
2022-10-29 16:45:15 +11:00
parent dda914a2c5
commit 05269f6770
4 changed files with 81 additions and 39 deletions

View File

@ -461,6 +461,7 @@ screen bonus_chapter_button(f="gui/button/menubuttons/template_idle.png"):
button:
xmaximum 500
ymaximum 129
xysize (500, 129)
action ShowMenu("ex_ch_menu")
activate_sound "audio/ui/uiClick.wav"
fixed:
@ -503,10 +504,14 @@ screen main_menu():
fixed:
xalign 0.125
yalign 0.5
xsize 1920/2
ysize 1080/4
add Solid(gui.accent_color)
xsize int(1920/2)
ysize int(1080/4)
at bonus_notif
fixed:
add Solid("#000")
add Solid(gui.accent_color) xysize ( int(1920/2)-20, int(1080/4)-12 ):
xalign 0.5
yalign 0.5
if persistent.endings == 0b1111:
text "You have unlocked all bonus chapters!" style "main_menu_text" yalign 0.5
else:
@ -994,6 +999,8 @@ 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 _("Requires Restart")
@ -1267,7 +1274,7 @@ screen extrasnavigation():
[ "About", ShowMenu("about") ],
[ "Updates", ShowMenu("updates") ],
[ "Gallery", ShowMenu("cg_gallery_0") ],
[ "Mods", ShowMenu("circleBar") ],
[ "Mods", ShowMenu("mod_menu") ],
[ "Return", ShowMenu("main_menu") ]
] )