From b8337c8c73dc152b6a56d1197ea7fb8327137082 Mon Sep 17 00:00:00 2001 From: elliottchambers Date: Sun, 30 Aug 2026 21:11:13 -0500 Subject: [PATCH] Add missing locale entries for TotalHealing/DamageTaken modules AddLoadableModule() looks up L[name] using the raw internal module name (e.g. "TotalHealing"), separately from the friendly display strings already defined (e.g. "Total healing"). Since those raw keys were never added to locale/enUS.lua, AceLocale-3.0 throws "Missing entry" errors on login for: TotalHealing, DamageTaken, Other, TPS, DTPS, and Timestamp. --- locale/enUS.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/locale/enUS.lua b/locale/enUS.lua index 7be91a3..51f8efe 100755 --- a/locale/enUS.lua +++ b/locale/enUS.lua @@ -475,3 +475,10 @@ L["Version History"] = true L["View the version history of Skada."] = true L["Show Version History"] = true L["Display the version history using the notification system."] = true + +L["TotalHealing"] = "Total Healing" +L["DamageTaken"] = "Damage Taken" +L["Other"] = true +L["TPS"] = "TPS" +L["DTPS"] = "DTPS" +L["Timestamp"] = "Timestamp"