# Journal actions:   ADD_NEW  ... Add new entry
#                    ADD_EXP  ... Add new entry using copy whole trees
#                    UPD_ENT  ... Update existing entry
#                    UPD_KEY  ... Update key of existing entry
#                                 if an original entry does not exist
#                                 the change is automatically ignored
#                    DEL_ENT  ... Delete entry
#                    BEGIN    ... Session begins
#                    END      ... Session ends
#
# Dictionary status: EXIST    ... Entry already exists
#                    NEXST    ... Entry does not exist
#                    EQUAL    ... Entry already exists and is the same
#                    EULNK    ... Entry already exists but journal contains
#                                 unresolved links
#                    NULNK    ... Entry does not exist and journal contains
#                                 unresolved links
#
# Update actions:    APPL     ... apply change
#                    SKIP     ... skip change and report to std. error output
#                    IGNR     ... ingore change
#                    QUES     ... ask user

ADD_NEW + EXIST = QUES
ADD_NEW + NEXST = QUES
ADD_NEW + EQUAL = IGNR
ADD_NEW + EULNK = QUES
ADD_NEW + NULNK = QUES

ADD_EXP + EXIST = QUES
ADD_EXP + NEXST = QUES
ADD_EXP + EQUAL = IGNR
ADD_EXP + EULNK = QUES
ADD_EXP + NULNK = QUES

UPD_ENT + EXIST = QUES
UPD_ENT + NEXST = APPL
UPD_ENT + EQUAL = IGNR
UPD_ENT + EULNK = QUES
UPD_ENT + NULNK = QUES

UPD_KEY + EXIST = QUES
UPD_KEY + NEXST = QUES
UPD_KEY + EQUAL = IGNR
UPD_KEY + EULNK = QUES
UPD_KEY + NULNK = QUES

DEL_ENT + EXIST = QUES
DEL_ENT + NEXST = IGNR
DEL_ENT + EQUAL = QUES
DEL_ENT + EULNK = QUES
DEL_ENT + NULNK = IGNR

BEGIN   + EXIST = IGNR
BEGIN   + NEXST = IGNR
BEGIN   + EQUAL = IGNR
BEGIN   + EULNK = IGNR
BEGIN   + NULNK = IGNR

END     + EXIST = IGNR
END     + NEXST = IGNR
END     + EQUAL = IGNR
END     + EULNK = IGNR
END     + NULNK = IGNR


# Mapping of keys to visual definitions in dictionary .cfg file

a             = SHOW_ALL
v             = VISDIC_SHORT
h             = SHOW_HYPERONYM
l             = SHOW_ILI
