mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
remove extra argument from QString::arg: string has only 1 placeholder
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
parent
a2c6b68803
commit
3db8c33a17
1 changed files with 1 additions and 1 deletions
|
@ -1747,7 +1747,7 @@ QString FolderMan::trayTooltipStatusString(SyncResult::Status syncStatus, bool h
|
|||
QString totalSizeStr = Utility::octetsToString(progress->totalSize());
|
||||
if (progress->trustEta()) {
|
||||
if (estimatedEta == 0) {
|
||||
folderMessage = tr("Syncing %1 (A few seconds left)").arg(totalSizeStr, Utility::durationToDescriptiveString1(estimatedEta));
|
||||
folderMessage = tr("Syncing %1 (A few seconds left)").arg(totalSizeStr);
|
||||
} else {
|
||||
folderMessage = tr("Syncing %1 (%2 left)").arg(totalSizeStr, Utility::durationToDescriptiveString1(estimatedEta));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue