Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-07-28 22:35:13 +0300
committerallexzander (Rebase PR Action) <allexzander@users.noreply.github.com>2021-07-30 09:21:05 +0300
commit7ebbb499e0123516e67e9979080f6b175e568b94 (patch)
treedb4ccc74ade3c50c1bd8ad46b5c14fc5bba805bb /src/common
parent10b7907fa24a022db4ea8990dd017038a828107d (diff)
l10n: Replace apostrophe with double quotation
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/filesystembase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/filesystembase.cpp b/src/common/filesystembase.cpp
index 78c94fe77..8dda0a9d4 100644
--- a/src/common/filesystembase.cpp
+++ b/src/common/filesystembase.cpp
@@ -395,13 +395,13 @@ bool FileSystem::moveToTrash(const QString &fileName, QString *errorString)
suffix_number++;
}
if (!file.rename(f.absoluteFilePath(), path + QString::number(suffix_number))) { // rename(file old path, file trash path)
- *errorString = QCoreApplication::translate("FileSystem", "Could not move '%1' to '%2'")
+ *errorString = QCoreApplication::translate("FileSystem", "Could not move \"%1\" to \"%1\"")
.arg(f.absoluteFilePath(), path + QString::number(suffix_number));
return false;
}
} else {
if (!file.rename(f.absoluteFilePath(), trashFilePath + f.fileName())) { // rename(file old path, file trash path)
- *errorString = QCoreApplication::translate("FileSystem", "Could not move '%1' to '%2'")
+ *errorString = QCoreApplication::translate("FileSystem", "Could not move \"%1\" to \"%1\"")
.arg(f.absoluteFilePath(), trashFilePath + f.fileName());
return false;
}