diff options
author | skjnldsv <fremulon@protonmail.com> | 2016-10-11 14:21:37 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2016-10-11 15:06:25 +0200 |
commit | 1930aa3102b52258480c52998661802432c866b1 (patch) | |
tree | f63ccd907ec06a7dae400e64d88f43f4fc7d2300 /apps/files | |
parent | 35a7a4f3136ab35fbc31a983c2207cf9ecdffb1d (diff) | |
download | nextcloud-server-1930aa3102b52258480c52998661802432c866b1.tar.gz nextcloud-server-1930aa3102b52258480c52998661802432c866b1.zip |
Fix bold no results search text
Fix wording
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 2e36e884346..09c35e0d061 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2426,8 +2426,9 @@ $('#searchresults').addClass('filter-empty'); $('#searchresults .emptycontent').addClass('emptycontent-search'); if ( $('#searchresults').length === 0 || $('#searchresults').hasClass('hidden') ) { + var error = t('files', "No search results in other folders for '{tag}{filter}{endtag}'", {filter:this._filter}, null, {'escape': false}); this.$el.find('.nofilterresults').removeClass('hidden'). - find('h2').text(t('files', "No results in this folder for {filter}", {filter:this._filter}, null, {'escape': false})); + find('p').html(error.replace('{tag}', '<strong>').replace('{endtag}', '</strong>')); } } else { $('#searchresults').removeClass('filter-empty'); |