67 lines
1.8 KiB
XML
67 lines
1.8 KiB
XML
#include "remind.rh"
|
|
|
|
STRUCT STRING
|
|
{
|
|
TEXT str;
|
|
}
|
|
|
|
STRUCT LSTRING
|
|
{
|
|
LTEXT lstr;
|
|
}
|
|
|
|
STRUCT MENU_TITLE
|
|
{
|
|
TEXT str;
|
|
BYTE ncommands;
|
|
}
|
|
|
|
STRUCT STRING_ARRAY
|
|
{
|
|
STRUCT strlst[];
|
|
}
|
|
|
|
RESOURCE STRING_ARRAY remind_cmds
|
|
{
|
|
strlst=
|
|
{
|
|
STRING {str="iInsert";},
|
|
STRING {str="cCopy";},
|
|
STRING {str="uUpdate";},
|
|
STRING {str="aAdd";},
|
|
STRING {str="dDelete";},
|
|
STRING {str="pPrint";},
|
|
STRING {str="yPrint setup";},
|
|
STRING {str="xExit";}
|
|
};
|
|
}
|
|
|
|
RESOURCE STRING_ARRAY remind_menus
|
|
{
|
|
strlst=
|
|
{
|
|
MENU_TITLE {str="Edit"; ncommands=EDIT_ITEMS;},
|
|
MENU_TITLE {str="Special"; ncommands=SPECIAL_ITEMS;}
|
|
};
|
|
}
|
|
|
|
RESOURCE STRING str_no_reminders_set {str="No reminders set";}
|
|
RESOURCE STRING str_reminder {str="Reminder";}
|
|
RESOURCE STRING str_message {str="Message";}
|
|
RESOURCE STRING str_time {str="Time";}
|
|
RESOURCE STRING str_date {str="Date";}
|
|
RESOURCE STRING str_no_entry_update {str="No entry to update";}
|
|
RESOURCE STRING str_no_entry_delete {str="No entry to delete";}
|
|
RESOURCE STRING str_no_entry_copy {str="No entry to copy";}
|
|
RESOURCE STRING str_no_entry_insert {str="No entry to insert";}
|
|
RESOURCE STRING str_reminder_copied {str="Reminder copied";}
|
|
RESOURCE STRING str_nothing_print {str="Nothing to print";}
|
|
RESOURCE STRING str_delete_reminder {str="Delete this reminder";}
|
|
RESOURCE STRING str_warning {str="Warning";}
|
|
RESOURCE LSTRING lstr_delete_all {lstr="Exiting will delete all reminders";}
|
|
RESOURCE STRING str_ny {str="ny";}
|
|
RESOURCE STRING str_no {str="No";}
|
|
RESOURCE STRING str_yes {str="Yes";}
|
|
RESOURCE STRING str_cancel {str="Cancel";}
|
|
RESOURCE STRING str_exit {str="Exit";}
|