Shorter hints, which mean more space for actions in the tutorial
authorStefano Rivera <stefano@rivera.za.net>
Sat, 17 May 2014 20:46:17 +0000 (22:46 +0200)
committerStefano Rivera <stefano@rivera.za.net>
Sat, 17 May 2014 20:46:17 +0000 (22:46 +0200)
naja/widgets/info_area.py
naja/widgets/text.py

index 0c5bd0afebcc21dc4782e310d9539837bf7383b3..5697b1996c7b4bf146385e4b3d40397e09d022fd 100644 (file)
@@ -20,12 +20,12 @@ from naja.widgets.text import TextBoxWidget, TextWidget
 
 
 HINTS = {
-    ACT: ("Choose an action using the Up/Down keys.\n"
-          "Press Enter to execute the action."),
-    EXAMINE: "Select a tile to examine using the arrow keys.",
+    ACT: "Choose an action using {NORTH,SOUTH} keys.\n"
+         "Press {RETURN} to execute it.",
+    EXAMINE: "Browse the tiles with {NORTH,SOUTH,EAST,WEST} keys.",
 }
 
-HINT_LEGAL_MOVE = "\nPress Return to move to this tile."
+HINT_LEGAL_MOVE = "\nPress {RETURN} to move to this tile."
 
 TITLES = {
     ACT: "Choose an Action",
index 1cf15d0bcf4601c72d52eb81d871ecedf8b454ec..de77a60d7320c993644ae6a958220a9d6097c9f3 100644 (file)
@@ -13,6 +13,7 @@ MARKUP_MAP = {
     'SOUTH': ('glyphs/arrow_down.png', None),
     'EAST': ('glyphs/arrow_right.png', None),
     'WEST': ('glyphs/arrow_left.png', None),
+    'RETURN': ('glyphs/arrow_left.png', None),
     'HEALTH': ('glyphs/health.png', PALETTE.DARK_RED),
     'WINTOKEN': ('glyphs/win.png', PALETTE.DARK_OLIVE),
     'KEY': ('glyphs/key.png', None),