From 6cc65f424690f8a4a33bf2ac7a735b108fe6a0c6 Mon Sep 17 00:00:00 2001 From: Alar of Daggerspine Date: Thu, 19 Mar 2015 09:15:34 +0100 Subject: [PATCH] Fixed some phrases Signed-off-by: Alar of Daggerspine --- GarrisonCommander.lua | 5 ++--- MissionControl.lua | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/GarrisonCommander.lua b/GarrisonCommander.lua index b9bd42f..c0cffd0 100644 --- a/GarrisonCommander.lua +++ b/GarrisonCommander.lua @@ -411,13 +411,13 @@ function addon:CheckMP() end if GetAddOnMetadata("MasterPlan","Version")>="0.23" then -- New compatible version - self:AddToggle("CKMP",true,L["Use GC Interface"],L["Switches between Garrison Commander and Master Plan mission interface. Tested with MP >0.23"]) + self:AddToggle("CKMP",true,L["Use GC Interface"],L["GCMPSWITCH"]) MPGoodGuy=true MPSwitch=true end MP=true MPSwitch=true - self:AddToggle("CKMP",true,L["Use GC Interface"],L["Switches between Garrison Commander and Master Plan mission interface. Tested with MP >0.20"]) + self:AddToggle("CKMP",true,L["Use GC Interface"],L["GCMPSWITCH"]) end end function addon:CheckGMM() @@ -999,7 +999,6 @@ Since 2.0.2, the "big screen" mode became optional. If you choosed to disable it

Mission Control:

Thanks to Motig which donated the code, we have an auto lancher for mission
You specify some criteria mission should satisfy (success chance, rewards type etc) and matching missions will be autosubmitted
-BE WARNED, FEATURE IS |cffff0000EXPERIMENTAL|r

]] if (MP) then diff --git a/MissionControl.lua b/MissionControl.lua index 55e0570..e4cd6df 100644 --- a/MissionControl.lua +++ b/MissionControl.lua @@ -273,8 +273,8 @@ function addon:GMCBuildPanel(bigscreen) GMC.runButton:SetText('Send all mission at once') GMC.runButton:SetScript('OnEnter', function() GameTooltip:SetOwner(GMC.runButton, 'ANCHOR_TOPRIGHT') - GameTooltip:AddLine('Submit all yopur mission at once. No question asked.') - GameTooltip:AddLine('You can also send mission one by one clicking on each button.') + GameTooltip:AddLine(L["Submit all your mission at once. No question asked."]) + GameTooltip:AddLine(L["You can also send mission one by one clicking on each button."]) GameTooltip:Show() end) GMC.runButton:SetScript('OnLeave', function() GameTooltip:Hide() end) -- 1.7.9.5