local data = {}
-- A list of all possible "parts" that a specification can be made out of. For each part, we list
-- the class it's in (gender, animacy, etc.), the associated category (if any) and the display form.
-- In a given gender/number spec, only one part of each class is allowed.
data.codes = {
["?"] = {type = "other", display = '<abbr title="thiếu giống">?</abbr>'},
-- FIXME: The following should be either eliminated in favor of g! or converted to a general "gender/number unattested".
["?!"] = {type = "other", display = '<abbr title="gender unattested">gender unattested</abbr>'},
-- Genders
["m"] = {type = "gender", cat = "POS giống đực", display = '<abbr title="giống đực">gđ</abbr>'},
["f"] = {type = "gender", cat = "POS giống cái", display = '<abbr title="giống cái">gc</abbr>'},
["n"] = {type = "gender", cat = "POS giống trung", display = '<abbr title="giống trung">gt</abbr>'},
["c"] = {type = "gender", cat = "POS giống chung", display = '<abbr title="giống chung">gc</abbr>'},
["gneut"] = {type = "gender", cat = "gender-neutral POS", display = '<abbr title="gender-neutral">gender-neutral</abbr>'},
["g!"] = {type = "gender", display = '<abbr title="gender unattested">gender unattested</abbr>'},
-- Animacy
-- Animate = either animal or personal (for Russian, etc.)
["an"] = {type = "animacy", cat = "POS động vật", display = '<abbr title="động vật">đv</abbr>'},
["in"] = {type = "animacy", cat = "POS bất động vật", display = '<abbr title="bất động vật">bđv</abbr>'},
-- Animal (for Ukrainian, Belarusian, Polish, etc.)
["anml"] = {type = "animacy", cat = "POS chỉ loài vật", display = '<abbr title="chỉ loài vật">animal</abbr>'},
-- Personal (for Ukrainian, Belarusian, Polish, etc.)
["pr"] = {type = "animacy", cat = "POS chỉ cá nhân trong", display = '<abbr title="từ chỉ cá nhân">pers</abbr>'},
["np"] = {type = "animacy", cat = "nonpersonal POS", display = '<abbr title="nonpersonal">npers</abbr>'},
["an!"] = {type = "animacy", display = '<abbr title="animacy unattested">animacy unattested</abbr>'},
-- Virility (for Polish)
["vr"] = {type = "virility", cat = "virile POS", display = '<abbr title="virile (= masculine personal)">vir</abbr>'},
["nv"] = {type = "virility", cat = "nonvirile POS", display = '<abbr title="nonvirile (= other than masculine personal)">nvir</abbr>'},
-- Numbers
["s"] = {type = "number", display = '<abbr title="số ít">si</abbr>'},
["d"] = {type = "number", cat = "chỉ có số kép", display = '<abbr title="số kép">sk</abbr>'},
["p"] = {type = "number", cat = "Danh từ chỉ có số nhiều trong", display = '<abbr title="số nhiều">sn</abbr>'},
["num!"] = {type = "number", display = '<abbr title="number unattested">number unattested</abbr>'},
-- Verb qualifiers
["impf"] = {type = "aspect", cat = "POS chưa hoàn thành", display = '<abbr title="thể chưa hoàn thành">chưa h.thành</abbr>'},
["pf"] = {type = "aspect", cat = "POS hoàn thành", display = '<abbr title="thể hoàn thành">h.thành</abbr>'},
["asp!"] = {type = "aspect", display = '<abbr title="aspect unattested">aspect unattested</abbr>'},
}
-- Combined codes that are equivalent to giving multiple specs. `mf` is the same as specifying two separate specs,
-- one with `m` in it and the other with `f`. `mfbysense` is similar but is used for nouns that can be either masculine
-- or feminine according as to whether they refer to masculine or feminine beings.
data.combinations = {
["mf"] = {codes = {"m", "f"}},
["mfequiv"] = {codes = {"m", "f"}, display = '<abbr title="different genders do not affect the meaning">same meaning</abbr>'},
["mfbysense"] = {codes = {"m", "f"}, cat = "masculine and feminine POS by sense",
display = '<abbr title="theo giống của thứ nói đến">theo nghĩa</abbr>'},
["biasp"] = {codes = {"impf", "pf"}},
}
-- Categories when multiple gender/number codes of a given type occur in different specs (two or more of the same type
-- cannot occur in a single spec).
data.multicode_cats = {
["gender"] = "POS có nhiều giống",
["animacy"] = "POS with multiple animacies",
["aspect"] = "biaspectual POS",
}
return data