diff --git a/Locale/LocaleAutomatic.lua b/Locale/LocaleAutomatic.lua index 8e9c22c..83c1487 100644 --- a/Locale/LocaleAutomatic.lua +++ b/Locale/LocaleAutomatic.lua @@ -215,7 +215,6 @@ L["Armor"] L["Block"] = BLOCK L["Durability %d / %d"] = DURABILITY_TEMPLATE L["Enchanted: %s"] = ENCHANTED_TOOLTIP_LINE -L["Equipped Runes"] = EQUIPPED_RUNES L[""] = ITEM_SOCKETABLE L["You may sell this item to a vendor within %s for a full refund."] = REFUND_TIME_REMAINING L["You may trade this item with players that were also eligible to loot this item for the next %s."] = BIND_TRADE_TIME_REMAINING diff --git a/Operations/CreateConstructor.lua b/Operations/CreateConstructor.lua index b07fb97..387650d 100644 --- a/Operations/CreateConstructor.lua +++ b/Operations/CreateConstructor.lua @@ -105,7 +105,7 @@ function Addon:CreateConstructor(tooltipData) constructor.validation = {} for _, line in ipairs(tooltipData) do if line.type == "Cooldown" or line.oldType == "Cooldown" then - constructor.validation[line.i] = self:ReversePattern(ITEM_COOLDOWN_TIME) + constructor.validation[line.i] = self:ReversePattern(self.L["Cooldown remaining: %s"]) else constructor.validation[line.i] = line.realTextLeft end