Quantcast

Reworded the following labels: "Known"->"Show Known" and "Unknown"->"Show Unknown" just to be more clear since those two filters just affect the displayed recipe list and don't affect the progress bar numbers

pompachomp [09-14-09 - 05:35]
Reworded the following labels: "Known"->"Show Known" and "Unknown"->"Show Unknown" just to be more clear since those two filters just affect the displayed recipe list and don't affect the progress bar numbers
Filename
ARLConfig.lua
ARLFrame.lua
Locals/testenUS.lua
diff --git a/ARLConfig.lua b/ARLConfig.lua
index 1a04516..94b6086 100644
--- a/ARLConfig.lua
+++ b/ARLConfig.lua
@@ -115,7 +115,7 @@ local function giveFilter()
 						known = {
 							order	= 6,
 							type	= "toggle",
-							name	= L["Known"],
+							name	= L["Show Known"],
 							desc	= L["KNOWN_DESC"],
 							get		= function() return addon.db.profile.filters.general.known end,
 							set		= function() addon.db.profile.filters.general.known = not addon.db.profile.filters.general.known end,
@@ -123,7 +123,7 @@ local function giveFilter()
 						unknown = {
 							order	= 7,
 							type	= "toggle",
-							name	= L["Unknown"],
+							name	= L["Show Unknown"],
 							desc	= L["UNKNOWN_DESC"],
 							get		= function() return addon.db.profile.filters.general.unknown end,
 							set		= function() addon.db.profile.filters.general.unknown = not addon.db.profile.filters.general.unknown end,
diff --git a/ARLFrame.lua b/ARLFrame.lua
index 3764236..4e4b7cb 100644
--- a/ARLFrame.lua
+++ b/ARLFrame.lua
@@ -3849,11 +3849,11 @@ local function InitializeFrame()

 	local ARL_KnownCB = CreateFrame("CheckButton", "ARL_KnownCB", addon.Fly_General, "UICheckButtonTemplate")
 	addon:GenericMakeCB(ARL_KnownCB, addon.Fly_General, L["KNOWN_DESC"], "known", 4, 1, 0)
-	ARL_KnownCBText:SetText(L["Known"])
+	ARL_KnownCBText:SetText(L["Show Known"])

 	local ARL_UnknownCB = CreateFrame("CheckButton", "ARL_UnknownCB", addon.Fly_General, "UICheckButtonTemplate")
 	addon:GenericMakeCB(ARL_UnknownCB, addon.Fly_General, L["UNKNOWN_DESC"], "unknown", 5, 1, 0)
-	ARL_UnknownCBText:SetText(L["Unknown"])
+	ARL_UnknownCBText:SetText(L["Show Unknown"])

 	local ARL_ClassButton = addon:GenericCreateButton("ARL_ClassButton", addon.Fly_General,
 							  20, 105, "TOPLEFT", ARL_UnknownCB, "BOTTOMLEFT", -4, 6, "GameFontHighlight",
diff --git a/Locals/testenUS.lua b/Locals/testenUS.lua
index c1648db..2d32c34 100644
--- a/Locals/testenUS.lua
+++ b/Locals/testenUS.lua
@@ -261,9 +261,9 @@ L["Specialties"]			= true
 L["SPECIALTY_DESC"]			= "Include all trade-skill specialties in the scan."
 L["Skill"]					= true
 L["SKILL_DESC"]				= "Include all recipes in the scan, regardless of your current skill level."
-L["Known"]					= true
+L["Show Known"]					= true
 L["KNOWN_DESC"]				= "Include all known recipes in the scan."
-L["Unknown"]				= true
+L["Show Unknown"]				= true
 L["UNKNOWN_DESC"]			= "Include all unknown recipes in the scan."

 -- Obtain Filter UI Elements and their associated descriptions