aboutsummaryrefslogtreecommitdiff
path: root/test-client
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-14 01:21:59 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-14 01:22:04 +0200
commit4817660831ce093e15b80dc4a7841a341f02149d (patch)
treefa67c0c1cd5e56b5c8f166d4d7b0632275b71452 /test-client
parent3d0fc1e366cd60c5f4fb14c7c169dae240a2bb6b (diff)
downloadhurrycurry-4817660831ce093e15b80dc4a7841a341f02149d.tar
hurrycurry-4817660831ce093e15b80dc4a7841a341f02149d.tar.bz2
hurrycurry-4817660831ce093e15b80dc4a7841a341f02149d.tar.zst
Scorebore menu tooltips; rename many score translations
Diffstat (limited to 'test-client')
-rw-r--r--test-client/visual.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-client/visual.ts b/test-client/visual.ts
index 9373a092..d75f90f5 100644
--- a/test-client/visual.ts
+++ b/test-client/visual.ts
@@ -106,8 +106,8 @@ function draw_score() {
ctx.font = "30px sans-serif"
ctx.fillText(`${tr("c.score.points")}: ${score.points}`, 10, canvas.height - 60)
ctx.font = "20px sans-serif"
- ctx.fillText(`${tr("c.score.completed")}: ${score.demands_completed}`, 10, canvas.height - 30)
- ctx.fillText(`${tr("c.score.failed")}: ${score.demands_failed}`, 10, canvas.height - 10)
+ ctx.fillText(`${tr("c.score.demands_completed")}: ${score.demands_completed}`, 10, canvas.height - 30)
+ ctx.fillText(`${tr("c.score.demands_failed")}: ${score.demands_failed}`, 10, canvas.height - 10)
}
function draw_debug() {