diff --git a/game/src/credits.rpy b/game/src/credits.rpy index fc71000..f59d082 100644 --- a/game/src/credits.rpy +++ b/game/src/credits.rpy @@ -89,6 +89,12 @@ init 999 python: 'DatFeelFrog', 'CMDR Andrea Dornan' ], + _('Translators (Polish):'): [ + 'benn55', + 'DI MOLTO', + 'Man_of_Krieg', + 'ReD', + ], _('Proofreaders (Spanish):'): [ 'ElBan Anón', 'GMAnon' @@ -116,8 +122,8 @@ init 999 python: #sizes in px SIZE_SNOT_GAMES = 68*3+10 SIZE_TITLE = 32*3+10 - SIZE_ENTRY = 22*3+10 - SIZE_TL = 22*2+10 + SIZE_ENTRY = 19.75*3+10 + SIZE_TL = 19.75*2+10 SIZE_ENDER = 52*3+10 #there is line_spacing but don't usei t diff --git a/game/src/translation.rpy b/game/src/translation.rpy index 2dcc99c..c54fa6c 100644 --- a/game/src/translation.rpy +++ b/game/src/translation.rpy @@ -38,7 +38,8 @@ init python: languages = [ {'image': 'gui/flag/USofA.png', 'name': 'English', 'value': None }, {'image': 'gui/flag/Mexico.png', 'name': 'Español', 'value': 'es'}, - {'image': 'gui/flag/Rus.png', 'name': 'Русский', 'value': 'ru'} + {'image': 'gui/flag/Rus.png', 'name': 'Русский', 'value': 'ru'}, + {'image': 'gui/flag/Poland.png', 'name': 'Polski', 'value': 'pl'} ] #This was done so it would work with whatever amount of languages you wanted, I tried it with up to 200 and it worked nicely.