Modulo:Wikidades/i18n
Aspekto
[antaŭrigardi] [redakti] [historio] [renovigi]
Dokumentado
Ŝablona programado | Diskutoj | Lua | Testoj | Subpaĝoj | |||
---|---|---|---|---|---|---|---|
Modulo | Esperanto | English
|
Modulo: | Dokumentado |
Se vi havas demandon pri ĉi tiu Lua-modulo, tiam vi povas demandi en la diskutejo pri Lua-moduloj. La Intervikiaj ligiloj estu metataj al Vikidatumoj. (Vidu Helpopaĝon pri tio.) |
|
local i18n = {
["errors"] = {
["property-not-found"] = "Eco ne trovia.",
["qualifier-not-found"] = "Kvalifiko ne trovita."
},
["datetime"] =
{
-- $1 is a placeholder for the actual number, or use the format of #time parser function
["beforenow"] = "fa $1", -- how to format negative numbers for precisions 0 to 5
["afternow"] = "d'aquí $1", -- how to format positive numbers for precisions 0 to 5
["bc"] = '$1 a. K.', -- how print negative years
["ad"] = "$1 dC", -- how print 1st century AD dates
[0] = "$1 miliardoj da jaroj", -- precision: billion years
[1] = "$100 milionoj da jaroj", -- precision: hundred million years
[2] = "$10 milionoj da jaroj", -- precision: ten million years
[3] = "$1 milionoj da jaroj", -- precision: million years
[4] = "$100000 jaroj", -- precision: hundred thousand years; thousand separators added afterwards
[5] = "$10000 jaroj", -- precision: ten thousand years; thousand separators added afterwards
[6] = '"jarmilo" "<span style=\'font-variant:small-caps; text-transform:lowercase;\'>"xrY"</span>"',-- precision: millennium
[7] = '"jarcento" "<span style=\'font-variant:small-caps; text-transform:lowercase;\'>"xrY"</span>"',-- precision: century
[8] = "dekjaro de $1", -- precision: decade
[9] = "$1", -- precision: year
[10] = "F Y", -- precision: month
[11] = function(ts) return mw.ustring.match(ts, "-(%d+)T") == "01" and 'j"r" F Y' or 'j"-a de" F Y' end, -- precision: day
["hms"] = {["hours"] = "h", ["minutes"] = "m", ["seconds"] = "s"}, -- duration: xh xm xs
},
["years-old"] = {"($1 jaro)", "($1 jaroj)"}, -- year(s) old, as in {{PLURAL:$1|singular|plural}}
["cite"] = { -- cite parameters of local templates
["title"] = "titolo",
["author"] = "aŭtoro",
["date"] = "dato",
["pages"] = "paĝo",
["language"] = "lingvo",
-- cite web parameters
["url"] = "url",
["website"] = "paĝaro",
["access-date"] = "alirita",
["archive-url"] = "arxiuurl",
["archive-date"] = "arxiudata",
["publisher"] = "eldoninto",
["quote"] = "citació",
-- cite journal parameters
["work"] = "publicació",
["issue"] = "exemplar",
["issn"] = "issn",
["doi"] = "doi"
},
-- local wiki settings
["addpencil"] = true, -- adds a pencil icon linked to Wikidata statement, planned to overwrite by Wikidata Bridge
["categorylabels"] = "Category:Paĝoj kun etikedoj de Vikidatumoj sen traduko", -- void for no local category
["categoryprop"] = "", -- Category:Pages using Wikidata property $1 (void for no local category)
["categoryref"] = "", -- Category:Pages with references from Wikidata (void for no local category)
["addfallback"] = {'fr', 'it', 'es', 'gl', 'pt', 'an', 'ast', 'ext'}, -- additional fallback language codes
["suppressids"] = {}, -- list of Qid values to suppress, i.e. no linguistic content
["qidlabels"] = false -- show labels as Qid if no fallback translation is available (default true)
}
-- Functions for local grammatical cases and local fixes
local cases = {
-- local fixes
["infoboxlabel"] = function(word) return require("Module:Wikidades/labels").fixInfoboxLabel(word, "adm") end,
["infoboxlabelplain"] = function(word) return require("Module:Wikidades/labels").fixInfoboxLabel(word, "plain") end,
["infoboxdata"] = function(word) return require("Module:Wikidades/labels").fixInfoboxData(word) end,
-- plurals with rules in Catalan
["plural"] = function(word, ...) if arg[1] == "ca" then return require("Module:ca-flexió").plural(word) end return word end,
-- ordinal in Catalan, needs to be internationalised
["ordinal"] = function(number, ...) if arg[1] == "ca" then return require("Module:ca-flexió").ordinal(number, arg[2]) end return number end,
-- naming locations with a referent
-- arg[1]=actual lang, arg[2]=requested lang, arg[3]=location Qid, arg[4]=article Qid
["location"] = function(label, ...) return require("Module:Location").naming(label, arg[2], arg[3]) end,
["locationcontext"] = function(label, ...) return require("Module:Location").naming(label, arg[2], arg[3], arg[4]) end,
-- fraction notation
["fraction"] = function(value) return require("Module:Wikidades/Units").fraction1(value) end,
}
return {
i18n = i18n,
cases = cases
}