Quantcast

Stupid Blizz globl strings

Darthpred [11-18-13 - 02:28]
Stupid Blizz globl strings
Filename
ElvUI_SLE/locales/english.lua
ElvUI_SLE/locales/russian.lua
ElvUI_SLE/modules/datatexts/played.lua
diff --git a/ElvUI_SLE/locales/english.lua b/ElvUI_SLE/locales/english.lua
index 82545bb..ecae31f 100755
--- a/ElvUI_SLE/locales/english.lua
+++ b/ElvUI_SLE/locales/english.lua
@@ -158,6 +158,7 @@ L["Show/Hide the status of Key to the Palace of Lei Shen and Trove of the Thunde
 L["Time Played"] = true
 L["Account Time Played"] = true
 L["D"] = true
+L["Previous Level:"] = true

 --Exp/Rep Bar--
 L["Xp-Rep Text"] = true
diff --git a/ElvUI_SLE/locales/russian.lua b/ElvUI_SLE/locales/russian.lua
index ab16c8c..61d58d1 100755
--- a/ElvUI_SLE/locales/russian.lua
+++ b/ElvUI_SLE/locales/russian.lua
@@ -159,6 +159,7 @@ L["Show/Hide the status of Key to the Palace of Lei Shen and Trove of the Thunde
 L["Time Played"] = "Времени в игре"
 L["Account Time Played"] = "Время в игре на аккаунте"
 L["D"] = "Дн"
+L["Previous Level:"] = "Предыдущий уровень:"

 --Exp/Rep Bar--
 L["Xp-Rep Text"] = "Текст Опыта/Репутации"
diff --git a/ElvUI_SLE/modules/datatexts/played.lua b/ElvUI_SLE/modules/datatexts/played.lua
index b79d0a6..6d78259 100644
--- a/ElvUI_SLE/modules/datatexts/played.lua
+++ b/ElvUI_SLE/modules/datatexts/played.lua
@@ -24,7 +24,7 @@ local OnEnter = function(self)
 		DT.tooltip:AddLine(' ')
 		DT.tooltip:AddDoubleLine(L["Session:"], SessionDay > 0 and format(PlayedTimeFormatFull, SessionDay, SessionHour, SessionMinute, SessionSecond) or format(PlayedTimeFormatNoDay, SessionHour, SessionMinute, SessionSecond), 1, 1, 1, 1, 1, 1)
 		if LastLevelSecond > 0 then
-			DT.tooltip:AddDoubleLine(format('%s %s:', PREVIOUS, LEVEL), LastLevelDay > 0 and format(PlayedTimeFormatFull, LastLevelDay. LastLevelHour, LastLevelMinute, LastLevelSecond) or format(PlayedTimeFormatNoDay, LastLevelHour, LastLevelMinute, LastLevelSecond), 1, 1, 1, 1, 1, 1)
+			DT.tooltip:AddDoubleLine(L["Previous Level:"], LastLevelDay > 0 and format(PlayedTimeFormatFull, LastLevelDay. LastLevelHour, LastLevelMinute, LastLevelSecond) or format(PlayedTimeFormatNoDay, LastLevelHour, LastLevelMinute, LastLevelSecond), 1, 1, 1, 1, 1, 1)
 		end
 		DT.tooltip:AddDoubleLine(LEVEL..':', LevelDay > 0 and format(PlayedTimeFormatFull, LevelDay, LevelHour, LevelMinute, LevelSecond) or format(PlayedTimeFormatNoDay, LevelHour, LevelMinute, LevelSecond), 1, 1, 1, 1, 1, 1)
 		--DT.tooltip:AddDoubleLine(LEVEL..':', LevelDay > 0 and format(PlayedTimeFormatFull, LevelDay. LevelHour, LevelMinute, LevelSecond) or format(PlayedTimeFormatNoDay, LevelHour, LevelMinute, LevelSecond), 1, 1, 1, 1, 1, 1)