(fix/TimeUtil): fix non localised TIME_UNIT_DELIMITER

This commit is contained in:
NoM0Re
2025-09-14 20:46:58 +02:00
parent 6b4787d32b
commit 29e6f62f54
+1 -1
View File
@@ -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);