1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00

Use plural form for cloud connection wait

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-06-22 03:55:28 -07:00
parent ba2b5d8505
commit 1d2bcffbdf

View file

@ -55,7 +55,7 @@ bool CheckCloudConnection::checkServer()
return true;
}
} else if (seconds < prefs.cloud_timeout) {
QString text = tr("Waiting for cloud connetion (%1 seconds passed)").arg(seconds);
QString text = tr("Waiting for cloud connetion (%n second(s) passed)", "", seconds);
git_storage_update_progress(qPrintable(text));
} else {
disconnect(reply, SIGNAL(finished()), &loop, SLOT(quit()));