มอดูล:category tree/poscatboiler/data/วลี

จาก วิกิพจนานุกรม พจนานุกรมเสรี
local labels = {}
local raw_categories = {}


labels["วลี"] = {
	description = "กลุ่มคำ{{{langname}}}ที่เรียบเรียงอย่างประณีตเพื่อแสดงความคิด ไม่จำเป็นต้องเป็นวลีในความหมายทางไวยากรณ์",
	umbrella_parents = "หมวดหมู่ย่อยของคำหลักแบ่งตามภาษา",
	parents = {"คำหลัก"},
}
labels["phrases"] = labels["วลี"]

labels["adverb-adjective phrases"] = {
	description = "{{{langname}}} phrases in which an adverb modifies the adjective that heads the phrase.",
	umbrella_parents = {name = "วลี", is_label = true, sort = " "},
	parents = {"วลี"},
}

labels["alliterative phrases"] = {
	description = "{{{langname}}} phrases composed of two or more words that alliterate.",
	umbrella_parents = {name = "วลี", is_label = true, sort = " "},
	parents = {"วลี"},
}

labels["rhyming phrases"] = {
	description = "{{{langname}}} phrases composed of two or more words that rhyme.",
	umbrella_parents = {name = "วลี", is_label = true, sort = " "},
	parents = {"วลี"},
}

labels["ประโยค"] = {
	description = "{{{langname}}} [[sentence]]s.",
	umbrella_parents = "มูลฐาน",
	parents = {{name = "{{{langcat}}}", raw = true}},
}
labels["sentences"] = labels["ประโยค"]

labels["phrasebook"] = {
	description = "{{{langname}}} non-idiomatic phrases that are used in common situations, and may be useful to language learners or travellers.",
	parents = {
		"phrases",
		{name = "Phrasebooks by language", raw = true, sort = "{{{langname}}}"}
	},
	umbrella = false, -- Umbrella has a nonstandard name so we treat it as a raw category
}

raw_categories["Phrasebooks by language"] = {
	description = "Categories with phrasebooks in various specific languages.",
	additional = "Phrasebook categories contain non-idiomatic phrases that are used in common situations, and may be useful to language learners or travellers.\n\n" ..
	"See [[Wiktionary:Phrasebook]] for more information.\n\n{{{umbrella_msg}}}",
	parents = "มูลฐาน",
}

for _, category in ipairs({
	{name = "Basic", topics = {}},
	{name = "Communication", topics = {"Communication"}},
	{name = "Emergencies", topics = {"Emergency medicine"}},
	{name = "Ethnicity", topics = {"Ethnicity"}},
	{name = "Family", topics = {"Family"}},
	{name = "Farewells", topics = {"Farewells"}},
	{name = "Festivities", topics = {}},
	{name = "Food and drink", topics = {"Food and drink"}},
	{name = "Greetings", topics = {"Greetings"}},
	{name = "Health", topics = {"Health"}},
	{name = "Love", topics = {"Love"}},
	{name = "Money", topics = {"Money"}},
	{name = "Needs", topics = {}},
	{name = "Religion", topics = {"Religion"}},
	{name = "Sex", topics = {"Sex"}},
	{name = "Time", topics = {"Time"}},
	{name = "Travel", topics = {"Travel"}},
	{name = "Weather", topics = {"Weather"}},
}) do
	local parents = {
		{name = "phrasebook", sort = category.name},
		{name = "Phrasebooks by language/" .. category.name, raw = true, sort = "{{{langname}}}"},
	}
	for _, topic in ipairs(category.topics) do
		table.insert(parents, {module = "topic cat", args = {code = "{{{langcode}}}", label = topic}, sort = " "})
	end
	labels["phrasebook/" .. category.name] = {
		description = "{{{langname}}} common non-idiomatic phrases in the category '" .. category.name .. "'.",
		breadcrumb = category.name,
		parents = parents,
		umbrella = false,
	}
	raw_categories["Phrasebooks by language/" .. category.name] = {
		description = "Categories with common non-idiomatic phrases in the category '" .. category.name .. "', in various specific languages.",
		additional = "{{{umbrella_msg}}}",
		parents = {{name = "Phrasebooks by language", sort = " "}},
		breadcrumb = category.name,
	}
end


return {LABELS = labels, RAW_CATEGORIES = raw_categories}