-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathButtonTranslation.lua
More file actions
59 lines (58 loc) · 1.87 KB
/
ButtonTranslation.lua
File metadata and controls
59 lines (58 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
-- @Liquipedia
-- page=Module:Icon/ButtonTranslation
--
-- Please see https://github.com/Liquipedia/Lua-Modules to contribute
--
return {
playstation = {
cross = 'PlayStation_button_X.svg',
triangle = 'PlayStation_button_T.svg',
circle = 'PlayStation_button_C.svg',
square = 'PlayStation_button_S.svg',
l1 = 'PlayStation_button_L1.svg',
l2 = 'PlayStation_button_L2.svg',
l3 = 'PlayStation_button_L3.svg',
r1 = 'PlayStation_button_R1.svg',
r2 = 'PlayStation_button_R2.svg',
r3 = 'PlayStation_button_R3.svg',
left_stick = 'PlayStation_button_analog_L.svg',
right_stick = 'PlayStation_button_analog_R.svg',
arrow_up = 'Gamepad_button_arrow_up.svg',
arrow_down = 'Gamepad_button_arrow_down.svg',
arrow_left = 'Gamepad_button_arrow_left.svg',
arrow_right = 'Gamepad_button_arrow_right.svg'
},
xbox = {
a = 'Xbox_button_A.svg',
y = 'Xbox_button_Y.svg',
b = 'Xbox_button_B.svg',
x = 'Xbox_button_X.svg',
lb = 'Xbox_Left_Bumper.svg',
lt = 'Xbox_Left_Trigger.svg',
rb = 'Xbox_Right_Bumper.svg',
rt = 'Xbox_Right_Trigger.svg',
left_stick = 'Xbox_Left_stick.svg',
right_stick = 'Xbox_Right_stick.svg',
arrow_up = 'Gamepad_button_arrow_up.svg',
arrow_down = 'Gamepad_button_arrow_down.svg',
arrow_left = 'Gamepad_button_arrow_left.svg',
arrow_right = 'Gamepad_button_arrow_right.svg'
},
switch = {
a = 'Switch_pro_button_A.svg',
y = 'Switch_pro_button_Y.svg',
b = 'Switch_pro_button_B.svg',
x = 'Switch_pro_button_X.svg',
l = 'Switch_pro_button_L.svg',
zl = 'Switch_pro_button_ZL.svg',
r = 'Switch_pro_button_R.svg',
zr = 'Switch_pro_button_ZR.svg',
left_stick = 'PlayStation_button_analog_L.svg',
right_stick = 'PlayStation_button_analog_R.svg',
arrow_up = 'Gamepad_button_arrow_up.svg',
arrow_down = 'Gamepad_button_arrow_down.svg',
arrow_left = 'Gamepad_button_arrow_left.svg',
arrow_right = 'Gamepad_button_arrow_right.svg'
}
}