Fix #56 Add a message saying how many images there is in the gallery

This commit is contained in:
Luc Didry
2018-05-21 17:26:10 +02:00
committed by Luc Didry
parent 4193f03d7a
commit 9645c8a2f3
4 changed files with 14 additions and 6 deletions

View File

@@ -10,6 +10,7 @@ Revision history for Lutim
- Add CSP header
- Add X-Content-Type-Options, X-XSS-Protection, X-Frame-Options headers
- Remove @framasky as default tweet_card_via setting
- Add a message saying how many images there is in the gallery
0.10.4 2018-05-07
- Fix bug in cache system that would allow someone to view an image with an incorrect decryption key

View File

@@ -68,7 +68,7 @@ msgstr ""
msgid "Click to open the file browser"
msgstr ""
#: themes/default/templates/gallery.html.ep:27
#: themes/default/templates/gallery.html.ep:29
msgid "Close (Esc)"
msgstr ""
@@ -116,7 +116,7 @@ msgstr ""
msgid "Deletion link"
msgstr ""
#: themes/default/templates/gallery.html.ep:8
#: themes/default/templates/gallery.html.ep:10
msgid "Download all images"
msgstr ""
@@ -272,7 +272,7 @@ msgstr ""
msgid "My images"
msgstr ""
#: themes/default/templates/gallery.html.ep:43
#: themes/default/templates/gallery.html.ep:45
msgid "Next (arrow right)"
msgstr ""
@@ -301,7 +301,7 @@ msgstr ""
msgid "Please contact the administrator: %1"
msgstr ""
#: themes/default/templates/gallery.html.ep:41
#: themes/default/templates/gallery.html.ep:43
msgid "Previous (arrow left)"
msgstr ""
@@ -396,12 +396,16 @@ msgstr ""
msgid "The images you post on Lutim can be stored indefinitely or be deleted at first view or after a delay selected from those proposed."
msgstr ""
#: themes/default/templates/partial/gallery.js.ep:257
msgid "There is XXXX image(s) in the gallery"
msgstr ""
#. ($c->config->{contact})
#: lib/Lutim/Controller.pm:483
msgid "There is no more available URL. Retry or contact the administrator. %1"
msgstr ""
#: themes/default/templates/gallery.html.ep:28
#: themes/default/templates/gallery.html.ep:30
msgid "Toggle fullscreen"
msgstr ""
@@ -487,7 +491,7 @@ msgstr ""
msgid "You can, optionally, request that the image(s) posted on Lutim to be deleted at first view (or download) or after the delay selected from those proposed."
msgstr ""
#: themes/default/templates/gallery.html.ep:29
#: themes/default/templates/gallery.html.ep:31
msgid "Zoom in/out"
msgstr ""

View File

@@ -2,6 +2,8 @@
<div class="container">
<div class="row" id="infos-msg">
</div>
<div class="row text-center" id="img-nb">
</div>
<div class="row">
<p>
<a href="<%= url_for('/zip?i=') %>" id="download-all" class="btn btn-info col-sm-12">

View File

@@ -254,6 +254,7 @@ $(document).ready(function() {
i = key.indexOf('&'); if (i>-1) { key = key.substring(0,i); }
var keys = key.split(',');
$('#img-nb').append('<p><%= l('There is XXXX image(s) in the gallery') %></p>'.replace('XXXX', keys.length));
$('#download-all').attr('href', $('#download-all').attr('href')+keys.join('&i='));