From 8cada647d3c0ab60f51d915049624443729a0101 Mon Sep 17 00:00:00 2001 From: "nethack.rankin" Date: Fri, 25 May 2007 03:26:56 +0000 Subject: [PATCH] C/#name followup too (trunk only) Rephrase "a type of object" to "the type of an object" in the menu. #name What do you want to name? a - a monster b - a particular object in inventory c - the type of an object in inventory d - the type of an object on discoveries list --- src/do_name.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/do_name.c b/src/do_name.c index e57126c32..69b38ddb2 100644 --- a/src/do_name.c +++ b/src/do_name.c @@ -493,15 +493,15 @@ docallcmd() "a particular object in inventory", MENU_UNSELECTED); any.a_char = 'o'; /* entry 'c', group accelator 'n' */ add_menu(win, NO_GLYPH, &any, 0, 'n', ATR_NONE, - "a type of object in inventory", MENU_UNSELECTED); + "the type of an object in inventory", MENU_UNSELECTED); } any.a_char = 'd'; /* entry 'd' (or 'b'), group accelator 'd' */ add_menu(win, NO_GLYPH, &any, 0, any.a_char, ATR_NONE, - "a type of object on discoveries list", MENU_UNSELECTED); + "the type of an object on discoveries list", MENU_UNSELECTED); #if 0 any.a_char = 'f'; /* entry 'e' (or 'c'), group accelator 'f' */ add_menu(win, NO_GLYPH, &any, 0, any.a_char, ATR_NONE, - "a type of object upon the floor", MENU_UNSELECTED); + "the type of an object upon the floor", MENU_UNSELECTED); #endif end_menu(win, "What do you want to name?"); if (select_menu(win, PICK_ONE, &pick_list) > 0) {