Some more stuff
Darthpred [02-16-13 - 06:56]
diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua
index 991e10e..3963a78 100644
--- a/ElvUI_SLE/locales/english.lua
+++ b/ElvUI_SLE/locales/english.lua
@@ -89,7 +89,7 @@ L["Amount of messages to save. Set to 0 to disable."] = true
--Datatexts--
L["Bosses killed: "] = true
-L["No LFR is available for your lever/gear."] = true
+L["This LFR isn't available for your lever/gear."] = true
L["SLE_AUTHOR_INFO"] = "Shadow & Light Edit by Darth Predator & Repooc"
L["SLE_CONTACTS"] = [=[Bug reports, suggestions and other stuff accepted via:
- Private Massage on TukUI.org to Darth Predator or Repooc
diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua
index cd47bee..c9e33a0 100644
--- a/ElvUI_SLE/locales/russian.lua
+++ b/ElvUI_SLE/locales/russian.lua
@@ -72,7 +72,7 @@ L["Chat Editbox History"] = "История чата"
L["Amount of messages to save. Set to 0 to disable."] = "Количество сообщений, введенных вами, которое будет сохранено между сеансами"
--Datatexts--
-L["No LFR is available for your level/gear."] = "Нет ЛФР под ваш уровень/экипировку"
+L["This LFR isn't available for your lever/gear."] = "Это подземелье не доступно для Вашего уровня или экипировки."
L["Bosses killed: "] = "Боссов убито: "
L["SLE_AUTHOR_INFO"] = "Редакция \"Тень и Свет\" от Darth Predator и Repooc"
L["SLE_CONTACTS"] = [=[При возникновении вопросов, предложений и прочего обращаться:
diff --git a/ElvUI_SLE/modules/datatexts/lfr.lua b/ElvUI_SLE/modules/datatexts/lfr.lua
index 59dc1b4..57bf9e9 100644
--- a/ElvUI_SLE/modules/datatexts/lfr.lua
+++ b/ElvUI_SLE/modules/datatexts/lfr.lua
@@ -248,7 +248,7 @@ function DT:LFRShow()
if lvl == 85 and ilvl >= 372 then
DT:DragonSoul(416, 417)
else
- DT.tooltip:AddLine(" "..L["No LFR is available for your level/gear."])
+ DT.tooltip:AddLine(" "..L["This LFR isn't available for your lever/gear."])
end
DT.tooltip:AddLine(" ")
end
@@ -257,7 +257,7 @@ function DT:LFRShow()
if lvl == 90 and ilvl >= 460 then
DT:Mogushan(527, 528)
else
- DT.tooltip:AddLine(" "..L["No LFR is available for your level/gear."])
+ DT.tooltip:AddLine(" "..L["This LFR isn't available for your lever/gear."])
end
DT.tooltip:AddLine(" ")
end
@@ -267,7 +267,7 @@ function DT:LFRShow()
if lvl == 90 and ilvl >= 470 then
DT:HoF(529, 530)
else
- DT.tooltip:AddLine(" "..L["No LFR is available for your level/gear."])
+ DT.tooltip:AddLine(" "..L["This LFR isn't available for your lever/gear."])
end
DT.tooltip:AddLine(" ")
end
@@ -277,7 +277,7 @@ function DT:LFRShow()
if lvl == 90 and ilvl >= 470 then
DT:ToES(526)
else
- DT.tooltip:AddLine(" "..L["No LFR is available for your level/gear."])
+ DT.tooltip:AddLine(" "..L["This LFR isn't available for your lever/gear."])
end
DT.tooltip:AddLine(" ")
end
@@ -287,8 +287,11 @@ function DT:LFRShow()
if lvl == 90 and ilvl >= 480 then
DT:ToT(610, 611, 612, 613)
else
- DT.tooltip:AddLine(" "..L["No LFR is available for your level/gear."])
+ DT.tooltip:AddLine(" "..L["This LFR isn't available for your lever/gear."])
end
DT.tooltip:AddLine(" ")
end
+ if not E.db.sle.lfrshow.ds and not E.db.sle.lfrshow.mv and not E.db.sle.lfrshow.hof and not E.db.sle.lfrshow.toes and not E.db.sle.lfrshow.tot then
+ DT.tooltip:AddLine(" "..L["You didn't select any instance to track."])
+ end
end