annotate locale/enUS.lua @ 59:7430a8dd4e90

Added modular per-bar options
author Flick <flickerstreak@gmail.com>
date Mon, 28 Apr 2008 23:34:17 +0000
parents 20003239af0b
children 44649a10378d
rev   line source
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@52 23 "Shift-drag",
flickerstreak@52 24 "to anchor to nearby frames",
flickerstreak@52 25 "Right-click",
flickerstreak@52 26 "for options",
flickerstreak@52 27 "Currently anchored to <%s>",
flickerstreak@58 28 "Settings...",
flickerstreak@58 29 "Open the editor for this bar",
flickerstreak@47 30 "Delete Bar",
flickerstreak@47 31 "Remove the bar from the current profile",
flickerstreak@50 32 "Are you sure you want to remove this bar?",
flickerstreak@23 33
flickerstreak@23 34 -- modules/ReAction_HideBlizzard
flickerstreak@47 35 "Hide Blizzard Action Bars",
flickerstreak@47 36 "Hide the default main bar and extra action bars",
flickerstreak@23 37
flickerstreak@23 38 -- modules/ReAction_Action
flickerstreak@48 39 "Action Bar",
flickerstreak@49 40 "Hide Empty Buttons",
flickerstreak@59 41 "Action Buttons",
flickerstreak@23 42
flickerstreak@53 43 -- modules/ReAction_PetAction
flickerstreak@53 44 "Pet Action Bar",
flickerstreak@59 45 "Pet Buttons",
flickerstreak@53 46
flickerstreak@54 47 -- modules/ReAction_PossessBar
flickerstreak@54 48 "Possess Bar",
flickerstreak@54 49 "Hide Empty Possess Bar Buttons",
flickerstreak@59 50 "Possess Buttons",
flickerstreak@54 51
flickerstreak@23 52 -- modules/ReAction_ConfigUI
flickerstreak@51 53 "Center",
flickerstreak@51 54 "Left",
flickerstreak@51 55 "Right",
flickerstreak@51 56 "Top",
flickerstreak@51 57 "Bottom",
flickerstreak@51 58 "Top Left",
flickerstreak@51 59 "Top Right",
flickerstreak@51 60 "Bottom Left",
flickerstreak@51 61 "Bottom Right",
flickerstreak@47 62 "Customizable replacement for Blizzard's Action Bars",
flickerstreak@47 63 "Global Settings",
flickerstreak@47 64 "Global configuration settings",
flickerstreak@47 65 "Unlock Bars",
flickerstreak@47 66 "Unlock bars for dragging and resizing with the mouse",
flickerstreak@47 67 "Module Settings",
flickerstreak@47 68 "Configuration settings for each module",
flickerstreak@58 69 "Edit Bars...",
flickerstreak@58 70 "Show the ReAction Bar Editor dialogue",
flickerstreak@47 71 "Close on Launch",
flickerstreak@58 72 "Close the Interface Options window when launching the ReAction Bar Editor",
flickerstreak@58 73 "Bar Editor",
flickerstreak@47 74 "Global Config",
flickerstreak@47 75 "Opens ReAction global configuration settings panel",
flickerstreak@58 76 "Close the Bar Editor when opening the ReAction global Interface Options",
flickerstreak@47 77 "New Bar...",
flickerstreak@47 78 "Choose a name, type, and initial grid for your new action bar:",
flickerstreak@47 79 "Bar Name",
flickerstreak@47 80 "Enter a name for your new action bar",
flickerstreak@47 81 "Button Type",
flickerstreak@47 82 "Create Bar",
flickerstreak@47 83 "General",
flickerstreak@47 84 "Rename Bar",
flickerstreak@47 85 "Delete Bar",
flickerstreak@51 86 "Anchor",
flickerstreak@51 87 "Frame",
flickerstreak@51 88 "The frame that the bar is anchored to",
flickerstreak@51 89 "Point",
flickerstreak@51 90 "Anchor point on the bar frame",
flickerstreak@51 91 "Relative Point",
flickerstreak@51 92 "Anchor point on the target frame",
flickerstreak@51 93 "X offset",
flickerstreak@51 94 "Y offset",
flickerstreak@47 95 "Button Grid",
flickerstreak@47 96 "Rows",
flickerstreak@47 97 "Columns",
flickerstreak@47 98 "Size",
flickerstreak@47 99 "Spacing",
flickerstreak@47 100 "Use the mouse to arrange and resize the bars on screen. Tooltips on bars indicate additional functionality.",
flickerstreak@47 101
flickerstreak@47 102
flickerstreak@47 103 --"Rename Bar",
flickerstreak@47 104 --"Set a name for the bar",
flickerstreak@23 105
flickerstreak@23 106 -- modules/ReAction_State
flickerstreak@47 107 "Dynamic Behavior",
flickerstreak@47 108 }) do
flickerstreak@47 109 L[string] = true
flickerstreak@47 110 end