faaf6380ae
- Plugin 'Tiny Threat': fixed player name where it was showing the realm name too. - Plugin 'Vanguard': fixed frame details (clicking on a bar) shown behind the Vanguard panel. - Plugin 'Vanguard': fixed a problem when clicking with right button wasn't opening the bookmark panel. - Plugin 'Vanguard': incoming heals now count shield amount on the player too. - Plugin 'Vanguard' Known Bug: incoming damage and melee vs avoidance seems to be inaccurate by now, we need more time to study and fix it. - Added Twins Ogron's Charge as custom spells, one for the charge by him self and other for the copies (mythic only). - Fixed few issues when using class text colors. - Fixed characters name outside instances, now it replaces the realm name with a * and show the complete name on tooltip. - Fixed damage mitigation on damage taken, this affects only specific classes like monk tank. - Fixed auto erase poping up when the player enters on its garrison. - Fixed segments tooltip showing trash cleanup segments inside garrisons. - Fixed command /details disable, wasn't disabling the capture of cooldowns. - Fixed a problem with fast dps/hps when the window is in a empty segment. - Fixed an issue using bookmark panel where it wasn't changing the display when the window is in a plugin mode.
65 lines
2.8 KiB
Lua
65 lines
2.8 KiB
Lua
local Loc = LibStub("AceLocale-3.0"):NewLocale("DetailsDmgRank", "enUS", true)
|
|
|
|
if (not Loc) then
|
|
return
|
|
end
|
|
|
|
--> Labels:
|
|
Loc ["STRING_PLUGIN_NAME"] = "Damage, the Game!"
|
|
Loc ["STRING_CURRENTRANK"] = "Your current rank is:"
|
|
Loc ["STRING_ANNOUNCE"] = "announce"
|
|
Loc ["STRING_ANNOUNCE_STRING"] = "has reached the level"
|
|
Loc ["STRING_ANNOUNCE_ON"] = "on"
|
|
Loc ["STRING_LASTTRIES"] = "Recent Attempts"
|
|
Loc ["STRING_LASTRANKS"] = "Last Ranks:"
|
|
Loc ["STRING_DAMAGEIN"] = "damage over"
|
|
Loc ["STRING_SECONDS"] = "seconds"
|
|
Loc ["STRING_RANK"] = "rank"
|
|
Loc ["STRING_CANCELLED"] = "This attempt has been cancelled."
|
|
Loc ["STRING_CANCELLED_NOT_COMBAT"] = "This attempt has been cancelled: you aren't in combat."
|
|
Loc ["STRING_CANCELLED_IN_GROUP"] = "This attempt has been cancelled: you are in a group."
|
|
Loc ["STRING_CANCELLED_AURA"] = "This attempt has been cancelled: prohibited aura: "
|
|
Loc ["STRING_HELP"] = "Damage Rank is a fun tool where your goal is reach the requested damage within the given time. Completing the mission, your rank increases and the challenge becomes harder and harder."
|
|
|
|
--> Challenge Names:
|
|
Loc ["CHALLENGENAME_1"] = "Ready to Raid"
|
|
Loc ["CHALLENGENAME_2"] = "Damage Practice"
|
|
Loc ["CHALLENGENAME_3"] = "The Training Continue"
|
|
Loc ["CHALLENGENAME_4"] = "You Just Need a Little More Time"
|
|
Loc ["CHALLENGENAME_5"] = "Became a Knight"
|
|
Loc ["CHALLENGENAME_6"] = "60*2 Seconds"
|
|
Loc ["CHALLENGENAME_7"] = "Hand of Mithril"
|
|
Loc ["CHALLENGENAME_8"] = "The High Knight"
|
|
Loc ["CHALLENGENAME_9"] = "Yes Sir!"
|
|
Loc ["CHALLENGENAME_10"] = "Salute"
|
|
Loc ["CHALLENGENAME_11"] = "In Burst We Trust"
|
|
Loc ["CHALLENGENAME_12"] = "Watch me Explode"
|
|
Loc ["CHALLENGENAME_13"] = "T.N.T"
|
|
Loc ["CHALLENGENAME_14"] = "Time is Damage My Friend"
|
|
Loc ["CHALLENGENAME_15"] = "Just a Little Patience"
|
|
Loc ["CHALLENGENAME_16"] = "I'm D.P.S And I Know It"
|
|
Loc ["CHALLENGENAME_17"] = "Gear Check"
|
|
Loc ["CHALLENGENAME_18"] = "Just Do It..."
|
|
Loc ["CHALLENGENAME_19"] = "I Remember You... In The Details!"
|
|
|
|
--> Rank Names:
|
|
Loc ["RANKNAME_1"] = "Farmer"
|
|
Loc ["RANKNAME_2"] = "Soldier"
|
|
Loc ["RANKNAME_3"] = "Corporal"
|
|
Loc ["RANKNAME_4"] = "Gold Sergeant"
|
|
Loc ["RANKNAME_5"] = "Star Sergeant"
|
|
Loc ["RANKNAME_6"] = "Iron Knight"
|
|
Loc ["RANKNAME_7"] = "Steel Knight"
|
|
Loc ["RANKNAME_8"] = "Mithril Knight"
|
|
Loc ["RANKNAME_9"] = "Thorium Knight"
|
|
Loc ["RANKNAME_10"] = "Silver Lieutenant"
|
|
Loc ["RANKNAME_11"] = "Gold Lieutenant"
|
|
Loc ["RANKNAME_12"] = "Stone Guardian"
|
|
Loc ["RANKNAME_13"] = "Fel Guardian"
|
|
Loc ["RANKNAME_14"] = "Titan Guardian"
|
|
Loc ["RANKNAME_15"] = "Bronze Centurion"
|
|
Loc ["RANKNAME_16"] = "Silver Centurion"
|
|
Loc ["RANKNAME_17"] = "Flame Centurion"
|
|
Loc ["RANKNAME_18"] = "Lower Vanquisher"
|
|
Loc ["RANKNAME_19"] = "Middle Vanquisher"
|
|
Loc ["RANKNAME_20"] = "High Vanquisher" |