diff 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
line wrap: on
line diff
--- a/locale/enUS.lua	Thu Apr 10 23:27:58 2008 +0000
+++ b/locale/enUS.lua	Fri Apr 11 22:21:28 2008 +0000
@@ -1,51 +1,78 @@
 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true)
 if not L then return end
 
+for _, string in pairs({
 -- bindings.lua
-L["ReAction"] = true
-L["Toggle ReAction Bar Lock"] = true
-L["ReAction Keybinding Mode"] = true
+"ReAction",
+"Toggle ReAction Bar Lock",
+"ReAction Keybinding Mode",
 
 -- ReAction.lua
-L["Bar "] = true
-L["ReAction: name already in use"] = true
-L["ReAction config mode disabled during combat."] = true
+"Bar ",
+"ReAction: name already in use",
+"ReAction config mode disabled during combat.",
 
 -- Bar.lua
-L["Drag to add/remove buttons"] = true
-L["Drag to resize buttons"] = true
-L["Right-click-drag"] = true
-L["to change spacing"] = true
-L["Size:"] = true
-L["Spacing:"] = true
-L["Drag to move"] = true
-L["Shift-drag for sticky mode"] = true
-L["Right-click for options"] = true
-L["Configure..."] = true
-L["Open the configuration dialogue for this bar"] = true
-L["Delete Bar"] = true
-L["Remove the bar from the current profile"] = true
+"Drag to add/remove buttons",
+"Drag to resize buttons",
+"Right-click-drag",
+"to change spacing",
+"Size:",
+"Spacing:",
+"Drag to move",
+"Shift-drag for sticky mode",
+"Right-click for options",
+"Configure...",
+"Open the configuration dialogue for this bar",
+"Delete Bar",
+"Remove the bar from the current profile",
 
 -- modules/ReAction_HideBlizzard
-L["Hide Blizzard Action Bars"] = true
-L["Hide the default main bar and extra action bars"] = true
+"Hide Blizzard Action Bars",
+"Hide the default main bar and extra action bars",
 
 -- modules/ReAction_Action
-L["New Action Bar"] = true
-L["Create a new bar of standard action buttons"] = true
+"New Action Bar",
+"Create a new bar of standard action buttons",
 
 -- modules/ReAction_ConfigUI
-L["Customizable replacement for Blizzard's Action Bars"] = true
-L["Global Settings"] = true
-L["Global configuration settings"] = true
-L["Unlock Bars"] = true
-L["Unlock bars for dragging and resizing with the mouse"] = true
-L["Module Settings"] = true
-L["Configuration settings for each module"] = true
-L["Bar Config"] = true
-L["Configuration settings for bars"] = true
---L["Rename Bar"] = true
---L["Set a name for the bar"] = true
+"Customizable replacement for Blizzard's Action Bars",
+"Global Settings",
+"Global configuration settings",
+"Unlock Bars",
+"Unlock bars for dragging and resizing with the mouse",
+"Module Settings",
+"Configuration settings for each module",
+"Layout Editor...",
+"Show the ReAction Layout Editor to edit your bars",
+"Close on Launch",
+"Close the Interface Options window when launching the ReAction Layout Editor",
+"Layout",
+"Global Config",
+"Opens ReAction global configuration settings panel",
+"Close the Layout Editor when opening the ReAction global Interface Options",
+"New Bar...",
+"Choose a name, type, and initial grid for your new action bar:",
+"Bar Name",
+"Enter a name for your new action bar",
+"Button Type",
+"Create Bar",
+"General",
+"Rename Bar",
+"Delete Bar",
+"Button Grid",
+"Rows",
+"Columns",
+"Size",
+"Spacing",
+"Use the mouse to arrange and resize the bars on screen. Tooltips on bars indicate additional functionality.",
+
+
+--"Rename Bar",
+--"Set a name for the bar",
 
 -- modules/ReAction_State
-L["Dynamic Behavior"] = true
+"Dynamic Behavior",
+}) do
+  L[string] = true
+end