aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/menu/credits.gd5
1 files changed, 2 insertions, 3 deletions
diff --git a/client/menu/credits.gd b/client/menu/credits.gd
index 4c553590..bcb6d394 100644
--- a/client/menu/credits.gd
+++ b/client/menu/credits.gd
@@ -45,8 +45,7 @@ func _ready():
super()
contributors.shuffle()
var cont: String
- for i in contributors.size():
- cont += contributors[i]+"\n"
+ cont += "\n".join(contributors)
var title_and_contribors: String = "[center][b]%s[/b]\n\n%s\n\n[b]%s[/b]\n" % [
tr("Hurry Curry! - a game about cooking"),
tr("developed by"),
@@ -75,7 +74,7 @@ func _ready():
var info: String = "[b]"+tr("For further information on")+"[/b]\n\n[table=3]"
for i in links.keys():
- info += "[cell]"+i+"[/cell][cell]"+tr("by")+"[/cell][cell]"+links[i]+"[/cell]"
+ info += "[cell]"+i+"[/cell][cell]"+tr("visit")+"[/cell][cell]"+links[i]+"[/cell]"
info += "[/table]"
label.text += info + SPACER