From 4e7c03a1cb328ef3148ceaa7625f26f297df5e63 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Mon, 18 Nov 2013 06:28:20 +0400 Subject: [PATCH] Stupid Blizz globl strings --- ElvUI_SLE/locales/english.lua | 1 + ElvUI_SLE/locales/russian.lua | 1 + ElvUI_SLE/modules/datatexts/played.lua | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) 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) -- 1.7.9.5