diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-05-06 14:45:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 14:45:33 +0200 |
commit | c5a4668c88cd754073d47913efbbd43a4b7ed16b (patch) | |
tree | 2bbec8520b07da027ccbb01706ac04f9dd1e9341 /apps | |
parent | 42f0f27240544a689afd8690d81b81df5c19d73c (diff) | |
download | nextcloud-server-c5a4668c88cd754073d47913efbbd43a4b7ed16b.tar.gz nextcloud-server-c5a4668c88cd754073d47913efbbd43a4b7ed16b.zip |
l10n: Replace the apostrophe with double quotation
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps')
-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'); } }, |