00001
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RA_ERROR_TXT_H
00019 #define RA_ERROR_TXT_H
00020
00021
00022 static char *ra_error_text[] = {
00023 gettext_noop("no error"),
00024 gettext_noop("unspecific error (maybe internal)"),
00025 gettext_noop("error reading config-file"),
00026 gettext_noop("error loading plugins"),
00027 gettext_noop("not supported format"),
00028 gettext_noop("unknown plugin"),
00029 gettext_noop("needed plugin function is not available"),
00030 gettext_noop("unknown handle"),
00031 gettext_noop("not handled/not supported info"),
00032 gettext_noop("a input parameter is out of range"),
00033 gettext_noop("functionality not supported (planned for future versions)"),
00034 gettext_noop("wrong handle was used"),
00035 gettext_noop("error reading evaluation"),
00036 gettext_noop("info for used event-type not available"),
00037 gettext_noop("event property is not known/out of range"),
00038 gettext_noop("event set is not known/out of range"),
00039 gettext_noop("wrong event-property was used"),
00040 gettext_noop("template number was not found"),
00041 gettext_noop("structure of evaluation file is corrupt"),
00042 gettext_noop("a needed plugin is not available"),
00043 gettext_noop("one of the measurement files is missing or corrupt"),
00044 gettext_noop("a needed information is missing"),
00045 gettext_noop("at least one needed event-property is not available"),
00046 gettext_noop("the option is unknown"),
00047 gettext_noop("the needed signal is not available in the measurement"),
00048 gettext_noop("serious internal error: an offset for an option was not set"),
00049 gettext_noop("internal error"),
00050 gettext_noop("internal error in plugin"),
00051 gettext_noop("function argument(s) wrong"),
00052 gettext_noop("data cause to a state in the algorithm which should not happen"),
00053 gettext_noop("saving data to file failed"),
00054 gettext_noop("a needed information is missing in the measurement file(s)"),
00055 gettext_noop("the type of the evaluation is wrong"),
00056 };
00057
00058 static int ra_num_error_text = sizeof(ra_error_text) / sizeof(ra_error_text[0]);
00059
00060
00061 static char *ra_warning_text[] = {
00062 gettext_noop("no data/events available for processing"),
00063 gettext_noop("no config-file was found"),
00064 gettext_noop("no default evaluation available"),
00065 };
00066
00067 static int ra_num_warning_text = sizeof(ra_warning_text) / sizeof(ra_warning_text[0]);
00068
00069 #endif