Fandom Developers Wiki

Warning![]

You are viewing a module with translations for the Keys module. It is not advised to edit this page manually. Instead, use the translations editor. Only edit this page directly if there's something that has to be done that the translation editor cannot do, or if the translation editor misbehaved. In these cases, it would also help if you leave a message on the I18nEdit talk page about your issue.

Upon editing this page without the translations editor you will be warned by the abuse filter and your edits will be tagged.


-- <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>