diff options
-rw-r--r-- | client/menu/credits.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/menu/credits.gd b/client/menu/credits.gd index 91b9ea1c..80356b3b 100644 --- a/client/menu/credits.gd +++ b/client/menu/credits.gd @@ -56,7 +56,7 @@ func _ready(): var cc_3 : String = "[b]"+tr("Licensed under Creative Commons: By Attribution 3.0 License")+"[/b]\n\n[table=3]" for i in cc_by_3.keys(): - cc_3 += "[cell]%s[/cell][cell]by[/cell][cell]%s[/cell]" % [ + cc_3 += "[cell]%s[/cell][cell]"+tr("by")+"[/cell][cell]%s[/cell]" % [ i, cc_by_3[i] ] @@ -65,7 +65,7 @@ func _ready(): var cc_4 : String = "[b]"+tr("Licensed under Creative Commons: By Attribution 4.0 License")+"[/b]\n\n[table=3]" for i in cc_by_4.keys(): - cc_4 += "[cell]%s[/cell][cell]by[/cell][cell]%s[/cell]" % [ + cc_4 += "[cell]%s[/cell][cell]"+tr("by")+"[/cell][cell]%s[/cell]" % [ i, cc_by_4[i] ] @@ -81,7 +81,7 @@ func _ready(): var info: String = "[b]"+tr("For further information on")+"[/b]\n\n[table=3]" for i in links.keys(): - info += "[cell]%s[/cell][cell]visit[/cell][cell]%s[/cell]" % [ + info += "[cell]%s[/cell][cell]"+tr("visit")+"[/cell][cell]%s[/cell]" % [ i, links[i] ] |