Content deleted Content added
apply infoboximage to map as well |
m MOS:UNITSYMBOLS: either "second(s)" (unit name) or "s" (unit symbol); "sec" is nonsense |
||
Line 71:
local sec = s:match('^%s*%d+m%s*(%d+)s%s*$')
if( min and sec ) then
return tostring(tonumber(min)*60 + tonumber(sec)) .. '
' (' .. min .. ' m ' .. sec .. ' s)'
end
|