Module:Keys/Symbols/i18n

From Commons Wiki
Jump to navigation Jump to search

Template:I18n module


-- <nowiki>
-- See also
--- Template:Keys
-- @submodule
return {
	-- Note that the i18n module will trim all leading and trailing spaces from
	-- these messages. Escape them using `&#32;` for the ordinary space or
	-- &nbsp; for the non-breaking space.
	["de"] = {
		["lshift"] = "⇧ Umschalt Links",
		["rshift"] = "⇧ Umschalt Rechts",
    },
    ["en"] = {
		["lshift"] = "⇧ Left Shift",
		["rshift"] = "⇧ Right Shift",
    },
	["fr"] = {
		["lshift"] = "⇧ Shift Gauche",
		["rshift"] = "⇧ Shift Droit"
	},
    ["hi"] = {
		["lshift"] = "⇧ बाया Shift",
		["rshift"] = "⇧ दाया Shift",
    },
    ["pt"] = {
		["lshift"] = "⇧ Shift Esquerdo",
		["rshift"] = "⇧ Shift Esquerdo",
    },
    ["ru"] = {
    	["lshift"] = "⇧ Левый Shift",
    	["rshift"] = "⇧ Правый Shift"
    }
}
-- </nowiki>