Improve some diagnostics.
authorEric S. Raymond <esr@thyrsus.com>
Thu, 17 Aug 2023 10:12:07 +0000 (06:12 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Thu, 17 Aug 2023 10:12:07 +0000 (06:12 -0400)
sst

diff --git a/sst b/sst
index 307562cabe5da275300369f5331ce987acc3d567..6d59b2cee6182d9d83178f6eea1f428c8a4c892c 100755 (executable)
--- 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