From c99b4f996440345339f1e9c2f9a5f4b2ee637a34 Mon Sep 17 00:00:00 2001 From: pompachomp Date: Mon, 14 Sep 2009 05:35:17 +0000 Subject: [PATCH] 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 --- ARLConfig.lua | 4 ++-- ARLFrame.lua | 4 ++-- Locals/testenUS.lua | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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 -- 1.7.9.5