mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-09 14:27:56 +00:00
- Use infinity symbol for ETA when time is infinite
This commit is contained in:
parent
4c5f349f49
commit
9f6e28b741
@ -300,7 +300,7 @@ class misc : public QObject{
|
|||||||
// time duration like "1d 2h 10m".
|
// time duration like "1d 2h 10m".
|
||||||
static QString userFriendlyDuration(qlonglong seconds) {
|
static QString userFriendlyDuration(qlonglong seconds) {
|
||||||
if(seconds < 0) {
|
if(seconds < 0) {
|
||||||
return tr("Unknown");
|
return QString::fromUtf8("∞");
|
||||||
}
|
}
|
||||||
if(seconds < 60) {
|
if(seconds < 60) {
|
||||||
return tr("< 1m", "< 1 minute");
|
return tr("< 1m", "< 1 minute");
|
||||||
@ -319,7 +319,7 @@ class misc : public QObject{
|
|||||||
if(days < 100) {
|
if(days < 100) {
|
||||||
return tr("%1d%2h%3m", "e.g: 2days 10hours 2minutes").arg(QString::fromUtf8(misc::toString(days).c_str())).arg(QString::fromUtf8(misc::toString(hours).c_str())).arg(QString::fromUtf8(misc::toString(minutes).c_str()));
|
return tr("%1d%2h%3m", "e.g: 2days 10hours 2minutes").arg(QString::fromUtf8(misc::toString(days).c_str())).arg(QString::fromUtf8(misc::toString(hours).c_str())).arg(QString::fromUtf8(misc::toString(minutes).c_str()));
|
||||||
}
|
}
|
||||||
return tr("Unknown");
|
return QString::fromUtf8("∞");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user