aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2021-05-18 08:44:09 +0200
committerGitHub <noreply@github.com>2021-05-18 08:44:09 +0200
commit83330b8c4ca27b094b4a262dde261a0b767b3f9c (patch)
treefd35f9d8f74292e35649d0aa1f80df9405623649 /apps/files/js
parentee3dc57cbd9c9cf2f88d97a35f54ed67ab556aa7 (diff)
parent99e6849906fea1ee3402a8e3ad9dcca356600d70 (diff)
downloadnextcloud-server-83330b8c4ca27b094b4a262dde261a0b767b3f9c.tar.gz
nextcloud-server-83330b8c4ca27b094b4a262dde261a0b767b3f9c.zip
Merge pull request #26896 from nextcloud/Valdnet-patch-8
l10n: Replace the apostrophe with double quotation
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/filesummary.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filesummary.js b/apps/files/js/filesummary.js
index 202dd51cd4c..54d038d86c6 100644
--- a/apps/files/js/filesummary.js
+++ b/apps/files/js/filesummary.js
@@ -248,7 +248,7 @@
$filterInfo.html('');
$filterInfo.addClass('hidden');
} else {
- $filterInfo.html(' ' + n('files', 'matches \'{filter}\'', 'match \'{filter}\'', this.summary.totalDirs + this.summary.totalFiles, {filter: this.summary.filter}));
+ $filterInfo.html(' ' + n('files', 'matches "{filter}"', 'match "{filter}"', this.summary.totalDirs + this.summary.totalFiles, {filter: this.summary.filter}));
$filterInfo.removeClass('hidden');
}
},