From fee0aae97572f7abd2ead6f845af9eb3ec0f1d97 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Tue, 30 Apr 2013 17:39:09 +0200 Subject: [PATCH] new wizard: Better separate folder names in strings. --- src/mirall/owncloudwizard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mirall/owncloudwizard.cpp b/src/mirall/owncloudwizard.cpp index 5a3272671e..19289e03ad 100644 --- a/src/mirall/owncloudwizard.cpp +++ b/src/mirall/owncloudwizard.cpp @@ -274,9 +274,9 @@ void OwncloudSetupPage::setFolderNames( const QString& localFolder, const QStrin QString t; if( _remoteFolder.isEmpty() || _remoteFolder == QLatin1String("/") ) { - t = tr("Your entire account will be synced to the local folder %1").arg(localFolder); + t = tr("Your entire account will be synced to the local folder '%1'").arg(localFolder); } else { - t = tr("ownCloud folder %1 is synced to local folder %2").arg(_remoteFolder).arg(localFolder); + t = tr("ownCloud folder '%1' is synced to local folder '%2'").arg(_remoteFolder).arg(localFolder); } _ui.syncModeLabel->setText(t);