summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2015-01-02 14:59:55 +0100
committerJörn Friedrich Dreyer <jfd@butonic.de>2015-01-02 14:59:55 +0100
commit6f820b02094eaba3191124a7a17e56f302be202d (patch)
treeed81da0442f2381d7b3ef46bcd081da9b967ca03 /apps/files
parent152c8b3969e38eccf5204c8f7b436676e7168413 (diff)
downloadnextcloud-server-6f820b02094eaba3191124a7a17e56f302be202d.tar.gz
nextcloud-server-6f820b02094eaba3191124a7a17e56f302be202d.zip
use " to avoid escaping '
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 48c990872d1..84b537fbdfe 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1687,7 +1687,7 @@
this.$el.find('#emptycontent').addClass('hidden');
if ( $('#searchresults').length === 0 || $('#searchresults').hasClass('hidden')) {
this.$el.find('#nofilterresults').removeClass('hidden').
- find('p').text(t('files', 'No entries in this folder match \'{filter}\'', {filter:this._filter}));
+ find('p').text(t('files', "No entries in this folder match '{filter}'", {filter:this._filter}));
}
} else {
this.$el.find('#filestable thead th').toggleClass('hidden', this.isEmpty);