aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBigBrotherNii <bigbrothernii@noreply.codeberg.org>2024-07-26 13:52:25 +0000
committerBigBrotherNii <bigbrothernii@noreply.codeberg.org>2024-07-26 13:52:25 +0000
commit0598a269bd5ef3364b188a3911eb6bb1f5ee42a3 (patch)
tree18c53bdb1f1c2ca6b10e9ce8f337bee567d76b68
parenta225076005533744dca4afe86fa152470b225e6b (diff)
downloadhurrycurry-0598a269bd5ef3364b188a3911eb6bb1f5ee42a3.tar
hurrycurry-0598a269bd5ef3364b188a3911eb6bb1f5ee42a3.tar.bz2
hurrycurry-0598a269bd5ef3364b188a3911eb6bb1f5ee42a3.tar.zst
Update client/menu/credits.gd
-rw-r--r--client/menu/credits.gd6
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]
]