From: Eric S. Raymond Date: Thu, 17 Aug 2023 10:12:07 +0000 (-0400) Subject: Improve some diagnostics. X-Git-Tag: 2.8~16 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=d7bb5ecf841a72339500267ec069970a87ec1d09 Improve some diagnostics. --- 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