1 /* BEGIN INCLUDE FILE ... xmail_prompts.incl.pl1 */
 2 
 3 /****^  HISTORY COMMENTS:
 4   1) change(85-03-06,Backs), approve(86-03-06,MCR7358),
 5      audit(86-04-21,RBarstad), install(86-05-28,MR12.0-1062):
 6      Modified to add prompts for date selection.
 7                                                    END HISTORY COMMENTS */
 8 
 9 /* Created 06/17/81 by Suzanne Krupp */
10 
11 
12 dcl (MSG_SELECT_PROMPT char(40) init("Which message(s) do you wish to select? "),
13      DEL_MSG_SELECT_PROMPT char(63) init ("Which message(s) do you wish to retrieve? (for list, enter ??) "),
14      NONEXIST_MSG char(66) init("The following messages either do not exist or have been discarded:"),
15      DEL_NONEXIST_MSG char(70) init("The following messages either do not exist or have NOT been discarded:"),
16      CURR_SET_MSG char(70) init("This means that the set of current messages consists of the following:"),
17      CURR_DEL_SET_MSG char(58) init("This means that the following messages will be retrieved:"),
18      USE_SPEC_SET_PROMPT char(45) init("Do you wish to use these as current messages?"),
19      SEARCH_STR_PROMPT char(11) init("Search for:"),
20      UNDELETE_FINISHED_MSG char(24) init("Message^a ^a  retrieved."),
21      MSG_LIST_MSG char(17) init("List of messages:"),
22      DATE_1_PROMPT char(23) init("Earliest date in range:"),
23      DATE_2_PROMPT char(21) init("Latest date in range:"),
24      DEL_MSG_LIST_MSG char(27) init("List of discarded messages:"))
25 int static options(constant);
26 
27  /* END INCLUDE FILE ... xmail_prompts.incl.pl1 */