Modul:Wikidata/Legacy/i18n
< Modul:Wikidata | Legacy
local i18n = {
["errors"] =
{
["property-not-found"] = "Properti tidak ditemukan.",
["No property supplied"] = "Tidak ada properti yang disediakan",
["entity-not-found"] = "Butir Wikidata tidak ditemukan.",
["unknown-claim-type"] = "Jenis klaim yang tidak diketahui.",
["unknown-entity-type"] = "Jenis butir yang tidak diketahui.",
["qualifier-not-found"] = "Qualifier not found.",
["site-not-found"] = "Proyek Wikimedia tidak ditemukan.",
["labels-not-found"] = "Tidak ada label yang ditemukan.",
["descriptions-not-found"] = "Tidak ada deskripsi yang ditemukan.",
["aliases-not-found"] = "Tidak ada alias yang ditemukan.",
["unknown-datetime-format"] = "Format datetime yang tidak diketahui.",
["local-article-not-found"] = "Artikel ada di Wikidata, tetapi tidak ada di Wikipedia",
["dab-page"] = " (dab)",
},
["datetime"] =
{
-- $1 is a placeholder for the actual number
["beforenow"] = "$1 SM", -- how to format negative numbers for precisions 0 to 5
["afternow"] = "$1 M", -- how to format positive numbers for precisions 0 to 5
["bc"] = '$1 SM', -- how print negative years
["ad"] = "$1 M", -- how print 1st century AD dates
[0] = "$1 miliar tahun", -- precision: billion years
[1] = "$100 juta tahun", -- precision: hundred million years
[2] = "$10 juta tahun", -- precision: ten million years
[3] = "$1 juta tahun", -- precision: million years
[4] = "$100000 tahun", -- precision: hundred thousand years
[5] = "$10000 tahun", -- precision: ten thousand years
[6] = "$1 milenium", -- precision: millennium
[7] = "$1 abad", -- precision: century
[8] = "$1 dekade", -- precision: decade
-- the following use the format of #time parser function
[9] = "Y", -- 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 F Y" end, -- precision: day
},
["years-old"] = {
["singular"] = "($1)", -- year old, or nominative singular for 3 plural forms
["plural"] = "($1)", -- years old, or genitive plural for 3 plural forms
["paucal"] = "", -- genitive singular for 3 plural forms
},
["cite"] = { -- cite parameters
["title"] = "title",
["author"] = "author",
["date"] = "date",
["pages"] = "pages",
["language"] = "language",
-- cite web parameters
["url"] = "url",
["website"] = "website",
["access-date"] = "access-date",
["archive-url"] = "archive-url",
["archive-date"] = "archive-date",
["publisher"] = "publisher",
["quote"] = "quote",
-- cite journal parameters
["work"] = "work",
["issue"] = "issue",
["issn"] = "issn",
["doi"] = "doi"
},
}
return {
i18n = i18n
}