# This file contains the conversion schemes from kr code to szhparser program.
# For every KR tag it defines a list with the elements below:
# 1. The name of this element in szhparser
# 2. The type of this element: class, boolean or enumeration
# 3. (Only in the case of class) The package of the specified class.
{
'noun' : ['noun', 'class', 'lang_items'],
'verb' : ['verb', 'class', 'lang_items'],
'adj' : ['adjective', 'class', 'lang_items'],
'num' : ['numeral', 'class', 'lang_items'],
'adv' : ['adverb', 'class', 'lang_items'],
'prev' : ['preverb', 'class', 'lang_items'],
'postp' : ['postposition', 'class', 'lang_items'],
'det' : ['determinant', 'class', 'lang_items'],
'conj' : ['conjunction', 'class', 'lang_items'],
'art' : ['article', 'class', 'lang_items'],
'prep' : ['prep', 'class', 'lang_items'],
'ono' : ['ono', 'class', 'lang_items'],
'utt-int' : ['utt_int', 'class', 'lang_items'],
'cas' : ['case', 'enum', 'morph'],
'pers' : ['pers', 'class', 'morph'],
'poss' : ['poss', 'bool'],
'compar' : ['compar', 'bool'],
'superlat' : ['superlat', 'class', 'morph'],
'desig' : ['desig', 'bool'],
'fam' : ['fam', 'bool'],
'plur' : ['plur', 'bool'],
'anp' : ['anp', 'bool'],
'inf' : ['inf', 'bool'],
'modal' : ['modal', 'bool'],
'cond' : ['cond', 'bool'],
'past' : ['past', 'bool'],
'subjunc-imp' : ['subjunc_imp', 'bool'],
'def' : ['definite', 'bool'],
'1' : ['1', 'number'],
'2' : ['2', 'number'],
}
        
