From 29e6f62f54734594c5b8cde113eabb4ec57a8c0c Mon Sep 17 00:00:00 2001 From: NoM0Re <1629787+NoM0Re@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:46:58 +0200 Subject: [PATCH] (fix/TimeUtil): fix non localised TIME_UNIT_DELIMITER --- WeakAuras/TimeUtil.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeakAuras/TimeUtil.lua b/WeakAuras/TimeUtil.lua index cde0ee3..031616b 100644 --- a/WeakAuras/TimeUtil.lua +++ b/WeakAuras/TimeUtil.lua @@ -271,7 +271,7 @@ function SecondsFormatterMixin:Format(seconds, abbreviation) for interval, value in ipairs_reverse(intervalUnits) do if value > 0 then if (output ~= "") then - output = output..TIME_UNIT_DELIMITER; + output = output..L["TIME_UNIT_DELIMITER"]; end local formatString = self:GetFormatString(interval, abbreviation, convertToLower);