diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-05-18 08:44:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 08:44:09 +0200 |
commit | 83330b8c4ca27b094b4a262dde261a0b767b3f9c (patch) | |
tree | fd35f9d8f74292e35649d0aa1f80df9405623649 /apps/files/js | |
parent | ee3dc57cbd9c9cf2f88d97a35f54ed67ab556aa7 (diff) | |
parent | 99e6849906fea1ee3402a8e3ad9dcca356600d70 (diff) | |
download | nextcloud-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.js | 2 |
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'); } }, |