Mercurial > wow > reaction
comparison locale/enUS.lua @ 47:e12b736c23c3
Added Layout Editor
| author | Flick <flickerstreak@gmail.com> | 
|---|---|
| date | Fri, 11 Apr 2008 22:21:28 +0000 | 
| parents | aa0b7fd68462 | 
| children | 7b7d178dec52 | 
   comparison
  equal
  deleted
  inserted
  replaced
| 46:aa0b7fd68462 | 47:e12b736c23c3 | 
|---|---|
| 1 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true) | 1 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true) | 
| 2 if not L then return end | 2 if not L then return end | 
| 3 | 3 | 
| 4 for _, string in pairs({ | |
| 4 -- bindings.lua | 5 -- bindings.lua | 
| 5 L["ReAction"] = true | 6 "ReAction", | 
| 6 L["Toggle ReAction Bar Lock"] = true | 7 "Toggle ReAction Bar Lock", | 
| 7 L["ReAction Keybinding Mode"] = true | 8 "ReAction Keybinding Mode", | 
| 8 | 9 | 
| 9 -- ReAction.lua | 10 -- ReAction.lua | 
| 10 L["Bar "] = true | 11 "Bar ", | 
| 11 L["ReAction: name already in use"] = true | 12 "ReAction: name already in use", | 
| 12 L["ReAction config mode disabled during combat."] = true | 13 "ReAction config mode disabled during combat.", | 
| 13 | 14 | 
| 14 -- Bar.lua | 15 -- Bar.lua | 
| 15 L["Drag to add/remove buttons"] = true | 16 "Drag to add/remove buttons", | 
| 16 L["Drag to resize buttons"] = true | 17 "Drag to resize buttons", | 
| 17 L["Right-click-drag"] = true | 18 "Right-click-drag", | 
| 18 L["to change spacing"] = true | 19 "to change spacing", | 
| 19 L["Size:"] = true | 20 "Size:", | 
| 20 L["Spacing:"] = true | 21 "Spacing:", | 
| 21 L["Drag to move"] = true | 22 "Drag to move", | 
| 22 L["Shift-drag for sticky mode"] = true | 23 "Shift-drag for sticky mode", | 
| 23 L["Right-click for options"] = true | 24 "Right-click for options", | 
| 24 L["Configure..."] = true | 25 "Configure...", | 
| 25 L["Open the configuration dialogue for this bar"] = true | 26 "Open the configuration dialogue for this bar", | 
| 26 L["Delete Bar"] = true | 27 "Delete Bar", | 
| 27 L["Remove the bar from the current profile"] = true | 28 "Remove the bar from the current profile", | 
| 28 | 29 | 
| 29 -- modules/ReAction_HideBlizzard | 30 -- modules/ReAction_HideBlizzard | 
| 30 L["Hide Blizzard Action Bars"] = true | 31 "Hide Blizzard Action Bars", | 
| 31 L["Hide the default main bar and extra action bars"] = true | 32 "Hide the default main bar and extra action bars", | 
| 32 | 33 | 
| 33 -- modules/ReAction_Action | 34 -- modules/ReAction_Action | 
| 34 L["New Action Bar"] = true | 35 "New Action Bar", | 
| 35 L["Create a new bar of standard action buttons"] = true | 36 "Create a new bar of standard action buttons", | 
| 36 | 37 | 
| 37 -- modules/ReAction_ConfigUI | 38 -- modules/ReAction_ConfigUI | 
| 38 L["Customizable replacement for Blizzard's Action Bars"] = true | 39 "Customizable replacement for Blizzard's Action Bars", | 
| 39 L["Global Settings"] = true | 40 "Global Settings", | 
| 40 L["Global configuration settings"] = true | 41 "Global configuration settings", | 
| 41 L["Unlock Bars"] = true | 42 "Unlock Bars", | 
| 42 L["Unlock bars for dragging and resizing with the mouse"] = true | 43 "Unlock bars for dragging and resizing with the mouse", | 
| 43 L["Module Settings"] = true | 44 "Module Settings", | 
| 44 L["Configuration settings for each module"] = true | 45 "Configuration settings for each module", | 
| 45 L["Bar Config"] = true | 46 "Layout Editor...", | 
| 46 L["Configuration settings for bars"] = true | 47 "Show the ReAction Layout Editor to edit your bars", | 
| 47 --L["Rename Bar"] = true | 48 "Close on Launch", | 
| 48 --L["Set a name for the bar"] = true | 49 "Close the Interface Options window when launching the ReAction Layout Editor", | 
| 50 "Layout", | |
| 51 "Global Config", | |
| 52 "Opens ReAction global configuration settings panel", | |
| 53 "Close the Layout Editor when opening the ReAction global Interface Options", | |
| 54 "New Bar...", | |
| 55 "Choose a name, type, and initial grid for your new action bar:", | |
| 56 "Bar Name", | |
| 57 "Enter a name for your new action bar", | |
| 58 "Button Type", | |
| 59 "Create Bar", | |
| 60 "General", | |
| 61 "Rename Bar", | |
| 62 "Delete Bar", | |
| 63 "Button Grid", | |
| 64 "Rows", | |
| 65 "Columns", | |
| 66 "Size", | |
| 67 "Spacing", | |
| 68 "Use the mouse to arrange and resize the bars on screen. Tooltips on bars indicate additional functionality.", | |
| 69 | |
| 70 | |
| 71 --"Rename Bar", | |
| 72 --"Set a name for the bar", | |
| 49 | 73 | 
| 50 -- modules/ReAction_State | 74 -- modules/ReAction_State | 
| 51 L["Dynamic Behavior"] = true | 75 "Dynamic Behavior", | 
| 76 }) do | |
| 77 L[string] = true | |
| 78 end | 
