Lines Matching defs:htx

220     const char *htx[3];		/* Untranslated help message.  We break
238 htx[0] = N_("Search Command Help Text\n\n "
247 htx[1] = N_("If you have selected text with the mark and then "
251 htx[2] = NULL;
253 htx[0] = N_("Go To Line Help Text\n\n "
259 htx[1] = NULL;
260 htx[2] = NULL;
262 htx[0] = N_("Insert File Help Text\n\n "
271 htx[1] = N_("If you need another blank buffer, do not enter "
275 htx[2] = NULL;
277 htx[0] = N_("Write File Help Text\n\n "
286 htx[1] = NULL;
287 htx[2] = NULL;
291 htx[0] = N_("File Browser Help Text\n\n "
301 htx[1] = NULL;
302 htx[2] = NULL;
304 htx[0] = N_("Browser Search Command Help Text\n\n "
313 htx[1] = N_(" The following function keys are available in "
315 htx[2] = NULL;
317 htx[0] = N_("Browser Go To Directory Help Text\n\n "
324 htx[1] = NULL;
325 htx[2] = NULL;
330 htx[0] = N_("Spell Check Help Text\n\n "
339 htx[1] = NULL;
340 htx[2] = NULL;
345 htx[0] = N_("Execute Command Help Text\n\n "
352 htx[1] = NULL;
353 htx[2] = NULL;
358 htx[0] = N_("Main nano help text\n\n "
368 htx[1] = N_("The bottom two lines show the most commonly used "
377 htx[2] = N_("Also, pressing Esc twice and then typing a "
385 htx[0] = _(htx[0]);
386 if (htx[1] != NULL)
387 htx[1] = _(htx[1]);
388 if (htx[2] != NULL)
389 htx[2] = _(htx[2]);
391 allocsize += strlen(htx[0]);
392 if (htx[1] != NULL)
393 allocsize += strlen(htx[1]);
394 if (htx[2] != NULL)
395 allocsize += strlen(htx[2]);
424 strcpy(help_text, htx[0]);
425 if (htx[1] != NULL)
426 strcat(help_text, htx[1]);
427 if (htx[2] != NULL)
428 strcat(help_text, htx[2]);