diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-01-20 17:47:55 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-01-20 17:47:55 +0100 |
commit | 735fcf8bd2739f109d7519aac99d864691c4ba6f (patch) | |
tree | 3496ecaed9797ac42b13abc31e2c67e597d2574f | |
parent | 6866165a37de338d51abce7bf1651f2a1447bccb (diff) | |
download | nextcloud-server-735fcf8bd2739f109d7519aac99d864691c4ba6f.tar.gz nextcloud-server-735fcf8bd2739f109d7519aac99d864691c4ba6f.zip |
only double quoted string seems to be detected in js
-rw-r--r-- | apps/gallery/js/album_cover.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gallery/js/album_cover.js b/apps/gallery/js/album_cover.js index 4659cd302e8..38b5815775c 100644 --- a/apps/gallery/js/album_cover.js +++ b/apps/gallery/js/album_cover.js @@ -44,7 +44,7 @@ function scanForAlbums() { if (r.status == 'success') { totalAlbums = r.paths.length; - $('#notification').text(t('gallery','Creating thumbnails')+' ... ' + Math.floor((albumCounter/totalAlbums)*100) + "%"); + $('#notification').text(t('gallery',"Creating thumbnails")+' ... ' + Math.floor((albumCounter/totalAlbums)*100) + "%"); for(var a in r.paths) { $.getJSON('ajax/galleryOp.php?operation=partial_create&path='+r.paths[a], function(r) { @@ -53,7 +53,7 @@ function scanForAlbums() { } albumCounter++; - $('#notification').text(t('gallery','Creating thumbnails')+' ... ' + Math.floor((albumCounter/totalAlbums)*100) + "%"); + $('#notification').text(t('gallery',"Creating thumbnails")+' ... ' + Math.floor((albumCounter/totalAlbums)*100) + "%"); if (albumCounter == totalAlbums) { $("#notification").fadeOut(); $("#notification").slideUp(); |