comparison locale/enUS.lua @ 28:21bcaf8215ff

- converted to Ace3 - rearranged file layout - configGUI menus not working right now
author Flick <flickerstreak@gmail.com>
date Mon, 17 Mar 2008 18:24:53 +0000
parents dba04d85c799
children 0d95ce7a9ec2
comparison
equal deleted inserted replaced
27:f1e838841ce1 28:21bcaf8215ff
1 AceLibrary("AceLocale-2.2"):new("ReAction"):RegisterTranslations( "enUS", 1 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true)
2 function() 2 if L then
3 return
4 {
5 -- ReAction
6 ["ReAction"] = true,
7 ["Toggle ReAction Bar Lock"] = true,
8 ["ReAction Keybinding Mode"] = true,
9 3
10 -- ReAction_Bar 4 -- bindings.lua
11 ["Bar "] = true, 5 L["ReAction"] = true
12 ["Delete Bar"] = true, 6 L["Toggle ReAction Bar Lock"] = true
13 ["Remove the bar from the current profile"] = true, 7 L["ReAction Keybinding Mode"] = true
14 ["Rename Bar"] = true, 8
15 ["Set a name for the bar"] = true, 9 -- ReAction.lua
16 ["ReAction: name already in use"] = true, 10 L["Bar "] = true
11 L["ReAction: name already in use"] = true
17 12
18 -- modules/ReAction_HideBlizzard 13 -- modules/ReAction_HideBlizzard
19 ["Hide Default Action Bars"] = true, 14 L["Hide Default Action Bars"] = true
20 ["Hide the default main bar and extra action bars"] = true, 15 L["Hide the default main bar and extra action bars"] = true
21 16
22 -- modules/ReAction_Action 17 -- modules/ReAction_Action
23 ["New Action Bar"] = true, 18 L["New Action Bar"] = true
24 ["Create a new bar of standard action buttons"] = true, 19 L["Create a new bar of standard action buttons"] = true
25 20
26 -- modules/ReAction_ConfigUI 21 -- modules/ReAction_ConfigUI
22 L["Delete Bar"] = true
23 L["Remove the bar from the current profile"] = true
24 L["Rename Bar"] = true
25 L["Set a name for the bar"] = true
27 -- console commands 26 -- console commands
28 ["/reaction"] = true, 27 L["/reaction"] = true
29 ["/rxn"] = true, 28 L["/rxn"] = true
30 ["unlock"] = true, 29 L["unlock"] = true
31 ["config"] = true, 30 L["config"] = true
32 -- messages 31 -- messages
33 ["ReAction config mode disabled during combat."] = true, 32 L["ReAction config mode disabled during combat."] = true
34 -- tooltips 33 -- tooltips
35 ["Drag to add/remove buttons"] = true, 34 L["Drag to add/remove buttons"] = true
36 ["Drag to resize buttons"] = true, 35 L["Drag to resize buttons"] = true
37 ["Right-click-drag"] = true, 36 L["Right-click-drag"] = true
38 ["to change spacing"] = true, 37 L["to change spacing"] = true
39 ["Size:"] = true, 38 L["Size:"] = true
40 ["Spacing:"] = true, 39 L["Spacing:"] = true
41 ["Drag to move"] = true, 40 L["Drag to move"] = true
42 ["Shift-drag for sticky mode"] = true, 41 L["Shift-drag for sticky mode"] = true
43 ["Right-click for options"] = true, 42 L["Right-click for options"] = true
44 -- global options 43 -- global options
45 ["Unlock Bars"] = true, 44 L["Unlock Bars"] = true
46 ["Unlock bars for dragging and resizing with the mouse"] = true, 45 L["Unlock bars for dragging and resizing with the mouse"] = true
47 ["Configure..."] = true, 46 L["Configure..."] = true
48 ["Open the configuration dialogue"] = true, 47 L["Open the configuration dialogue"] = true
49 -- bar menu options 48 -- bar menu options
50 ["Open the configuration dialogue for this bar"] = true, 49 L["Open the configuration dialogue for this bar"] = true
51 -- waterfall options 50 -- waterfall options
52 ["Global Settings"] = true, 51 L["Global Settings"] = true
53 ["Global configuration settings"] = true, 52 L["Global configuration settings"] = true
54 ["Module Settings"] = true, 53 L["Module Settings"] = true
55 ["Configuration settings for each module"] = true, 54 L["Configuration settings for each module"] = true
56 ["Bars"] = true, 55 L["Bars"] = true
57 ["Configuration settings for bars"] = true, 56 L["Configuration settings for bars"] = true
58 57
59 -- modules/ReAction_State 58 -- modules/ReAction_State
60 ["Dynamic Behavior"] = true, 59 L["Dynamic Behavior"] = true
61 60
62
63 }
64 end 61 end
65 )