Quantcast

Reordered some of the option modules under Ackis Recipe List in the Interface Options.

pompachomp [12-14-09 - 22:07]
Reordered some of the option modules under Ackis Recipe List in the Interface Options.
Reworded some phrases.
Updated the Spanish translation for the description, on the main ARL page and the wowwiki page.
Filename
Config.lua
Docs/Main.txt
Docs/Wowwiki.txt
Locals/testenUS.lua
diff --git a/Config.lua b/Config.lua
index 54e9c85..0251cdb 100644
--- a/Config.lua
+++ b/Config.lua
@@ -369,7 +369,7 @@ local function giveDatamine()
 				},
 				scanprofessiontooltip = {
 					type = "input",
-					name = L["Scan Professions"],
+					name = L["Scan A Profession"],
 					desc = L["SCAN_PROF_DB_DESC"],
 					get = false,
 					set = function(info, v) addon:ScanProfession(v) end,
@@ -377,7 +377,7 @@ local function giveDatamine()
 				},
 				scanspellid = {
 					type = "input",
-					name = L["Scan Spell ID"],
+					name = L["Scan A Spell ID"],
 					desc = L["SCAN_SPELL_ID_DESC"],
 					get = false,
 					set = function(info, v) addon:TooltipScanRecipe(tonumber(v),false,false) end,
@@ -672,19 +672,19 @@ function addon:SetupOptions()
 	AceConfigReg:RegisterOptionsTable(MODNAME, fullOptions)
 	self.optionsFrame = AceConfigDialog:AddToBlizOptions(MODNAME, nil, nil, "general")

-	-- Add in the about panel to the Bliz options (but not the ace3 config)
+	-- Register the module options
+	self:RegisterModuleOptions("Profiles", giveProfiles(), L["Profile Options"])
+	self:RegisterModuleOptions("Datamining", giveDatamine(), L["Datamine Options"])
+	self:RegisterModuleOptions("Display", giveDisplay(), L["Display Options"])
+	self:RegisterModuleOptions("Map", giveMap(), L["Map Options"])
+	self:RegisterModuleOptions("Documentation", giveDocs(), L["ARL Documentation"])
+
+	-- Add in the about panel to the Bliz options (not apart of the ace3 config)
 	if LibStub:GetLibrary("LibAboutPanel", true) then
 		self.optionsFrame["About"] = LibStub:GetLibrary("LibAboutPanel").new(MODNAME, MODNAME)
 	else
 		self:Print("Lib AboutPanel not loaded.")
-	end
-
-	-- Fill up our modular options...
-	self:RegisterModuleOptions("Datamining", giveDatamine(), L["Datamine Options"])
-	self:RegisterModuleOptions("Display", giveDisplay(), L["Display Options"])
-	self:RegisterModuleOptions("Documentation", giveDocs(), L["ARL Documentation"])
-	self:RegisterModuleOptions("Map", giveMap(), L["Map Options"])
-	self:RegisterModuleOptions("Profiles", giveProfiles(), L["Profile Options"])
+	end
 end

 -- Description: Function which extends our options table in a modular way
diff --git a/Docs/Main.txt b/Docs/Main.txt
index 6568aa6..43e0c89 100644
--- a/Docs/Main.txt
+++ b/Docs/Main.txt
@@ -22,7 +22,7 @@ Ackis Rezeptliste ist ein Add-on, das deine Berufe durchsucht und dir mitteilt,
 의 제조법 리스트캐릭터가 배우지 못한 제조법을 표시합니다. 모든 전문기술 및 도적의 독과 사냥꾼의 야수 훈련도 포함합니다.

 =====Spanish (esES)
-Muestra una lista de recetas inexistentes para sus Habilidades de Comercio. Funciona con todas las habilidades comerciales, incluidas venenos y entrenamiento de bestias del cazador.
+Ackis Recipe List es un addon que escanea tus habilidades comerciales y provee información de cómo obtener las recetas. Funciona para todas las habilidades comerciales, incluida Forja de Runas.

 =====Simplified Chinese (zhCN)
 全面详细的商业技能信息插件,包括毒药和宠物技能.
diff --git a/Docs/Wowwiki.txt b/Docs/Wowwiki.txt
index fe84512..5c24102 100644
--- a/Docs/Wowwiki.txt
+++ b/Docs/Wowwiki.txt
@@ -30,7 +30,7 @@ Ackis의 제조법 리스트
 캐릭터가 배우지 못한 제조법을 표시합니다. 모든 전문기술 및 도적의 독과 사냥꾼의 야수 훈련도 포함합니다

 ===Spanish (esES)===
-Muestra una lista de recetas inexistentes para sus Habilidades de Comercio. Funciona con todas las habilidades comerciales, incluidas venenos y entrenamiento de bestias del cazador.
+Ackis Recipe List es un addon que escanea tus habilidades comerciales y provee información de cómo obtener las recetas. Funciona para todas las habilidades comerciales, incluida Forja de Runas.

 ===Simplified Chinese (zhCN)===
 全面详细的商业技能信息插件,包括毒药和宠物技能.
diff --git a/Locals/testenUS.lua b/Locals/testenUS.lua
index 96d39a6..bdfdfbe 100644
--- a/Locals/testenUS.lua
+++ b/Locals/testenUS.lua
@@ -395,9 +395,9 @@ L["Scan Entire Database"] = true
 L["SCAN_ENTIRE_DB_DESC"] = "Loads the entire recipe database, and scans every single recipes tooltip checking the flags.  This will lag your computer and use a lot of memory."
 L["Scan Vendor"] = true
 L["SCAN_VENDOR_DESC"] = "Scans the currently opened vendor for recipes and compares the information with the internal database."
-L["Scan Professions"] = true
+L["Scan A Profession"] = true
 L["SCAN_PROF_DB_DESC"] = "Scans a specified profession (lower case name or spell id) in the recipe database, scanning the tooltips and comparing them with the internal database."
-L["Scan Spell ID"] = true
+L["Scan A Spell ID"] = true
 L["SCAN_SPELL_ID_DESC"] = "Scans a specified spell ID, scanning its tooltip and comparing it with the internal database."
 L["Auto Scan Vendors"] = true
 L["AUTOSCAN_VENDORS_DESC"] = "Turns on scanning at vendors to compare skill levels, and recipe acquire methods."