From 03a118a3e62b13b477c1308514235a7533083d2c Mon Sep 17 00:00:00 2001 From: Jeremy Thurgood Date: Sat, 17 May 2014 19:37:31 +0200 Subject: [PATCH] Use "tile" consistently in player-visible text. --- debian/control | 2 +- naja/actions.py | 4 ++-- naja/widgets/info_area.py | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/debian/control b/debian/control index 1fd0043..fe14681 100644 --- a/debian/control +++ b/debian/control @@ -25,5 +25,5 @@ Description: 8-bit style puzzle board game You are a robot, frantically trying to set the correct bits to gain points, for reasons that are unlikely to ever become clear. . - Each card on the board has several possible actions, some of which require + Each tile on the board has several possible actions, some of which require bits to be set. diff --git a/naja/actions.py b/naja/actions.py index c7717ea..c0f19c6 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -41,7 +41,7 @@ class LocationAction(object): substitutions['rot_direction'],) if location is None: - substitutions['location_bits'] = 'bits specified by this location' + substitutions['location_bits'] = 'bits specified by this tile' else: substitutions['location_bits'] = bit_glyphs( location.bitwise_operand) @@ -169,7 +169,7 @@ class ShiftLocations(LocationAction): class RotateLocations(LocationAction): - TEXT = "Rotate adjacent locations %(rot_direction_name)s." + TEXT = "Rotate adjacent tiles %(rot_direction_name)s." GLYPHS = (ACTION_GLYPHS.CHANGE_BOARD,) def perform_action(self, board, location): diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 7dbef1b..50164ea 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -22,14 +22,14 @@ from naja.widgets.text import TextBoxWidget, TextWidget HINTS = { ACT: ("Choose an action using the Up/Down keys.\n" "Press Return to execute the action."), - EXAMINE: "Select a card to examine using the arrow keys.", + EXAMINE: "Select a tile to examine using the arrow keys.", } -HINT_LEGAL_MOVE = "\nPress Return to move to this card." +HINT_LEGAL_MOVE = "\nPress Return to move to this tile." TITLES = { ACT: "Choose an Action", - EXAMINE: "Select a Card", + EXAMINE: "Select a Tile", } -- 2.34.1