Modul:Source/Initia Amharica

Dokumentaci tohoto modulu lze vytvořit na stránce Nápověda:Modul:Source/Initia Amharica

	-- @brief
--  Data for {{Initia Amharica}}
-- 
local _module = {}
----------------------------------------


_module = {
	
	cite = "monografie",
	
	arguments = {
		["heslo"] = {
			description = "heslo",
			required = false,
			fillIn = "kapitola",
			fill = function( args )
				return args["heslo"]
			end
		},
		["díl"] = {
			description = "díl",
			required = true,
			fillIn = "svazek",
			fill = function( args )
				return args["díl"]
			end
		},
		["strany"] = {
			description = "citovaná strana či strany",
			required = true
		},
		["url"] = {
			description = "odkaz na online verzi",
			required = false,
			fill = function( args )
				local output
				if args["url"] then
					output = args["url"]
				else
					output = "https://archive.org/stream/initiaamharicain0" .. args["díl"] .. "armb#page/" .. args["strany"] .. "/mode/1up"
				end
				return output
			end
		},
	},
	
	common = {
		["příjmení"] = "Armbruster",
		["jméno"] = "C. H",
		["titul"] = "Initia Amharica. An introduction to spoken Amharic",
		["vydavatel"] = "University Press",
		["místo"] = "Cambridge",
		["rok"] = 1910,
		["typ svazku"] = "díl"
	},

	editions = {
		["1"] = {
			["typ kapitoly"] = "kapitola",
		},
		["2"] = {
			["typ kapitoly"] = "heslo",
		},
		["3"] = {
			["typ kapitoly"] = "heslo",
		},
		switch = "díl"
   	}
	
}


----------------------------------------
return _module