l10n: Delete space and change capital letter

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
This commit is contained in:
Valdnet 2021-04-26 19:27:26 +02:00 committed by Felix Weilbach (Rebase PR Action)
parent d7b6ff2841
commit 8aedc74838
5 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@
<item row="0" column="0">
<widget class="QLabel" name="labelCertificateFile">
<property name="text">
<string>Certificate &amp; Key (pkcs12) :</string>
<string>Certificate &amp; Key (pkcs12):</string>
</property>
</widget>
</item>

View file

@ -156,7 +156,7 @@ void ConnectionValidator::slotJobTimeout(const QUrl &url)
{
Q_UNUSED(url);
//_errors.append(tr("Unable to connect to %1").arg(url.toString()));
_errors.append(tr("timeout"));
_errors.append(tr("Timeout"));
reportResult(Timeout);
}

View file

@ -450,7 +450,7 @@ void OwncloudSetupWizard::slotCreateLocalAndRemoteFolders(const QString &localFo
if (fi.mkpath(localFolder)) {
FileSystem::setFolderMinimumPermissions(localFolder);
Utility::setupFavLink(localFolder);
res += tr("ok");
res += tr("OK");
} else {
res += tr("failed.");
qCWarning(lcWizard) << "Failed to create " << fi.path();

View file

@ -94,7 +94,7 @@
</sizepolicy>
</property>
<property name="text">
<string>can edit</string>
<string>Can edit</string>
</property>
</widget>
</item>

View file

@ -178,7 +178,7 @@ void PropagateLocalMkdir::startLocalMkdir()
emit propagator()->touchedFile(newDirStr);
QDir localDir(propagator()->localPath());
if (!localDir.mkpath(_item->_file)) {
done(SyncFileItem::NormalError, tr("could not create folder %1").arg(newDirStr));
done(SyncFileItem::NormalError, tr("Could not create folder %1").arg(newDirStr));
return;
}