(fix/TimeUtil): fix non localised TIME_UNIT_DELIMITER
This commit is contained in:
parent
6b4787d32b
commit
29e6f62f54
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue