モジュール:Wd/i18n

提供:関南・東山地方Wiki
2017年8月29日 (火) 15:40時点におけるtemplate>K-icznによる版 (en:Module:Wd/i18n 2017年8月28日 (月) 13:12(UTC)より)
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:Wd/i18n/doc に作成できます

-- The values and functions in this submodule should be localized per wiki.

local p = {
	["errors"] = {
		["unknown-data-type"]          = "'$1'は不明もしくは未対応のデータタイプです。",
		["missing-required-parameter"] = "必要なパラメータが定義されていません。最低限1つ必要です。",
		["extra-required-parameter"]   = "パラメータ「'$1'」は任意として定義する必要があります。",
		["no-function-specified"]      = "コールするためのファンクションを指定してください指定してください。",  -- equal to the standard module error message
		["main-called-twice"]          = 'ファンクション"main"は2度も呼び出せません。',
		["no-such-function"]           = 'ファンクション「"$1"」が存在しません。'  -- equal to the standard module error message
	},
	["info"] = {
		["edit-on-wikidata"] = "ウィキデータを編集"
	},
	["numeric"] = {
		["decimal-mark"] = ".",
		["delimiter"]    = ","
	},
	["datetime"] = {
		["prefixes"] = {
			["decade-period"] = ""
		},
		["suffixes"] = {
			["decade-period"] = "年代",
			["millennium"]    = "千年紀",
			["century"]       = "世紀",
			["million-years"] = "百万年",
			["billion-years"] = "億年",
			["year"]          = "年",
			["years"]         = "年"
		},
		["julian-calendar"] = "ユリウス暦",  -- linked page title
		["julian"]          = "ユリウス暦",
		["BCE"]             = "BCE",
		["CE"]              = "CE",
		["common-era"]      = "en:Common Era"  -- linked page title
	},
	["coord"] = {
		["latitude-north"] = "北緯",
		["latitude-south"] = "南緯",
		["longitude-east"] = "東経",
		["longitude-west"] = "西経",
		["degrees"]        = "度",
		["minutes"]        = "分",
		["seconds"]        = '秒',
		["separator"]      = ", "
	},
	["values"] = {
		["unknown"] = "不明",
		["none"]    = "無し"
	},
	["cite"] = {
		["cite-web"]     = "Cite web2",  -- title of template equivalent to [[:en:Template:Cite web]], leave empty (i.e. "") to use default rendering
		["cite-q"]       = "Cite Q",  -- title of template equivalent to [[:en:Template:Cite Q]], leave empty (i.e. "") to use default rendering
		["url"]          = "url",
		["title"]        = "title",
		["website"]      = "website",
		["date"]         = "date",
		["access-date"]  = "access-date",
		["archive-url"]  = "archive-url",
		["archive-date"] = "archive-date",
		["author"]       = "author",
		["publisher"]    = "publisher",
		["quote"]        = "quote",
		["language"]     = "language",
		["pages"]        = "pages",
		["chapter"]      = "chapter"
	}
}

function p.getOrdinalSuffix(num)
	if tostring(num):sub(-2,-2) == '1' then
		return ""  -- 10th, 11th, 12th, 13th, ... 19th
	end
	
	num = tostring(num):sub(-1)
	
	if num == '1' then
		return ""
	elseif num == '2' then
		return ""
	elseif num == '3' then
		return ""
	else
		return ""
	end
end

function p.addDelimiters(n)
	local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$")
	
	if left and num and right then
		return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right
	else
		return n
	end
end

return p