summaryrefslogtreecommitdiff
path: root/client/menu/setup.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-20 00:57:13 +0200
committertpart <tpart120@proton.me>2024-09-20 00:57:18 +0200
commite7a18d518772fbe14f2fbd6e0254a0daf326c210 (patch)
treeae9748259ed3559e9ec2a343b652c22e61627794 /client/menu/setup.gd
parenta3a8dc97c1459b98352d09f2f0bee9d49855311a (diff)
downloadhurrycurry-e7a18d518772fbe14f2fbd6e0254a0daf326c210.tar
hurrycurry-e7a18d518772fbe14f2fbd6e0254a0daf326c210.tar.bz2
hurrycurry-e7a18d518772fbe14f2fbd6e0254a0daf326c210.tar.zst
Fix missing empty username translation
Diffstat (limited to 'client/menu/setup.gd')
-rw-r--r--client/menu/setup.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/setup.gd b/client/menu/setup.gd
index 5f168b21..89445ac6 100644
--- a/client/menu/setup.gd
+++ b/client/menu/setup.gd
@@ -53,7 +53,7 @@ func _process(delta):
func check():
- if username.text == "": return tr("Username cannot be empty")
+ if username.text == "": return tr("c.error.empty_username")
var n = username.text.to_lower()
if n.begins_with("f") and n.ends_with("miller"): return tr("You cannot choose that name.\n(It's too close to your boss')")
if character == -1: return tr("You must select a hairstyle")