flickerstreak@28
|
1 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true)
|
flickerstreak@45
|
2 if not L then return end
|
flickerstreak@23
|
3
|
flickerstreak@47
|
4 for _, string in pairs({
|
flickerstreak@28
|
5 -- bindings.lua
|
flickerstreak@47
|
6 "ReAction",
|
flickerstreak@47
|
7 "Toggle ReAction Bar Lock",
|
flickerstreak@47
|
8 "ReAction Keybinding Mode",
|
flickerstreak@28
|
9
|
flickerstreak@28
|
10 -- ReAction.lua
|
flickerstreak@47
|
11 "Bar ",
|
flickerstreak@47
|
12 "ReAction: name already in use",
|
flickerstreak@47
|
13 "ReAction config mode disabled during combat.",
|
flickerstreak@44
|
14
|
flickerstreak@44
|
15 -- Bar.lua
|
flickerstreak@47
|
16 "Drag to add/remove buttons",
|
flickerstreak@47
|
17 "Drag to resize buttons",
|
flickerstreak@47
|
18 "Right-click-drag",
|
flickerstreak@47
|
19 "to change spacing",
|
flickerstreak@47
|
20 "Size:",
|
flickerstreak@47
|
21 "Spacing:",
|
flickerstreak@47
|
22 "Drag to move",
|
flickerstreak@47
|
23 "Shift-drag for sticky mode",
|
flickerstreak@47
|
24 "Right-click for options",
|
flickerstreak@50
|
25 "Layout...",
|
flickerstreak@50
|
26 "Open the layout editor for this bar",
|
flickerstreak@47
|
27 "Delete Bar",
|
flickerstreak@47
|
28 "Remove the bar from the current profile",
|
flickerstreak@50
|
29 "Are you sure you want to remove this bar?",
|
flickerstreak@23
|
30
|
flickerstreak@23
|
31 -- modules/ReAction_HideBlizzard
|
flickerstreak@47
|
32 "Hide Blizzard Action Bars",
|
flickerstreak@47
|
33 "Hide the default main bar and extra action bars",
|
flickerstreak@23
|
34
|
flickerstreak@23
|
35 -- modules/ReAction_Action
|
flickerstreak@48
|
36 "Action Bar",
|
flickerstreak@49
|
37 "Hide Empty Buttons",
|
flickerstreak@23
|
38
|
flickerstreak@23
|
39 -- modules/ReAction_ConfigUI
|
flickerstreak@51
|
40 "Center",
|
flickerstreak@51
|
41 "Left",
|
flickerstreak@51
|
42 "Right",
|
flickerstreak@51
|
43 "Top",
|
flickerstreak@51
|
44 "Bottom",
|
flickerstreak@51
|
45 "Top Left",
|
flickerstreak@51
|
46 "Top Right",
|
flickerstreak@51
|
47 "Bottom Left",
|
flickerstreak@51
|
48 "Bottom Right",
|
flickerstreak@47
|
49 "Customizable replacement for Blizzard's Action Bars",
|
flickerstreak@47
|
50 "Global Settings",
|
flickerstreak@47
|
51 "Global configuration settings",
|
flickerstreak@47
|
52 "Unlock Bars",
|
flickerstreak@47
|
53 "Unlock bars for dragging and resizing with the mouse",
|
flickerstreak@47
|
54 "Module Settings",
|
flickerstreak@47
|
55 "Configuration settings for each module",
|
flickerstreak@47
|
56 "Layout Editor...",
|
flickerstreak@47
|
57 "Show the ReAction Layout Editor to edit your bars",
|
flickerstreak@47
|
58 "Close on Launch",
|
flickerstreak@47
|
59 "Close the Interface Options window when launching the ReAction Layout Editor",
|
flickerstreak@47
|
60 "Layout",
|
flickerstreak@47
|
61 "Global Config",
|
flickerstreak@47
|
62 "Opens ReAction global configuration settings panel",
|
flickerstreak@47
|
63 "Close the Layout Editor when opening the ReAction global Interface Options",
|
flickerstreak@47
|
64 "New Bar...",
|
flickerstreak@47
|
65 "Choose a name, type, and initial grid for your new action bar:",
|
flickerstreak@47
|
66 "Bar Name",
|
flickerstreak@47
|
67 "Enter a name for your new action bar",
|
flickerstreak@47
|
68 "Button Type",
|
flickerstreak@47
|
69 "Create Bar",
|
flickerstreak@47
|
70 "General",
|
flickerstreak@47
|
71 "Rename Bar",
|
flickerstreak@47
|
72 "Delete Bar",
|
flickerstreak@51
|
73 "Anchor",
|
flickerstreak@51
|
74 "Frame",
|
flickerstreak@51
|
75 "The frame that the bar is anchored to",
|
flickerstreak@51
|
76 "Point",
|
flickerstreak@51
|
77 "Anchor point on the bar frame",
|
flickerstreak@51
|
78 "Relative Point",
|
flickerstreak@51
|
79 "Anchor point on the target frame",
|
flickerstreak@51
|
80 "X offset",
|
flickerstreak@51
|
81 "Y offset",
|
flickerstreak@47
|
82 "Button Grid",
|
flickerstreak@47
|
83 "Rows",
|
flickerstreak@47
|
84 "Columns",
|
flickerstreak@47
|
85 "Size",
|
flickerstreak@47
|
86 "Spacing",
|
flickerstreak@47
|
87 "Use the mouse to arrange and resize the bars on screen. Tooltips on bars indicate additional functionality.",
|
flickerstreak@47
|
88
|
flickerstreak@47
|
89
|
flickerstreak@47
|
90 --"Rename Bar",
|
flickerstreak@47
|
91 --"Set a name for the bar",
|
flickerstreak@23
|
92
|
flickerstreak@23
|
93 -- modules/ReAction_State
|
flickerstreak@47
|
94 "Dynamic Behavior",
|
flickerstreak@47
|
95 }) do
|
flickerstreak@47
|
96 L[string] = true
|
flickerstreak@47
|
97 end
|