нема опису редагування
starcitizen>DuskFyre Немає опису редагування |
starcitizen>DuskFyre Немає опису редагування |
||
| Рядок 10: | Рядок 10: | ||
['shift'] = '⇧ Shift', | ['shift'] = '⇧ Shift', | ||
['[[shift key|shift]]'] = '⇧ [[Shift key|Shift]]', | ['[[shift key|shift]]'] = '⇧ [[Shift key|Shift]]', | ||
['enter'] = '↵ Enter', | ['enter'] = '↵ Enter', | ||
['[[enter key|enter]]'] = '↵ [[Enter key|Enter]]', | ['[[enter key|enter]]'] = '↵ [[Enter key|Enter]]', | ||
| Рядок 166: | Рядок 164: | ||
end | end | ||
local lc = id:lower() | local lc = id:lower() | ||
local text = keyText[lc] or keyText[keyAlias[lc]] | local text = keyText[lc] or keyText[keyAlias[lc]] | ||
result:add(kbdPrefix .. text .. kbdSuffix) | local lcLeftRightMatch = lc:match('^(left|right)') | ||
if not text and lcLeftRightMatch then | |||
text = lcLeftRightMatch .. " " .. lc | |||
end | |||
result:add(kbdPrefix .. (text or id) .. kbdSuffix) | |||
end | end | ||
return mw.getCurrentFrame():extensionTag{ | return mw.getCurrentFrame():extensionTag{ | ||