#ifndef YEARPRINTQ_H
#define YEARPRINTQ_H


/****************************************************************************/


/* This file was created automatically by CatComp.
 * Do NOT edit by hand!
 */


#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif


/****************************************************************************/


#define MSG_RETRY_GAD 0
#define MSG_RETRY_GAD_STR "Retry"

#define MSG_ABORT_GAD 1
#define MSG_ABORT_GAD_STR "Abort"

#define MSG_QUIT_GAD 2
#define MSG_QUIT_GAD_STR "Quit YearPrintQ"

#define MSG_CONTI_GAD 3
#define MSG_CONTI_GAD_STR "Continue"

#define MSG_NOTFOUND 4
#define MSG_NOTFOUND_STR "Couldn't find %s\n%s"

#define MSG_FILE 5
#define MSG_FILE_STR "the file"

#define MSG_LIBRARY 6
#define MSG_LIBRARY_STR "the library"

#define MSG_NOMEMORY 7
#define MSG_NOMEMORY_STR "Not enough memory"

#define MSG_PRINTPROBL 8
#define MSG_PRINTPROBL_STR "Error while printing"

#define MSG_FILEERROR 9
#define MSG_FILEERROR_STR "Unable to read file\n%s"

#define MSG_LINEERROR 10
#define MSG_LINEERROR_STR "Error in line %ld of file\n%s:\n%s"

#define MSG_SECTION 11
#define MSG_SECTION_STR "False section command"

#define MSG_NOSECTION 12
#define MSG_NOSECTION_STR "No section command"

#define MSG_INSECTION 13
#define MSG_INSECTION_STR "False item in %s section"

#define MSG_PRINTERUSED 14
#define MSG_PRINTERUSED_STR "Printer already in use?"

#define MSG_NOWINDOW 15
#define MSG_NOWINDOW_STR "Couldn't open window"

#define MSG_USERBREAK 16
#define MSG_USERBREAK_STR "User break"

#define MSG_CHOOSEFILE 17
#define MSG_CHOOSEFILE_STR "Choose defaults file"

#define MSG_HELP 18
#define MSG_HELP_STR "YearPrintQ prints one fourth of a calendar on\na sheet of paper sized DIN A5.\n\nAs some Workbench printer drivers (e.g. the one\nfor NEC_Pinwriter) print FINE with 17cpi, there\nare two modes SEMI and FINE, which both switch\nthe printer to FINE, but print with different\nline lengths."

#define MSG_QUART_GADTXT 19
#define MSG_QUART_GADTXT_STR "_Quarter:"

#define MSG_ALL_GAD 20
#define MSG_ALL_GAD_STR "All"

#define MSG_PITCH_GADTXT 21
#define MSG_PITCH_GADTXT_STR "_Pitch:"

#define MSG_PICA_GAD 22
#define MSG_PICA_GAD_STR "Pica 10cpi"

#define MSG_ELITE_GAD 23
#define MSG_ELITE_GAD_STR "Elite 12cpi"

#define MSG_SEMI_GAD 24
#define MSG_SEMI_GAD_STR "Semi 15cpi"

#define MSG_FINE_GAD 25
#define MSG_FINE_GAD_STR "Fine 17cpi"

#define MSG_YEAR_GADTXT 26
#define MSG_YEAR_GADTXT_STR "_Year:"

#define MSG_FILE_GADTXT 27
#define MSG_FILE_GADTXT_STR "_File:"

#define MSG_GRAPH_GADTXT 28
#define MSG_GRAPH_GADTXT_STR "_Graphics:"

#define MSG_PRINT_GAD 29
#define MSG_PRINT_GAD_STR "Print _Calendar"

#define MSG_STOP_GAD 30
#define MSG_STOP_GAD_STR "Interrupt printing"

#define MSG_PITCHERR 31
#define MSG_PITCHERR_STR "Only one pitch argument at once."

#define MSG_YEARERR 32
#define MSG_YEARERR_STR "The year has to be between 1582 and 2199."

#define MSG_QUARTERR 33
#define MSG_QUARTERR_STR "The quarter should be one of 0 to 3."


/****************************************************************************/


#ifdef STRINGARRAY

struct AppString
{
    LONG   as_ID;
    STRPTR as_Str;
};

struct AppString AppStrings[] =
{
    {MSG_RETRY_GAD,MSG_RETRY_GAD_STR},
    {MSG_ABORT_GAD,MSG_ABORT_GAD_STR},
    {MSG_QUIT_GAD,MSG_QUIT_GAD_STR},
    {MSG_CONTI_GAD,MSG_CONTI_GAD_STR},
    {MSG_NOTFOUND,MSG_NOTFOUND_STR},
    {MSG_FILE,MSG_FILE_STR},
    {MSG_LIBRARY,MSG_LIBRARY_STR},
    {MSG_NOMEMORY,MSG_NOMEMORY_STR},
    {MSG_PRINTPROBL,MSG_PRINTPROBL_STR},
    {MSG_FILEERROR,MSG_FILEERROR_STR},
    {MSG_LINEERROR,MSG_LINEERROR_STR},
    {MSG_SECTION,MSG_SECTION_STR},
    {MSG_NOSECTION,MSG_NOSECTION_STR},
    {MSG_INSECTION,MSG_INSECTION_STR},
    {MSG_PRINTERUSED,MSG_PRINTERUSED_STR},
    {MSG_NOWINDOW,MSG_NOWINDOW_STR},
    {MSG_USERBREAK,MSG_USERBREAK_STR},
    {MSG_CHOOSEFILE,MSG_CHOOSEFILE_STR},
    {MSG_HELP,MSG_HELP_STR},
    {MSG_QUART_GADTXT,MSG_QUART_GADTXT_STR},
    {MSG_ALL_GAD,MSG_ALL_GAD_STR},
    {MSG_PITCH_GADTXT,MSG_PITCH_GADTXT_STR},
    {MSG_PICA_GAD,MSG_PICA_GAD_STR},
    {MSG_ELITE_GAD,MSG_ELITE_GAD_STR},
    {MSG_SEMI_GAD,MSG_SEMI_GAD_STR},
    {MSG_FINE_GAD,MSG_FINE_GAD_STR},
    {MSG_YEAR_GADTXT,MSG_YEAR_GADTXT_STR},
    {MSG_FILE_GADTXT,MSG_FILE_GADTXT_STR},
    {MSG_GRAPH_GADTXT,MSG_GRAPH_GADTXT_STR},
    {MSG_PRINT_GAD,MSG_PRINT_GAD_STR},
    {MSG_STOP_GAD,MSG_STOP_GAD_STR},
    {MSG_PITCHERR,MSG_PITCHERR_STR},
    {MSG_YEARERR,MSG_YEARERR_STR},
    {MSG_QUARTERR,MSG_QUARTERR_STR},
};


#endif /* STRINGARRAY */


/****************************************************************************/


#endif /* YEARPRINTQ_H */
