Difference between revisions of "Module:Category tree/topic cat/data/Materials"

From Multilingual Bookbinding Dictionary
Jump to navigation Jump to search
(Created page with "local labels = {} labels["materials"] = { description = "{{{langname}}} terms related to materials used in bookbinding, such as leather, board, paper, and [[clot...")
 
 
(4 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
labels["leather"] = {
 
labels["leather"] = {
 
description = "{{{langname}}} terms related to [[leather]]",
 
description = "{{{langname}}} terms related to [[leather]]",
parents = {"materials", "animal skin"},
+
parents = {"animal skin", "materials"},
 +
}
 +
 
 +
labels["leather type"] = {
 +
description = "{{{langname}}} terms related to descriptive terms for different types of [[leather]]",
 +
parents = {"leather"},
 +
}
 +
 
 +
labels["leather process"] = {
 +
description = "{{{langname}}} terms related to processing or creating [[leather]]",
 +
parents = {"leather"},
 +
}
 +
 
 +
labels["leather origin"] = {
 +
description = "{{{langname}}} terms that indicate the species origin of leather",
 +
parents = {"leather", "parchment", "animal skin"},
 
}
 
}
  
Line 18: Line 33:
 
labels["parchment"] = {
 
labels["parchment"] = {
 
description = "{{{langname}}} terms related to [[parchment]]",
 
description = "{{{langname}}} terms related to [[parchment]]",
parents = {"materials", "animal skin"},
+
parents = {"animal skin"},
 +
}
 +
 
 +
labels["cloth"] = {
 +
description = "{{{langname}}} terms related to textiles used in bookbinding and conservation",
 +
parents = {"Materials"},
 +
}
 +
 
 +
labels["paper"] = {
 +
description = "{{{langname}}} terms related to [[paper]]-based materials used in bookbinding and conservation",
 +
parents = {"Materials"},
 
}
 
}
 
return labels
 
return labels

Latest revision as of 16:25, 19 September 2018

Documentation for this module may be created at Module:Category tree/topic cat/data/Materials/doc

local labels = {}

labels["materials"] = {
	description = "{{{langname}}} terms related to materials used in bookbinding, such as [[leather]], [[board]], [[paper]], and [[cloth]].",
	parents = {"all topics"},
}

labels["leather"] = {
	description = "{{{langname}}} terms related to [[leather]]",
	parents = {"animal skin", "materials"},
}

labels["leather type"] = {
	description = "{{{langname}}} terms related to descriptive terms for different types of [[leather]]",
	parents = {"leather"},
}

labels["leather process"] = {
	description = "{{{langname}}} terms related to processing or creating [[leather]]",
	parents = {"leather"},
}

labels["leather origin"] = {
	description = "{{{langname}}} terms that indicate the species origin of leather",
	parents = {"leather", "parchment", "animal skin"},
}

labels["animal skin"] = {
	description = "{{{langname}}} terms related to [[leather]]",
	parents = {"materials"},
}

labels["parchment"] = {
	description = "{{{langname}}} terms related to [[parchment]]",
	parents = {"animal skin"},
}

labels["cloth"] = {
	description = "{{{langname}}} terms related to textiles used in bookbinding and conservation",
	parents = {"Materials"},
}

labels["paper"] = {
	description = "{{{langname}}} terms related to [[paper]]-based materials used in bookbinding and conservation",
	parents = {"Materials"},
}
return labels