Locatizations.
[wolnelektury.git] / src / catalogue / templates / catalogue / recent_list.html
index 70a5f5c..e1f3f4c 100644 (file)
@@ -1,31 +1,33 @@
-{% extends "2022/base.html" %}
+{% extends "base.html" %}
 {% load i18n %}
 {% load catalogue_tags %}
 
 {% block settings %}
   {% load title %}
-  {% trans "Recent publications" as title %}
+  {% trans "Ostatnie publikacje" as title %}
   {% title title %}
 {% endblock %}
 
 {% block main %}
   <div class="l-article__title">
-    <h1>{% trans "Recent publications" %}</h1>
+    <h1>{% trans "Ostatnie publikacje" %}</h1>
   </div>
 
   {% url 'recent_audiobooks_list' as a %}
   {% url 'recent_daisy_list' as d %}
   <div class="l-main">
-  <p>
-    {% blocktrans %}You can also see <a href="{{a}}">recent audiobooks</a>
-      and <a href="{{d}}">recent DAISY files</a>.{% endblocktrans %}
+    <p>
+      {% blocktrans trimmed %}
+        Zobacz też listę <a href="{{ a }}">ostatnio dodanych audiobooków</a>
+        i <a href="{{ d }}">plików DAISY</a>.
+      {% endblocktrans %}
   </p>
   </div>
 
   <div class="l-section l-section--col">
     <div class="l-books__grid" id="book-list">
       {% for book in object_list %}
-        {% include "catalogue/2022/book_box.html" %}
+        {% include "catalogue/book_box.html" %}
       {% endfor %}
     </div>
   </div>