Fix a minor typo
authorStéphane Guillou <stephane.guillou@member.fsf.org>
Sun, 24 Mar 2019 10:12:44 +0000 (20:12 +1000)
committerGitHub <noreply@github.com>
Sun, 24 Mar 2019 10:12:44 +0000 (20:12 +1000)
src/gui/wizard/owncloudadvancedsetuppage.cpp

index a340d89bfcc2ca9826a07afec6b9342305100ef1..c5e17040d19815911debd1fa129745c70a9dcaec 100644 (file)
@@ -382,7 +382,7 @@ qint64 OwncloudAdvancedSetupPage::availableLocalSpace() const
 
 QString OwncloudAdvancedSetupPage::checkLocalSpace(qint64 remoteSize) const
 {
-    return (availableLocalSpace()>remoteSize) ? QString() : tr("There is no enough free space in the local folder!");
+    return (availableLocalSpace()>remoteSize) ? QString() : tr("There isn't enough free space in the local folder!");
 }
 
 } // namespace OCC