From d7bb5ecf841a72339500267ec069970a87ec1d09 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 17 Aug 2023 06:12:07 -0400 Subject: [PATCH] Improve some diagnostics. --- sst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sst b/sst index 307562c..6d59b2c 100755 --- a/sst +++ b/sst @@ -6015,7 +6015,7 @@ def choose(): return True if scanner.sees("regular"): break - proutn(_("What is \"%s\"? ") % scanner.token) + proutn(_("What game type is \"%s\"? ") % scanner.token) scanner.chew() while game.length==0 or game.skill==SKILL_NONE: if scanner.nexttok() == "IHALPHA": @@ -6036,7 +6036,7 @@ def choose(): elif scanner.sees("emeritus"): game.skill = SKILL_EMERITUS else: - proutn(_("What is \"")) + proutn(_("What skill level is is \"")) proutn(scanner.token) prout("\"?") else: @@ -6059,7 +6059,7 @@ def choose(): elif scanner.sees("fancy") or scanner.sees("\n"): pass elif len(scanner.token): - proutn(_("What is \"%s\"?") % scanner.token) + proutn(_("What game style is \"%s\"?") % scanner.token) setpassword() if game.passwd == "debug": # pragma: no cover game.idebug = True -- 2.31.1