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-10-15 09:44:02 +0300
committerGitHub <noreply@github.com>2021-10-15 09:44:02 +0300
commit22b0a2e196d07ee6673f5a63fe20cbb857151388 (patch)
treecb6e98260fb0b36af5fc511a45fc8ee0032ab8dc /src/libsync/discovery.cpp
parent00dab13b3967be285d2b49aa3cf5b6165b47ad01 (diff)
i18n: Correct typo and remove apostrophe
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src/libsync/discovery.cpp')
-rw-r--r--src/libsync/discovery.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsync/discovery.cpp b/src/libsync/discovery.cpp
index ea6c92f7d..8fd6506b1 100644
--- a/src/libsync/discovery.cpp
+++ b/src/libsync/discovery.cpp
@@ -53,10 +53,10 @@ bool ProcessDirectoryJob::checkForInvalidFileName(const PathTuple &path,
QString errorMessage;
const auto newFileNameEntry = entriesIter->second;
if (newFileNameEntry.serverEntry.isValid()) {
- errorMessage = tr("File contains trailing spaces and coudn't be renamed, because a file with the same name already exists on the server.");
+ errorMessage = tr("File contains trailing spaces and could not be renamed, because a file with the same name already exists on the server.");
}
if (newFileNameEntry.localEntry.isValid()) {
- errorMessage = tr("File contains trailing spaces and coudn't be renamed, because a file with the same name already exists locally.");
+ errorMessage = tr("File contains trailing spaces and could not be renamed, because a file with the same name already exists locally.");
}
if (!errorMessage.isEmpty()) {