Fix some translations
authorJoas Schilling <coding@schilljs.com>
Thu, 14 Nov 2019 22:15:49 +0000 (23:15 +0100)
committerRoeland Jago Douma <rullzer@users.noreply.github.com>
Tue, 3 Dec 2019 08:06:06 +0000 (09:06 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
src/gui/accountsettings.cpp
src/gui/owncloudgui.cpp

index a7b39d60642304d045bd9da63dec819b49df7fe6..7eb65cfba57ef4dc4a823777728615743d96e07e 100644 (file)
@@ -746,7 +746,7 @@ void AccountSettings::slotFolderWizardAccepted()
             qCInfo(lcAccountSettings) << "Creating folder" << definition.localPath;
             if (!dir.mkpath(".")) {
                 QMessageBox::warning(this, tr("Folder creation failed"),
-                    tr("<p>Could not create local folder <i>%1</i>.")
+                    tr("<p>Could not create local folder <i>%1</i>.</p>")
                         .arg(QDir::toNativeSeparators(definition.localPath)));
                 return;
             }
index d3828aed62eca666adde64ea97d70a2fa2ec7823..0ee84fcfb3f260461a431caa6627e0f068a115bb 100644 (file)
@@ -943,7 +943,7 @@ void ownCloudGui::slotUpdateProgress(const QString &folder, const ProgressInfo &
         quint64 totalFileCount = qMax(progress.totalFiles(), currentFile);
         QString msg;
         if (progress.trustEta()) {
-            msg = tr("Syncing %1 of %2  (%3 left)")
+            msg = tr("Syncing %1 of %2 (%3 left)")
                       .arg(currentFile)
                       .arg(totalFileCount)
                       .arg(Utility::durationToDescriptiveString2(progress.totalProgress().estimatedEta));