diff options
author | tpart <tpart120@proton.me> | 2024-08-23 16:33:56 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-08-23 16:33:56 +0200 |
commit | b63f65aef31000670963e6d143a2e67339a3e447 (patch) | |
tree | 9e0923644a703ade449f92b383a4f994bc5278c8 | |
parent | 69dc6c1cb96536e4fa6998ed3d13786dbaf7595e (diff) | |
download | hurrycurry-b63f65aef31000670963e6d143a2e67339a3e447.tar hurrycurry-b63f65aef31000670963e6d143a2e67339a3e447.tar.bz2 hurrycurry-b63f65aef31000670963e6d143a2e67339a3e447.tar.zst |
Modify credits file to avoid translation of unnecessary strings
-rw-r--r-- | client/menu/credits.gd | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/client/menu/credits.gd b/client/menu/credits.gd index c82fbc60..0eccaae2 100644 --- a/client/menu/credits.gd +++ b/client/menu/credits.gd @@ -55,17 +55,14 @@ func _ready(): ] for section in credits: - text += "[b]%s[/b]\n\n" % section[0] - text += "[table=3]" + text += "[b]%s[/b]\n\n[table=3]" % section[0] for entry in section[1]: text += "[cell][right]%s[/right][/cell]" % entry[0] text += "[cell][left]%s[/left][/cell]" % entry[1] text += "[cell][left]%s[/left][/cell]" % entry[2] text += "[/table]\n\n\n" - text += "\n[b]%s[/b]\n\n\n" % tr("Thank You For Playing") - - text += "[/center]" + text += "\n[b]%s[/b]\n\n\n[/center]" % tr("Thank You For Playing") label.text = text |