Module:Navbox/i18n

Revision as of 21:51, 3 March 2025 by Pynappo (talk | contribs) (Created page with "-- <nowiki> return { ["_metadata"] = { ["order"] = { "hide", "show" } }, ["en"] = { ["hide"] = "Hide", ["show"] = "Show" }, ["qqq"] = { ["hide"] = "\"Hide\" button (i.e. collapse the navbox).", ["show"] = "\"Show\" button (i.e. expand the navbox)." }, ["de"] = { ["hide"] = "Einklappen", ["show"] = "Ausklappen" }, ["es"] = { ["hide"] = "Ocult...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Navbox/i18n/doc

-- <nowiki>
return {
    ["_metadata"] = {
        ["order"] = {
            "hide",
            "show"
        }
    },
    ["en"] = {
        ["hide"] = "Hide",
        ["show"] = "Show"
    },
    ["qqq"] = {
        ["hide"] = "\"Hide\" button (i.e. collapse the navbox).",
        ["show"] = "\"Show\" button (i.e. expand the navbox)."
    },
    ["de"] = {
        ["hide"] = "Einklappen",
        ["show"] = "Ausklappen"
    },
    ["es"] = {
        ["hide"] = "Ocultar",
        ["show"] = "Mostrar"
    },
    ["hi"] = {
        ["hide"] = "छिपाएँ",
        ["show"] = "दिखाएँ"
    },
    ["ja"] = {
        ["hide"] = "隠す",
        ["show"] = "表示"
    },
    ["pt-br"] = {
        ["hide"] = "Ocultar",
        ["show"] = "Mostrar"
    },
    ["ru"] = {
        ["hide"] = "Скрыть",
        ["show"] = "Показать"
    },
    ["zh-hans"] = {
        ["hide"] = "隐藏",
        ["show"] = "显示"
    },
    ["zh-hant"] = {
        ["hide"] = "隱藏",
        ["show"] = "顯示"
    },
    ["zh-hk"] = {
        ["hide"] = "隱藏",
        ["show"] = "顯示"
    }
}
-- </nowiki>