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


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 = {}

labels["a-declension nouns"] = {
	description = "{{{langname}}} a-declension nouns.",
	parents = {{name = "nouns by inflection type", sort = "a-declension nouns"}},
	breadcrumb = "nouns by inflection type",
}

labels["a-declension nouns ending in -í or -ú"] = {
	description = "{{{langname}}} a-declension nouns ending in -í or -ú.",
	parents = {
		{name = "nouns by inflection type", sort = "a-declension nouns ending in -í or -ú"},
		{name = "a-declension nouns", sort = "ending in -í or -ú"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["a-declension nouns ending in -ái"] = {
	description = "{{{langname}}} a-declension nouns ending in -ái.",
	parents = {
		{name = "nouns by inflection type", sort = "a-declension nouns ending in -ái"},
		{name = "a-declension nouns", sort = "ending in -ái"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["a-declension nouns with accent shift"] = {
	description = "{{{langname}}} a-declension nouns with accent shift.",
	parents = {
		{name = "nouns by inflection type", sort = "a-declension nouns with accent shift"},
		{name = "a-declension nouns", sort = "accent shift"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["a-declension nouns with length alternation"] = {
	description = "{{{langname}}} a-declension nouns with length alternation.",
	parents = {
		{name = "nouns by inflection type", sort = "a-declension nouns with length alternation"},
		{name = "a-declension nouns", sort = "length alternation"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["i-declension nouns"] = {
	description = "{{{langname}}} i-declension nouns.",
	parents = {{name = "nouns by inflection type", sort = "i-declension nouns"}},
	breadcrumb = "nouns by inflection type",
}

labels["i-declension nouns with umlaut"] = {
	description = "{{{langname}}} i-declension nouns with umlaut.",
	parents = {
		{name = "nouns by inflection type", sort = "i-declension nouns with umlaut"},
		{name = "i-declension nouns", sort = "umlaut"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["i-declension nouns with length alternation"] = {
	description = "{{{langname}}} i-declension nouns with length alternation.",
	parents = {
		{name = "nouns by inflection type", sort = "i-declension nouns with length alternation"},
		{name = "i-declension nouns", sort = "length alternation"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["m-declension nouns"] = {
	description = "{{{langname}}} m-declension nouns.",
	parents = {{name = "nouns by inflection type", sort = "m-declension nouns"}},
	breadcrumb = "nouns by inflection type",
}

labels["ee-declension nouns"] = {
	description = "{{{langname}}} ee-declension nouns.",
	parents = {{name = "nouns by inflection type", sort = "ee-declension nouns"}},
	breadcrumb = "nouns by inflection type",
}

labels["ee-declension nouns ending in -óo"] = {
	description = "{{{langname}}} ee-declension nouns ending in -óo.",
	parents = {
		{name = "nouns by inflection type", sort = "ee-declension nouns ending in -óo"},
		{name = "ee-declension nouns", sort = "ending in -óo"}
	},
	breadcrumb = "nouns by inflection type",
}

labels["aan-declension nouns"] = {
	description = "{{{langname}}} aan-declension nouns.",
	parents = {{name = "nouns by inflection type", sort = "aan-declension nouns"}},
	breadcrumb = "nouns by inflection type",
}

return {LABELS = labels, HANDLERS = handlers}