diff 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
line wrap: on
line diff
--- a/locale/enUS.lua	Tue Mar 11 21:39:34 2008 +0000
+++ b/locale/enUS.lua	Mon Mar 17 18:24:53 2008 +0000
@@ -1,65 +1,61 @@
-AceLibrary("AceLocale-2.2"):new("ReAction"):RegisterTranslations( "enUS", 
-function() 
-return
-{
--- ReAction
-["ReAction"] = true,
-["Toggle ReAction Bar Lock"] = true,
-["ReAction Keybinding Mode"] = true,
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true)
+if L then
 
--- ReAction_Bar
-["Bar "] = true,
-["Delete Bar"] = true,
-["Remove the bar from the current profile"] = true,
-["Rename Bar"] = true,
-["Set a name for the bar"] = true,
-["ReAction: name already in use"] = true,
+-- bindings.lua
+L["ReAction"] = true
+L["Toggle ReAction Bar Lock"] = true
+L["ReAction Keybinding Mode"] = true
+
+-- ReAction.lua
+L["Bar "] = true
+L["ReAction: name already in use"] = true
 
 -- modules/ReAction_HideBlizzard
-["Hide Default Action Bars"] = true,
-["Hide the default main bar and extra action bars"] = true,
+L["Hide Default Action Bars"] = true
+L["Hide the default main bar and extra action bars"] = true
 
 -- modules/ReAction_Action
-["New Action Bar"] = true,
-["Create a new bar of standard action buttons"] = true,
+L["New Action Bar"] = true
+L["Create a new bar of standard action buttons"] = true
 
 -- modules/ReAction_ConfigUI
+L["Delete Bar"] = true
+L["Remove the bar from the current profile"] = true
+L["Rename Bar"] = true
+L["Set a name for the bar"] = true
   -- console commands
-["/reaction"] = true,
-["/rxn"] = true,
-["unlock"] = true,
-["config"] = true,
+L["/reaction"] = true
+L["/rxn"] = true
+L["unlock"] = true
+L["config"] = true
   -- messages
-["ReAction config mode disabled during combat."] = true,
+L["ReAction config mode disabled during combat."] = true
   -- tooltips
-["Drag to add/remove buttons"] = true,
-["Drag to resize buttons"] = true,
-["Right-click-drag"] = true,
-["to change spacing"] = true,
-["Size:"] = true,
-["Spacing:"] = true,
-["Drag to move"] = true,
-["Shift-drag for sticky mode"] = true,
-["Right-click for options"] = true,
+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
   -- global options
-["Unlock Bars"] = true,
-["Unlock bars for dragging and resizing with the mouse"] = true,
-["Configure..."] = true,
-["Open the configuration dialogue"] = true,
+L["Unlock Bars"] = true
+L["Unlock bars for dragging and resizing with the mouse"] = true
+L["Configure..."] = true
+L["Open the configuration dialogue"] = true
   -- bar menu options
-["Open the configuration dialogue for this bar"] = true,
+L["Open the configuration dialogue for this bar"] = true
   -- waterfall options
-["Global Settings"] = true,
-["Global configuration settings"] = true,
-["Module Settings"] = true,
-["Configuration settings for each module"] = true,
-["Bars"] = true,
-["Configuration settings for bars"] = true,
+L["Global Settings"] = true
+L["Global configuration settings"] = true
+L["Module Settings"] = true
+L["Configuration settings for each module"] = true
+L["Bars"] = true
+L["Configuration settings for bars"] = true
 
 -- modules/ReAction_State
-["Dynamic Behavior"] = true,
+L["Dynamic Behavior"] = true
 
-
-} 
 end
-)