Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorOlivier Paroz <oparoz@users.noreply.github.com>2015-07-27 17:06:34 +0300
committerOlivier Paroz <oparoz@users.noreply.github.com>2015-07-27 17:06:34 +0300
commit96333bc1c4eb24cf8bf1701f7b7a13d7368da3e1 (patch)
treef3ca20de718b192e5a327c30cf0c9daa497b0d00 /js
parentb80aa021ea8ba28e7b8c37b112512d2e0878d66a (diff)
parenta3e67d7aee120547310212b9552d91683296c4a4 (diff)
Merge pull request #243 from owncloud/fix-translations
Concatenated string cannot be processed by the l10n tools
Diffstat (limited to 'js')
-rw-r--r--js/gallery.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/gallery.js b/js/gallery.js
index 67cea338..44846013 100644
--- a/js/gallery.js
+++ b/js/gallery.js
@@ -243,8 +243,7 @@
showEmpty: function () {
var emptyContentElement = $('#emptycontent');
var message = t('gallery',
- "No pictures found! If you upload pictures in the files app," +
- "they will be displayed here.");
+ "No pictures found! If you upload pictures in the files app, they will be displayed here.");
emptyContentElement.html(message);
emptyContentElement.removeClass('hidden');
$('#controls').addClass('hidden');