diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-06-22 03:55:28 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-06-22 04:19:23 -0700 |
commit | 1d2bcffbdf3a08a6444087ccb9d9288f3a235f65 (patch) | |
tree | a4350997adc3d9527a3c5f47ef3816e5dd3c3786 /core/checkcloudconnection.cpp | |
parent | ba2b5d85059c8f08e1e3b0f92f274e80e7b81a39 (diff) | |
download | subsurface-1d2bcffbdf3a08a6444087ccb9d9288f3a235f65.tar.gz |
Use plural form for cloud connection wait
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/checkcloudconnection.cpp')
-rw-r--r-- | core/checkcloudconnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/checkcloudconnection.cpp b/core/checkcloudconnection.cpp index a80739829..cf588a88a 100644 --- a/core/checkcloudconnection.cpp +++ b/core/checkcloudconnection.cpp @@ -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())); |