annotate locale/enUS.lua @ 60:44649a10378d

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