changeset 253:be7cd1862edc

Add WoWAce localization stubs
author Flick
date Mon, 04 Apr 2011 11:02:34 -0700
parents 7c62b9b7a70f
children 087ab3fd9e63
files locale/deDE.lua locale/enUS.lua locale/esES.lua locale/esMX.lua locale/frFR.lua locale/koKR.lua locale/locale.xml locale/ruRU.lua locale/zhCN.lua locale/zhTW.lua
diffstat 10 files changed, 114 insertions(+), 69 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/deDE.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","deDE")
+if not L then return end
+
+--@localization(locale="deDE", format="lua_additive_table")@
--- a/locale/enUS.lua	Mon Mar 28 16:25:32 2011 -0700
+++ b/locale/enUS.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -1,7 +1,7 @@
 local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","enUS",true)
 if not L then return end
 
-for _, string in pairs({
+for _, s in pairs({
 
 -- ReAction.lua
 "ReAction: name '%s' already in use",
@@ -78,50 +78,35 @@
 "X offset",
 "Y offset",
 "Transparency",
-
--- classes/ActionButton.lua
-"Action Bar",
-"Action ID range is 1-120",
-
--- classes/BagButton.lua --
-"Bag Bar",
-
--- classes/Bar.lua
-"Hidden",
-
--- classes/Button.lua --
-"Button Bar",
-
--- classes/Overlay.lua
-"Hold Shift",
-"Hold Alt",
-"Right-click",
-"Drag",
-"to add/remove buttons:",
-"to resize buttons:",
-"to change spacing:",
-"to change scale:",
-"to move",
-"to anchor to nearby frames",
-"for options...",
-"Currently anchored to",
-"State",
-"State Scale Override",
-
--- classes/MultiCastButton.lua
-"Totem Bar",
-
--- classes/PetActionButton.lua
-"Pet Action Bar",
-"Pet action ID range is 1-10",
-
--- classes/StanceButton.lua
-"Stance Bar",
-
--- classes/VehicleExitButton.lua
-"Exit Vehicle Floater",
-
--- modules/State.lua
+"Action Bars",
+"Hide Empty Buttons",
+"Lock Buttons",
+"Prevents picking up/dragging actions (use SHIFT to override this behavior)",
+"Only in Combat",
+"Only lock the buttons when in combat",
+"# Pages",
+"Use the Dynamic State tab to specify page transitions",
+"Edit Action IDs",
+"Assign",
+"Choose Method...",
+"Individually",
+"All at Once",
+"Row",
+"Rows are numbered top to bottom",
+"Col",
+"Columns are numbered left to right",
+"Page",
+"Action ID",
+"Specify ID 1-120",
+"ID List",
+"Specify a comma-separated list of IDs for each button in the bar (in order). Separate multiple pages with semicolons (;)",
+"Invalid action ID list string",
+"Mind Control Support",
+"When possessing a target (e.g. via Mind Control), map the first 12 buttons of this bar to the possessed target's actions.",
+"Vehicle Support",
+"When on a vehicle, map the first 6 buttons of this bar to the vehicle actions. The vehicle-exit button is mapped to the 7th button. Pitch controls are not supported.",
+"Show Page #",
+"Action Buttons",
 "State named '%s' already exists",
 "Battle Stance",
 "Defensive Stance",
@@ -202,42 +187,7 @@
 "State names must be alphanumeric without spaces",
 "Create State",
 "State named '%s' already exists",
-
--- modules/Action.lua
-"Action Bars",
-"Hide Empty Buttons",
-"Lock Buttons",
-"Prevents picking up/dragging actions (use SHIFT to override this behavior)",
-"Only in Combat",
-"Only lock the buttons when in combat",
-"# Pages",
-"Use the Dynamic State tab to specify page transitions",
-"Edit Action IDs",
-"Assign",
-"Choose Method...",
-"Individually",
-"All at Once",
-"Row",
-"Rows are numbered top to bottom",
-"Col",
-"Columns are numbered left to right",
-"Page",
-"Action ID",
-"Specify ID 1-120",
-"ID List",
-"Specify a comma-separated list of IDs for each button in the bar (in order). Separate multiple pages with semicolons (;)",
-"Invalid action ID list string",
-"Mind Control Support",
-"When possessing a target (e.g. via Mind Control), map the first 12 buttons of this bar to the possessed target's actions.",
-"Vehicle Support",
-"When on a vehicle, map the first 6 buttons of this bar to the vehicle actions. The vehicle-exit button is mapped to the 7th button. Pitch controls are not supported.",
-"Show Page #",
-"Action Buttons",
-
--- modules/PetAction.lua
 "Pet Buttons",
-
--- modules/Stance.lua
 "Stance Buttons",
 "Show Aspects",
 "Show Hunter aspects as stances",
@@ -247,13 +197,54 @@
 "Do not show Death Knight Presences as stances",
 "Hide Auras",
 "Do not show Paladin Auras as stances",
-
--- modules/VehicleExit.lua
 "Exit Vehicle",
 "Show only when passenger",
 "Only show the button when riding as a passenger in a vehicle (no vehicle controls)",
 
+-- ActionButton.lua
+"Action Bar",
+"Action ID range is 1-120",
+
+-- BagButton.lua --
+"Bag Bar",
+
+-- Bar.lua
+"Hidden",
+
+-- Button.lua --
+"Button Bar",
+
+-- Overlay.lua
+"Hold Shift",
+"Hold Alt",
+"Right-click",
+"Drag",
+"to add/remove buttons:",
+"to resize buttons:",
+"to change spacing:",
+"to change scale:",
+"to move",
+"to anchor to nearby frames",
+"for options...",
+"Currently anchored to",
+"State",
+"State Scale Override",
+
+-- MultiCastButton.lua
+"Totem Bar",
+
+-- PetActionButton.lua
+"Pet Action Bar",
+"Pet action ID range is 1-10",
+
+-- StanceButton.lua
+"Stance Bar",
+
+-- VehicleExitButton.lua
+"Exit Vehicle Floater",
+
+
 
 }) do
-  L[string] = true
+  L[s] = true
 end
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/esES.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","esES")
+if not L then return end
+
+--@localization(locale="esES", format="lua_additive_table")@
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/esMX.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","esMX")
+if not L then return end
+
+--@localization(locale="esMX", format="lua_additive_table")@
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/frFR.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","frFR")
+if not L then return end
+
+--@localization(locale="frFR", format="lua_additive_table")@
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/koKR.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","koKR")
+if not L then return end
+
+--@localization(locale="koKR", format="lua_additive_table")@
--- a/locale/locale.xml	Mon Mar 28 16:25:32 2011 -0700
+++ b/locale/locale.xml	Mon Apr 04 11:02:34 2011 -0700
@@ -3,5 +3,13 @@
     xsi:schemaLocation="http://www.blizzard.com/wow/ui/..\FrameXML\UI.xsd">
 
   <Script file="enUS.lua"/>
+  <Script file="deDE.lua"/>
+  <Script file="esES.lua"/>
+  <Script file="esMX.lua"/>
+  <Script file="frFR.lua"/>
+  <Script file="koKR.lua"/>
+  <Script file="ruRU.lua"/>
+  <Script file="zhCN.lua"/>
+  <Script file="zhTW.lua"/>
 
 </Ui>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/ruRU.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","ruRU")
+if not L then return end
+
+--@localization(locale="ruRU", format="lua_additive_table")@
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/zhCN.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","zhCN")
+if not L then return end
+
+--@localization(locale="zhCN", format="lua_additive_table")@
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/locale/zhTW.lua	Mon Apr 04 11:02:34 2011 -0700
@@ -0,0 +1,4 @@
+local L = LibStub("AceLocale-3.0"):NewLocale("ReAction","zhTW")
+if not L then return end
+
+--@localization(locale="zhTW", format="lua_additive_table")@