#ifndef STRINGS_H
#define STRINGS_H


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


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


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


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


#define NOMOREERRORS 0
#define NOMOREERRORS_STR "No more errors"

#define ATTEMPTTOREGISTERFAILED 1
#define ATTEMPTTOREGISTERFAILED_STR "SpellIt: Attempt to register as API client failed"

#define TOBEUSEDASCLIENT 2
#define TOBEUSEDASCLIENT_STR "No executable - to be used as API client"

#define WORDSADDEDSAVECHANGES 3
#define WORDSADDEDSAVECHANGES_STR "%ld word(s) added to user dictionary. Save changes ?"

#define YESNO 4
#define YESNO_STR "_YES|_no"

#define ABOUT 5
#define ABOUT_STR "SpellIt 1.7 ©1995 Dietmar Eilert\nAPI interface for ISpell 3.1.18 & GoldED 3+\nAll Rights Reserved.\n\nE-Mail: DIETMAR@TOMATE.TNG.OCHE.DE\nSupport BBS: Tomate +49-(0)2408-7788"

#define NOWORDUNDERCURSOR 6
#define NOWORDUNDERCURSOR_STR "No word under cursor ?!"

#define REQTOOLSLIBRARYMISSING 7
#define REQTOOLSLIBRARYMISSING_STR "reqtools.library missing"


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


#ifdef STRINGARRAY

struct AppString
{
    LONG   as_ID;
    STRPTR as_Str;
};

struct AppString AppStrings[] =
{
    {NOMOREERRORS,NOMOREERRORS_STR},
    {ATTEMPTTOREGISTERFAILED,ATTEMPTTOREGISTERFAILED_STR},
    {TOBEUSEDASCLIENT,TOBEUSEDASCLIENT_STR},
    {WORDSADDEDSAVECHANGES,WORDSADDEDSAVECHANGES_STR},
    {YESNO,YESNO_STR},
    {ABOUT,ABOUT_STR},
    {NOWORDUNDERCURSOR,NOWORDUNDERCURSOR_STR},
    {REQTOOLSLIBRARYMISSING,REQTOOLSLIBRARYMISSING_STR},
};


#endif /* STRINGARRAY */


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


#endif /* STRINGS_H */
