mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
WebUI: Drop old translation hack.
This commit is contained in:
parent
d80a14a2e1
commit
48d4cf4f36
@ -32,7 +32,7 @@ function friendlyDuration(seconds) {
|
||||
if (seconds == 0)
|
||||
return "0";
|
||||
if (seconds < 60)
|
||||
return "< " + "QBT_TR(%1m)QBT_TR".replace("%1", "1"); //translation of "< 1m" not working
|
||||
return "QBT_TR(< 1m)QBT_TR";
|
||||
var minutes = seconds / 60;
|
||||
if (minutes < 60)
|
||||
return "QBT_TR(%1m)QBT_TR".replace("%1", parseInt(minutes));
|
||||
@ -72,4 +72,4 @@ if (!Date.prototype.toISOString) {
|
||||
};
|
||||
|
||||
}());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user