Go to the documentation of this file.
32 #ifndef LHOGHO_TRANSLATE_BG_H
33 #define LHOGHO_TRANSLATE_BG_H
40 #define TR_LHOGHO_CAPTION \
41 TEXT("LHOGHO - Компилатор за LOGO [" \
42 OS_NAME "-" PROCESSOR_NAME "(Bg), " \
53 #define ADVANCED_OPTIONS "Допълнителни опции:\n"
55 #define ADVANCED_OPTIONS "Изключени опции:\n"
65 #define TR_OPTION_HELP TEXT( \
67 " lhogho [опция] [опция] ... име-на-файл [аргументи]\n" \
70 " -h --help показва това съобщение\n" \
71 " -x --executable създава изпълним файл\n" \
72 " -xc --executable-compiler създава изпълним файл с вградено Lhogho\n" \
73 " -ci --case-insensitive игнориране на главни букви\n" \
74 " -t --traditional включва в традиционен режим\n" \
77 " -Za --Zassembler показва кода на асемблер\n" \
78 " -Zm --Zmemory статистика на паметта\n" \
79 " -Zmad --Zmemory-all-details детайлна статистика на паметта\n" \
80 " -Zrt --Zrun-time изчисленията в реално време\n" \
81 " -Zt --Ztree синтактичните дървета\n" \
82 " -Zv --Zvariables всички променливите\n" \
83 " -Zuv --Zuser-variables потребителски променливи\n" \
93 #define TR_PRIMITIVES TEXT( \
94 " false true to end toplevel system error" \
95 " * / + - = < > <= >= <> and or not " \
96 " first butfirst bf firsts butfirsts bfs" \
97 " last butlast bl item " \
98 " word list sentence se fput lput " \
99 " word? wordp list? listp number? numberp empty? emptyp " \
100 " equal? equalp notequal? notequalp before? beforep " \
101 " less? lessp greater? greaterp lessequal? lessequalp " \
102 " greaterequal? greaterequalp member? memberp count " \
103 " char ascii lowercase uppercase member parse runparse " \
104 " sum difference minus product quotient remainder " \
105 " int round sqrt power exp log10 ln abs " \
106 " pi sin radsin cos radcos arctan radarctan " \
107 " iseq rseq random rerandom pick " \
108 " lshift ashift bitand bitor bitxor bitnot " \
109 " print pr ? show type form format " \
110 " if ifelse repeat repcount while do.while until do.until "\
111 " run forever ignore stop make name output op maybeoutput local thing bye " \
112 " wait tag goto defined? definedp primitive? primitivep " \
113 " name? namep procedure? procedurep " \
114 " for case cond text fulltext define load commandline " \
115 " printdepthlimit printwidthlimit fullprintp caseignoredp "\
116 " logoplatform logoversion logodialect " \
117 " catch throw error apply " \
118 " test iftrue ift iffalse iff " \
119 " backslashed? backslashedp " \
120 " remdup remove reverse rawascii" \
121 " substring? substringp substring gensym combine quoted" \
122 " runresult runmacro " \
123 " libload libfree " \
124 " packsize pack unpack packaddr packto funcaddr " \
125 " openfile closefile readpack writepack " \
126 " external internal _int3 _stackframe _stackframeatom " \
127 " readchar rc readchars rcs readrawline readword rw readlist rl " \
128 " getenv getenvs eof? eofp " \
136 #define TR_ERROR_INCOMPLETE_PAIR TEXT("Липсва съответния елемент")
137 #define TR_ERROR_EMPTY_EXPRESSION TEXT("Празен израз")
138 #define TR_ERROR_CROWDED_EXPRESSION TEXT("Пренаселен израз")
139 #define TR_ERROR_MISSING_LEFTS TEXT("Липсват някои от данните от ляво")
140 #define TR_ERROR_MISSING_RIGHTS TEXT("Липсват някои от данните от дясно")
141 #define TR_ERROR_EMPTY_TO_END TEXT("Empty TO..END definition")
142 #define TR_ERROR_MISSING_NAME TEXT("Missing name of a TO..END definition")
143 #define TR_ERROR_DUPLICATE_INPUT TEXT("Duplicate name of input")
144 #define TR_ERROR_UNKNOWN_OPTION TEXT("Неизвестна опция")
145 #define TR_ERROR_CROWDED_SOURCES TEXT("Two or more input source files")
146 #define TR_ERROR_OS_ERROR TEXT("OS Error")
147 #define TR_ERROR_INCOMPATIBLE_REDEFINITION TEXT("Incompatible TO..END redefinition")
148 #define TR_ERROR_NOT_A_NUMBER TEXT("Не е число")
149 #define TR_ERROR_UNUSED_VALUE TEXT("Неизползвана стойност")
150 #define TR_ERROR_MISSING_VALUE TEXT("Липсва стойност")
151 #define TR_ERROR_DO_NOT_KNOW TEXT("Не знам как да направя това")
152 #define TR_ERROR_UNKNOWN_VAR TEXT("Reference to unknown variable")
153 #define TR_ERROR_BOOLEAN_EXPECTED TEXT("Boolean expression expected")
154 #define TR_ERROR_NOT_AN_INTEGER TEXT("Не е цяло число")
155 #define TR_ERROR_NOT_A_LIST TEXT("Не е списък")
156 #define TR_ERROR_NOT_A_WORD TEXT("Не е дума")
157 #define TR_ERROR_INCOMPATIBLE_DATA TEXT("Value not compatible with function requirements")
158 #define TR_ERROR_TOO_BIG_NUMBER TEXT("Много голямо число")
159 #define TR_ERROR_TOO_SMALL_NUMBER TEXT("Много малко число")
160 #define TR_ERROR_NOT_A_VAR TEXT("Не е променлива")
161 #define TR_EXIT_BY_BYE TEXT("Bye")
162 #define TR_EXIT_BY_THROW_TOPLEVEL TEXT("Thrown to toplevel")
163 #define TR_EXIT_BY_THROW_SYSTEM TEXT("Thrown to system")
164 #define TR_EXIT_BY_THROW_ERROR TEXT("Thrown by error")
165 #define TR_EXIT_BY_THROW_USER_ERROR TEXT("Thrown by error")
166 #define TR_EXIT_BY_THROW_TAG TEXT("Uncatched throw")
167 #define TR_EXIT_BY_THROW_TAG_VALUE TEXT("Uncatched throw")
168 #define TR_ERROR_NOT_A_TAG TEXT("Not a tag")
169 #define TR_ERROR_NOT_A_USER_FUNCTION TEXT("Not a user-defined function")
170 #define TR_ERROR_VAR_HAS_NO_VALUE TEXT("Variable has no value")
171 #define TR_ERROR_NOT_A_FUNCTION TEXT("Not a command or a function")
172 #define TR_ERROR_NOT_A_LIST_CONST TEXT("Not a list constant")
173 #define TR_ERROR_NOT_A_WORD_CONST TEXT("Not a word constant")
174 #define TR_ERROR_MISSING_FOR_LIMITS TEXT("Missing initial or final limit")
175 #define TR_ERROR_NOT_A_TYPE_NAME TEXT("Not a name of a supported type")
176 #define TR_ERROR_BAD_PROTOTYPE TEXT("Not a valid function prototype")
177 #define TR_ERROR_NOT_A_MEM TEXT("Not a memory block or packed data")
178 #define TR_ERROR_OUT_OF_MEM TEXT("Out of memory")
183 #endif //LHOGHO_TRANSLATE_BG_H
[ HOME | INDEX | ATOMS | VARS | REFERENCE ]
Lhogho Developer's Documentation
Wed Jul 10 2013