-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalization.lua
52 lines (40 loc) · 1.93 KB
/
Localization.lua
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
-- Gyro: Get Your Raid On! by Vger-Azjol-Nerub
--
-- English resources
------------------------------------------------------------
GyroLocal =
{
-- Macro names
StartRaidMacro = "GyroStartRaid",
StartRaidMacroText = "# Replace the entire contents of this macro with commands to run when joining a raid.",
EndRaidMacro = "GyroEndRaid",
EndRaidMacroText = "# Replace the entire contents of this macro with commands to run when leaving a raid.",
-- General messages
["NeedNewerVgerCoreMessage"] = "Gyro needs a newer version of VgerCore. Please use the version of VgerCore that came with Gyro.",
-- Slash commands
["EnabledCommand"] = "on",
["DisabledCommand"] = "off",
["AutoCommand"] = "auto",
["MacrosCommand"] = "macros",
["BattlegroundsOnCommand"] = "bg on",
["BattlegroundsOnMessage"] = "Gyro: battlegrounds now count as raids.",
["BattlegroundsOffCommand"] = "bg off",
["BattlegroundsOffMessage"] = "Gyro: battlegrounds now do not count as raids.",
-- Status messages
["EnabledMessage"] = "Gyro: raid mode on.",
["DisabledMessage"] = "Gyro: raid mode off.",
["AutoEnabledMessage"] = "Gyro: raid mode on (automatically detected).",
["AutoDisabledMessage"] = "Gyro: raid mode off (automatically detected).",
["Usage"] = [[
Gyro: Get Your Raid On! by Vger-Azjol-Nerub
www.vgermods.com
/gyro [ auto | on | off ] -- set Gyro mode
/gyro macros -- show help on setting up macros for Gyro
/gyro bg [ on | off ] -- set whether or not Battlegrounds count as raids
]],
["MacroHelp"] = [[
Setting up the Gyro macros
Gyro needs two macros to work: GyroStartRaid and GyroEndRaid. You can put whatever you like in those macros, and Gyro will run them when you enter and leave raids, respectively. You don't need to put them on your action bars. Gyro created those macros for you. Look for them in the character-specific macros section.
Very important: Gyro macros can't cast spells or use items! The game will block them.
]],
}