Skip to content

Commit

Permalink
Merge pull request #1624 from Beuc/patch-3
Browse files Browse the repository at this point in the history
Fix missing spaces in the_question's screens.rpy
  • Loading branch information
renpytom committed Nov 8, 2018
2 parents 1392cd9 + 2e6f61e commit adb928e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions the_question/game/screens.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -799,10 +799,10 @@ screen preferences():
style_prefix "radio"
label _("Language")

textbutton "English" text_font "DejaVuSans.ttf"action Language(None)
textbutton "Français" text_font "DejaVuSans.ttf"action Language("french")
textbutton "English" text_font "DejaVuSans.ttf" action Language(None)
textbutton "Français" text_font "DejaVuSans.ttf" action Language("french")
textbutton "Русский" text_font "DejaVuSans.ttf" action Language("russian")
textbutton "Bahasa Melayu" text_font "DejaVuSans.ttf"action Language("malay")
textbutton "Bahasa Melayu" text_font "DejaVuSans.ttf" action Language("malay")

#end language_picker

Expand Down

0 comments on commit adb928e

Please sign in to comment.