模組:Category tree/poscatboiler/data/lang-specific/fy


This module handles generating the descriptions and categorization for 西弗里斯蘭語 category pages of the format "西弗里斯蘭語 LABEL" where LABEL can be any text. Examples are Category:Bulgarian conjugation 2.1 verbs and Category:Russian velar-stem neuter-form nouns. 該模块是 poscatboiler 系統的一部分,該系統是用於生成分類頁面的描述和分類的通用框架。

有關更多資訊,請參閱Module:category tree/poscatboiler/data/lang-specific/doc

注意:如果您新增了特定語言的模块,請將語言代碼新增至 Module:category tree/poscatboiler/data/lang-specific 頂部的清單中,使程式碼能識別該模块。


local labels = {}
local handlers = {}

local lang = require("Module:languages").getByCode("fy")


labels["依派生類型分類的動詞"] = {
	description = "依派生類型分類的西弗里斯蘭語動詞。",
	parents = {{name = "動詞", sort = "derivation"}},
}

labels["可分離動詞"] = {
	topright = "{{wikipedia|可分離動詞}}",
	description = "本分類包含西弗里斯蘭語中的可分離動詞,這類動詞是由動詞和一個助詞(通常是副詞)組成的複合詞。" ..
	"當助詞直接位於動詞形式之前時,兩者寫在一起成為一個詞。" ..
	"在其他情況下,助詞會與主要動詞分開,中間可能會有空格或其他詞。",
	parents = {{name = "依派生類型分類的動詞", sort = "separable"}},
}

table.insert(handlers, function(data)
	local particle = data.label:match("^帶(.+)的可分離動詞$")
	if particle then
		local link = require("Module:links").full_link({ lang = lang, term = particle }, "term")
		local altlink = require("Module:links").full_link({ lang = lang, alt = particle }, "term")
		return {
			description = "帶助詞" .. link .. "的西弗里斯蘭語可分離動詞。",
			displaytitle = "帶" .. altlink .. "的西弗里斯蘭語可分離動詞",
			breadcrumb = altlink,
			parents = {{name = "可分離動詞", sort = particle}},
		}
	end
end)


return {LABELS = labels, HANDLERS = handlers}