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:
authorrakekniven <2069590+rakekniven@users.noreply.github.com>2021-11-02 12:34:26 +0300
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>2021-11-05 12:00:17 +0300
commit416d98716fc669079f770ecb47d441fbcfca586b (patch)
tree28288a0a4e6a9ab6970263f5908a9b6cf1d7aa59 /src/libsync/discovery.cpp
parent30d4a627076e8419dd7cc895b4ba9a49c8dc332c (diff)
Make argument singular to fix i18n issue
Reported at Transifex. See https://www.transifex.com/nextcloud/nextcloud/translate/#hu_HU/client/309577611 Signed-off-by: rakekniven <2069590+rakekniven@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 3fefa7cde..ee0ce489c 100644
--- a/src/libsync/discovery.cpp
+++ b/src/libsync/discovery.cpp
@@ -487,7 +487,7 @@ void ProcessDirectoryJob::processFileAnalyzeRemoteInfo(
if (serverEntry.size == -1)
missingData.append(tr("size"));
if (serverEntry.remotePerm.isNull())
- missingData.append(tr("permissions"));
+ missingData.append(tr("permission"));
if (serverEntry.etag.isEmpty())
missingData.append("ETag");
if (serverEntry.fileId.isEmpty())
@@ -495,7 +495,7 @@ void ProcessDirectoryJob::processFileAnalyzeRemoteInfo(
if (!missingData.isEmpty()) {
item->_instruction = CSYNC_INSTRUCTION_ERROR;
_childIgnored = true;
- item->_errorString = tr("server reported no %1").arg(missingData.join(QLatin1String(", ")));
+ item->_errorString = tr("Server reported no %1").arg(missingData.join(QLatin1String(", ")));
emit _discoveryData->itemDiscovered(item);
return;
}