help screen added for the 'Edit Item' command
This commit is contained in:
parent
be2f4a257b
commit
68de892ad9
26
src/help.c
26
src/help.c
@ -1,4 +1,4 @@
|
|||||||
/* $calcurse: help.c,v 1.9 2006/09/17 18:24:39 culot Exp $ */
|
/* $calcurse: help.c,v 1.10 2006/12/10 14:50:53 culot Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Calcurse - text-based organizer
|
* Calcurse - text-based organizer
|
||||||
@ -90,6 +90,7 @@ void help_screen(int which_pan, int colr)
|
|||||||
help_page_t help_goto;
|
help_page_t help_goto;
|
||||||
help_page_t help_delete;
|
help_page_t help_delete;
|
||||||
help_page_t help_add;
|
help_page_t help_add;
|
||||||
|
help_page_t help_edit;
|
||||||
help_page_t help_priority;
|
help_page_t help_priority;
|
||||||
help_page_t help_repeat;
|
help_page_t help_repeat;
|
||||||
help_page_t help_config;
|
help_page_t help_config;
|
||||||
@ -218,6 +219,23 @@ void help_screen(int which_pan, int colr)
|
|||||||
" o do not forget to save the calendar data to retrieve the new\n"
|
" o do not forget to save the calendar data to retrieve the new\n"
|
||||||
" event next time you launch Calcurse.");
|
" event next time you launch Calcurse.");
|
||||||
|
|
||||||
|
help_edit.title = _("Edit Item:\n");
|
||||||
|
help_edit.text =
|
||||||
|
_("Pressing 'E' allows you to edit the item which is currently selected.\n"
|
||||||
|
"Depending on the item type (appointment, event, or todo), and if it is\n"
|
||||||
|
"repeated or not, you will be asked to choose one of the item properties\n"
|
||||||
|
"to modify. An item property is one of the following: the start time, the\n"
|
||||||
|
"end time, the description, or the item repetition.\n"
|
||||||
|
"Once you have chosen the property you want to modify, you will be shown\n"
|
||||||
|
"its actual value, and you will be able to change it as you like.\n"
|
||||||
|
"\nNotes:\n"
|
||||||
|
" o if you choose to edit the item repetition properties, you will\n"
|
||||||
|
" be asked to re-enter all of the repetition characteristics\n"
|
||||||
|
" (repetition type, frequence, and ending date). Moreover, the\n"
|
||||||
|
" previous data concerning the deleted occurences will be lost.\n"
|
||||||
|
" o do not forget to save the calendar data to retrieve the\n"
|
||||||
|
" modified properties next time you launch Calcurse.");
|
||||||
|
|
||||||
help_priority.title = _("Priority:\n");
|
help_priority.title = _("Priority:\n");
|
||||||
help_priority.text =
|
help_priority.text =
|
||||||
_("Pressing '+' or '-' allows you to change the priority of the currently\n"
|
_("Pressing '+' or '-' allows you to change the priority of the currently\n"
|
||||||
@ -389,6 +407,12 @@ void help_screen(int which_pan, int colr)
|
|||||||
nl = write_help_pad(help_pad, help_delete.title,
|
nl = write_help_pad(help_pad, help_delete.title,
|
||||||
help_delete.text, pad_width);
|
help_delete.text, pad_width);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'e':
|
||||||
|
first_line = 0;
|
||||||
|
nl = write_help_pad(help_pad, help_edit.title,
|
||||||
|
help_edit.text, pad_width);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'c':
|
case 'c':
|
||||||
first_line = 0;
|
first_line = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user