Fix some text errors

This commit is contained in:
Kris
2022-04-29 20:06:25 +02:00
parent ade06839b7
commit 2abd7db572
7 changed files with 19 additions and 19 deletions

View File

@@ -178,7 +178,7 @@
secondToDate(s) {
var d = Math.floor(s / 3600 / 24);
if (d > 0) {
return d + "{{tr "Day"}}"
return d + " {{tr "Day"}}"
}
var h = Math.floor(s / 3600 % 24);
var m = Math.floor(s / 60 % 60);