1 /*
2  * $LynxId: LYMessages_en.h,v 1.73 2012/02/12 23:59:14 tom Exp $
3  *
4  * Lynx - Hypertext navigation system
5  *
6  *   (c) Copyright 1992, 1993, 1994 University of Kansas
7  *	 1995-1999: GNU General Public License
8  */
9 
10 #ifndef LYMESSAGES_EN_H
11 #define LYMESSAGES_EN_H
12 
13 /*******************************************************************
14  * The following definitions are for status line prompts, messages, or
15  * warnings issued by Lynx during program execution.  You can modify
16  * them to make them more appropriate for your site.  We recommend that
17  * you extend these definitions to other languages using the gettext
18  * library.  There are also scattered uses of 'gettext()' throughout the
19  * Lynx source, covering all but those messages which (a) are used for
20  * debugging (CTRACE) or (b) are constants used in interaction with
21  * other programs.
22  *
23  * See ABOUT-NLS and po/readme for details and location of contributed
24  * translations.  When no translation is available, the English default is
25  * used.
26  */
27 #define ALERT_FORMAT gettext("Alert!: %s")
28 #define WELCOME_MSG gettext("Welcome")
29 #define REALLY_QUIT gettext("Are you sure you want to quit?")
30 #ifdef VMS
31 #define REALLY_EXIT gettext("Really exit from Lynx?")
32 #endif /* VMS */
33 #define CONNECTION_INTERRUPTED gettext("Connection interrupted.")
34 #define TRANSFER_INTERRUPTED gettext("Data transfer interrupted.")
35 #define CANCELLED gettext("Cancelled!!!")
36 #define CANCELLING gettext("Cancelling!")
37 #define NO_CANCEL gettext("Excellent!!!")
38 #define OPERATION_OK gettext("OK")
39 #define OPERATION_DONE gettext("Done!")
40 #define BAD_REQUEST gettext("Bad request!")
41 #define PREVIOUS gettext("previous")
42 #define NEXT_SCREEN gettext("next screen")
43 #define TO_HELP gettext("HELP!")
44 #define HELP_ON_SEGMENT gettext(", help on ")
45 #define HELP \
46  gettext("Commands: Use arrow keys to move, '?' for help, 'q' to quit, '<-' to go back.")
47 #define MOREHELP \
48  gettext("-- press space for more, use arrow keys to move, '?' for help, 'q' to quit.")
49 #define MORE gettext("-- press space for next page --")
50 #define URL_TOO_LONG gettext("URL too long")
51 
52 /* Forms messages */
53 #ifdef TEXTFIELDS_MAY_NEED_ACTIVATION
54 /* Inactive input fields, messages used with -tna option - kw */
55 #define FORM_LINK_TEXT_MESSAGE_INA \
56  gettext("(Text entry field) Inactive.  Press <return> to activate.")
57 #define FORM_LINK_TEXTAREA_MESSAGE_INA \
58  gettext("(Textarea) Inactive.  Press <return> to activate.")
59 #define FORM_LINK_TEXTAREA_MESSAGE_INA_E \
60  gettext("(Textarea) Inactive.  Press <return> to activate (%s for editor).")
61 #define FORM_LINK_TEXT_SUBMIT_MESSAGE_INA \
62  gettext("(Form field) Inactive.  Use <return> to edit.")
63 #define FORM_TEXT_SUBMIT_MESSAGE_INA_X \
64  gettext("(Form field) Inactive.  Use <return> to edit (%s to submit with no cache).")
65 #define FORM_TEXT_RESUBMIT_MESSAGE_INA \
66  gettext("(Form field) Inactive. Press <return> to edit, press <return> twice to submit.")
67 #define FORM_TEXT_SUBMIT_MAILTO_MSG_INA \
68  gettext("(mailto form field) Inactive.  Press <return> to change.")
69 #define FORM_LINK_PASSWORD_MESSAGE_INA \
70  gettext("(Password entry field) Inactive.  Press <return> to activate.")
71 #endif
72 #define FORM_LINK_FILE_UNM_MSG \
73  gettext("UNMODIFIABLE file entry field.  Use UP or DOWN arrows or tab to move off.")
74 #define FORM_LINK_FILE_MESSAGE \
75  gettext("(File entry field) Enter filename.  Use UP or DOWN arrows or tab to move off.")
76 #define FORM_LINK_TEXT_MESSAGE \
77  gettext("(Text entry field) Enter text.  Use UP or DOWN arrows or tab to move off.")
78 #define FORM_LINK_TEXTAREA_MESSAGE \
79  gettext("(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off.")
80 #define FORM_LINK_TEXTAREA_MESSAGE_E \
81  gettext("(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off (%s for editor).")
82 #define FORM_LINK_TEXT_UNM_MSG \
83  gettext("UNMODIFIABLE form text field.  Use UP or DOWN arrows or tab to move off.")
84 #define FORM_LINK_TEXT_SUBMIT_MESSAGE \
85  gettext("(Form field) Enter text.  Use <return> to submit.")
86 #define FORM_LINK_TEXT_SUBMIT_MESSAGE_X \
87  gettext("(Form field) Enter text.  Use <return> to submit (%s for no cache).")
88 #define FORM_LINK_TEXT_RESUBMIT_MESSAGE \
89  gettext("(Form field) Enter text.  Use <return> to submit, arrows or tab to move off.")
90 #define FORM_LINK_TEXT_SUBMIT_UNM_MSG \
91  gettext("UNMODIFIABLE form field.  Use UP or DOWN arrows or tab to move off.")
92 #define FORM_LINK_TEXT_SUBMIT_MAILTO_MSG \
93  gettext("(mailto form field) Enter text.  Use <return> to submit, arrows to move off.")
94 #define FORM_LINK_TEXT_SUBMIT_MAILTO_DIS_MSG \
95  gettext("(mailto form field) Mail is disallowed so you cannot submit.")
96 #define FORM_LINK_PASSWORD_MESSAGE \
97  gettext("(Password entry field) Enter text.  Use UP or DOWN arrows or tab to move off.")
98 #define FORM_LINK_PASSWORD_UNM_MSG \
99  gettext("UNMODIFIABLE form password.  Use UP or DOWN arrows or tab to move off.")
100 #define FORM_LINK_CHECKBOX_MESSAGE \
101  gettext("(Checkbox Field)   Use right-arrow or <return> to toggle.")
102 #define FORM_LINK_CHECKBOX_UNM_MSG \
103  gettext("UNMODIFIABLE form checkbox.  Use UP or DOWN arrows or tab to move off.")
104 #define FORM_LINK_RADIO_MESSAGE \
105  gettext("(Radio Button)   Use right-arrow or <return> to toggle.")
106 #define FORM_LINK_RADIO_UNM_MSG \
107  gettext("UNMODIFIABLE form radio button.  Use UP or DOWN arrows or tab to move off.")
108 #define FORM_LINK_SUBMIT_PREFIX \
109  gettext("Submit ('x' for no cache) to ")
110 #define FORM_LINK_RESUBMIT_PREFIX \
111  gettext("Submit to ")
112 #define FORM_LINK_SUBMIT_MESSAGE \
113  gettext("(Form submit button) Use right-arrow or <return> to submit ('x' for no cache).")
114 #define FORM_LINK_RESUBMIT_MESSAGE \
115  gettext("(Form submit button) Use right-arrow or <return> to submit.")
116 #define FORM_LINK_SUBMIT_DIS_MSG \
117  gettext("DISABLED form submit button.  Use UP or DOWN arrows or tab to move off.")
118 #define FORM_LINK_SUBMIT_MAILTO_PREFIX \
119  gettext("Submit mailto form to ")
120 #define FORM_LINK_SUBMIT_MAILTO_MSG \
121  gettext("(mailto form submit button) Use right-arrow or <return> to submit.")
122 #define FORM_LINK_SUBMIT_MAILTO_DIS_MSG \
123  gettext("(mailto form submit button) Mail is disallowed so you cannot submit.")
124 #define FORM_LINK_RESET_MESSAGE \
125  gettext("(Form reset button)   Use right-arrow or <return> to reset form to defaults.")
126 #define FORM_LINK_RESET_DIS_MSG \
127  gettext("DISABLED form reset button.  Use UP or DOWN arrows or tab to move off.")
128 #define FORM_LINK_BUTTON_MESSAGE \
129  gettext("(Script button)   Use UP or DOWN arrows or tab to move off.")
130 #define FORM_LINK_BUTTON_DIS_MSG \
131  gettext("DISABLED Script button.  Use UP or DOWN arrows or tab to move off.")
132 #define FORM_LINK_OPTION_LIST_MESSAGE \
133  gettext("(Option list) Hit return and use arrow keys and return to select option.")
134 #define CHOICE_LIST_MESSAGE \
135  gettext("(Choice list) Hit return and use arrow keys and return to select option.")
136 #define FORM_LINK_OPTION_LIST_UNM_MSG \
137  gettext("UNMODIFIABLE option list.  Use return or arrow keys to review or leave.")
138 #define CHOICE_LIST_UNM_MSG \
139  gettext("UNMODIFIABLE choice list.  Use return or arrow keys to review or leave.")
140 #define SUBMITTING_FORM gettext("Submitting form...")
141 #define RESETTING_FORM gettext("Resetting form...")
142 #define RELOADING_FORM \
143  gettext("Reloading document.  Any form entries will be lost!")
144 #define LINK_NOT_IN_FORM \
145  gettext("The current link is not in a FORM")
146 #define CANNOT_TRANSCODE_FORM gettext("Warning: Cannot transcode form data to charset %s!")
147 
148 #define NORMAL_LINK_MESSAGE \
149  gettext("(NORMAL LINK)   Use right-arrow or <return> to activate.")
150 #define LINK_NOT_FOUND gettext("The resource requested is not available at this time.")
151 #define ENTER_LYNX_COMMAND gettext("Enter Lynx keystroke command: ")
152 #define WWW_FIND_MESSAGE gettext("Looking up ")
153 #define WWW_WAIT_MESSAGE gettext("Getting %s")
154 #define WWW_SKIP_MESSAGE gettext("Skipping %s")
155 #define WWW_USING_MESSAGE gettext("Using %s")
156 #define WWW_ILLEGAL_URL_MESSAGE gettext("Illegal URL: %s")
157 #define WWW_BAD_ADDR_MESSAGE gettext("Badly formed address %s")
158 #define ADVANCED_URL_MESSAGE gettext("URL: %s")
159 #define WWW_FAIL_MESSAGE gettext("Unable to access WWW file!!!")
160 #define WWW_INDEX_MESSAGE gettext("This is a searchable index.  Use %s to search.")
161 #define WWW_INDEX_MORE_MESSAGE \
162  gettext("--More--  This is a searchable index.  Use %s to search.")
163 #define BAD_LINK_NUM_ENTERED gettext("You have entered an invalid link number.")
164 #define SOURCE_HELP \
165  gettext("Currently viewing document source.  Press '\\' to return to rendered version.")
166 #define NOVICE_LINE_ONE \
167  gettext("  Arrow keys: Up and Down to move.  Right to follow a link; Left to go back.  \n")
168 #define NOVICE_LINE_TWO \
169  gettext(" H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list \n")
170 #define NOVICE_LINE_TWO_A \
171  gettext("  O)ther cmds  H)elp  K)eymap  G)oto  P)rint  M)ain screen  o)ptions  Q)uit  \n")
172 #define NOVICE_LINE_TWO_B \
173  gettext("  O)ther cmds  B)ack  E)dit  D)ownload ^R)eload ^W)ipe screen  search doc: / \n")
174 #define NOVICE_LINE_TWO_C \
175  gettext("O)ther cmds  C)omment  History: <backspace>  Bookmarks: V)iew, A)dd, R)emove \n")
176 #define FORM_NOVICELINE_ONE \
177  gettext("            Enter text into the field by typing on the keyboard              ")
178 #define FORM_NOVICELINE_TWO \
179  gettext("    Ctrl-U to delete all text in field, [Backspace] to delete a character    ")
180 #define FORM_NOVICELINE_TWO_DELBL \
181  gettext("      Ctrl-U to delete text in field, [Backspace] to delete a character    ")
182 #define FORM_NOVICELINE_TWO_VAR \
183  gettext("    %s to delete all text in field, [Backspace] to delete a character    ")
184 #define FORM_NOVICELINE_TWO_DELBL_VAR \
185  gettext("      %s to delete text in field, [Backspace] to delete a character    ")
186 
187 /* mailto */
188 #define BAD_FORM_MAILTO gettext("Malformed mailto form submission!  Cancelled!")
189 #define MAILTO_SQUASH_CTL gettext("Warning!  Control codes in mail address replaced by ?")
190 #define FORM_MAILTO_DISALLOWED gettext("Mail disallowed!  Cannot submit.")
191 #define FORM_MAILTO_FAILED gettext("Mailto form submission failed!")
192 #define FORM_MAILTO_CANCELLED gettext("Mailto form submission Cancelled!!!")
193 #define SENDING_FORM_CONTENT gettext("Sending form content...")
194 #define NO_ADDRESS_IN_MAILTO_URL gettext("No email address is present in mailto URL!")
195 #define MAILTO_URL_TEMPOPEN_FAILED \
196  gettext("Unable to open temporary file for mailto URL!")
197 #define INC_ORIG_MSG_PROMPT \
198  gettext("Do you wish to include the original message?")
199 #define INC_PREPARSED_MSG_PROMPT \
200  gettext("Do you wish to include the preparsed source?")
201 #define SPAWNING_EDITOR_FOR_MAIL \
202  gettext("Spawning your selected editor to edit mail message")
203 #define ERROR_SPAWNING_EDITOR \
204  gettext("Error spawning editor, check your editor definition in the options menu")
205 #define SEND_COMMENT_PROMPT gettext("Send this comment?")
206 #define SEND_MESSAGE_PROMPT gettext("Send this message?")
207 #define SENDING_YOUR_MSG gettext("Sending your message...")
208 #define SENDING_COMMENT gettext("Sending your comment:")
209 
210 /* textarea */
211 #define NOT_IN_TEXTAREA_NOEDIT gettext("Not in a TEXTAREA; cannot use external editor.")
212 #define NOT_IN_TEXTAREA gettext("Not in a TEXTAREA; cannot use command.")
213 
214 #define FILE_ACTIONS_DISALLOWED gettext("file: ACTIONs are disallowed!")
215 #define FILE_SERVED_LINKS_DISALLOWED \
216  gettext("file: URLs via served links are disallowed!")
217 #define NOAUTH_TO_ACCESS_FILES gettext("Access to local files denied.")
218 #define FILE_BOOKMARKS_DISALLOWED gettext("file: URLs via bookmarks are disallowed!")
219 #define SPECIAL_VIA_EXTERNAL_DISALLOWED \
220  gettext("This special URL is not allowed in external documents!")
221 #define RETURN_TO_LYNX gettext("Press <return> to return to Lynx.")
222 #ifdef VMS
223 #define SPAWNING_MSG \
224  gettext("Spawning DCL subprocess.  Use 'logout' to return to Lynx.\n")
225 #else
226 #ifdef DOSPATH
227 #define SPAWNING_MSG \
228  gettext("Type EXIT to return to Lynx.\n")
229 #else /* UNIX */
230 #define SPAWNING_MSG \
231  gettext("Spawning your default shell.  Use 'exit' to return to Lynx.\n")
232 #endif
233 #endif /* VMS */
234 #define SPAWNING_DISABLED gettext("Spawning is currently disabled.")
235 #define DOWNLOAD_DISABLED gettext("The 'd'ownload command is currently disabled.")
236 #define NO_DOWNLOAD_INPUT gettext("You cannot download an input field.")
237 #define NO_DOWNLOAD_MAILTO_ACTION gettext("Form has a mailto action!  Cannot download.")
238 #define NO_DOWNLOAD_MAILTO_LINK gettext("You cannot download a mailto: link.")
239 #define NO_DOWNLOAD_COOKIES gettext("You cannot download cookies.")
240 #define NO_DOWNLOAD_PRINT_OP gettext("You cannot download a printing option.")
241 #define NO_DOWNLOAD_UPLOAD_OP gettext("You cannot download an upload option.")
242 #define NO_DOWNLOAD_PERMIT_OP gettext("You cannot download an permit option.")
243 #define NO_DOWNLOAD_SPECIAL gettext("This special URL cannot be downloaded!")
244 #define NO_DOWNLOAD_CHOICE gettext("Nothing to download.")
245 #define TRACE_ON gettext("Trace ON!")
246 #define TRACE_OFF gettext("Trace OFF!")
247 #define CLICKABLE_IMAGES_ON \
248  gettext("Links will be included for all images!  Reloading...")
249 #define CLICKABLE_IMAGES_OFF \
250  gettext("Standard image handling restored!  Reloading...")
251 #define PSEUDO_INLINE_ALTS_ON \
252  gettext("Pseudo_ALTs will be inserted for inlines without ALT strings!  Reloading...")
253 #define PSEUDO_INLINE_ALTS_OFF \
254  gettext("Inlines without an ALT string specified will be ignored!  Reloading...")
255 #define RAWMODE_OFF gettext("Raw 8-bit or CJK mode toggled OFF!  Reloading...")
256 #define RAWMODE_ON gettext("Raw 8-bit or CJK mode toggled ON!  Reloading...")
257 #define HEAD_D_L_OR_CANCEL \
258  gettext("Send HEAD request for D)ocument or L)ink, or C)ancel? (d,l,c): ")
259 #define HEAD_D_OR_CANCEL \
260  gettext("Send HEAD request for D)ocument, or C)ancel? (d,c): ")
261 #define DOC_NOT_HTTP_URL gettext("Sorry, the document is not an http URL.")
262 #define LINK_NOT_HTTP_URL gettext("Sorry, the link is not an http URL.")
263 #define FORM_ACTION_DISABLED gettext("Sorry, the ACTION for this form is disabled.")
264 #define FORM_ACTION_NOT_HTTP_URL \
265  gettext("Sorry, the ACTION for this form is not an http URL.")
266 #define NOT_HTTP_URL_OR_ACTION gettext("Not an http URL or form ACTION!")
267 #define SPECIAL_ACTION_DISALLOWED gettext("This special URL cannot be a form ACTION!")
268 #define NOT_IN_STARTING_REALM gettext("URL is not in starting realm!")
269 #define NEWSPOSTING_DISABLED gettext("News posting is disabled!")
270 #define DIRED_DISABLED gettext("File management support is disabled!")
271 #define NO_JUMPFILE gettext("No jump file is currently available.")
272 #define JUMP_PROMPT gettext("Jump to (use '?' for list): ")
273 #define JUMP_DISALLOWED gettext("Jumping to a shortcut URL is disallowed!")
274 #define RANDOM_URL_DISALLOWED gettext("Random URL is disallowed!  Use a shortcut.")
275 #define NO_RANDOM_URLS_YET gettext("No random URLs have been used thus far.")
276 #define BOOKMARKS_DISABLED gettext("Bookmark features are currently disabled.")
277 #define BOOKMARK_EXEC_DISABLED gettext("Execution via bookmarks is disabled.")
278 #define BOOKMARK_FILE_NOT_DEFINED \
279  gettext("Bookmark file is not defined. Use %s to see options.")
280 #define NO_TEMP_FOR_HOTLIST \
281  gettext("Unable to open tempfile for X Mosaic hotlist conversion.")
282 #define BOOKMARK_OPEN_FAILED gettext("ERROR - unable to open bookmark file.")
283 #define BOOKMARK_OPEN_FAILED_FOR_DEL \
284  gettext("Unable to open bookmark file for deletion of link.")
285 #define BOOKSCRA_OPEN_FAILED_FOR_DEL \
286  gettext("Unable to open scratch file for deletion of link.")
287 #ifdef VMS
288 #define ERROR_RENAMING_SCRA gettext("Error renaming scratch file.")
289 #else
290 #define ERROR_RENAMING_TEMP gettext("Error renaming temporary file.")
291 #define BOOKTEMP_COPY_FAIL \
292  gettext("Unable to copy temporary file for deletion of link.")
293 #define BOOKTEMP_REOPEN_FAIL_FOR_DEL \
294  gettext("Unable to reopen temporary file for deletion of link.")
295 #endif /* VMS */
296 #define BOOKMARK_LINK_NOT_ONE_LINE \
297  gettext("Link is not by itself all on one line in bookmark file.")
298 #define BOOKMARK_DEL_FAILED gettext("Bookmark deletion failed.")
299 #define BOOKMARKS_NOT_TRAVERSED \
300  gettext("Bookmark files cannot be traversed (only http URLs).")
301 #define BOOKMARKS_NOT_OPEN \
302  gettext("Unable to open bookmark file, use 'a' to save a link first")
303 #define BOOKMARKS_NOLINKS gettext("There are no links in this bookmark file!")
304 #define CACHE_D_OR_CANCEL \
305  gettext("D)elete cached document or C)ancel? (d,c): ")
306 #define BOOK_D_L_OR_CANCEL \
307  gettext("Save D)ocument or L)ink to bookmark file or C)ancel? (d,l,c): ")
308 #define BOOK_D_OR_CANCEL gettext("Save D)ocument to bookmark file or C)ancel? (d,c): ")
309 #define BOOK_L_OR_CANCEL gettext("Save L)ink to bookmark file or C)ancel? (l,c): ")
310 #define NOBOOK_POST_FORM \
311  gettext("Documents from forms with POST content cannot be saved as bookmarks.")
312 #define NOBOOK_FORM_FIELD gettext("Cannot save form fields/links")
313 #define NOBOOK_HSML \
314  gettext("History, showinfo, menu and list files cannot be saved as bookmarks.")
315 #define CONFIRM_BOOKMARK_DELETE \
316  gettext("Do you really want to delete this link from your bookmark file?")
317 #define MALFORMED_ADDRESS gettext("Malformed address.")
318 #define HISTORICAL_ON_MINIMAL_OFF \
319  gettext("Historical comment parsing ON (Minimal is overridden)!")
320 #define HISTORICAL_OFF_MINIMAL_ON \
321  gettext("Historical comment parsing OFF (Minimal is in effect)!")
322 #define HISTORICAL_ON_VALID_OFF \
323  gettext("Historical comment parsing ON (Valid is overridden)!")
324 #define HISTORICAL_OFF_VALID_ON \
325  gettext("Historical comment parsing OFF (Valid is in effect)!")
326 #define MINIMAL_ON_IN_EFFECT \
327  gettext("Minimal comment parsing ON (and in effect)!")
328 #define MINIMAL_OFF_VALID_ON \
329  gettext("Minimal comment parsing OFF (Valid is in effect)!")
330 #define MINIMAL_ON_BUT_HISTORICAL \
331  gettext("Minimal comment parsing ON (but Historical is in effect)!")
332 #define MINIMAL_OFF_HISTORICAL_ON \
333  gettext("Minimal comment parsing OFF (Historical is in effect)!")
334 #define SOFT_DOUBLE_QUOTE_ON gettext("Soft double-quote parsing ON!")
335 #define SOFT_DOUBLE_QUOTE_OFF gettext("Soft double-quote parsing OFF!")
336 #define USING_DTD_0 gettext("Now using TagSoup parsing of HTML.")
337 #define USING_DTD_1 gettext("Now using SortaSGML parsing of HTML!")
338 #define ALREADY_AT_END gettext("You are already at the end of this document.")
339 #define ALREADY_AT_BEGIN gettext("You are already at the beginning of this document.")
340 #define ALREADY_AT_PAGE gettext("You are already at page %d of this document.")
341 #define LINK_ALREADY_CURRENT gettext("Link number %d already is current.")
342 #define ALREADY_AT_FIRST gettext("You are already at the first document")
343 #define NO_LINKS_ABOVE gettext("There are no links above this line of the document.")
344 #define NO_LINKS_BELOW gettext("There are no links below this line of the document.")
345 #define MAXLEN_REACHED_DEL_OR_MOV \
346  gettext("Maximum length reached!  Delete text or move off field.")
347 #define NOT_ON_SUBMIT_OR_LINK \
348  gettext("You are not on a form submission button or normal link.")
349 #define NEED_CHECKED_RADIO_BUTTON \
350  gettext("One radio button must be checked at all times!")
351 #define NO_SUBMIT_BUTTON_QUERY gettext("No submit button for this form, submit single text field?")
352 #define PREV_DOC_QUERY gettext("Do you want to go back to the previous document?")
353 #define ARROWS_OR_TAB_TO_MOVE gettext("Use arrows or tab to move off of field.")
354 #define ENTER_TEXT_ARROWS_OR_TAB \
355  gettext("Enter text.  Use arrows or tab to move off of field.")
356 #define NO_FORM_ACTION gettext("** Bad HTML!!  No form action defined. **")
357 #define BAD_HTML_NO_POPUP gettext("Bad HTML!!  Unable to create popup window!")
358 #define POPUP_FAILED gettext("Unable to create popup window!")
359 #define GOTO_DISALLOWED gettext("Goto a random URL is disallowed!")
360 #define GOTO_NON_HTTP_DISALLOWED gettext("Goto a non-http URL is disallowed!")
361 #define GOTO_XXXX_DISALLOWED gettext("You are not allowed to goto \"%s\" URLs")
362 #define URL_TO_OPEN gettext("URL to open: ")
363 #define EDIT_CURRENT_GOTO gettext("Edit the current Goto URL: ")
364 #define EDIT_THE_PREV_GOTO gettext("Edit the previous Goto URL: ")
365 #define EDIT_A_PREV_GOTO gettext("Edit a previous Goto URL: ")
366 #define CURRENT_DOC_HAS_POST_DATA gettext("Current document has POST data.")
367 #define EDIT_CURDOC_URL gettext("Edit this document's URL: ")
368 #define EDIT_CURLINK_URL gettext("Edit the current link's URL: ")
369 #define EDIT_SUBMIT_URL gettext("Edit the form's submit-URL: ")
370 #define EDIT_FM_MENU_URLS_DISALLOWED gettext("You cannot edit File Management URLs")
371 #define ENTER_DATABASE_QUERY gettext("Enter a database query: ")
372 #define ENTER_WHEREIS_QUERY gettext("Enter a whereis query: ")
373 #define EDIT_CURRENT_QUERY gettext("Edit the current query: ")
374 #define EDIT_THE_PREV_QUERY gettext("Edit the previous query: ")
375 #define EDIT_A_PREV_QUERY gettext("Edit a previous query: ")
376 #define USE_C_R_TO_RESUB_CUR_QUERY \
377  gettext("Use Control-R to resubmit the current query.")
378 #define EDIT_CURRENT_SHORTCUT gettext("Edit the current shortcut: ")
379 #define EDIT_THE_PREV_SHORTCUT gettext("Edit the previous shortcut: ")
380 #define EDIT_A_PREV_SHORTCUT gettext("Edit a previous shortcut: ")
381 #define KEY_NOT_MAPPED_TO_JUMP_FILE gettext("Key '%c' is not mapped to a jump file!")
382 #define CANNOT_LOCATE_JUMP_FILE gettext("Cannot locate jump file!")
383 #define CANNOT_OPEN_JUMP_FILE gettext("Cannot open jump file!")
384 #define ERROR_READING_JUMP_FILE gettext("Error reading jump file!")
385 #define OUTOF_MEM_FOR_JUMP_FILE gettext("Out of memory reading jump file!")
386 #define OUTOF_MEM_FOR_JUMP_TABLE gettext("Out of memory reading jump table!")
387 #define NO_INDEX_FILE gettext("No index is currently available.")
388 #define CONFIRM_MAIN_SCREEN \
389  gettext("Do you really want to go to the Main screen?")
390 #define IN_MAIN_SCREEN gettext("You are already at main screen!")
391 #define NOT_ISINDEX \
392  gettext("Not a searchable indexed document -- press '/' to search for a text string")
393 #define NO_OWNER \
394  gettext("No owner is defined for this file so you cannot send a comment")
395 #define NO_OWNER_USE gettext("No owner is defined. Use %s?")
396 #define CONFIRM_COMMENT gettext("Do you wish to send a comment?")
397 #define MAIL_DISALLOWED gettext("Mail is disallowed so you cannot send a comment")
398 #define EDIT_DISABLED gettext("The 'e'dit command is currently disabled.")
399 #define ANYEDIT_DISABLED gettext("External editing is currently disabled.")
400 #define NO_STATUS gettext("System error - failure to get status.")
401 #define NO_EDITOR gettext("No editor is defined!")
402 #define PRINT_DISABLED gettext("The 'p'rint command is currently disabled.")
403 #define NO_TOOLBAR gettext("Document has no Toolbar links or Banner.")
404 #define CANNOT_OPEN_TRAV_FILE gettext("Unable to open traversal file.")
405 #define CANNOT_OPEN_TRAF_FILE gettext("Unable to open traversal found file.")
406 #define CANNOT_OPEN_REJ_FILE gettext("Unable to open reject file.")
407 #define NOOPEN_TRAV_ERR_FILE gettext("Unable to open traversal errors output file")
408 #define TRAV_WAS_INTERRUPTED gettext("TRAVERSAL WAS INTERRUPTED")
409 #define FOLLOW_LINK_NUMBER gettext("Follow link (or goto link or page) number: ")
410 #define SELECT_OPTION_NUMBER gettext("Select option (or page) number: ")
411 #define OPTION_ALREADY_CURRENT gettext("Option number %d already is current.")
412 #define ALREADY_AT_OPTION_END \
413  gettext("You are already at the end of this option list.")
414 #define ALREADY_AT_OPTION_BEGIN \
415  gettext("You are already at the beginning of this option list.")
416 #define ALREADY_AT_OPTION_PAGE \
417  gettext("You are already at page %d of this option list.")
418 #define BAD_OPTION_NUM_ENTERED gettext("You have entered an invalid option number.")
419 #define BAD_HTML_USE_TRACE gettext("** Bad HTML!!  Use -trace to diagnose. **")
420 #define GIVE_FILENAME gettext("Give name of file to save in")
421 #define CANNOT_SAVE_REMOTE gettext("Can't save data to file -- please run WWW locally")
422 #define CANNOT_OPEN_TEMP gettext("Can't open temporary file!")
423 #define CANNOT_OPEN_OUTPUT gettext("Can't open output file!  Cancelling!")
424 #define EXECUTION_DISABLED gettext("Execution is disabled.")
425 #define EXECUTION_DISABLED_FOR_FILE \
426  gettext("Execution is not enabled for this file.  See the Options menu (use %s).")
427 #define EXECUTION_NOT_COMPILED \
428  gettext("Execution capabilities are not compiled into this version.")
429 #define CANNOT_DISPLAY_FILE gettext("This file cannot be displayed on this terminal.")
430 #define CANNOT_DISPLAY_FILE_D_OR_C \
431  gettext("This file cannot be displayed on this terminal:  D)ownload, or C)ancel")
432 #define MSG_DOWNLOAD_OR_CANCEL gettext("%s  D)ownload, or C)ancel")
433 #define CANCELLING_FILE gettext("Cancelling file.")
434 #define RETRIEVING_FILE gettext("Retrieving file.  - PLEASE WAIT -")
435 #define FILENAME_PROMPT gettext("Enter a filename: ")
436 #define EDIT_THE_PREV_FILENAME gettext("Edit the previous filename: ")
437 #define EDIT_A_PREV_FILENAME gettext("Edit a previous filename: ")
438 #define NEW_FILENAME_PROMPT gettext("Enter a new filename: ")
439 #define FILENAME_CANNOT_BE_DOT gettext("File name may not begin with a dot.")
440 #ifdef VMS
441 #define FILE_EXISTS_HPROMPT gettext("File exists.  Create higher version?")
442 #else
443 #define FILE_EXISTS_OPROMPT gettext("File exists.  Overwrite?")
444 #endif /* VMS */
445 #define CANNOT_WRITE_TO_FILE gettext("Cannot write to file.")
446 #define MISCONF_DOWNLOAD_COMMAND gettext("ERROR! - download command is misconfigured.")
447 #define CANNOT_DOWNLOAD_FILE gettext("Unable to download file.")
448 #define READING_DIRECTORY gettext("Reading directory...")
449 #define BUILDING_DIR_LIST gettext("Building directory listing...")
450 #define SAVING gettext("Saving...")
451 #define COULD_NOT_EDIT_FILE gettext("Could not edit file '%s'.")
452 #define COULD_NOT_ACCESS_DOCUMENT gettext("Unable to access document!")
453 #define COULD_NOT_ACCESS_FILE gettext("Could not access file.")
454 #define COULD_NOT_ACCESS_DIR gettext("Could not access directory.")
455 #define COULD_NOT_LOAD_DATA gettext("Could not load data.")
456 #define CANNOT_EDIT_REMOTE_FILES \
457  gettext("Lynx cannot currently (e)dit remote WWW files.")
458 #define CANNOT_EDIT_FIELD \
459  gettext("This field cannot be (e)dited with an external editor.")
460 #define RULE_INCORRECT gettext("Bad rule")
461 #define RULE_NEEDS_DATA gettext("Insufficient operands:")
462 #define NOAUTH_TO_EDIT_FILE gettext("You are not authorized to edit this file.")
463 #define TITLE_PROMPT gettext("Title: ")
464 #define SUBJECT_PROMPT gettext("Subject: ")
465 #define USERNAME_PROMPT gettext("Username: ")
466 #define PASSWORD_PROMPT gettext("Password: ")
467 #define USERNAME_PASSWORD_REQUIRED gettext("lynx: Username and Password required!!!")
468 #define PASSWORD_REQUIRED gettext("lynx: Password required!!!")
469 #define CLEAR_ALL_AUTH_INFO gettext("Clear all authorization info for this session?")
470 #define AUTH_INFO_CLEARED gettext("Authorization info cleared.")
471 #define AUTH_FAILED_PROMPT gettext("Authorization failed.  Retry?")
472 #define CGI_DISABLED gettext("cgi support has been disabled.")
473 #define CGI_NOT_COMPILED \
474  gettext("Lynxcgi capabilities are not compiled into this version.")
475 #define CANNOT_CONVERT_I_TO_O gettext("Sorry, no known way of converting %s to %s.")
476 #define CONNECT_SET_FAILED gettext("Unable to set up connection.")
477 #define CONNECT_FAILED gettext("Unable to make connection")
478 #define MALFORMED_EXEC_REQUEST \
479  gettext("Executable link rejected due to malformed request.")
480 #define BADCHAR_IN_EXEC_LINK \
481  gettext("Executable link rejected due to `%c' character.")
482 #define RELPATH_IN_EXEC_LINK \
483  gettext("Executable link rejected due to relative path string ('../').")
484 #define BADLOCPATH_IN_EXEC_LINK \
485  gettext("Executable link rejected due to location or path.")
486 #define MAIL_DISABLED gettext("Mail access is disabled!")
487 #define ACCESS_ONLY_LOCALHOST \
488  gettext("Only files and servers on the local host can be accessed.")
489 #define TELNET_DISABLED gettext("Telnet access is disabled!")
490 #define TELNET_PORT_SPECS_DISABLED \
491  gettext("Telnet port specifications are disabled.")
492 #define NEWS_DISABLED gettext("USENET news access is disabled!")
493 #define RLOGIN_DISABLED gettext("Rlogin access is disabled!")
494 #define FTP_DISABLED gettext("Ftp access is disabled!")
495 #define NO_REFS_FROM_DOC gettext("There are no references from this document.")
496 #define NO_VISIBLE_REFS_FROM_DOC gettext("There are only hidden links from this document.")
497 #ifdef VMS
498 #define CANNOT_OPEN_COMFILE gettext("Unable to open command file.")
499 #endif /* VMS */
500 #define NEWS_POST_CANCELLED gettext("News Post Cancelled!!!")
501 #define SPAWNING_EDITOR_FOR_NEWS \
502  gettext("Spawning your selected editor to edit news message")
503 #define POST_MSG_PROMPT gettext("Post this message?")
504 #define APPEND_SIG_FILE gettext("Append '%s'?")
505 #define POSTING_TO_NEWS gettext("Posting to newsgroup(s)...")
506 #ifdef VMS
507 #define HAVE_UNREAD_MAIL_MSG gettext("*** You have unread mail. ***")
508 #else
509 #define HAVE_MAIL_MSG gettext("*** You have mail. ***")
510 #endif /* VMS */
511 #define HAVE_NEW_MAIL_MSG gettext("*** You have new mail. ***")
512 #define FILE_INSERT_CANCELLED gettext("File insert cancelled!!!")
513 #define MEMORY_EXHAUSTED_FILE gettext("Not enough memory for file!")
514 #define FILE_CANNOT_OPEN_R gettext("Can't open file for reading.")
515 #define FILE_DOES_NOT_EXIST gettext("File does not exist.")
516 #define FILE_DOES_NOT_EXIST_RE gettext("File does not exist - reenter or cancel:")
517 #define FILE_NOT_READABLE gettext("File is not readable.")
518 #define FILE_NOT_READABLE_RE gettext("File is not readable - reenter or cancel:")
519 #define FILE_INSERT_0_LENGTH gettext("Nothing to insert - file is 0-length.")
520 #define SAVE_REQUEST_CANCELLED gettext("Save request cancelled!!!")
521 #define MAIL_REQUEST_CANCELLED gettext("Mail request cancelled!!!")
522 #define CONFIRM_MAIL_SOURCE_PREPARSED \
523  gettext("Viewing preparsed source.  Are you sure you want to mail it?")
524 #define PLEASE_WAIT gettext("Please wait...")
525 #define MAILING_FILE gettext("Mailing file.  Please wait...")
526 #define MAIL_REQUEST_FAILED gettext("ERROR - Unable to mail file")
527 #define CONFIRM_LONG_SCREEN_PRINT \
528  gettext("File is %d screens long.  Are you sure you want to print?")
529 #define PRINT_REQUEST_CANCELLED gettext("Print request cancelled!!!")
530 #define PRESS_RETURN_TO_BEGIN gettext("Press <return> to begin: ")
531 #define PRESS_RETURN_TO_FINISH gettext("Press <return> to finish: ")
532 #define CONFIRM_LONG_PAGE_PRINT \
533  gettext("File is %d pages long.  Are you sure you want to print?")
534 #define CHECK_PRINTER \
535  gettext("Be sure your printer is on-line.  Press <return> to start printing:")
536 #define FILE_ALLOC_FAILED gettext("ERROR - Unable to allocate file space!!!")
537 #define UNABLE_TO_OPEN_TEMPFILE gettext("Unable to open tempfile")
538 #define UNABLE_TO_OPEN_PRINTOP_FILE gettext("Unable to open print options file")
539 #define PRINTING_FILE gettext("Printing file.  Please wait...")
540 #define MAIL_ADDRESS_PROMPT gettext("Please enter a valid internet mail address: ")
541 #define PRINTER_MISCONF_ERROR gettext("ERROR! - printer is misconfigured!")
542 #define FAILED_MAP_POST_REQUEST gettext("Image map from POST response not available!")
543 #define MISDIRECTED_MAP_REQUEST gettext("Misdirected client-side image MAP request!")
544 #define MAP_NOT_ACCESSIBLE gettext("Client-side image MAP is not accessible!")
545 #define MAPS_NOT_AVAILABLE gettext("No client-side image MAPs are available!")
546 #define MAP_NOT_AVAILABLE gettext("Client-side image MAP is not available!")
547 #ifndef NO_OPTION_MENU
548 #define OPTION_SCREEN_NEEDS_24 \
549  gettext("Screen height must be at least 24 lines for the Options menu!")
550 #define OPTION_SCREEN_NEEDS_23 \
551  gettext("Screen height must be at least 23 lines for the Options menu!")
552 #define OPTION_SCREEN_NEEDS_22 \
553  gettext("Screen height must be at least 22 lines for the Options menu!")
554 #endif /* !NO_OPTION_MENU */
555 #define NEED_ADVANCED_USER_MODE gettext("That key requires Advanced User mode.")
556 #define CONTENT_TYPE_MSG gettext("Content-type: %s")
557 #define COMMAND_PROMPT gettext("Command: ")
558 #define COMMAND_UNKNOWN gettext("Unknown or ambiguous command")
559 #define VERSION_SEGMENT gettext(" Version ")
560 #define FIRST_SEGMENT gettext(" first")
561 #define GUESSING_SEGMENT gettext(", guessing...")
562 #define PERMISSIONS_SEGMENT gettext("Permissions for ")
563 #define SELECT_SEGMENT gettext("Select ")
564 #define CAP_LETT_SEGMENT gettext("capital letter")
565 #define OF_OPT_LINE_SEGMENT gettext(" of option line,")
566 #define TO_SAVE_SEGMENT gettext(" to save,")
567 #define TO_SEGMENT gettext(" to ")
568 #define OR_SEGMENT gettext(" or ")
569 #define INDEX_SEGMENT gettext(" index")
570 #define TO_RETURN_SEGMENT gettext(" to return to Lynx.")
571 #define ACCEPT_CHANGES gettext("Accept Changes")
572 #define RESET_CHANGES gettext("Reset Changes")
573 #define CANCEL_CHANGES gettext("Left Arrow cancels changes")
574 #define SAVE_OPTIONS gettext("Save options to disk")
575 #define ACCEPT_DATA gettext("Hit RETURN to accept entered data.")
576 #define ACCEPT_DATA_OR_DEFAULT \
577  gettext("Hit RETURN to accept entered data.  Delete data to invoke the default.")
578 #define VALUE_ACCEPTED gettext("Value accepted!")
579 #define VALUE_ACCEPTED_WARNING_X \
580  gettext("Value accepted! -- WARNING: Lynx is configured for XWINDOWS!")
581 #define VALUE_ACCEPTED_WARNING_NONX \
582  gettext("Value accepted! -- WARNING: Lynx is NOT configured for XWINDOWS!")
583 #define EDITOR_LOCKED gettext("You are not allowed to change which editor to use!")
584 #define FAILED_TO_SET_DISPLAY gettext("Failed to set DISPLAY variable!")
585 #define FAILED_CLEAR_SET_DISPLAY gettext("Failed to clear DISPLAY variable!")
586 #define BOOKMARK_CHANGE_DISALLOWED \
587  gettext("You are not allowed to change the bookmark file!")
588 #define COLOR_TOGGLE_DISABLED gettext("Terminal does not support color")
589 #define COLOR_TOGGLE_DISABLED_FOR_TERM gettext("Your '%s' terminal does not support color.")
590 #define DOTFILE_ACCESS_DISABLED gettext("Access to dot files is disabled!")
591 #define UA_NO_LYNX_WARNING \
592  gettext("User-Agent string does not contain \"Lynx\" or \"L_y_n_x\"")
593 #define UA_PLEASE_USE_LYNX \
594  gettext("Use \"L_y_n_x\" or \"Lynx\" in User-Agent, or it looks like intentional deception!")
595 #define UA_CHANGE_DISABLED \
596  gettext("Changing of the User-Agent string is disabled!")
597 #define CHANGE_OF_SETTING_DISALLOWED \
598  gettext("You are not allowed to change this setting.")
599 #define SAVING_OPTIONS gettext("Saving Options...")
600 #define OPTIONS_SAVED gettext("Options saved!")
601 #define OPTIONS_NOT_SAVED gettext("Unable to save Options!")
602 #define R_TO_RETURN_TO_LYNX gettext(" 'r' to return to Lynx ")
603 #define SAVE_OR_R_TO_RETURN_TO_LYNX gettext(" '>' to save, or 'r' to return to Lynx ")
604 #define ANY_KEY_CHANGE_RET_ACCEPT \
605  gettext("Hit any key to change value; RETURN to accept.")
606 #define ERROR_UNCOMPRESSING_TEMP gettext("Error uncompressing temporary file!")
607 #define UNSUPPORTED_URL_SCHEME gettext("Unsupported URL scheme!")
608 #define UNSUPPORTED_DATA_URL gettext("Unsupported data: URL!  Use SHOWINFO, for now.")
609 #define TOO_MANY_REDIRECTIONS gettext("Redirection limit of 10 URLs reached.")
610 #define ILLEGAL_REDIRECTION_URL gettext("Illegal redirection URL received from server!")
611 #define	SERVER_ASKED_FOR_REDIRECTION \
612  gettext("Server asked for %d redirection of POST content to")
613 #define REDIRECTION_WITH_BAD_LOCATION "Got redirection with a bad Location header."
614 #define REDIRECTION_WITH_NO_LOCATION "Got redirection with no Location header."
615 #define	PROCEED_GET_CANCEL gettext("P)roceed, use G)ET or C)ancel ")
616 #define	PROCEED_OR_CANCEL gettext("P)roceed, or C)ancel ")
617 #define	ADVANCED_POST_GET_REDIRECT \
618  gettext("Redirection of POST content.  P)roceed, see U)RL, use G)ET or C)ancel")
619 #define	ADVANCED_POST_REDIRECT \
620  gettext("Redirection of POST content.  P)roceed, see U)RL, or C)ancel")
621 #define CONFIRM_POST_RESUBMISSION \
622  gettext("Document from Form with POST content.  Resubmit?")
623 #define CONFIRM_POST_RESUBMISSION_TO \
624  gettext("Resubmit POST content to %s ?")
625 #define CONFIRM_POST_LIST_RELOAD \
626  gettext("List from document with POST data.  Reload %s ?")
627 #define CONFIRM_POST_DOC_HEAD \
628  gettext("Document from POST action, HEAD may not be understood.  Proceed?")
629 #define CONFIRM_POST_LINK_HEAD \
630  gettext("Form submit action is POST, HEAD may not be understood.  Proceed?")
631 #define CONFIRM_WO_PASSWORD gettext("Proceed without a username and password?")
632 #define CONFIRM_PROCEED gettext("Proceed (%s)?")
633 #define CANNOT_POST gettext("Cannot POST to this host.")
634 #define IGNORED_POST gettext("POST not supported for this URL - ignoring POST data!")
635 #define DISCARDING_POST_DATA gettext("Discarding POST data...")
636 #define WILL_NOT_RELOAD_DOC gettext("Document will not be reloaded!")
637 #define	LOCATION_HEADER gettext("Location: ")
638 #define STRING_NOT_FOUND gettext("'%s' not found!")
639 #define MULTIBOOKMARKS_DEFAULT gettext("Default Bookmark File")
640 #define MULTIBOOKMARKS_SMALL gettext("Screen too small! (8x35 min)")
641 #define MULTIBOOKMARKS_SAVE gettext("Select destination or ^G to Cancel: ")
642 #define MULTIBOOKMARKS_SELECT \
643  gettext("Select subbookmark, '=' for menu, or ^G to cancel: ")
644 #define MULTIBOOKMARKS_SELF \
645  gettext("Reproduce L)ink in this bookmark file or C)ancel? (l,c): ")
646 #define MULTIBOOKMARKS_DISALLOWED gettext("Multiple bookmark support is not available.")
647 #define MULTIBOOKMARKS_SHEAD_MASK gettext(" Select Bookmark (screen %d of %d)")
648 #define MULTIBOOKMARKS_SHEAD gettext("       Select Bookmark")
649 #define MULTIBOOKMARKS_EHEAD_MASK \
650  gettext("Editing Bookmark DESCRIPTION and FILEPATH (%d of 2)")
651 #define MULTIBOOKMARKS_EHEAD \
652  gettext("         Editing Bookmark DESCRIPTION and FILEPATH")
653 #define MULTIBOOKMARKS_LETTER gettext("Letter: ")
654 #ifdef VMS
655 #define USE_PATH_OFF_HOME \
656  gettext("Use a filepath off your login directory in SHELL syntax!")
657 #else
658 #define USE_PATH_OFF_HOME gettext("Use a filepath off your home directory!")
659 #endif /* VMS */
660 #define MAXLINKS_REACHED \
661  gettext("Maximum links per page exceeded!  Use half-page or two-line scrolling.")
662 #define VISITED_LINKS_EMPTY gettext("No previously visited links available!")
663 #define MEMORY_EXHAUSTED_ABORT gettext("Memory exhausted!  Program aborted!")
664 #define MEMORY_EXHAUSTED_ABORTING gettext("Memory exhausted!  Aborting...")
665 #define NOT_ENOUGH_MEMORY gettext("Not enough memory!")
666 #define DFM_NOT_AVAILABLE gettext("Directory/File Manager not available")
667 #define BASE_NOT_ABSOLUTE gettext("HREF in BASE tag is not an absolute URL.")
668 #define LOCATION_NOT_ABSOLUTE gettext("Location URL is not absolute.")
669 #define REFRESH_URL_NOT_ABSOLUTE gettext("Refresh URL is not absolute.")
670 #define SENDING_MESSAGE_WITH_BODY_TO \
671  gettext("You are sending a message with body to:\n  ")
672 #define SENDING_COMMENT_TO gettext("You are sending a comment to:\n  ")
673 #define WITH_COPY_TO gettext("\n With copy to:\n  ")
674 #define WITH_COPIES_TO gettext("\n With copies to:\n  ")
675 #define CTRL_G_TO_CANCEL_SEND \
676  gettext("\n\nUse Ctrl-G to cancel if you do not want to send a message\n")
677 #define ENTER_NAME_OR_BLANK \
678  gettext("\n Please enter your name, or leave it blank to remain anonymous\n")
679 #define ENTER_MAIL_ADDRESS_OR_OTHER \
680  gettext("\n Please enter a mail address or some other\n")
681 #define MEANS_TO_CONTACT_FOR_RESPONSE \
682  gettext(" means to contact you, if you desire a response.\n")
683 #define ENTER_SUBJECT_LINE gettext("\n Please enter a subject line.\n")
684 #define ENTER_ADDRESS_FOR_CC \
685  gettext("\n Enter a mail address for a CC of your message.\n")
686 #define BLANK_FOR_NO_COPY gettext(" (Leave blank if you don't want a copy.)\n")
687 #define REVIEW_MESSAGE_BODY gettext("\n Please review the message body:\n\n")
688 #define RETURN_TO_CONTINUE gettext("\nPress RETURN to continue: ")
689 #define RETURN_TO_CLEANUP gettext("\nPress RETURN to clean up: ")
690 #define CTRL_U_TO_ERASE gettext(" Use Control-U to erase the default.\n")
691 #define ENTER_MESSAGE_BELOW gettext("\n Please enter your message below.")
692 #define ENTER_PERIOD_WHEN_DONE_A \
693  gettext("\n When you are done, press enter and put a single period (.)")
694 #define ENTER_PERIOD_WHEN_DONE_B \
695  gettext("\n on a line and press enter again.")
696 
697 /* Cookies messages */
698 #define ADVANCED_COOKIE_CONFIRMATION \
699  gettext("%s cookie: %.*s=%.*s  Allow? (Y/N/Always/neVer)")
700 #define INVALID_COOKIE_DOMAIN_CONFIRMATION \
701  gettext("Accept invalid cookie domain=%s for '%s'?")
702 #define INVALID_COOKIE_PATH_CONFIRMATION \
703  gettext("Accept invalid cookie path=%s as a prefix of '%s'?")
704 #define ALLOWING_COOKIE gettext("Allowing this cookie.")
705 #define REJECTING_COOKIE gettext("Rejecting this cookie.")
706 #define COOKIE_JAR_IS_EMPTY gettext("The Cookie Jar is empty.")
707 #define CACHE_JAR_IS_EMPTY gettext("The Cache Jar is empty.")
708 #define ACTIVATE_TO_GOBBLE \
709  gettext("Activate links to gobble up cookies or entire domains,")
710 #define OR_CHANGE_ALLOW gettext("or to change a domain's 'allow' setting.")
711 #define COOKIES_NEVER_ALLOWED gettext("(Cookies never allowed.)")
712 #define COOKIES_ALWAYS_ALLOWED gettext("(Cookies always allowed.)")
713 #define COOKIES_ALLOWED_VIA_PROMPT gettext("(Cookies allowed via prompt.)")
714 #define COOKIES_READ_FROM_FILE gettext("(Persistent Cookies.)")
715 #define NO_TITLE gettext("(No title.)")
716 #define NO_NAME gettext("(No name.)")
717 #define NO_VALUE gettext("(No value.)")
718 #define NO_NOTHING gettext("None")
719 #define END_OF_SESSION gettext("(End of session.)")
720 #define DELETE_COOKIE_CONFIRMATION gettext("Delete this cookie?")
721 #define COOKIE_EATEN gettext("The cookie has been eaten!")
722 #define DELETE_EMPTY_DOMAIN_CONFIRMATION gettext("Delete this empty domain?")
723 #define DOMAIN_EATEN gettext("The domain has been eaten!")
724 #define DELETE_COOKIES_SET_ALLOW_OR_CANCEL \
725  gettext("D)elete domain's cookies, set allow A)lways/P)rompt/neV)er, or C)ancel? ")
726 #define DELETE_DOMAIN_SET_ALLOW_OR_CANCEL \
727  gettext("D)elete domain, set allow A)lways/P)rompt/neV)er, or C)ancel? ")
728 #define DOMAIN_COOKIES_EATEN gettext("All cookies in the domain have been eaten!")
729 #define ALWAYS_ALLOWING_COOKIES gettext("'A'lways allowing from domain '%s'.")
730 #define NEVER_ALLOWING_COOKIES gettext("ne'V'er allowing from domain '%s'.")
731 #define PROMPTING_TO_ALLOW_COOKIES gettext("'P'rompting to allow from domain '%s'.")
732 #define DELETE_ALL_COOKIES_IN_DOMAIN gettext("Delete all cookies in this domain?")
733 #define ALL_COOKIES_EATEN gettext("All of the cookies in the jar have been eaten!")
734 
735 #define PORT_NINETEEN_INVALID gettext("Port 19 not permitted in URLs.")
736 #define PORT_TWENTYFIVE_INVALID gettext("Port 25 not permitted in URLs.")
737 #define PORT_INVALID gettext("Port %lu not permitted in URLs.")
738 #define URL_PORT_BAD gettext("URL has a bad port field.")
739 #define HTML_STACK_OVERRUN gettext("Maximum nesting of HTML elements exceeded.")
740 #define BAD_PARTIAL_REFERENCE gettext("Bad partial reference!  Stripping lead dots.")
741 #define TRACELOG_OPEN_FAILED gettext("Trace Log open failed.  Trace off!")
742 #define LYNX_TRACELOG_TITLE gettext("Lynx Trace Log")
743 #define NO_TRACELOG_STARTED gettext("No trace log has been started for this session.")
744 #define MAX_TEMPCOUNT_REACHED \
745  gettext("The maximum temporary file count has been reached!")
746 #define FORM_VALUE_TOO_LONG \
747  gettext("Form field value exceeds buffer length!  Trim the tail.")
748 #define FORM_TAIL_COMBINED_WITH_HEAD \
749  gettext("Modified tail combined with head of form field value.")
750 
751 /* HTFile.c */
752 #define ENTRY_IS_DIRECTORY      gettext("Directory")
753 #define DISALLOWED_DIR_SCAN     gettext("Directory browsing is not allowed.")
754 #define DISALLOWED_SELECTIVE_ACCESS gettext("Selective access is not enabled for this directory")
755 #define FAILED_DIR_SCAN         gettext("Multiformat: directory scan failed.")
756 #define FAILED_DIR_UNREADABLE   gettext("This directory is not readable.")
757 #define FAILED_FILE_UNREADABLE  gettext("Can't access requested file.")
758 #define FAILED_NO_REPRESENTATION gettext("Could not find suitable representation for transmission.")
759 #define FAILED_OPEN_COMPRESSED_FILE gettext("Could not open file for decompression!")
760 #define LABEL_FILES             gettext("Files:")
761 #define LABEL_SUBDIRECTORIES    gettext("Subdirectories:")
762 #define SEGMENT_DIRECTORY       gettext(" directory")
763 #define SEGMENT_UP_TO           gettext("Up to ")
764 #define SEGMENT_CURRENT_DIR     gettext("Current directory is ")
765 
766 /* HTFTP.c */
767 #define ENTRY_IS_SYMBOLIC_LINK  gettext("Symbolic Link")
768 
769 /* HTGopher.c */
770 #define FAILED_NO_RESPONSE      gettext("No response from server!")
771 #define GOPHER_CSO_INDEX        gettext("CSO index")
772 #define GOPHER_CSO_INDEX_SUBTITLE gettext("\nThis is a searchable index of a CSO database.\n")
773 #define GOPHER_CSO_SEARCH_RESULTS gettext("CSO Search Results")
774 #define GOPHER_CSO_SEEK_FAILED  gettext("Seek fail on %s\n")
775 #define GOPHER_CSO_SOLICIT_KEYWORDS gettext("\nPress the 's' key and enter search keywords.\n")
776 #define GOPHER_INDEX_SUBTITLE   gettext("\nThis is a searchable Gopher index.\n")
777 #define GOPHER_INDEX_TITLE      gettext("Gopher index")
778 #define GOPHER_MENU_TITLE       gettext("Gopher Menu")
779 #define GOPHER_SEARCH_RESULTS   gettext(" Search Results")
780 #define GOPHER_SENDING_CSO_REQUEST gettext("Sending CSO/PH request.")
781 #define GOPHER_SENDING_REQUEST  gettext("Sending Gopher request.")
782 #define GOPHER_SENT_CSO_REQUEST gettext("CSO/PH request sent; waiting for response.")
783 #define GOPHER_SENT_REQUEST     gettext("Gopher request sent; waiting for response.")
784 #define GOPHER_SOLICIT_KEYWORDS gettext("\nPlease enter search keywords.\n")
785 #define SEGMENT_KEYWORDS_WILL   gettext("\nThe keywords that you enter will allow you to search on a")
786 #define SEGMENT_PERSONS_DB_NAME gettext(" person's name in the database.\n")
787 
788 /* HTNews.c */
789 #define FAILED_CONNECTION_CLOSED gettext("Connection closed ???")
790 #define FAILED_CANNOT_OPEN_POST gettext("Cannot open temporary file for news POST.")
791 #define FAILED_CANNOT_POST_SSL  gettext("This client does not contain support for posting to news with SSL.")
792 
793 /* HTStyle.c */
794 #define STYLE_DUMP_FONT         gettext("Style %d `%s' SGML:%s.  Font %s %.1f point.\n")
795 #define STYLE_DUMP_INDENT       gettext("\tIndents: first=%.0f others=%.0f, Height=%.1f Desc=%.1f\n"
796 #define STYLE_DUMP_ALIGN        gettext("\tAlign=%d, %d tabs. (%.0f before, %.0f after)\n")
797 #define STYLE_DUMP_TAB          gettext("\t\tTab kind=%d at %.0f\n")
798 
799 /* HTTP.c */
800 #define FAILED_NEED_PASSWD      gettext("Can't proceed without a username and password.")
801 #define FAILED_RETRY_WITH_AUTH  gettext("Can't retry with authorization!  Contact the server's WebMaster.")
802 #define FAILED_RETRY_WITH_PROXY gettext("Can't retry with proxy authorization!  Contact the server's WebMaster.")
803 #define HTTP_RETRY_WITH_PROXY   gettext("Retrying with proxy authorization information.")
804 #define SSL_FORCED_PROMPT	gettext("SSL error:%s-Continue?")
805 
806 /* HTWAIS.c */
807 #define HTWAIS_MESSAGE_TOO_BIG  gettext("HTWAIS: Return message too large.")
808 #define HTWAIS_SOLICIT_QUERY    gettext("Enter WAIS query: ")
809 
810 /* Miscellaneous status */
811 #define RETRYING_AS_HTTP0       gettext("Retrying as HTTP0 request.")
812 #define TRANSFERRED_X_BYTES     gettext("Transferred %d bytes")
813 #define TRANSFER_COMPLETE       gettext("Data transfer complete")
814 #define FAILED_READING_KEYMAP   gettext("Error processing line %d of %s\n")
815 
816 /* Lynx internal page titles */
817 #define ADDRLIST_PAGE_TITLE	gettext("Address List Page")
818 #define BOOKMARK_TITLE		gettext("Bookmark file")
819 #define CONFIG_DEF_TITLE	gettext("Configuration Definitions")
820 #define COOKIE_JAR_TITLE	gettext("Cookie Jar")
821 #define CURRENT_KEYMAP_TITLE	gettext("Current Key Map")
822 #define DIRED_MENU_TITLE	gettext("File Management Options")
823 #define DOWNLOAD_OPTIONS_TITLE	gettext("Download Options")
824 #define HISTORY_PAGE_TITLE	gettext("History Page")
825 #define CACHE_JAR_TITLE		gettext("Cache Jar")
826 #define LIST_PAGE_TITLE		gettext("List Page")
827 #define LYNXCFG_TITLE		gettext("Lynx.cfg Information")
828 #define MOSAIC_BOOKMARK_TITLE	gettext("Converted Mosaic Hotlist")
829 #define OPTIONS_TITLE		gettext("Options Menu")
830 #define PERMIT_OPTIONS_TITLE	gettext("File Permission Options")
831 #define PRINT_OPTIONS_TITLE	gettext("Printing Options")
832 #define SHOWINFO_TITLE		gettext("Information about the current document")
833 #define STATUSLINES_TITLE	gettext("Your recent statusline messages")
834 #define UPLOAD_OPTIONS_TITLE	gettext("Upload Options")
835 #define VISITED_LINKS_TITLE	gettext("Visited Links Page")
836 
837 /* CONFIG_DEF_TITLE subtitles */
838 #define SEE_ALSO gettext("See also")
839 #define YOUR_SEGMENT gettext("your")
840 #define RUNTIME_OPT_SEGMENT gettext("for runtime options")
841 #define COMPILE_OPT_SEGMENT gettext("compile time options")
842 #define COLOR_STYLE_SEGMENT gettext("color-style configuration")
843 #define REL_VERSION gettext("latest release")
844 #define PRE_VERSION gettext("pre-release version")
845 #define DEV_VERSION gettext("development version")
846 #define AUTOCONF_CONFIG_CACHE \
847  gettext("The following data were derived during the automatic configuration/build\n\
848 process of this copy of Lynx.  When reporting a bug, please include a copy\n\
849 of this page.")
850 #define AUTOCONF_LYNXCFG_H \
851  gettext("The following data were used as automatically-configured compile-time\n\
852 definitions when this copy of Lynx was built.")
853 
854 #ifdef DIRED_SUPPORT
855 #define DIRED_NOVICELINE \
856  gettext("  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n")
857 #define CURRENT_LINK_STATUS_FAILED gettext("Failed to obtain status of current link!")
858 
859 #define INVALID_PERMIT_URL \
860  gettext("Special URL only valid from current File Permission menu!")
861 #endif /* DIRED_SUPPORT */
862 
863 #ifdef USE_EXTERNALS
864 #define EXTERNALS_DISABLED gettext("External support is currently disabled.")
865 #endif /* USE_EXTERNALS */
866 
867 /* new with 2.8.4dev.21 */
868 #define CHDIR_DISABLED gettext("Changing working-directory is currently disabled.")
869 #define LINEWRAP_OFF gettext("Linewrap OFF!")
870 #define LINEWRAP_ON gettext("Linewrap ON!")
871 #define NESTED_TABLES_OFF gettext("Parsing nested-tables toggled OFF!  Reloading...")
872 #define NESTED_TABLES_ON gettext("Parsing nested-tables toggled ON!  Reloading...")
873 #define SHIFT_VS_LINEWRAP gettext("Shifting is disabled while line-wrap is in effect")
874 #define TRACE_DISABLED gettext("Trace not supported")
875 
876 #endif /* LYMESSAGES_EN_H */
877