diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-21 09:48:52 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-21 09:48:52 +0200 |
commit | bf306ec89a9ba41f788008b833a9df470c2e37e5 (patch) | |
tree | ac04adf099be62096338cc600f455c6ba14acd79 /client/menu | |
parent | 15c0d3f4236d43c43178f4cc1fc32171ebb732f7 (diff) | |
parent | 99501cdc66733768a653280cea4059227f893f06 (diff) | |
download | hurrycurry-bf306ec89a9ba41f788008b833a9df470c2e37e5.tar hurrycurry-bf306ec89a9ba41f788008b833a9df470c2e37e5.tar.bz2 hurrycurry-bf306ec89a9ba41f788008b833a9df470c2e37e5.tar.zst |
Merge branch 'master' of https://codeberg.org/hurrycurry/hurrycurry
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/setup.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/menu/setup.gd b/client/menu/setup.gd index 470b0839..6c3c90cd 100644 --- a/client/menu/setup.gd +++ b/client/menu/setup.gd @@ -52,10 +52,10 @@ func _process(delta): func check(): - if username.text == "": return "Username cannot be empty" + if username.text == "": return tr("Username cannot be empty") var n = username.text.to_lower() - if n.begins_with("f") and n.ends_with("miller"): return "You cannot choose that name.\n(It's too close to your boss')" - if character == -1: return "You must select a hairstyle" + 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") return null func _on_sign_pressed(): |