317
редагувань
starcitizen>DuskFyre Немає опису редагування |
м (6 ревізій: Template:Main_page/headerTemplate:Main page/header/styles.css) |
||
| (Не показано 2 проміжні версії ще одного користувача) | |||
| Рядок 165: | Рядок 165: | ||
local lc = id:lower() | local lc = id:lower() | ||
local text = keyText[lc] or keyText[keyAlias[lc]] | local text = keyText[lc] or keyText[keyAlias[lc]] | ||
local | local leftRight = lc:match("^left ") or lc:match("^right ") | ||
if not text and | if not text and leftRight then | ||
text = | local _lc = lc:gsub("^" .. leftRight, "") | ||
local suffix = keyText[_lc] or keyText[keyAlias[_lc]] | |||
if suffix then | |||
text = leftRight:gsub("^%l", string.upper) .. " " .. suffix | |||
end | |||
end | end | ||
result:add(kbdPrefix .. (text or id) .. kbdSuffix) | result:add(kbdPrefix .. (text or id) .. kbdSuffix) | ||