All source catalogs must have the same name of the program
with the extension ".ct". The compiler will produce files
ending with ".catalog".

The compiler write over old catalogs and create the required
directories automatically.



/*
 * Description of catalogs' sources
***

; this is a comment line
## language		start a new catalog for the "language"
# ID			start of a new string
;
; DON'T USE TABS IN THESE LINES
; ID MUST BE A SYMBOL WITHOUT BLANKS
;
This is a valid string if preceded from an ID line
a valid string can be on multiple line, the compiler
;
; comments can be between lines of the same string
; all comment lines will be skipped obviously
;
will add a newline character between two lines in the
final string.
#		this terminate the definition of a string

		empty lines also are skipped if out of a valid strig 

##		end of the catalog

; the compiler substitute all linefeeds with NL = '\'
; also the quote "'" is changed in "´" to prevent errors in the strings.

***
 */


