271
回編集
mediawiki>えのきだたもつ 細 (「モジュール:Wd/i18n」の保護レベルを変更しました: Wikipedia:保護依頼による: Wikipedia:保護の方針#半永久的な保護「影響が特に大きいテンプレート」 ([編集=拡張承認された利用者と管理者に許可] (無期限) [移動=拡張承認された利用者と管理者に許可] (無期限))) |
細 (1版 をインポートしました) |
||
6行目: | 6行目: | ||
p = { | p = { | ||
["errors"] = { | ["errors"] = { | ||
["unknown-data-type"] = "'$1' | ["unknown-data-type"] = "Unknown or unsupported datatype '$1'.", | ||
["missing-required-parameter"] = " | ["missing-required-parameter"] = "No required parameters defined, needing at least one", | ||
["extra-required-parameter"] = " | ["extra-required-parameter"] = "Parameter '$1' must be defined as optional", | ||
["no-function-specified"] = " | ["no-function-specified"] = "You must specify a function to call", -- equal to the standard module error message | ||
["main-called-twice"] = ' | ["main-called-twice"] = 'The function "main" cannot be called twice', | ||
["no-such-function"] = ' | ["no-such-function"] = 'The function "$1" does not exist' -- equal to the standard module error message | ||
}, | }, | ||
["info"] = { | ["info"] = { | ||
["edit-on-wikidata"] = " | ["edit-on-wikidata"] = "Edit this on Wikidata" | ||
}, | }, | ||
["numeric"] = { | ["numeric"] = { | ||
25行目: | 25行目: | ||
}, | }, | ||
["suffixes"] = { | ["suffixes"] = { | ||
["decade-period"] = " | ["decade-period"] = "s", | ||
["millennium"] = " | ["millennium"] = " millennium", | ||
["century"] = " | ["century"] = " century", | ||
["million-years"] = " | ["million-years"] = " million years", | ||
["billion-years"] = " | ["billion-years"] = " billion years", | ||
["year"] = " | ["year"] = " year", | ||
["years"] = " | ["years"] = " years" | ||
}, | }, | ||
["julian-calendar"] = " | ["julian-calendar"] = "Julian calendar", -- linked page title | ||
["julian"] = " | ["julian"] = "Julian", | ||
["BCE"] = "BCE", | ["BCE"] = "BCE", | ||
["CE"] = "CE", | ["CE"] = "CE", | ||
["common-era"] = " | ["common-era"] = "Common Era" -- linked page title | ||
}, | }, | ||
["coord"] = { | ["coord"] = { | ||
["latitude-north"] = " | ["latitude-north"] = "N", | ||
["latitude-south"] = " | ["latitude-south"] = "S", | ||
["longitude-east"] = " | ["longitude-east"] = "E", | ||
["longitude-west"] = " | ["longitude-west"] = "W", | ||
["degrees"] = " | ["degrees"] = "°", | ||
["minutes"] = " | ["minutes"] = "'", | ||
["seconds"] = ' | ["seconds"] = '"', | ||
["separator"] = ", " | ["separator"] = ", " | ||
}, | }, | ||
["values"] = { | ["values"] = { | ||
["unknown"] = " | ["unknown"] = "unknown", | ||
["none"] = " | ["none"] = "none" | ||
}, | }, | ||
["cite"] = { | ["cite"] = { | ||
["version"] = "2", -- | ["version"] = "2", -- increment this each time the below parameters are changed to avoid conflict errors | ||
["web"] = { | ["web"] = { | ||
-- <= left side: all allowed reference properties for *web page sources* per https://www.wikidata.org/wiki/Help:Sources | -- <= left side: all allowed reference properties for *web page sources* per https://www.wikidata.org/wiki/Help:Sources | ||
-- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite web]] (if non-existent, keep empty i.e. "") | -- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite web]] (if non-existent, keep empty i.e. "") | ||
[aliasesP.statedIn] | [aliasesP.statedIn] = "website", | ||
[aliasesP.referenceURL] | [aliasesP.referenceURL] = "url", | ||
[aliasesP.publicationDate] | [aliasesP.publicationDate] = "date", | ||
[aliasesP.retrieved] | [aliasesP.retrieved] = "access-date", | ||
[aliasesP.title] | [aliasesP.title] = "title", | ||
[aliasesP.archiveURL] | [aliasesP.archiveURL] = "archive-url", | ||
[aliasesP.archiveDate] | [aliasesP.archiveDate] = "archive-date", | ||
[aliasesP.language] | [aliasesP.language] = "language", | ||
[aliasesP.author] | [aliasesP.author] = "author", -- existence of author1, author2, author3, etc. is assumed | ||
[aliasesP.publisher] | [aliasesP.publisher] = "publisher", | ||
[aliasesP.quote] | [aliasesP.quote] = "quote", | ||
[aliasesP.pages] | [aliasesP.pages] = "pages" -- extra option | ||
}, | }, | ||
["q"] = { | ["q"] = { | ||
89行目: | 89行目: | ||
p.getOrdinalSuffix = function(num) | p.getOrdinalSuffix = function(num) | ||
if tostring(num):sub(-2,-2) == '1' then | if tostring(num):sub(-2,-2) == '1' then | ||
return "" -- 10th, 11th, 12th, 13th, ... 19th | return "th" -- 10th, 11th, 12th, 13th, ... 19th | ||
end | end | ||
num = tostring(num):sub(-1) | num = tostring(num):sub(-1) | ||
if num == '1' then | if num == '1' then | ||
return "" | return "st" | ||
elseif num == '2' then | elseif num == '2' then | ||
return "" | return "nd" | ||
elseif num == '3' then | elseif num == '3' then | ||
return "" | return "rd" | ||
else | else | ||
return "" | return "th" | ||
end | end | ||
end | end | ||
107行目: | 107行目: | ||
p.addDelimiters = function(n) | p.addDelimiters = function(n) | ||
local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$") | local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$") | ||
if left and num and right then | if left and num and right then | ||
return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right | return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right | ||
114行目: | 114行目: | ||
end | end | ||
end | end | ||
return p | return p | ||
end | end | ||
return p | return p |