From 9a5e7a1f45c46fbf3509cb660e29806e7ca05a8d Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Tue, 8 Sep 2020 11:39:01 +0200
Subject: [PATCH 01/16] Membership form changes.
---
src/club/forms.py | 3 +-
src/club/templates/club/membership_form.html | 32 ++++++++++++++------
2 files changed, 24 insertions(+), 11 deletions(-)
diff --git a/src/club/forms.py b/src/club/forms.py
index 8df778338..2ebe4e58d 100644
--- a/src/club/forms.py
+++ b/src/club/forms.py
@@ -3,11 +3,12 @@
#
from decimal import Decimal
from django import forms
+from newsletter.forms import NewsletterForm
from . import models
from .payu.forms import CardTokenForm
-class ScheduleForm(forms.ModelForm):
+class ScheduleForm(NewsletterForm, forms.ModelForm):
class Meta:
model = models.Schedule
fields = ['monthly', 'amount', 'email']
diff --git a/src/club/templates/club/membership_form.html b/src/club/templates/club/membership_form.html
index 43e925f7e..474095be3 100644
--- a/src/club/templates/club/membership_form.html
+++ b/src/club/templates/club/membership_form.html
@@ -82,7 +82,7 @@ vertical-align: middle;
}
.kwota.active, .plan-toggle.active {
- background: #b2ce1f;
+ background: #9ACD32;
}
.inna input {display: none;}
.inna.active input {display: inline;}
@@ -150,12 +150,12 @@ vertical-align: middle;
{% endif %}
{% endwith %}
- {% chunk 'club_form_top' %}
@@ -238,8 +252,6 @@ vertical-align: middle;
-{% chunk 'club_form_bottom' %}
-
{% endblock %}
--
2.20.1
From 18ab4370207cb0002915e5064c7eeee58a2b536f Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Wed, 9 Sep 2020 13:40:24 +0200
Subject: [PATCH 02/16] Bugfix for books without any text.
---
src/catalogue/templates/catalogue/book_wide.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/catalogue/templates/catalogue/book_wide.html b/src/catalogue/templates/catalogue/book_wide.html
index 26b085ad4..ffa4bcea1 100644
--- a/src/catalogue/templates/catalogue/book_wide.html
+++ b/src/catalogue/templates/catalogue/book_wide.html
@@ -7,7 +7,7 @@
{% block box-class %}book-wide-box{% endblock %}
-{% block cover-link %}{% url 'book_text' book.get_first_text.slug %}{% endblock %}
+{% block cover-link %}{% if book.get_first_text %}{% url 'book_text' book.get_first_text.slug %}{% endif %}{% endblock %}
{% block cover-area-extra %}
--
2.20.1
From f3a0fec2ab5d5b0d8089c88edd71d80e0380b48b Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Wed, 9 Sep 2020 13:42:19 +0200
Subject: [PATCH 03/16] If a bug will never manifest, does it make a sound?
---
.../locale/pl/LC_MESSAGES/django.mo | Bin 7969 -> 7970 bytes
.../locale/pl/LC_MESSAGES/django.po | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/wolnelektury/locale/pl/LC_MESSAGES/django.mo b/src/wolnelektury/locale/pl/LC_MESSAGES/django.mo
index a348fa69f16df8abfd5998b328d349440573405f..6eec37fc7d4437e53ae9afff86b924455ba9ab19 100644
GIT binary patch
delta 618
zcmXZZJ4gdT5XSK_XfzL_m(#p_1Vo6Hjh)2U*jR-KmKI_WkbsS)a)maMB9Le!7QPTm
z<**WLghy@}dhr$e@f{QRi$RRDc)&62#!u|Q9}J^EDUwDT{WygaIGq&df8z=-=qV+P
z;1=3g#SEUIHo8YG@MP9?V-t1%7ixfDN+gR>9LBt{gj#0@`*1hqv=g54LX%#a4L7KP
zJmir&!yta62C#jY|{Nz?#2)DKv|E?h8=*gXEJJ+&
delta 613
zcmXZZJxD@P7{>9($kH^sT54JuK~zgiTVO6tErvs55Dg7EwhBTmQBd@;L_=gmt7KEq
z8acE`LqjFeCbbnp6!d@d!sYzVxt#O9&%LLVIn9&{ZN-8|+Kx!oHp$l~y-KRZq%dB^
zB_7=}bmI#;_>TSfi(MFFQNt1J#833$4+hbjkcKgW9XN#(IGs@Of8#PQ=&3x0a2ixq
z&Je|Kv;fXPYaK@`G>H~q2JHiK=*1tyJ6nA%(c)s darmowy utwór do której %(c)s darmowy utwór do którego masz prawo \n"
" "
msgstr[1] ""
--
2.20.1
From e5d57128eefe920b64600c33587de0ef1a51d97d Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Wed, 9 Sep 2020 15:21:52 +0200
Subject: [PATCH 04/16] Fixes #4098: Missing Georgia font breaks leayout.
---
src/wolnelektury/static/css/master.book.css | 4 +++-
src/wolnelektury/static/css/new.book.css | 4 +++-
src/wolnelektury/static/scss/main/base.scss | 2 +-
src/wolnelektury/static/scss/main/fonts.scss | 3 +++
src/wolnelektury/static/scss/main/header.scss | 8 ++++----
src/wolnelektury/static/scss/main/search.scss | 2 +-
6 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/src/wolnelektury/static/css/master.book.css b/src/wolnelektury/static/css/master.book.css
index c430a69f5..3a2eda503 100644
--- a/src/wolnelektury/static/css/master.book.css
+++ b/src/wolnelektury/static/css/master.book.css
@@ -1,6 +1,8 @@
+@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
+
body {
font-size: 16px;
- font-family: Georgia, "Times New Roman", serif;
+ font-family: Gelasio, Georgia, "Times New Roman", serif;
line-height: 1.5em;
margin: 0;
}
diff --git a/src/wolnelektury/static/css/new.book.css b/src/wolnelektury/static/css/new.book.css
index 2208cd342..e3ad09193 100644
--- a/src/wolnelektury/static/css/new.book.css
+++ b/src/wolnelektury/static/css/new.book.css
@@ -1,6 +1,8 @@
+@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
+
body {
font-size: 16px;
- font-family: Georgia, "Times New Roman", serif;
+ font-family: Gelasio, Georgia, "Times New Roman", serif;
line-height: 1.5em;
margin: 0;
}
diff --git a/src/wolnelektury/static/scss/main/base.scss b/src/wolnelektury/static/scss/main/base.scss
index 0c8dc8973..20b0a3544 100644
--- a/src/wolnelektury/static/scss/main/base.scss
+++ b/src/wolnelektury/static/scss/main/base.scss
@@ -14,7 +14,7 @@ html, body {
/* Basic colors and fonts */
body {
- font-family: Georgia, serif;
+ font-family: Gelasio, Georgia, serif;
background: #f7f7f7;
color: black;
diff --git a/src/wolnelektury/static/scss/main/fonts.scss b/src/wolnelektury/static/scss/main/fonts.scss
index 20abbb66e..03cf19a7d 100644
--- a/src/wolnelektury/static/scss/main/fonts.scss
+++ b/src/wolnelektury/static/scss/main/fonts.scss
@@ -141,3 +141,6 @@
src: local('Cousine Bold Italic'), local('Cousine-BoldItalic'), url(/static/fonts/cousine/v10/y_AZ5Sz-FwL1lux2xLSTZegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
+
+
+@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
diff --git a/src/wolnelektury/static/scss/main/header.scss b/src/wolnelektury/static/scss/main/header.scss
index 9e6bb6b13..c8adda56f 100644
--- a/src/wolnelektury/static/scss/main/header.scss
+++ b/src/wolnelektury/static/scss/main/header.scss
@@ -246,24 +246,24 @@ header#main {
@include size(border-radius, 5px);
@include box-shadow(0 0 6.5px #444444 inset);
- font-family: Georgia, serif;
+ font-family: Gelasio, Georgia, serif;
@include size(font-size, 13px);
background-color: white;
color: black;
/* styling search placeholder */
&::placeholder {
- font-family: Georgia, serif;
+ font-family: Gelasio, Georgia, serif;
font-style: italic;
color: #767676;
}
&::-webkit-input-placeholder {
- font-family: Georgia, serif;
+ font-family: Gelasio, Georgia, serif;
font-style: italic;
color: #767676;
}
&::-moz-placeholder {
- font-family: Georgia, serif;
+ font-family: Gelasio, Georgia, serif;
font-style: italic;
color: #767676;
}
diff --git a/src/wolnelektury/static/scss/main/search.scss b/src/wolnelektury/static/scss/main/search.scss
index 5e14505ee..3d992b368 100644
--- a/src/wolnelektury/static/scss/main/search.scss
+++ b/src/wolnelektury/static/scss/main/search.scss
@@ -5,7 +5,7 @@
}
.ui-widget {
- font-family: Georgia !important;
+ font-family: Gelasio, Georgia, serif !important;
@include size(font-size, 10px !important);
}
--
2.20.1
From b6b103ddbc998e5d52439430b4eafe422133ed64 Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Wed, 9 Sep 2020 21:44:09 +0200
Subject: [PATCH 05/16] Imports at the start.
---
src/wolnelektury/settings/static.py | 5 +++++
src/wolnelektury/static/css/import/gelasio.css | 1 +
src/wolnelektury/static/css/master.book.css | 2 --
src/wolnelektury/static/css/new.book.css | 2 --
src/wolnelektury/static/scss/main/fonts.scss | 2 --
5 files changed, 6 insertions(+), 6 deletions(-)
create mode 100644 src/wolnelektury/static/css/import/gelasio.css
diff --git a/src/wolnelektury/settings/static.py b/src/wolnelektury/settings/static.py
index bfffb820e..28734105a 100644
--- a/src/wolnelektury/settings/static.py
+++ b/src/wolnelektury/settings/static.py
@@ -25,6 +25,8 @@ PIPELINE = {
'main': {
# styles both for mobile and for big screen
'source_filenames': [
+ 'css/import/gelasio.css',
+
'css/jquery.countdown.css',
'jplayer/jplayer.blue.monday.css',
@@ -42,12 +44,14 @@ PIPELINE = {
},
'book': {
'source_filenames': [
+ 'css/import/gelasio.css',
'css/master.book.css',
],
'output_filename': 'css/compressed/book.css',
},
'book_text': {
'source_filenames': [
+ 'css/import/gelasio.css',
'scss/book_text.scss',
'css/new.book.css',
'annoy/banner.scss',
@@ -65,6 +69,7 @@ PIPELINE = {
},
'picture': {
'source_filenames': [
+ 'css/import/gelasio.css',
'css/master.book.css',
'css/master.picture.css',
],
diff --git a/src/wolnelektury/static/css/import/gelasio.css b/src/wolnelektury/static/css/import/gelasio.css
new file mode 100644
index 000000000..63c901598
--- /dev/null
+++ b/src/wolnelektury/static/css/import/gelasio.css
@@ -0,0 +1 @@
+@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
diff --git a/src/wolnelektury/static/css/master.book.css b/src/wolnelektury/static/css/master.book.css
index 3a2eda503..36cade8ec 100644
--- a/src/wolnelektury/static/css/master.book.css
+++ b/src/wolnelektury/static/css/master.book.css
@@ -1,5 +1,3 @@
-@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
-
body {
font-size: 16px;
font-family: Gelasio, Georgia, "Times New Roman", serif;
diff --git a/src/wolnelektury/static/css/new.book.css b/src/wolnelektury/static/css/new.book.css
index e3ad09193..77f819756 100644
--- a/src/wolnelektury/static/css/new.book.css
+++ b/src/wolnelektury/static/css/new.book.css
@@ -1,5 +1,3 @@
-@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
-
body {
font-size: 16px;
font-family: Gelasio, Georgia, "Times New Roman", serif;
diff --git a/src/wolnelektury/static/scss/main/fonts.scss b/src/wolnelektury/static/scss/main/fonts.scss
index 03cf19a7d..b1d6d59b0 100644
--- a/src/wolnelektury/static/scss/main/fonts.scss
+++ b/src/wolnelektury/static/scss/main/fonts.scss
@@ -142,5 +142,3 @@
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
-
-@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400;0,700;1,400;1,700&display=swap');
--
2.20.1
From 04bcff7bdb003dcd9740926bfc1243859b9defe4 Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Wed, 9 Sep 2020 22:18:45 +0200
Subject: [PATCH 06/16] Wording changes.
---
src/catalogue/locale/de/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/en/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/es/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/fr/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/it/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/jp/LC_MESSAGES/django.po | 774 +++++++++++-------
src/catalogue/locale/lt/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/pl/LC_MESSAGES/django.mo | Bin 12565 -> 12528 bytes
src/catalogue/locale/pl/LC_MESSAGES/django.po | 335 ++++----
src/catalogue/locale/ru/LC_MESSAGES/django.po | 329 ++++----
src/catalogue/locale/uk/LC_MESSAGES/django.po | 329 ++++----
.../templates/catalogue/catalogue.html | 2 +-
.../catalogue/search_multiple_hits.html | 2 +-
.../templates/catalogue/tag_list_split.html | 2 +-
.../catalogue/tagged_object_list.html | 2 +-
src/wolnelektury/__init__.py | 3 -
.../locale/de/LC_MESSAGES/django.po | 215 ++---
.../locale/en/LC_MESSAGES/django.po | 214 ++---
.../locale/es/LC_MESSAGES/django.po | 216 ++---
.../locale/fr/LC_MESSAGES/django.po | 216 ++---
.../locale/it/LC_MESSAGES/django.po | 216 ++---
.../locale/jp/LC_MESSAGES/django.po | 396 +++++----
.../locale/lt/LC_MESSAGES/django.po | 216 ++---
.../locale/pl/LC_MESSAGES/django.mo | Bin 7970 -> 7957 bytes
.../locale/pl/LC_MESSAGES/django.po | 89 +-
.../locale/ru/LC_MESSAGES/django.po | 216 ++---
.../locale/uk/LC_MESSAGES/django.po | 216 ++---
src/wolnelektury/templates/main_page.html | 2 +-
28 files changed, 3228 insertions(+), 2736 deletions(-)
diff --git a/src/catalogue/locale/de/LC_MESSAGES/django.po b/src/catalogue/locale/de/LC_MESSAGES/django.po
index 9b2ae5649..1b32301b1 100644
--- a/src/catalogue/locale/de/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/de/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:38+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -105,287 +105,294 @@ msgstr "Sammlungen"
msgid "All things"
msgstr "Sammlungen"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "Bitte stellen Sie die XML bereit."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "Zeige die FuÃnoten nicht"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "Zeige die Motive nicht "
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "Benutze voreingestellte Schrift nicht"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Inhaltsverzeichnis"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Zeilenabstand"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Normaler Zeilenabstand"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "Zeilenabstand 1,5"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Doppelter Zeilenabstand"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "SchriftgröÃe"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Voreingestellt"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "GroÃ"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "Titel"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "Sortierschlüssel"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Ergebnisse nach Autoren"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "Slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "Sprachenkode"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "Beschreibung"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "Erstellungsdatum"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "Erstellungsdatum"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "Elternnummer"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "zusätzliche Informationen"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "Umschlag"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "Buch"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "Bücher"
-#: models/book.py:449
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Buch mit dem Slug = \"%s\" ist nicht vorhanden."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Buch %s ist bereits vorhanden"
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s XML-Datei"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "Typ"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "Name"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "Name"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
#, fuzzy
msgid "file"
msgstr "XML-Datei"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:19
+#: models/collection.py:17
msgid "book slugs"
msgstr "Büchervorschau"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "Art"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "Sammlung"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "Sammlungen"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "Auszug"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "Auszüge"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "zusätzliche Informationen"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Quelle"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Quelle"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "Autor"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "Epoche"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "Genre"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "Motiv"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "Buchregal"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "Tag"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "Inhaltstyp"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "Objekt ID"
@@ -393,12 +400,12 @@ msgstr "Objekt ID"
msgid "category"
msgstr "Kategorie"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "Tags"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -409,7 +416,7 @@ msgid "See also"
msgstr "Siehe auch"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Motive"
@@ -418,55 +425,58 @@ msgstr "Motive"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Quelle"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "vom Buch"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "Art"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "XML-Ursprungsdatei"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Buch über"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Editor-Plattform"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Buchbeschreibung in Wikipedia"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Passe dieses Buch zusammen"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Motiv"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "Im Werk"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Dieses Werk steht unter Lizenz"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -494,28 +504,28 @@ msgstr ""
"(Anmerkungen, Motive), sind sie unter der Lizenz http://creativecommons.org/"
"licenses/by-sa/3.0/ verfügbar."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Der Text basiert auf:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Redigiert und kommentiert von:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -547,21 +557,21 @@ msgstr "Sorte"
msgid "Genre"
msgstr "Gattung"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "Sprachenkode"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Online lesen"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -569,73 +579,73 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Herunterladen"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Inhaltsverzeichnis"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Editieren. Notiz"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Elternnummer"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Zeige die Motive nicht "
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -646,7 +656,7 @@ msgid "Catalogue"
msgstr "Katalog"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -658,41 +668,44 @@ msgstr "Laden Sie den Katalog als PDF-Datei"
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "Sammlungen"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Künstler"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "Sammlungen"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "Sammlungen"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "PDF-Datei herunterladen"
@@ -756,28 +769,28 @@ msgstr "Siehe XML-Quelle"
msgid "Work's themes "
msgstr "Motive des Werkes"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Bücherseite"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Herunterladen als"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiobücher wurden als Teil der folgenden Projekte vorbereitet:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, gestiftet von %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -788,7 +801,7 @@ msgstr ""
"Audiobücher wurden als Teil des Projektes %(cs)s vorbereitet, gestiftet von "
"%(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -818,7 +831,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -828,23 +841,19 @@ msgstr ""
msgid "Search"
msgstr "Suchen"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Haben Sie gemeint"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "Bücher"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Sorry! Suchkriterien haben keine Ressourcen erwiesen"
@@ -863,27 +872,27 @@ msgstr "Sorry! Suchfrage muss zumindest zwei Buchstaben enthalten"
msgid "Download a custom PDF"
msgstr "PDF-Datei herunterladen"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Künstler"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Regisseur"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -902,7 +911,7 @@ msgstr "Wolne Lektury"
msgid "See full category"
msgstr "volle Kategorie sehen"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audioücher"
@@ -922,45 +931,45 @@ msgstr "Gattungen"
msgid "Kinds"
msgstr "Sorten"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Auflistung aller Audiobücher"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF-Datei"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motive und Themen"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "Beschreibung"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "in Wikipedia"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Zeilenabstand"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -971,11 +980,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "Buch wurde erfolgreich importiert"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Fehler beim Importieren der Datei: %r"
diff --git a/src/catalogue/locale/en/LC_MESSAGES/django.po b/src/catalogue/locale/en/LC_MESSAGES/django.po
index 17439101b..b523f8501 100644
--- a/src/catalogue/locale/en/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:38+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -105,286 +105,293 @@ msgstr "collections"
msgid "All things"
msgstr "collections"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "Please supply an XML."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "Don't show footnotes"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "Don't display themes"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "Don't use our custom font"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Table of contents"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Leading"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Normal leading"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "One and a half leading"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Double leading"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "Font size"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Default"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "Big"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "Title"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "Sort key"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Results by authors"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "Slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "language code"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "Description"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "creation date"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "creation date"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "Parent number"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "Additional information"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "cover"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "book"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "Books"
-#: models/book.py:449
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Book with stub = \"%s\" does not exist."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Book %s already exists"
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s file"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "type"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "name"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "name"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
msgid "file"
msgstr "XML file"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:19
+#: models/collection.py:17
msgid "book slugs"
msgstr "Book stubs"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "form"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "collection"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "collections"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "Fragment"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "Fragments"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "Additional information"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Source"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Source"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "author"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "period"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "genre"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "motif"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "set"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "content type"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "object id"
@@ -392,12 +399,12 @@ msgstr "object id"
msgid "category"
msgstr "Category"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "tags"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -408,7 +415,7 @@ msgid "See also"
msgstr "See also"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Themes"
@@ -417,55 +424,58 @@ msgstr "Themes"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Source"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "of the book"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "form"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Source XML file"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Book on"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Editor's Platform"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Book description on Wikipedia"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Mix this book"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Theme"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "in work "
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "This work is licensed under:"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -496,28 +506,28 @@ msgstr ""
"Commons Attribution-ShareAlike 3.0\n"
" license."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Text based on:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Edited and annotated by:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -549,21 +559,21 @@ msgstr "Form"
msgid "Genre"
msgstr "Genre"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "language code"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Read online"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -571,73 +581,73 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Download"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Table of contents"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Edit. note"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Parent number"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Don't display themes"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -648,7 +658,7 @@ msgid "Catalogue"
msgstr "Catalogue"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -660,41 +670,44 @@ msgstr "Download the catalogue in PDF format."
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "collections"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Reader"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "collections"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "collections"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "Download custom PDF"
@@ -759,28 +772,28 @@ msgstr "View XML source"
msgid "Work's themes "
msgstr "Work's themes "
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Book's page"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Download as"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiobooks were prepared as a part of the following projects:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, funded by %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -790,7 +803,7 @@ msgid ""
msgstr ""
"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -820,7 +833,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -830,23 +843,19 @@ msgstr ""
msgid "Search"
msgstr "Search"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Did you mean"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "Books"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Sorry! Search cirteria did not match any resources."
@@ -864,27 +873,27 @@ msgstr "Sorry! Search query must have at least two characters."
msgid "Download a custom PDF"
msgstr "Download a custom PDF"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Reader"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Director"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -903,7 +912,7 @@ msgstr "Wolne Lektury"
msgid "See full category"
msgstr "See full category"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiobooks"
@@ -923,45 +932,45 @@ msgstr "Genres"
msgid "Kinds"
msgstr "Forms"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "List of the audiobooks"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF file"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motifs and themes"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "Description"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "in Wikipedia"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Leading"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -972,11 +981,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "Book imported succesfully"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "An error occured while importing file: %r"
diff --git a/src/catalogue/locale/es/LC_MESSAGES/django.po b/src/catalogue/locale/es/LC_MESSAGES/django.po
index cf1d4520b..f1fe1e653 100644
--- a/src/catalogue/locale/es/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/es/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:39+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -105,287 +105,294 @@ msgstr "colecciones"
msgid "All things"
msgstr "colecciones"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "Por favor, suministre un XML."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "No mostres notas a pie de página"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "No mostres temas"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "No uses nuestro tipo de la fuente de personalización "
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Tabla de contenido"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Interlineado"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Interlineado normal"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "Interlineado uno y medio"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Interlineado doble"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "Tamaño de la fuente"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Valor por defecto"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "Grande"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "tÃtulo"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "clave de clasificación"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Resultados por autor"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "código de idioma"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "descripción"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "fecha de creación"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "fecha de creación"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "cifra matriz"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "información adicional"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "tapa"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "libro"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "libros"
-#: models/book.py:449
+#: models/book.py:538
#, fuzzy, python-format
msgid "Book \"%s\" does not exist."
msgstr "Libro con slug = \"%s\" no existe."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Libro %s ya existe"
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s archivo"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "tipo"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "nombre"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "nombre"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
msgid "file"
msgstr "archivo"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "los medios de el libro"
-#: models/collection.py:19
+#: models/collection.py:17
#, fuzzy
msgid "book slugs"
msgstr "vista previa de libros"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "tipo"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "colección"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "colecciones"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "fragmento"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "fragmentos"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "información adicional"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Fuente"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Fuente"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "autor"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "época"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "género"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "tema"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "colección"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "tipo de contenido"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "id de objeto"
@@ -393,12 +400,12 @@ msgstr "id de objeto"
msgid "category"
msgstr "categorÃa"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "tags"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -409,7 +416,7 @@ msgid "See also"
msgstr "Véase también"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Temas"
@@ -418,33 +425,36 @@ msgstr "Temas"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Fuente"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "del libro"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "tipo"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "archivo fuente XML"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "El libro está en el estante"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Plataforma de Editor"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Descripción del libro en Wikipedia"
@@ -452,25 +462,25 @@ msgstr "Descripción del libro en Wikipedia"
# ! relaciona lub combina - jeÅli chodzi o powiÄ
zanie
# ! prepara - jeÅli chodzi o przygotowanie
# (zmieniÄ czasownik "mezcla" na któryÅ z powyższych jeÅli kontekst jest inny)
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Mezcla este libro"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Tema"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "en la obra"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Esta obra está autorizada bajo:"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -501,28 +511,28 @@ msgstr ""
"Attribution-ShareAlike 3.0\n"
" licencia."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Texto preparado a base de:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Editado y anotado por:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -554,21 +564,21 @@ msgstr "Género"
msgid "Genre"
msgstr "Subgénero"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "código de idioma"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Leer en lÃnea"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -576,74 +586,74 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Descargar"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Tabla de contenido"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
# ! także: N.de la R.
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Nota de la redacción"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "cifra matriz"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "No mostres temas"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -654,7 +664,7 @@ msgid "Catalogue"
msgstr "Catálogo"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -666,41 +676,44 @@ msgstr "Descarga el catálogo en formato PDF"
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "colecciones"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artista"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "colecciones"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "colecciones"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "Descarga PDF personalizado"
@@ -766,28 +779,28 @@ msgstr "Ver código fuente XML"
msgid "Work's themes "
msgstr "Temas de las obras"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Página del libro"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Descargar como"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiolibros forman parte de los siguientes proyectos:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s,financiado por %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -796,7 +809,7 @@ msgid ""
"%(fb)s."
msgstr "Audiolibros forman parte del proyecto %(cs)s financiado por %(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -826,7 +839,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -836,23 +849,19 @@ msgstr ""
msgid "Search"
msgstr "Buscar"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "¿Te has referido a...?"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "libros"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr ""
"¡Lo siento! El criterio de la búsqueda no corresponde a ningún recurso."
@@ -875,27 +884,27 @@ msgstr ""
msgid "Download a custom PDF"
msgstr "Descarga un PDF personalisado"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artista"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Director"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -914,7 +923,7 @@ msgstr "Wolne Lektury"
msgid "See full category"
msgstr "Ver la categorÃa completa"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiolibros"
@@ -934,39 +943,39 @@ msgstr "Subgénero"
msgid "Kinds"
msgstr "Géneros"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Lista de todos los audiolibros "
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "archivo PDF"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motivos y temas"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "descripción"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "en Wikipedia"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
@@ -974,7 +983,7 @@ msgstr "Interlineado"
# msgid "Today is %(month)s, %(day)s."
# msgstr "Hoy es el %(dÃa)s de %(mes)es"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -985,11 +994,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "El libro ha sido importado con éxito"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Ha ocurrido un error al cargar el archivo: %r"
diff --git a/src/catalogue/locale/fr/LC_MESSAGES/django.po b/src/catalogue/locale/fr/LC_MESSAGES/django.po
index da154f7bc..b587d8fd9 100644
--- a/src/catalogue/locale/fr/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/fr/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:38+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -16,11 +16,11 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -104,287 +104,294 @@ msgstr "collections"
msgid "All things"
msgstr "collections"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "Fournissez un XML, s'il vous plaît."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "Ne montre pas d'annotations"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "N'affiche pas de thèmes"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "N'utilise pas notre caractère usuel"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Table des matières"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Interligne"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Interligne normal"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "Interligne et demi"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Interligne double"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "Taille des caractères"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Implicite"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "Grand(e)(s)"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "titre"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "critère de tri"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Résultats par l'auteur"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "ébauche"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "code de langue"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "description"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "date de création"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "date de création"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "nombre de parent"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "information supplémentaire"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "couverture"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "livre"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "livres"
-#: models/book.py:449
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Livre \"%s\" n'existe pas."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Livre %s existe déjà "
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "fichier %s"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "type"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "nom"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "nom"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
msgid "file"
msgstr "fichier"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:19
+#: models/collection.py:17
#, fuzzy
msgid "book slugs"
msgstr "ébauches des livres"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "type"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "collection"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "collections"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "extrait"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "extraits"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "information supplémentaire"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Source"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Source"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "auteur"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "époque"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "genre"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "thème"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "série"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "type du contenu"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "ID de l'objet"
@@ -392,12 +399,12 @@ msgstr "ID de l'objet"
msgid "category"
msgstr "catégorie"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "tags"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -408,7 +415,7 @@ msgid "See also"
msgstr "Voir aussi"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Thèmes"
@@ -417,55 +424,58 @@ msgstr "Thèmes"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Source"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "du livre"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "type"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Fichier source XML"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Livre sur"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Plateforme d'éditeur"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Description du livre sur Wikipédia"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Mixez ce livre"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Thème"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "dans l'oeuvre"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Cet oeuvre est publié sous la licence"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -495,28 +505,28 @@ msgstr ""
"Paternité "
"- Partage à l'Identique 3.0 non transposé ."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Préparation du texte basée sur:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Les éditions et annotations par:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -548,21 +558,21 @@ msgstr "Type"
msgid "Genre"
msgstr "Genre"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "code de langue"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Lire en ligne"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -570,73 +580,73 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Téléchargez"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Table des matières"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Note d'éditeur"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "nombre de parent"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "N'affiche pas de thèmes"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -647,7 +657,7 @@ msgid "Catalogue"
msgstr "Catalogue"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -659,41 +669,44 @@ msgstr "Téléchargez le catalogue au format PDF"
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "collections"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artiste"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "collections"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "collections"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "Téléchargez un PDF personnalisé"
@@ -757,28 +770,28 @@ msgstr "Voir source XML"
msgid "Work's themes "
msgstr "Les thèmes de l'oeuvre"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury (Lectures Libres)"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Site du livre"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Téléchargez comme"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Livres audios ont été préparés comme une part des projets:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, sponsorisé par %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -789,7 +802,7 @@ msgstr ""
"Livres audios ont été préparés comme une part du projet %(cs)s sponsorisé "
"par %(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -819,7 +832,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -829,23 +842,19 @@ msgstr ""
msgid "Search"
msgstr "Rechercher"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Est-ce que vous cherchez"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "livres"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr ""
"Nous sommes désolés, aucune ressource ne répond aux critères de recherche."
@@ -868,27 +877,27 @@ msgstr ""
msgid "Download a custom PDF"
msgstr "Téléchargez un PDF pérsonnalisé"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artiste"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Metteur en scène"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -907,7 +916,7 @@ msgstr "Wolne Lektury (Lectures Libres)"
msgid "See full category"
msgstr "Voir catégorie entière"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Livres audio"
@@ -927,39 +936,39 @@ msgstr "Genres"
msgid "Kinds"
msgstr "Types"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Liste des tous les livres audio"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "fichier PDF"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motifs et thèmes"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "description"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "sur Wikipédia"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
@@ -967,7 +976,7 @@ msgstr "Interligne"
# msgid "Today is %(month)s, %(day)s."
# msgstr "Aujourd'hui nous sommes le"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -978,11 +987,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "Livre importé avec succès"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Erreur pendant l'importation du fichier: %r"
diff --git a/src/catalogue/locale/it/LC_MESSAGES/django.po b/src/catalogue/locale/it/LC_MESSAGES/django.po
index 683456d1a..eae5bc787 100644
--- a/src/catalogue/locale/it/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/it/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:39+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -105,286 +105,293 @@ msgstr " raccolte"
msgid "All things"
msgstr " raccolte"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "Si prega di fornire un XML."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "Non mostrare le note"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "Non visualizzare i temi"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "Non utilizzare il nostro font personalizzato"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Indice"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Interlinea"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Interlinea normale"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr " Interlinea 1,5"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Interlinea doppia"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "Grandezza del carattere"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Predefinito"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "Grande"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "titolo"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "chiave di ordinamento"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Risultati per autore"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "codice della lingua"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "descrizione"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "data di creazione"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "data di creazione"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "numero del genitore"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr " ulteriori informazioni"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "copertina"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "libro"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "Libri"
-#: models/book.py:449
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Il libro \"%s\" non esiste."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Il libro %s esiste già "
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "i %s di file"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "tipo"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "nome"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "nome"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
msgid "file"
msgstr "file"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:19
+#: models/collection.py:17
msgid "book slugs"
msgstr " slug del libro "
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "categoria"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "raccolta"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr " raccolte"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "Frammento"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "Frammenti"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr " ulteriori informazioni"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Fonte"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Fonte"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "autore"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "epoca"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "genere"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "tema"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "raccolta"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr ""
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr ""
@@ -392,12 +399,12 @@ msgstr ""
msgid "category"
msgstr "categoria"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "i tag"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -408,7 +415,7 @@ msgid "See also"
msgstr "Vedi anche"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Temi"
@@ -417,55 +424,58 @@ msgstr "Temi"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Fonte"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "del libro"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "categoria"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "File di fonte XML"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Libro su"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr " Piattaforma del editore"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Descrizione del libro su Wikipedia"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Combina questo libro"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "tema"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "in corso"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Questa opera è pubblicata su licenza:"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -498,28 +508,28 @@ msgstr ""
"Commons Attribution-ShareAlike 3.0\n"
"licenza."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Il testo preparato e basato su:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Curato ed elaborato da:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -551,21 +561,21 @@ msgstr "Categoria"
msgid "Genre"
msgstr "Genere"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "codice della lingua"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Leggi online"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -573,73 +583,73 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Scarica"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Indice"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Modifica. nota"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "numero del genitore"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Non visualizzare i temi"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -650,7 +660,7 @@ msgid "Catalogue"
msgstr "Catalogo"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -662,41 +672,44 @@ msgstr "Scarica il catalogo nel formato PDF."
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr " raccolte"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artista"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr " raccolte"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr " raccolte"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "Scarica PDF personalizzato"
@@ -762,28 +775,28 @@ msgstr "Visualizza la fonte XML"
msgid "Work's themes "
msgstr "Temi dell'opera"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Pagina del libro"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Scarica come"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Gli audilobri sono stati preparati come parte dei seguenti progetti:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, creato da %(fb)s // %(cs)s, finanziato da %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -794,7 +807,7 @@ msgstr ""
"Gli audiollibri sono stati preparati come parte del progetto %(cs)s, "
"finanziato da %(fb)s"
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -823,7 +836,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -833,23 +846,19 @@ msgstr ""
msgid "Search"
msgstr "Cerca"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Volevi dire"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "Libri"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Siamo spiacenti!I criteri di ricerca non corrispondono alle risorse."
@@ -871,27 +880,27 @@ msgstr ""
msgid "Download a custom PDF"
msgstr " Scarica un PDF personalizzato"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artista"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Direttore"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -910,7 +919,7 @@ msgstr "Wolne Lektury"
msgid "See full category"
msgstr "Vedi tutta la categoria"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiolibri"
@@ -930,45 +939,45 @@ msgstr "Generi"
msgid "Kinds"
msgstr "Categorie"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Elenco di tutti gli audiolibri "
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "DAISY"
msgid "DAISY files"
msgstr "DAISY"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motivi e temi"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "descrizione"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "su Wikipedia"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Interlinea"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -979,11 +988,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "Libro scaricato con successo"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Errore dell'importazione del file: %r"
diff --git a/src/catalogue/locale/jp/LC_MESSAGES/django.po b/src/catalogue/locale/jp/LC_MESSAGES/django.po
index 8de2d5621..fce9de9d3 100644
--- a/src/catalogue/locale/jp/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/jp/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-16 09:19+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,501 +17,630 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: forms.py:27
+#: constants.py:13
+msgid "Free Art License 1.3"
+msgstr ""
+
+#: constants.py:58
+msgid "authors"
+msgstr ""
+
+#: constants.py:59
+msgid "epochs"
+msgstr ""
+
+#: constants.py:60
+msgid "kinds"
+msgstr ""
+
+#: constants.py:61
+msgid "genres"
+msgstr ""
+
+#: constants.py:62
+msgid "themes"
+msgstr ""
+
+#: constants.py:63
+msgid "sets"
+msgstr ""
+
+#: constants.py:64
+msgid "things"
+msgstr ""
+
+#: constants.py:68
+msgid "All authors"
+msgstr ""
+
+#: constants.py:69
+msgid "All epochs"
+msgstr ""
+
+#: constants.py:70
+msgid "All kinds"
+msgstr ""
+
+#: constants.py:71
+msgid "All genres"
+msgstr ""
+
+#: constants.py:72
+msgid "All themes"
+msgstr ""
+
+#: constants.py:73
+msgid "All sets"
+msgstr ""
+
+#: constants.py:74
+msgid "All things"
+msgstr ""
+
+#: forms.py:28
msgid "Please supply an XML."
msgstr ""
-#: forms.py:46
+#: forms.py:48
msgid "Don't show footnotes"
msgstr ""
-#: forms.py:47
+#: forms.py:49
msgid "Don't disply themes"
msgstr ""
-#: forms.py:48
+#: forms.py:50
msgid "Don't use our custom font"
msgstr ""
-#: forms.py:49
+#: forms.py:51
msgid "Without cover"
msgstr ""
#: forms.py:52
+msgid "Without table of contents"
+msgstr ""
+
+#: forms.py:55
msgid "Leading"
msgstr ""
-#: forms.py:53
+#: forms.py:56
msgid "Normal leading"
msgstr ""
-#: forms.py:54
+#: forms.py:57
msgid "One and a half leading"
msgstr ""
-#: forms.py:55
+#: forms.py:58
msgid "Double leading"
msgstr ""
-#: forms.py:57
+#: forms.py:60
msgid "Font size"
msgstr ""
-#: forms.py:58
+#: forms.py:61
msgid "Default"
msgstr ""
-#: forms.py:59
+#: forms.py:62
msgid "Big"
msgstr ""
-#: forms.py:82
+#: forms.py:63
+msgid "Bigger"
+msgstr ""
+
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: views.py:585
-#, python-format
-msgid ""
-"An error occurred: %(exception)s\n"
-"\n"
-"%(tb)s"
+#: models/book.py:57 models/collection.py:14
+msgid "title"
msgstr ""
-#: views.py:586
-msgid "Book imported successfully"
+#: models/book.py:58 models/tag.py:58
+msgid "sort key"
msgstr ""
-#: views.py:588
-#, python-format
-msgid "Error importing file: %r"
+#: models/book.py:60
+msgid "sort key by author"
msgstr ""
-#: views.py:620
-msgid "Download custom PDF"
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+msgid "slug"
msgstr ""
-#: views.py:621 templates/catalogue/book_short.html:92
-#: templates/catalogue/book_text.html:27 templates/catalogue/book_wide.html:63
-msgid "Download"
+#: models/book.py:63
+msgid "language code"
msgstr ""
-#: models/book.py:28 models/collection.py:11
-msgid "title"
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
+msgid "description"
msgstr ""
-#: models/book.py:29 models/tag.py:34
-msgid "sort key"
+#: models/book.py:65
+msgid "abstract"
msgstr ""
-#: models/book.py:30 models/book.py:32 models/collection.py:12
-#: models/collection.py:15 models/tag.py:33
-msgid "slug"
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+msgid "creation date"
msgstr ""
-#: models/book.py:33
-msgid "language code"
+#: models/book.py:67
+msgid "change date"
msgstr ""
-#: models/book.py:35 models/book.py:146 models/collection.py:13
-#: models/tag.py:37 models/tag.py:94
-msgid "description"
+#: models/book.py:68
+msgid "parent number"
msgstr ""
-#: models/book.py:36 models/book.py:37 models/bookmedia.py:29 models/tag.py:46
-#: models/tag.py:47
-msgid "creation date"
+#: models/book.py:69 models/bookmedia.py:35
+msgid "extra information"
msgstr ""
-#: models/book.py:38
-msgid "parent number"
+#: models/book.py:72
+msgid "print on demand"
msgstr ""
-#: models/book.py:39 models/bookmedia.py:30
-msgid "extra information"
+#: models/book.py:73
+msgid "recommended"
msgstr ""
-#: models/book.py:44
+#: models/book.py:74
+msgid "audio length"
+msgstr ""
+
+#: models/book.py:75
+msgid "preview"
+msgstr ""
+
+#: models/book.py:76
+msgid "preview until"
+msgstr ""
+
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr ""
-#: models/book.py:66 models/collection.py:18 models/tag.py:22
+#: models/book.py:89
+msgid "cover thumbnail"
+msgstr ""
+
+#: models/book.py:95
+msgid "cover thumbnail for mobile app"
+msgstr ""
+
+#: models/book.py:101
+msgid "cover for mobile app"
+msgstr ""
+
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr ""
-#: models/book.py:67
+#: models/book.py:137
msgid "books"
msgstr ""
-#: models/book.py:244
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr ""
-#: models/book.py:258
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr ""
-#: models/book.py:599 models/bookmedia.py:23
+#: models/book.py:813
+msgid "This work needs modernisation"
+msgstr ""
+
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr ""
-#: models/bookmedia.py:26
+#: models/bookmedia.py:29
msgid "type"
msgstr ""
-#: models/bookmedia.py:27 models/tag.py:32
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr ""
-#: models/bookmedia.py:28
+#: models/bookmedia.py:31
+msgid "part name"
+msgstr ""
+
+#: models/bookmedia.py:32
+msgid "index"
+msgstr ""
+
+#: models/bookmedia.py:33
msgid "file"
msgstr ""
-#: models/bookmedia.py:39 models/bookmedia.py:40
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr ""
-#: models/collection.py:16
+#: models/collection.py:17
msgid "book slugs"
msgstr ""
-#: models/collection.py:18 models/tag.py:18
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr ""
-#: models/collection.py:22
-msgid "collection"
+#: models/collection.py:19
+msgid "picture"
msgstr ""
#: models/collection.py:23
+msgid "collection"
+msgstr ""
+
+#: models/collection.py:24
msgid "collections"
msgstr ""
-#: models/fragment.py:32
+#: models/fragment.py:28
msgid "fragment"
msgstr ""
-#: models/fragment.py:33
+#: models/fragment.py:29
msgid "fragments"
msgstr ""
-#: models/tag.py:16
+#: models/source.py:10
+msgid "network location"
+msgstr ""
+
+#: models/source.py:15
+msgid "source"
+msgstr ""
+
+#: models/source.py:16
+msgid "sources"
+msgstr ""
+
+#: models/tag.py:21
msgid "author"
msgstr ""
-#: models/tag.py:17
+#: models/tag.py:22
msgid "epoch"
msgstr ""
-#: models/tag.py:19
+#: models/tag.py:24
msgid "genre"
msgstr ""
-#: models/tag.py:20
+#: models/tag.py:25
msgid "theme"
msgstr ""
-#: models/tag.py:21
+#: models/tag.py:26
msgid "set"
msgstr ""
-#: models/tag.py:23
+#: models/tag.py:27
msgid "thing"
msgstr ""
+#: models/tag.py:33 models/tag.py:97
+msgid "tag"
+msgstr ""
+
+#: models/tag.py:34
+msgid "content type"
+msgstr ""
+
#: models/tag.py:35
+msgid "object id"
+msgstr ""
+
+#: models/tag.py:60
msgid "category"
msgstr ""
-#: models/tag.py:40
-msgid "book count"
+#: models/tag.py:98
+msgid "tags"
msgstr ""
-#: models/tag.py:41
-msgid "picture count"
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
+msgid "Other versions"
msgstr ""
-#: models/tag.py:65
-msgid "tag"
+#: templates/catalogue/book_detail.html:34
+msgid "See also"
msgstr ""
-#: models/tag.py:66
-msgid "tags"
+#: templates/catalogue/book_detail.html:41
+#: templates/catalogue/book_text.html:38
+#: templates/catalogue/tagged_object_list.html:20
+msgid "Themes"
msgstr ""
-#: models/tag.py:83
-msgid ""
-"Book tags can't have attached links. Set them directly on the book instead "
-"of it's tag."
+#: templates/catalogue/book_detail.html:47
+msgid "Information about the work"
msgstr ""
-#: templates/catalogue/audiobook_list.html:7
-#: templates/catalogue/audiobook_list.html:16
-msgid "Listing of all audiobooks"
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
+msgid "Source"
msgstr ""
-#: templates/catalogue/audiobook_list.html:12
-msgid "Latest MP3 audiobooks"
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
+msgid "of the book"
msgstr ""
-#: templates/catalogue/audiobook_list.html:13
-msgid "Latest Ogg Vorbis audiobooks"
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
+msgid "in"
msgstr ""
-#: templates/catalogue/audiobook_list.html:19
-msgid ""
-"Audioteka lektur szkolnych fundacji Nowoczesna Polska.\n"
-"Możecie z niej korzystaÄ bezpÅatnie i bez ograniczeÅ.\n"
-"Audiobooki nagrywajÄ
znani aktorzy, wÅród nich Danuta Stenka i Jan Peszek."
+#: templates/catalogue/book_detail.html:74
+msgid "Source XML file"
msgstr ""
-#: templates/catalogue/book_detail.html:20
-#: templates/catalogue/tagged_object_list.html:74
-#: templates/catalogue/tagged_object_list.html:109
-msgid "See also"
+#: templates/catalogue/book_detail.html:78
+msgid "Book on"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:78
+msgid "Editor's Platform"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:83
+msgid "Book description on Wikipedia"
msgstr ""
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_detail.html:87
+msgid "Mix this book"
+msgstr ""
+
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr ""
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr ""
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr ""
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
msgid ""
"This work isn't covered by copyright and is part of the\n"
-" public domain, which means it can be freely used, published and\n"
-" distributed. If there are any additional copyrighted materials\n"
-" provided with this work (such as annotations, motifs etc.), those\n"
-" materials are licensed under the \n"
-" Creative "
+" public domain, which means it can be freely used, published and\n"
+" distributed. If there are any additional copyrighted materials\n"
+" provided with this work (such as annotations, motifs etc.), those\n"
+" materials are licensed under the\n"
+" Creative "
"Commons Attribution-ShareAlike 3.0 \n"
-" license."
+" license."
msgstr ""
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
msgid "Resource prepared based on:"
msgstr ""
-#: templates/catalogue/book_info.html:28
-msgid "Edited and annotated by:"
+#: templates/catalogue/book_info.html:31
+msgid "Edited by:"
msgstr ""
#: templates/catalogue/book_info.html:33
+msgid "Edited and annotated by:"
+msgstr ""
+
+#: templates/catalogue/book_info.html:41
+msgid "Publisher:"
+msgstr ""
+
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:39
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10
+#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
+#: templates/catalogue/picture_list.html:8
+#: templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr ""
-#: templates/catalogue/book_list.html:21
+#: templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr ""
-#: templates/catalogue/book_list.html:30
+#: templates/catalogue/book_list.html:35
msgid "â top â"
msgstr ""
-#: templates/catalogue/book_short.html:59
-#: templates/catalogue/picture_detail.html:54
+#: templates/catalogue/book_short.html:53
+#: templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr ""
-#: templates/catalogue/book_short.html:66
-#: templates/catalogue/picture_detail.html:60
+#: templates/catalogue/book_short.html:61
+#: templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr ""
-#: templates/catalogue/book_short.html:73
+#: templates/catalogue/book_short.html:69
msgid "Genre"
msgstr ""
-#: templates/catalogue/book_short.html:88
-msgid "Read online"
+#: templates/catalogue/book_short.html:79
+msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:95
-#: templates/catalogue/book_text.html:40
-msgid "to print"
+#: templates/catalogue/book_short.html:87
+msgid "Language"
msgstr ""
-#: templates/catalogue/book_short.html:98
-msgid "for an e-book reader"
+#: templates/catalogue/book_short.html:111
+msgid "Read online"
msgstr ""
-#: templates/catalogue/book_short.html:101
-#: templates/catalogue/book_text.html:46
-msgid "for Kindle"
+#: templates/catalogue/book_short.html:114
+msgid ""
+"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
+"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
+" Wszystkie nasze zasoby w wersji elektronicznej sÄ
zawsze dostÄpne "
+"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:104
-#: templates/catalogue/book_text.html:49
-msgid "FictionBook"
+#: templates/catalogue/book_short.html:114
+msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:107
-#: templates/catalogue/book_text.html:52
-msgid "for advanced usage"
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+msgid "Download"
msgstr ""
-#: templates/catalogue/book_short.html:113
-#: templates/catalogue/book_text.html:30
-msgid "Listen"
+#: templates/catalogue/book_short.html:133
+msgid "more"
msgstr ""
-#: templates/catalogue/book_text.html:9 templates/catalogue/player.html:11
-msgid "Wolne Lektury"
+#: templates/catalogue/book_short.html:144
+msgid "less"
msgstr ""
-#: templates/catalogue/book_text.html:22
+#: templates/catalogue/book_short.html:150
+msgid "For now this work is only available for our subscribers."
+msgstr ""
+
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr ""
-#: templates/catalogue/book_text.html:23 templatetags/catalogue_tags.py:420
-msgid "Themes"
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr ""
-#: templates/catalogue/book_text.html:25
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr ""
-#: templates/catalogue/book_text.html:26 templates/catalogue/player.html:34
-msgid "Book's page"
-msgstr ""
-
-#: templates/catalogue/book_text.html:43
-msgid "for a reader"
-msgstr ""
-
-#: templates/catalogue/book_text.html:56 templates/catalogue/book_wide.html:67
-msgid "Download all audiobooks for this book"
-msgstr ""
-
-#: templates/catalogue/book_wide.html:22
-#: templates/catalogue/tagged_object_list.html:60
-msgid "Motifs and themes"
-msgstr ""
-
-#: templates/catalogue/book_wide.html:44
-msgid "See"
-msgstr ""
-
-#: templates/catalogue/book_wide.html:47
-msgid "Source"
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
+msgid "Close"
msgstr ""
-#: templates/catalogue/book_wide.html:47
-msgid "of the book"
+#: templates/catalogue/book_text.html:81
+msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_wide.html:49
-msgid "Source XML file"
+#: templates/catalogue/book_text.html:125
+msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_wide.html:51
-msgid "Book on"
+#: templates/catalogue/book_text.html:126
+msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_wide.html:51
-msgid "Editor's Platform"
+#: templates/catalogue/book_text.html:146
+msgid "Display line numbers"
msgstr ""
-#: templates/catalogue/book_wide.html:54
-msgid "Book description on Lektury.Gazeta.pl"
+#: templates/catalogue/book_text.html:148
+msgid "Display themes"
msgstr ""
-#: templates/catalogue/book_wide.html:57
-msgid "Book description on Wikipedia"
+#: templates/catalogue/book_text.html:150
+msgid "Display footnotes"
msgstr ""
-#: templates/catalogue/book_wide.html:59
-msgid "Mix this book"
+#: templates/catalogue/catalogue.html:6
+msgid "Catalogue"
msgstr ""
-#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11
-msgid "Catalogue"
+#: templates/catalogue/catalogue.html:11
+#: templates/catalogue/tagged_object_list.html:57
+msgid "All works"
msgstr ""
-#: templates/catalogue/catalogue.html:16
+#: templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr ""
#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/search_multiple_hits.html:17
-#: templates/catalogue/tagged_object_list.html:26
-#: templatetags/catalogue_tags.py:416
-msgid "Authors"
+#: templates/catalogue/tag_list_split.html:4
+#: templates/catalogue/tagged_object_list.html:5
+msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22
-#: templates/catalogue/search_multiple_hits.html:25
-#: templates/catalogue/tagged_object_list.html:34
-#: templatetags/catalogue_tags.py:418
-msgid "Kinds"
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
+msgid "Collections"
msgstr ""
#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:33
-#: templates/catalogue/tagged_object_list.html:42
-#: templatetags/catalogue_tags.py:417
-msgid "Genres"
+#: templates/catalogue/search_multiple_hits.html:45
+#: templates/catalogue/tag_list_split.html:9
+#: templates/catalogue/tagged_object_list.html:5
+msgid "Art"
msgstr ""
-#: templates/catalogue/catalogue.html:28
-#: templates/catalogue/search_multiple_hits.html:41
-#: templates/catalogue/tagged_object_list.html:50
-#: templatetags/catalogue_tags.py:419
-msgid "Epochs"
+#: templates/catalogue/collection_box.html:4
+msgid "Collection"
msgstr ""
-#: templates/catalogue/catalogue.html:31
-msgid "Themes and topics"
+#: templates/catalogue/collection_box.html:14
+#, python-format
+msgid "and one more"
+msgid_plural "and %(c)s more"
+msgstr[0] ""
+msgstr[1] ""
+
+#: templates/catalogue/collections.html:16
+msgid "All collections"
msgstr ""
-#: templates/catalogue/catalogue.html:34 templates/catalogue/menu.html:16
-msgid "Collections"
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+msgid "Download custom PDF"
msgstr ""
-#: templates/catalogue/daisy_list.html:6
-#: templates/catalogue/daisy_list.html:12
+#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr ""
-#: templates/catalogue/daisy_list.html:9
+#: templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr ""
-#: templates/catalogue/daisy_list.html:15
-msgid ""
-"System DAISY to uznany na caÅym Åwiecie format udostÄpniania ksiÄ
żek\n"
-"dostosowany do potrzeb osób sÅabowidzÄ
cych, niewidomych oraz innych osób\n"
-"majÄ
cych trudnoÅci z czytaniem. Możecie z nich korzystaÄ bezpÅatnie i bez "
-"ograniczeÅ."
-msgstr ""
-
#: templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
@@ -524,25 +653,8 @@ msgstr ""
msgid "Hide fragment"
msgstr ""
-#: templates/catalogue/inline_tag_list.html:4
-#: templates/catalogue/tag_list.html:4
-msgid "See full category"
-msgstr ""
-
-#: templates/catalogue/menu.html:9 templates/catalogue/menu.html.py:18
-msgid "Please waitâ¦"
-msgstr ""
-
-#: templates/catalogue/menu.html:24
-msgid "All books"
-msgstr ""
-
-#: templates/catalogue/menu.html:28
-msgid "Audiobooks"
-msgstr ""
-
-#: templates/catalogue/menu.html:32
-msgid "DAISY"
+#: templates/catalogue/inline_tag_list.html:22
+msgid "Other"
msgstr ""
#: templates/catalogue/picture_detail.html:29
@@ -553,69 +665,65 @@ msgstr ""
msgid "Based on"
msgstr ""
-#: templates/catalogue/picture_detail.html:45
+#: templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr ""
-#: templates/catalogue/picture_detail.html:48
+#: templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr ""
-#: templates/catalogue/picture_detail.html:66
+#: templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr ""
-#: templates/catalogue/picture_detail.html:69
+#: templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr ""
-#: templates/catalogue/picture_detail.html:72
+#: templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr ""
-#: templates/catalogue/picture_detail.html:83
+#: templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr ""
-#: templates/catalogue/picture_detail.html:86
+#: templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr ""
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
-msgid "Listing of all pictures"
-msgstr ""
-
-#: templates/catalogue/player.html:35
-msgid "Download as"
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+msgid "Wolne Lektury"
msgstr ""
-#: templates/catalogue/player.html:88
-msgid "Artist"
+#: templates/catalogue/player.html:29
+msgid "Book's page"
msgstr ""
-#: templates/catalogue/player.html:89
-msgid "Director"
+#: templates/catalogue/player.html:30
+msgid "Download as"
msgstr ""
-#: templates/catalogue/player.html:108
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr ""
-#: templates/catalogue/player.html:113
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr ""
-#: templates/catalogue/player.html:125
+#: templates/catalogue/player.html:62
#, python-format
msgid ""
-"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
+"Audiobooks were prepared as a part of the %(cs)s project funded by "
+"%(fb)s."
msgstr ""
-#: templates/catalogue/player.html:127
+#: templates/catalogue/player.html:64
#, python-format
-msgid "Audiobooks were prepared as a part of the %(cs)s project."
+msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr ""
#: templates/catalogue/recent_audiobooks_list.html:5
@@ -637,85 +745,143 @@ msgstr ""
#, python-format
msgid ""
"You can also see recent audiobooks \n"
-" and recent DAISY files ."
+" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:5
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
+#: templates/catalogue/search_too_long.html:5
+#: templates/catalogue/search_too_long.html:10
#: templates/catalogue/search_too_short.html:5
#: templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:11
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:52
-msgid "Results by title"
+#: templates/catalogue/search_multiple_hits.html:32
+msgid "Books"
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:67
-msgid "Results by authors"
+#: templates/catalogue/search_no_hits.html:20
+#: templates/catalogue/tagged_object_list.html:66
+msgid "Sorry! Search cirteria did not match any resources."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:80
-msgid "Results by translators"
+#: templates/catalogue/search_too_long.html:13
+msgid "Sorry! Search query is too long to be processed."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:93
-msgid "Results in text"
+#: templates/catalogue/search_too_short.html:13
+msgid "Sorry! Search query must have at least two characters."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:110
-msgid "Other results"
+#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+msgid "Download a custom PDF"
msgstr ""
-#: templates/catalogue/search_no_hits.html:19
-#: templates/catalogue/tagged_object_list.html:151
-msgid "Sorry! Search cirteria did not match any resources."
+#: templates/catalogue/snippets/jplayer.html:36
+msgid "Artist:"
msgstr ""
-#: templates/catalogue/search_no_hits.html:21
-msgid ""
-"Search engine supports following criteria: title, author, theme/topic, "
-"epoch, kind and genre.\n"
-"\t\tAs for now we do not support full text search."
+#: templates/catalogue/snippets/jplayer.html:37
+msgid "director:"
msgstr ""
-#: templates/catalogue/search_too_short.html:13
-msgid "Sorry! Search query must have at least two characters."
+#: templates/catalogue/snippets/jplayer.html:61
+msgid "previous"
msgstr ""
-#: templates/catalogue/tag_list_split.html:5
-msgid "Literature"
+#: templates/catalogue/snippets/jplayer.html:62
+msgid "Part"
msgstr ""
-#: templates/catalogue/tag_list_split.html:14
-msgid "Gallery"
+#: templates/catalogue/snippets/jplayer.html:63
+msgid "next"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:78
-msgid "in Culture.pl"
+#: templates/catalogue/snippets/license_icon.html:6
+#: templates/catalogue/snippets/license_icon.html:7
+msgid "Free license"
+msgstr ""
+
+#: templates/catalogue/tag_catalogue.html:11
+msgid "on Wolne Lektury"
+msgstr ""
+
+#: templates/catalogue/tag_list.html:7
+msgid "See full category"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:5
+msgid "Audiobooks"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:15
+msgid "Authors"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:16
+msgid "Epochs"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:17
+msgid "Genres"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:18
+msgid "Kinds"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:83
-#: templates/catalogue/tagged_object_list.html:113
-msgid "in Lektury.Gazeta.pl"
+#: templates/catalogue/tagged_object_list.html:52
+msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:88
-#: templates/catalogue/tagged_object_list.html:118
+#: templates/catalogue/tagged_object_list.html:55
+msgid "Listing of all audiobooks"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:62
+msgid "DAISY files"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:72
+msgid "Motifs and themes"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:84
+msgid "No description."
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr ""
-#: templates/catalogue/snippets/custom_pdf_link_li.html:5
-msgid "Download a custom PDF"
+#: templates/catalogue/tagged_object_list.html:97
+msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:8
-msgid "Free license"
+#: templates/catalogue/viewer_base.html:56
+msgid "Loading"
+msgstr ""
+
+#: views.py:351
+#, python-format
+msgid ""
+"An error occurred: %(exception)s\n"
+"\n"
+"%(tb)s"
+msgstr ""
+
+#: views.py:356
+msgid "Book imported successfully"
+msgstr ""
+
+#: views.py:357
+#, python-format
+msgid "Error importing file: %r"
msgstr ""
diff --git a/src/catalogue/locale/lt/LC_MESSAGES/django.po b/src/catalogue/locale/lt/LC_MESSAGES/django.po
index c2c72aa5c..52e322f00 100644
--- a/src/catalogue/locale/lt/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/lt/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:40+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.3\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -105,287 +105,294 @@ msgstr "kolekcijos"
msgid "All things"
msgstr "kolekcijos"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "Prašome pateikti XML."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "Nerodyti išnašų"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "Nerodyti motyvų"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "Nenaudoti derinÄių Å¡riftų"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Turinys"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "eiluÄių intervalas"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Normalus intervalas"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "Pusantro intervalo"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Dvigubasis intervalas"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "Å rifto dydis"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Numatytasis "
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "Didelis"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "pavadinimas"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "rikiavimo raktas"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Rezultatai pagal autorius"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "kalbos kodas"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "aprašymas"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "sukūrimo data"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "sukūrimo data"
# sprawdz
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "pirminis numeris"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "papildomos informacijos"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "viršelis"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "knyga"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "knygos"
-#: models/book.py:449
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Knyga \"%s\" neegzistuoja."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Knyga %s jau egzistuoja"
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s failas "
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "tipas"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "pavadinimas"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "pavadinimas"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
msgid "file"
msgstr "failas "
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:19
+#: models/collection.py:17
msgid "book slugs"
msgstr "book slugs"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "rūšis"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "kolekcija"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "kolekcijos"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "fragmentas"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "fragmentai"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "papildomos informacijos"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Knygos"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Knygos"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "autorius"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "epocha"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "žanras"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "motyvas"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "rinkinys"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "žymÄ"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "turinio rūšis"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "id obiektas"
@@ -393,12 +400,12 @@ msgstr "id obiektas"
msgid "category"
msgstr "kategorija "
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "žymÄs"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -409,7 +416,7 @@ msgid "See also"
msgstr "ŽiÅ«rÄti daugiau"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Motyvai"
@@ -418,55 +425,58 @@ msgstr "Motyvai"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Knygos"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "šaltinis"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "rūšis"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Å altinio XML failas"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Knyga "
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Redaktoriaus Platformoje"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Knygos aprašymas Vikipedijoje"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "MaiÅ¡yti Å¡iÄ
knygÄ
"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Motyvas"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "kūrinyje"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Šis kūrinys yra licencijuotas pagal:"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -498,28 +508,28 @@ msgstr ""
"Attribution-ShareAlike 3.0\n"
"licencijÄ
."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Tekstas paruoštas remiantis:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Redagavimas ir pastabos:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -551,21 +561,21 @@ msgstr "Rūšis "
msgid "Genre"
msgstr "Žanras"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "kalbos kodas"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Skaityti online"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -573,74 +583,74 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Atsisiųsti"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Turinys"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Redaguoti pastabÄ
"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
# sprawdz
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "pirminis numeris"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Nerodyti motyvų"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -651,7 +661,7 @@ msgid "Catalogue"
msgstr "Katalogas"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -663,41 +673,44 @@ msgstr "Atsisiųsti katalogÄ
PDF formatu."
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "kolekcijos"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artistas"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "kolekcijos"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "kolekcijos"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "Sukurti ir atsisiųsti PDF failÄ
"
@@ -763,28 +776,28 @@ msgstr "ŽiÅ«rÄti XML Å¡altinį"
msgid "Work's themes "
msgstr "Kūrinio motyvai"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Knygos puslapis"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Atsisiųsti kaip"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audio knygos buvo paruoštos kaip projektų dalis:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "\"%(cs)s, %(fb)s finansuotų"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -794,7 +807,7 @@ msgid ""
msgstr ""
"Audio knygos buvo paruoštos kaip dalis %(fb)s. finansuoto %(cs)s projekto."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -824,7 +837,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -834,23 +847,19 @@ msgstr ""
msgid "Search"
msgstr "Ieškoti"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Gal turÄjote omenyje"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "knygos"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "AtsipraÅ¡ome! Rezultatų, atitinkanÄių paieÅ¡kos kriterijus nÄra."
@@ -870,27 +879,27 @@ msgstr ""
msgid "Download a custom PDF"
msgstr "Sukurti ir atsisiųsti PDF failÄ
"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artistas"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Režisierus"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -909,7 +918,7 @@ msgstr "Wolne Lektury"
msgid "See full category"
msgstr "ŽiÅ«rÄti visÄ
kategorijÄ
"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audio knygos"
@@ -929,45 +938,45 @@ msgstr "Žanrai"
msgid "Kinds"
msgstr "Rūšys"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Visų audio knygų sÄ
rašas"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF failas"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motyvai ir temos"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "aprašymas"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "Vikipedijoje"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "eiluÄių intervalas"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -978,11 +987,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "Knyga buvo sÄkmingai importuota"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Importuojant failÄ
įvyko klaida: %r"
diff --git a/src/catalogue/locale/pl/LC_MESSAGES/django.mo b/src/catalogue/locale/pl/LC_MESSAGES/django.mo
index 09c8bee0b609d99bced6a77da16f03863412a36d..b45c68d89ef8d71f0029142257a05a1dac3d61bd 100644
GIT binary patch
delta 4364
zcmZA33y@b;0mt#Pvb(%o*j-=|QP^F9T~u&a5D1A^fP@H}KoDTO1S|nDfrwcCzIeq`
z0TBdRK@nvz#ya>AdZESW39E1zZp6O$0d~SldS|R*GTMF`dZAfp
zKh^R01K5K45-h^4cr_lxE4h9+L%|OIj?U~;%)#6y$xJRs>qXccuR;gb8ExMSU5Q(<
zGmeS-SEK!Iiav!d>TYBX;UG5U`r%g;8sR(0zwn_4uns?t{0j8=jpz*fU^5(q4q!Zb
z-ZX5B_oD-R8ohPoZ^rt&q#v=v6B=@ZJfR6X^N#3+2ck2&18sK~
zdcm3Kj255+UyZI*4e~GS<;M%YiXMLrJ^mJYoeM>*zaz_K6pSG>L>rW#OIm@n4gJso
zjKOv|1zq|T$m0?=paa>Bo_7RYncred{9~;D1D*M2X#1QL>+X)`*a?fV0*7N4T!?mb
z7@ff}^a8&_-neic?dV^43pQZcobm1Gd85$RdK_-!wVsbY{l$#R{!%?DxRgVXV_|Hp
z&p`$m9!6JW6HdWh=zt69m11a#J`-Kh3-&{A(XHsp4ntRNRCE$Lz!^wCsW6LzOIaNo
zERFTGXva0^3D2R=LK+?UFVKhWO>_dEp#9`9Js;iz^t_hnz)H}SDn|#_9qal2_oCnl
z12MC7m{~f!jQ!)#3rs`@G!tEcYP9_#w8Q1G{s`KBecZo2x-+^Ly>%~G_x(RX!2z5?
zXYfXB@DAG1-{SGl(WR}=w6y>|-U1y^8M-nRXg|HtFX3QxfK|~EX#3Ha^68yK!5Pm%
zJFZ4gT!@~y6rJfxwB6cReIlH*f@=#qM|$qq!buma_gf
z+{_MVz74&{yU_gy(4{(pz8xpg568R68y7x9-;!q6B)6~wdP};-dVjRvq0y1(_hcN}
z@0?UDs2wfA!B~SX;YD-?|3;sY>^8{RyJl!d-OvkGVGd4>PDlQQ`}pw|Z9oUG6P?gObmel}
zCHqT|fuur3QV8ARf!^oY51OFj*KDCeRxUKaOni~IM+`q5Z_9le+DqAU1*+5i;_F@+QC@B)9qZ2Tv>0{@9--H_DlqDz>Ewkt(1
zScVR?0v&kwXkTnVeGs}rBhUd&MBC3uQE-XpMy=byBDCR3%-o8&zb4jqpaa>1c61EA
z&}p>4H_>P4Eau@y*a)*KlK%41{!>L1JWz^uP>C*04|HZj&;gB%jzecY74vZ#`p{OR
z19?2U73)ynjkbRtoydN4fQOLwsc@8n7k(`sID?+}HahZi$TJt#lAjZ|yGVaBhdfFK
z6PkUo4Wsm6taZiCq&U_aN2R&%f9>`(g>RChq&-`m2*L3@t*FTaeCVyatP+ms9LpsI%u7cb5NL%uXl`m~Ce5q{l
z8PbdR_4@(wYv{H-A&kPYWD-evZ{50)jl@5b-uG{j7fC7%@T}GXCA@V%AiA*F9
zliIBhg=b@B8a5>>$Sve6G9H3F$wVOwLYMwL6fN
JZd{&Q|9^)cgW3Q9
delta 4417
zcmZA32~bs49LMoPJOM2MNm2|GP+1hwa-&QwwM-Li6Dw&!1Y9r!q|~s7X^UH>gcX?;
znB|)G%&GmZ=;am&O)N>-&56Z{u{v-}{_%-@RwM_dYzDS3TPQU5u~V
zQFf4ck{jk+^AP72U!bGT?T&V?HSWQ1Jc#Gxag4$<*bF0Ec*bE<+8r0WK$V^F9NtWO84kdc*d6=QD|2)usPm_w2B^ePoNeFF$2i(g;YGLx
z+hQZO!5=W3@!c6JT2a`A&Naap)CyW#I|*CSPDQQsD%APcqjq2<_P`=Lz8E#JSIxDk
z&8$b(;2NhZm2^6EQn}Qv29%_QGqi$J)
zwZA|Od;qn;-%vaF7y5OgdeuteP%BTvOze)FFZ%E|)OCNN7IY?-{nyrpbAxn2JJba!s2v!9nm{gUWhJQdDo_K?Lal5eY5_}8
zJGLJA=eF^o0r#Q4-;etKC~BO4E@J;Rvo_2^GirxS&ZS~->rq>rgt2+<{s_S9+!DGEvXSEvNzWP`7FP%=2B5d3s75GV<#-L_BvF@
z4X71;hY+P`k{8}8uaP?A4x?M$VFXHfWfW9
z;MU=J9IrqP;73hpKI*y})cJL&l`gmT8r1pg?fARqcJpJ5*89K54t$TAz|W`^9McJS
z8r4xG%hdPrsI5&lGf?06LQQB8YG<-g{oH~2WgLf^;6$?&{kq_ODtdY=Q7f)O4N!x+
zuoiXUGSo^}qRv}q?Rsl(wss@x{Etu**sV5O_zfn}K9Jz`?@MI=HPZ_cy$Qsl+Feoi
zsK0q5>fy_`b}4FSW}%*iYHP2+RN8N&Ci)}lp*x5p@C06g*E5TBd?bne*NFiRXvG^*
z_jW7l_%75AeTI4~zD50T{DHiAE~dTrc63JFnt`ZWk!9^ssD2B~iKyR^a#X+b{8p((
zy=F^r7;ZpqU1$ey1yQI0+MsS#2h_@YqdFXB$MaDOxDT~sGg196M4i6^HK8r21^Bm9
z(FOZaKPZQ>9foxD224a2>pG)4%0>-Xh)r<1ITQKkX7iz2^BQUb@1Pd+32Nu!lfC1;
zk%{=-wO++#n>lvEov4XSMBT&rs1-beVYnK#lJ(Z!gq>+`L!EyFd2!rHua2KDewLv8&W)K)J-t$ev1-)hHqT6@2>525bqKNyA)Jc-)TC{#b~
zt=$W?u%Q^i_-;IvE3pjq@T^7sq;5uS**;W9Cr}+XP4ha4Mzy=4Cfpl!PY0q_n2Xn8
z5q840*cZRXrWnUTzqYhJ72UH;)Uz^rsD<@Goi_wE-lQ(v{}L*d9EiZHChzE4N*0jLWF%h}ZDk@4g*JFZ<&DI@$^
zyLZ(%r@V1aUDa1fKce51X+*zqsZ-~Kj}hLE+@|hYyAHJqlkYlA5+OgM5VwZ_>Rt@K9JOr
zXUNM$86qesJrl4w9bbVk>i@!p{@`{TK
zN~Z>9#Lf)~AD2J5ytJS!(5zKMv%s#zF+LyPjSFNXZwd(;KDsn-+SI_WDdA231!v)y
AfB*mh
diff --git a/src/catalogue/locale/pl/LC_MESSAGES/django.po b/src/catalogue/locale/pl/LC_MESSAGES/django.po
index 698661d0f..2adf37089 100644
--- a/src/catalogue/locale/pl/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/pl/LC_MESSAGES/django.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WolneLektury\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2015-12-31 16:45+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: Fundacja Nowoczesna Polska Uznanie autorstwa-"
"Na tych samych warunkach 3.0."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
msgid "Resource prepared based on:"
msgstr "Zasób opracowany na podstawie:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr "Opracowanie redakcyjne:"
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Opracowanie redakcyjne i przypisy:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr "Wydawca:"
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr "PublikacjÄ wsparli i wsparÅy:"
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr "Ilustracja na okÅadce:"
@@ -497,19 +509,19 @@ msgstr "Rodzaj"
msgid "Genre"
msgstr "Gatunek"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr "Region"
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
msgid "Language"
msgstr "JÄzyk"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Czytaj online"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -517,69 +529,69 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr "Druk na żÄ
danie z"
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "Pobierz"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr "wiÄcej"
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr "mniej"
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr "Jak na razie ten utwór jest dostÄpny wyÅÄ
cznie dla naszych PrzyjacióÅ."
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Spis treÅci"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr "Ustawienia"
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Nota red."
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Informacje"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr "Zamknij"
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr "ProszÄ czekaÄâ¦"
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr "Inne wersje utworu"
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr "Zamknij drugÄ
wersjÄ"
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
msgid "Display line numbers"
msgstr "WyÅwietlaj numeracjÄ"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
msgid "Display themes"
msgstr "WyÅwietlaj motywy"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
msgid "Display footnotes"
msgstr "WyÅwietlaj przypisy"
@@ -588,7 +600,7 @@ msgid "Catalogue"
msgstr "Katalog"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
msgid "All works"
msgstr "Wszystkie utwory"
@@ -598,26 +610,27 @@ msgstr "Pobierz katalog w formacie PDF."
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr "Literatura"
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
msgid "Collections"
msgstr "Kolekcje"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr "Galeria"
+#: templates/catalogue/tagged_object_list.html:5
+msgid "Art"
+msgstr "Sztuka"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
msgid "Collection"
msgstr "Kolekcja"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
@@ -625,11 +638,11 @@ msgstr[0] "oraz jedna inna"
msgstr[1] "oraz %(c)s inne"
msgstr[2] "oraz %(c)s innych"
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
msgid "All collections"
msgstr "Wszystkie kolekcje"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "Stwórz wÅasny PDF"
@@ -695,28 +708,28 @@ msgstr "ŹródÅowy plik XML"
msgid "Work's themes "
msgstr "Motywy w utworze"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Strona utworu"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "Pobierz jako"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiobooki przygotowane w ramach projektów:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, finansowanego przez %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, python-format
msgid ""
"Audiobooks were prepared as a part of the %(cs)s project funded by "
@@ -725,7 +738,7 @@ msgstr ""
"Audiobooki przygotowane w ramach projektu finansowanego "
"przez %(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, python-format
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Audiobooki przygotowane w ramach projektu %(cs)s ."
@@ -754,7 +767,7 @@ msgstr ""
"Zobacz też listÄ ostatnio dodanych audiobooków \n"
" i plików DAISY ."
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -764,21 +777,17 @@ msgstr ""
msgid "Search"
msgstr "Szukaj"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Czy chodziÅo Ci o"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
msgid "Books"
msgstr "KsiÄ
żki"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr "Obrazy"
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Przepraszamy! Brak wyników speÅniajÄ
cych kryteria podane w zapytaniu."
@@ -794,23 +803,23 @@ msgstr "Przepraszamy! Zapytanie musi zawieraÄ co najmniej dwa znaki."
msgid "Download a custom PDF"
msgstr "Stwórz wÅasny plik PDF"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
msgid "Artist:"
msgstr "Czyta"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
msgid "director:"
msgstr "reż."
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr "poprzednia"
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr "CzÄÅÄ"
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr "nastÄpna"
@@ -827,7 +836,7 @@ msgstr "w Wolnych Lekturach"
msgid "See full category"
msgstr "Zobacz caÅÄ
kategoriÄ"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiobooki"
@@ -847,39 +856,39 @@ msgstr "Gatunki"
msgid "Kinds"
msgstr "Rodzaje"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr "Wybrane utwory"
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Spis wszystkich audiobooków"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
msgid "DAISY files"
msgstr "Pliki DAISY"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motywy i tematy"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
msgid "No description."
msgstr "Brak opisu."
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "w Wikipedii"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr "w Culture.pl"
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
msgid "Loading"
msgstr "Åadowanie"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -890,15 +899,21 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "KsiÄ
żka zaimportowana"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "BÅÄ
d podczas importowania pliku: %r"
+#~ msgid "Gallery"
+#~ msgstr "Galeria"
+
+#~ msgid "Pictures"
+#~ msgstr "Obrazy"
+
#~ msgid ""
#~ "Search engine supports following criteria: title, author, theme/topic, "
#~ "epoch, kind and genre.\n"
diff --git a/src/catalogue/locale/ru/LC_MESSAGES/django.po b/src/catalogue/locale/ru/LC_MESSAGES/django.po
index 69836f246..d9ef204bb 100644
--- a/src/catalogue/locale/ru/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/ru/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:40+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -105,288 +105,295 @@ msgstr "ÑбоÑÑ"
msgid "All things"
msgstr "ÑбоÑÑ"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "УкажиÑе, пожалÑйÑÑа, XML."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "Ðе показÑваÑÑ ÑноÑки"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "Ðе показÑваÑÑ ÑемÑ"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "Ðе иÑполÑзÑйÑе Ð½Ð°Ñ ÑпеÑиалÑнÑй ÑÑиÑÑ"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Ðглавление"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Ðедение"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "ÐоÑмалÑное ведение"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "1,5 ведениÑ"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Ðвойное ведение"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "Ð Ð°Ð·Ð¼ÐµÑ ÑÑиÑÑа"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "УмолÑание"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "ÐолÑÑой"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "заглавие"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "клÑÑ ÑоÑÑиÑовки "
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "РезÑлÑÑаÑÑ Ð¿Ð¾ авÑоÑам"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "код ÑзÑка"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "опиÑание"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "даÑа ÑозданиÑ"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "даÑа ÑозданиÑ"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "Ð½Ð¾Ð¼ÐµÑ ÑодиÑелÑ"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "дополниÑелÑÐ½Ð°Ñ Ð¸Ð½ÑоÑмаÑиÑ"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "обложка"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "книга"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "книги"
-#: models/book.py:449
+#: models/book.py:538
#, fuzzy, python-format
msgid "Book \"%s\" does not exist."
msgstr "Ðнига Ñо slug = \"%s\" не ÑÑÑеÑÑвÑеÑ."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Ðнига %s Ñже ÑÑÑеÑÑвÑеÑ"
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, fuzzy, python-format
msgid "%s file"
msgstr "XML Ñайл"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "Ñип"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "название"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "название"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
#, fuzzy
msgid "file"
msgstr "XML Ñайл"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "аÑдиокнига"
-#: models/collection.py:19
+#: models/collection.py:17
#, fuzzy
msgid "book slugs"
msgstr "анонÑÑ ÐºÐ½Ð¸Ð³Ð¸"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "ÑоÑма"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "ÑбоÑ"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "ÑбоÑÑ"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "ÑÑагменÑ"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "ÑÑагменÑÑ"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "дополниÑелÑÐ½Ð°Ñ Ð¸Ð½ÑоÑмаÑиÑ"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "ÐÑÑоÑник"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "ÐÑÑоÑник"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "авÑоÑ"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "ÑпоÑ
а"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "жанÑ"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "моÑив"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "набоÑ"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "Ñаг"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "Ñип ÑодеÑжаниÑ"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "ID обÑекÑа"
@@ -394,12 +401,12 @@ msgstr "ID обÑекÑа"
msgid "category"
msgstr "каÑегоÑиÑ"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "Ñаги"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -410,7 +417,7 @@ msgid "See also"
msgstr "ÐодÑобнее"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "ÐоÑивÑ"
@@ -419,55 +426,58 @@ msgstr "ÐоÑивÑ"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "ÐÑÑоÑник"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "данной книги"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "ÑоÑма"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "ÐÑÑ
однÑй Ñайл"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Ðнига на"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "ÐлаÑÑоÑма ÑедакÑоÑов"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "ÐпиÑание книги на Wikipedia"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "данной книги"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "ÐоÑив"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "в ÑÑÑде"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "РазÑеÑение на ÑабоÑÑ Ñо ÑÑоÑонÑ"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -500,28 +510,28 @@ msgstr ""
"Â Â Â Â Â Â Â Â "
"Creative Commons Attribution-ShareAlike 3.0 a>"
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "ТекÑÑ Ð¿Ð¾Ð´Ð³Ð¾Ñовлен на оÑнове:"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Ðод ÑедакÑией и Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½ÑаÑиÑми:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -553,21 +563,21 @@ msgstr "ÑоÑма"
msgid "Genre"
msgstr "жанÑ"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "код ÑзÑка"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "ЧиÑаÑÑ Ð¾Ð½Ð»Ð°Ð¹Ð½"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -575,73 +585,73 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "ÐагÑÑзиÑÑ"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Ðглавление"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "ÐзмениÑÑ Ð¿ÑимеÑание"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "ÐнÑобокÑ"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Ð½Ð¾Ð¼ÐµÑ ÑодиÑелÑ"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Ðе показÑваÑÑ ÑемÑ"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -652,7 +662,7 @@ msgid "Catalogue"
msgstr "ÐаÑалог"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -664,41 +674,44 @@ msgstr "СкаÑаÑÑ ÐºÐ°Ñалог в PDF ÑоÑмаÑе."
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "ÑбоÑÑ"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "ÐÑÑиÑÑ"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "ÑбоÑÑ"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "ÑбоÑÑ"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "СкаÑаÑÑ PDF полÑзоваÑелÑ"
@@ -764,28 +777,28 @@ msgstr "ÐÑоÑмоÑÑ XML-иÑÑоÑник"
msgid "Work's themes "
msgstr "Ð¢ÐµÐ¼Ñ ÑÑÑда"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "на WolneLektury.pl"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "ÐозÑаÑиÑеÑÑ Ð½Ð° ÑÐ°Ð¹Ñ ÐºÐ½Ð¸Ð³Ð¸"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "СкаÑаÑÑ"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "ÐÑдиокниги бÑли подгоÑÐ¾Ð²Ð»ÐµÐ½Ñ Ð² ÑамкаÑ
пÑоекÑа:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, ÑинанÑиÑÑемого %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -795,7 +808,7 @@ msgid ""
msgstr ""
"ÐÑдиокниги бÑли подгоÑÐ¾Ð²Ð»ÐµÐ½Ñ Ð² ÑамкаÑ
%(cs)s пÑоекÑa, ÑинанÑиÑÑемого %(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -825,7 +838,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -835,23 +848,19 @@ msgstr ""
msgid "Search"
msgstr "ÐоиÑк"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "ÐÑ Ð¸Ð¼ÐµÐ»Ð¸ в видÑ"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "книги"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "ÐзвиниÑе! ÐÑиÑеÑий поиÑка не ÑооÑвеÑÑÑвÑÐµÑ Ð½Ð¸ÐºÐ°ÐºÐ¸Ð¼ ÑеÑÑÑÑам."
@@ -871,27 +880,27 @@ msgstr ""
msgid "Download a custom PDF"
msgstr "СкаÑаÑÑ PDF"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "ÐÑÑиÑÑ"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "ÑежиÑÑеÑ"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -910,7 +919,7 @@ msgstr "на WolneLektury.pl"
msgid "See full category"
msgstr "ÐÑÑ ÐºÐ°ÑегоÑиÑ"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "ÐÑдиокниги"
@@ -930,45 +939,45 @@ msgstr "ÐанÑÑ"
msgid "Kinds"
msgstr "ФоÑмÑ"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "СпиÑок ÑабоÑ"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF Ñайл"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "ÐоÑÐ¸Ð²Ñ Ð¸ ÑемÑ"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "опиÑание"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "в Ðикипедии"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Ðедение"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -979,11 +988,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "ÐÑ ÑдаÑно заимпоÑÑиÑовали книгÑ"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "ÐÑибка импоÑÑа Ñайла: %r"
diff --git a/src/catalogue/locale/uk/LC_MESSAGES/django.po b/src/catalogue/locale/uk/LC_MESSAGES/django.po
index 3af8bfed1..dec5fa4e4 100644
--- a/src/catalogue/locale/uk/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/uk/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-20 10:23+0100\n"
+"POT-Creation-Date: 2020-09-09 22:08+0200\n"
"PO-Revision-Date: 2013-04-09 10:40+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -16,11 +16,11 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: constants.py:10
+#: constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:14
+#: constants.py:13
msgid "Free Art License 1.3"
msgstr ""
@@ -104,286 +104,293 @@ msgstr "колекÑÑÑ"
msgid "All things"
msgstr "колекÑÑÑ"
-#: forms.py:29
+#: forms.py:28
msgid "Please supply an XML."
msgstr "ÐведÑÑÑ Ð±ÑÐ´Ñ Ð»Ð°Ñка XML."
-#: forms.py:49
+#: forms.py:48
msgid "Don't show footnotes"
msgstr "СÑ
оваÑи пÑимÑÑки"
-#: forms.py:50
+#: forms.py:49
msgid "Don't disply themes"
msgstr "СÑ
оваÑи Ñеми"
-#: forms.py:51
+#: forms.py:50
msgid "Don't use our custom font"
msgstr "Ðе викоÑиÑÑовÑваÑи наÑого наÑÑÑоÑваного ÑÑиÑÑÑ"
-#: forms.py:52
+#: forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:53
+#: forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "ÐмÑÑÑ"
-#: forms.py:56
+#: forms.py:55
msgid "Leading"
msgstr "Leading"
-#: forms.py:57
+#: forms.py:56
msgid "Normal leading"
msgstr "Normal leading"
-#: forms.py:58
+#: forms.py:57
msgid "One and a half leading"
msgstr "One and a half leading"
-#: forms.py:59
+#: forms.py:58
msgid "Double leading"
msgstr "Double leading"
-#: forms.py:61
+#: forms.py:60
msgid "Font size"
msgstr "РозмÑÑ ÑÑиÑÑÑ"
-#: forms.py:62
+#: forms.py:61
msgid "Default"
msgstr "Ðа ÑмовÑаннÑм"
-#: forms.py:63
+#: forms.py:62
msgid "Big"
msgstr "Ðеликий"
-#: forms.py:64
+#: forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:86
+#: forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:58 models/collection.py:14
+#: models/book.py:57 models/collection.py:14
msgid "title"
msgstr "заголовок"
-#: models/book.py:59 models/tag.py:58
+#: models/book.py:58 models/tag.py:58
msgid "sort key"
msgstr "клÑÑ ÑоÑÑÑваннÑ"
-#: models/book.py:61
+#: models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "РезÑлÑÑаÑи за авÑоÑами"
-#: models/book.py:62 models/book.py:63 models/collection.py:15
-#: models/collection.py:18 models/tag.py:57
+#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:64
+#: models/book.py:63
msgid "language code"
msgstr "мовний код"
-#: models/book.py:65 models/book.py:304 models/collection.py:16
-#: models/tag.py:61 models/tag.py:186
+#: models/book.py:64 models/book.py:391 models/collection.py:16
+#: models/tag.py:61 models/tag.py:135
msgid "description"
msgstr "опиÑ"
-#: models/book.py:66
+#: models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:67 models/bookmedia.py:36 models/tag.py:71 models/tag.py:72
+#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
msgid "creation date"
msgstr "даÑа ÑÑвоÑеннÑ"
-#: models/book.py:68
+#: models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "даÑа ÑÑвоÑеннÑ"
-#: models/book.py:69
+#: models/book.py:68
msgid "parent number"
msgstr "Ð½Ð¾Ð¼ÐµÑ Ð±Ð°ÑÑка"
-#: models/book.py:70 models/bookmedia.py:37
+#: models/book.py:69 models/bookmedia.py:35
msgid "extra information"
msgstr "додаÑкова ÑнÑоÑмаÑÑÑ"
-#: models/book.py:73
+#: models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:74
+#: models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:75
+#: models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:76
+#: models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:77
+#: models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:81
+#: models/book.py:78
+msgid "findable"
+msgstr ""
+
+#: models/book.py:82
msgid "cover"
msgstr "обкладинка"
-#: models/book.py:87
+#: models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:92
+#: models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:97
+#: models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:125 models/collection.py:22
+#: models/book.py:107
+msgid "cover for Ebookpoint"
+msgstr ""
+
+#: models/book.py:136 models/collection.py:19
msgid "book"
msgstr "книжка"
-#: models/book.py:126
+#: models/book.py:137
msgid "books"
msgstr "книжки"
-#: models/book.py:449
+#: models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Ðнижка \"%s\" не ÑÑнÑÑ."
-#: models/book.py:465
+#: models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Ðнижка %s вже ÑÑнÑÑ"
-#: models/book.py:736
+#: models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:797 models/bookmedia.py:29
+#: models/book.py:892 models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "Ñайл %s"
-#: models/bookmedia.py:31
+#: models/bookmedia.py:29
msgid "type"
msgstr "Ñип"
-#: models/bookmedia.py:32 models/source.py:12 models/tag.py:56
+#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
msgid "name"
msgstr "назва"
-#: models/bookmedia.py:33
+#: models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "назва"
-#: models/bookmedia.py:34
+#: models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:35
+#: models/bookmedia.py:33
msgid "file"
msgstr "Ñайл"
-#: models/bookmedia.py:46 models/bookmedia.py:47
+#: models/bookmedia.py:44 models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:19
+#: models/collection.py:17
msgid "book slugs"
msgstr "slugs книжок"
-#: models/collection.py:21 models/tag.py:25
+#: models/collection.py:18 models/tag.py:23
msgid "kind"
msgstr "ÑÑд"
-#: models/collection.py:22
+#: models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:26
+#: models/collection.py:23
msgid "collection"
msgstr "колекÑÑÑ"
-#: models/collection.py:27
+#: models/collection.py:24
msgid "collections"
msgstr "колекÑÑÑ"
-#: models/fragment.py:31
+#: models/fragment.py:28
msgid "fragment"
msgstr "ÑÑагменÑ"
-#: models/fragment.py:32
+#: models/fragment.py:29
msgid "fragments"
msgstr "ÑÑагменÑи"
-#: models/source.py:11
+#: models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "додаÑкова ÑнÑоÑмаÑÑÑ"
-#: models/source.py:16
+#: models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "ÐжеÑело"
-#: models/source.py:17
+#: models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "ÐжеÑело"
-#: models/tag.py:23
+#: models/tag.py:21
msgid "author"
msgstr "авÑоÑ"
-#: models/tag.py:24
+#: models/tag.py:22
msgid "epoch"
msgstr "епоÑ
а"
-#: models/tag.py:26
+#: models/tag.py:24
msgid "genre"
msgstr "жанÑ"
-#: models/tag.py:27
+#: models/tag.py:25
msgid "theme"
msgstr "Ñема"
-#: models/tag.py:28
+#: models/tag.py:26
msgid "set"
msgstr "вибÑÑ"
-#: models/tag.py:29
+#: models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:35 models/tag.py:96
+#: models/tag.py:33 models/tag.py:97
msgid "tag"
msgstr "ÑеÒ"
-#: models/tag.py:36
+#: models/tag.py:34
msgid "content type"
msgstr "Ñип змÑÑÑÑ"
-#: models/tag.py:37
+#: models/tag.py:35
msgid "object id"
msgstr "ÐРоб'ÑкÑÑ"
@@ -391,12 +398,12 @@ msgstr "ÐРоб'ÑкÑÑ"
msgid "category"
msgstr "каÑегоÑÑÑ"
-#: models/tag.py:97
+#: models/tag.py:98
msgid "tags"
msgstr "ÑеÒи"
-#: templates/catalogue/book_detail.html:23
-#: templates/catalogue/book_text.html:24
+#: templates/catalogue/book_detail.html:24
+#: templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
@@ -407,7 +414,7 @@ msgid "See also"
msgstr "ÐивÑÑÑÑÑ Ñакож"
#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:37
+#: templates/catalogue/book_text.html:38
#: templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Теми"
@@ -416,55 +423,58 @@ msgstr "Теми"
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "ÐжеÑело"
-#: templates/catalogue/book_detail.html:59
+#: templates/catalogue/book_detail.html:62
+#: templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "книжки"
-#: templates/catalogue/book_detail.html:60
+#: templates/catalogue/book_detail.html:63
+#: templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "ÑÑд"
-#: templates/catalogue/book_detail.html:64
+#: templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Файл джеÑела XML"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Ðнижка на"
-#: templates/catalogue/book_detail.html:68
+#: templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "ÐлаÑÑоÑма ÑедагÑваннÑ"
-#: templates/catalogue/book_detail.html:73
+#: templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "ÐÐ¿Ð¸Ñ ÐºÐ½Ð¸Ð¶ÐºÐ¸ на ÐÑкÑпедÑÑ"
-#: templates/catalogue/book_detail.html:77
+#: templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "ÐÑкÑÑваÑи ÑÑ ÐºÐ½Ð¸Ð¶ÐºÑ"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:11
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Тема"
-#: templates/catalogue/book_fragments.html:5
-#: templates/catalogue/book_fragments.html:13
+#: templates/catalogue/book_fragments.html:6
+#: templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "Ñ ÑвоÑÑ"
-#: templates/catalogue/book_info.html:6
+#: templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Цей ÑвÑÑ Ñ Ð´Ð¾ÑÑÑпним на лÑÑензÑÑ:"
-#: templates/catalogue/book_info.html:9
+#: templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -497,28 +507,28 @@ msgstr ""
"Commons Ðз зазнаÑеннÑм ÑÐ¼ÐµÐ½Ñ Ð°Ð²ÑоÑа â Ðа ÑиÑ
же ÑмоваÑ
3.0\n"
" ."
-#: templates/catalogue/book_info.html:20
+#: templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "ТекÑÑ Ð¿ÑдгоÑовлено на оÑновÑ"
-#: templates/catalogue/book_info.html:30
+#: templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:32
+#: templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "РедагÑÐ²Ð°Ð½Ð½Ñ Ñа пÑимÑÑки:"
-#: templates/catalogue/book_info.html:40
+#: templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:47
+#: templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:54
+#: templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
@@ -550,21 +560,21 @@ msgstr "Ð Ñд"
msgid "Genre"
msgstr "ÐанÑ"
-#: templates/catalogue/book_short.html:78
+#: templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:85
+#: templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "мовний код"
-#: templates/catalogue/book_short.html:109
+#: templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "ЧиÑаÑи онлайн"
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -572,73 +582,73 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:112
+#: templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:117
-#: templates/catalogue/custom_pdf_form.html:19 views.py:383
+#: templates/catalogue/book_short.html:119
+#: templates/catalogue/custom_pdf_form.html:18 views.py:401
msgid "Download"
msgstr "ÐаванÑажиÑи"
-#: templates/catalogue/book_short.html:131
+#: templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:142
+#: templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:148
+#: templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:31
+#: templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "ÐмÑÑÑ"
-#: templates/catalogue/book_text.html:43 templates/catalogue/book_text.html:103
+#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:49
+#: templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "РедакÑоÑÑÑкий коменÑаÑ"
-#: templates/catalogue/book_text.html:55
+#: templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "ÐнÑобокÑ"
-#: templates/catalogue/book_text.html:67
-#: templates/catalogue/viewer_base.html:50
+#: templates/catalogue/book_text.html:80
+#: templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:68
+#: templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:82
+#: templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:105
+#: templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Ð½Ð¾Ð¼ÐµÑ Ð±Ð°ÑÑка"
-#: templates/catalogue/book_text.html:107
+#: templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "СÑ
оваÑи Ñеми"
-#: templates/catalogue/book_text.html:109
+#: templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
@@ -649,7 +659,7 @@ msgid "Catalogue"
msgstr "ÐаÑалог"
#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
@@ -661,41 +671,44 @@ msgstr "ÐаванÑажиÑи каÑалог Ñ ÑоÑмаÑÑ PDF"
#: templates/catalogue/catalogue.html:19
#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:6
-#: templates/catalogue/collections.html:11
+#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
+#: templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "колекÑÑÑ"
#: templates/catalogue/catalogue.html:25
+#: templates/catalogue/search_multiple_hits.html:45
#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:6
-msgid "Gallery"
-msgstr ""
+#: templates/catalogue/tagged_object_list.html:5
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Ð¥Ñдожник"
-#: templates/catalogue/collection_box.html:6
+#: templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "колекÑÑÑ"
-#: templates/catalogue/collection_box.html:18
+#: templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:17
+#: templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "колекÑÑÑ"
-#: templates/catalogue/custom_pdf_form.html:6 views.py:382
+#: templates/catalogue/custom_pdf_form.html:5 views.py:400
msgid "Download custom PDF"
msgstr "ÐаванÑажиÑи наÑÑÑоÑваний PDF"
@@ -759,28 +772,28 @@ msgstr "ÐивиÑиÑÑ Ð´Ð¶ÐµÑело XML"
msgid "Work's themes "
msgstr "Теми Ñ ÑвоÑÑ"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:10
+#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:28
+#: templates/catalogue/player.html:29
msgid "Book's page"
msgstr "СÑоÑÑнка книжки"
-#: templates/catalogue/player.html:29
+#: templates/catalogue/player.html:30
msgid "Download as"
msgstr "ÐаванÑажиÑи Ñк"
-#: templates/catalogue/player.html:45
+#: templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "ÐÑдÑокниги вигоÑовлено в ÑамкаÑ
пÑоекÑÑв:"
-#: templates/catalogue/player.html:50
+#: templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, ÑÑнанÑованого Ñз коÑÑÑв %(fb)s"
-#: templates/catalogue/player.html:61
+#: templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -791,7 +804,7 @@ msgstr ""
"ÐÑдÑокниги вигоÑовлено в ÑамкаÑ
пÑоекÑÑ %(cs)s, ÑÑнанÑованого Ñз коÑÑÑв "
"%(fb)s."
-#: templates/catalogue/player.html:63
+#: templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
@@ -821,7 +834,7 @@ msgid ""
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:8
+#: templates/catalogue/search_multiple_hits.html:7
#: templates/catalogue/search_no_hits.html:5
#: templates/catalogue/search_no_hits.html:10
#: templates/catalogue/search_too_long.html:5
@@ -831,23 +844,19 @@ msgstr ""
msgid "Search"
msgstr "ÐоÑÑк"
-#: templates/catalogue/search_multiple_hits.html:14
+#: templates/catalogue/search_multiple_hits.html:13
#: templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Ðи мали на ÑвазÑ"
-#: templates/catalogue/search_multiple_hits.html:33
+#: templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "книжки"
-#: templates/catalogue/search_multiple_hits.html:46
-msgid "Pictures"
-msgstr ""
-
#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:85
+#: templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Ðа жалÑ, ÐаÑÑ ÐºÑиÑеÑÑÑ Ð¿Ð¾ÑÑÐºÑ Ð½Ðµ вÑдповÑдаÑÑÑ Ð¶Ð¾Ð´Ð½Ð¸Ð¼ ÑезÑлÑÑаÑам."
@@ -865,27 +874,27 @@ msgstr "Ðа жалÑ, Ð´Ð»Ñ Ð¿Ð¾ÑÑÐºÑ Ð¿Ð¾ÑÑÑбно ввеÑÑи Ñон
msgid "Download a custom PDF"
msgstr "ÐаванÑажиÑи наÑÑÑоÑваний PDF"
-#: templates/catalogue/snippets/jplayer.html:35
+#: templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Ð¥Ñдожник"
-#: templates/catalogue/snippets/jplayer.html:36
+#: templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "РежиÑеÑ"
-#: templates/catalogue/snippets/jplayer.html:58
+#: templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:59
+#: templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:60
+#: templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
@@ -904,7 +913,7 @@ msgstr "Wolne Lektury"
msgid "See full category"
msgstr "ÐивиÑиÑÑ Ð¿Ð¾Ð²Ð½Ñ ÐºÐ°ÑегоÑÑÑ"
-#: templates/catalogue/tagged_object_list.html:6
+#: templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "ÐÑдÑокниги"
@@ -924,45 +933,45 @@ msgstr "ÐанÑи"
msgid "Kinds"
msgstr "Роди"
-#: templates/catalogue/tagged_object_list.html:71
+#: templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:74
+#: templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "СпиÑок ÑÑÑÑ
аÑдÑокниг"
-#: templates/catalogue/tagged_object_list.html:81
+#: templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "Ñайл PDF"
-#: templates/catalogue/tagged_object_list.html:91
+#: templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "ÐоÑиви Ñа Ñеми"
-#: templates/catalogue/tagged_object_list.html:103
+#: templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "опиÑ"
-#: templates/catalogue/tagged_object_list.html:110
+#: templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "на ÐÑкÑпедÑÑ"
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:52
+#: templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Leading"
-#: views.py:336
+#: views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -973,11 +982,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:338
+#: views.py:356
msgid "Book imported successfully"
msgstr "ÐÐ½Ð¸Ð¶ÐºÑ ÑÑпÑÑно заванÑажено"
-#: views.py:340
+#: views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Ðомилка в заванÑÐ°Ð¶ÐµÐ½Ð½Ñ Ñайла: %r"
diff --git a/src/catalogue/templates/catalogue/catalogue.html b/src/catalogue/templates/catalogue/catalogue.html
index 482e8286c..bb86b7ac6 100644
--- a/src/catalogue/templates/catalogue/catalogue.html
+++ b/src/catalogue/templates/catalogue/catalogue.html
@@ -22,7 +22,7 @@
{% trans "Collections" %}
{% plain_list collections paged=False %}
- {% trans "Gallery" %}
+ {% trans "Art" %}
{% plain_list pictures by_author=True paged=False initial_blocks=True %}
{% endblock %}
diff --git a/src/catalogue/templates/catalogue/search_multiple_hits.html b/src/catalogue/templates/catalogue/search_multiple_hits.html
index 6da02a8d3..4a32706ce 100644
--- a/src/catalogue/templates/catalogue/search_multiple_hits.html
+++ b/src/catalogue/templates/catalogue/search_multiple_hits.html
@@ -42,7 +42,7 @@
{% endif %}
{% if pictures %}
- {% trans "Pictures" %}
+ {% trans "Art" %}
{% for result in pictures %}
diff --git a/src/catalogue/templates/catalogue/tag_list_split.html b/src/catalogue/templates/catalogue/tag_list_split.html
index d4769d126..a865ec171 100644
--- a/src/catalogue/templates/catalogue/tag_list_split.html
+++ b/src/catalogue/templates/catalogue/tag_list_split.html
@@ -6,6 +6,6 @@
{% endif %}
{% if pictures %}
- {% trans "Gallery" %}:
+ {% trans "Art" %}:
{{pictures|safe}}
{% endif %}
diff --git a/src/catalogue/templates/catalogue/tagged_object_list.html b/src/catalogue/templates/catalogue/tagged_object_list.html
index f0a703b4a..2b82aa348 100644
--- a/src/catalogue/templates/catalogue/tagged_object_list.html
+++ b/src/catalogue/templates/catalogue/tagged_object_list.html
@@ -2,7 +2,7 @@
{% load i18n %}
{% load catalogue_tags switch_tag social_tags %}
-{% block titleextra %}{% if tags %}{% title_from_tags tags %}{% elif list_type == 'gallery' %}{% trans "Gallery" %}{% elif list_type == 'audiobooks' %}{% trans "Audiobooks" %}{% else %}{% trans "Literature" %}{% endif %}{% endblock %}
+{% block titleextra %}{% if tags %}{% title_from_tags tags %}{% elif list_type == 'gallery' %}{% trans "Art" %}{% elif list_type == 'audiobooks' %}{% trans "Audiobooks" %}{% else %}{% trans "Literature" %}{% endif %}{% endblock %}
{% block bodyid %}tagged-object-list{% endblock %}
diff --git a/src/wolnelektury/__init__.py b/src/wolnelektury/__init__.py
index 2d0acdbf5..523661701 100644
--- a/src/wolnelektury/__init__.py
+++ b/src/wolnelektury/__init__.py
@@ -6,6 +6,3 @@ from django.utils.translation import gettext
from .celery import app as celery_app
default_app_config = 'wolnelektury.apps.WLCoreConfig'
-
-if False:
- gettext("Please enter a correct %(username) and password. Note that both fields may be case-sensitive.")
diff --git a/src/wolnelektury/locale/de/LC_MESSAGES/django.po b/src/wolnelektury/locale/de/LC_MESSAGES/django.po
index c1158d8bf..e64627b21 100644
--- a/src/wolnelektury/locale/de/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/de/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: \n"
@@ -18,13 +18,6 @@ msgstr ""
"X-Translated-Using: django-rosetta 0.5.6\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Die gewünschte Webseite existiert nicht"
@@ -46,7 +39,7 @@ msgstr ""
msgid "main page"
msgstr "Startseite"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Serverfehler"
@@ -62,7 +55,7 @@ msgstr ""
"Informieren Sie uns "
"Administratoren a> über den Fehler. p>"
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "Service nicht verfügbar"
@@ -70,14 +63,10 @@ msgstr "Service nicht verfügbar"
msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
msgstr "Wolnelektury.pl wegen Wartungsarbeiten momentan nicht verfügbar."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Webseite-Administration"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "Ãbersetzungen"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -91,24 +80,36 @@ msgstr "vereinfacht "
msgid "Import book"
msgstr "Buch importieren"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr "Password vergessen?"
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
#, fuzzy
msgid "Sign in using:"
msgstr "Einloggen"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "oder Registrieren"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "in WolneLektury.pl"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "Sprachversionen"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "Ausloggen"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -141,66 +142,62 @@ msgstr[1] ""
"Verfügung \n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "Sprachversionen"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
#, fuzzy
msgid "My shelf"
msgstr "Mein Bücherregal"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "Administration"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "Ausloggen"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "Einloggen"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "Registrieren"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Motive"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Audiobücher"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
msgid "All works"
msgstr "Alle Bücher"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Suchen"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "SchlieÃen"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Laden"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "fortgeschritten"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -270,108 +267,114 @@ msgstr ""
msgid "More..."
msgstr "Mehr..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "Internetbibliothek WolneLektury.pl"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "Motive und Themen"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "Motiv"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
#, fuzzy
#| msgid "See our blog"
msgid "See motifs catalog"
msgstr "Siehe unseren Blog"
-#: templates/main_page.html:95
+#: templates/main_page.html:53
#, fuzzy
#| msgid "Account Connections"
msgid "Collections"
msgstr "Konto-Beziehungen"
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "Letzte Publikationen"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "Letzte Publikationen"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "News"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "Leistungen"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "Melden Sie einen Bug oder Vorschlag."
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Der Katalog als PDF-Datei herunterladen."
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Schriftsteller"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
#, fuzzy
msgid "Missing a book?"
msgstr "Brauchen Sie ein Buch?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Plan der Veröffentlichung"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
#, fuzzy
msgid "Information"
msgstr "Format öffnen"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "das genutzte Bild"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr "OpenID registrieren"
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "Einloggen"
@@ -386,23 +389,6 @@ msgstr "zurück"
msgid "next"
msgstr "weiter"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "Den Zugang zu Wolne Lektury authorisieren"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"Bitte bestätigen Sie den Zugang zu Wolne Lektury %(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -414,17 +400,17 @@ msgid ""
"accounts:"
msgstr "Sie können mithilfe folgenden fremden Accounts registrieren."
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
#, fuzzy
msgid "Remove"
msgstr "löschen"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr "Sie haben noch kein Social-Networt-Konto mit diesem Konto verbunden."
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr "Füge ein fremdes Konto hinzu"
@@ -444,7 +430,26 @@ msgstr ""
"einzuloggen. Wenn es aus Versehen passiert ist, gehen Sie bitte Registrieren voran."
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Einloggen"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Einloggen"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr "User"
@@ -461,19 +466,40 @@ msgstr "E-Mail"
msgid "Social accounts"
msgstr "oder melde dich an:"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr "Eingeloggt als User %(user)s"
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "Sie müssen eingeloggt sein, um fortzusetzen."
+#~ msgid "Translations"
+#~ msgstr "Ãbersetzungen"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "Den Zugang zu Wolne Lektury authorisieren"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "Bitte bestätigen Sie den Zugang zu Wolne Lektury %(user)s"
+#~ "strong>."
+
#~ msgid "What's new?"
#~ msgstr "Was Neues?"
@@ -783,9 +809,6 @@ msgstr "Sie müssen eingeloggt sein, um fortzusetzen."
#~ msgid "Download as"
#~ msgstr "Herunterladen als"
-#~ msgid "Artist"
-#~ msgstr "Schriftsteller"
-
#~ msgid "Director"
#~ msgstr "Regisseur"
diff --git a/src/wolnelektury/locale/en/LC_MESSAGES/django.po b/src/wolnelektury/locale/en/LC_MESSAGES/django.po
index fc3bb1874..ff16da863 100644
--- a/src/wolnelektury/locale/en/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,13 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Page does not exist"
@@ -44,7 +37,7 @@ msgstr ""
msgid "main page"
msgstr "main page"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Server error"
@@ -60,7 +53,7 @@ msgstr ""
"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators about the "
"error.
"
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "Service unavailable"
@@ -69,14 +62,10 @@ msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
msgstr ""
"The website Wolnelektury.pl is currently unavailable due to maintainance."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Site administration"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "Translations"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -90,24 +79,36 @@ msgstr "simplified"
msgid "Import book"
msgstr "Import book"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr ""
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
#, fuzzy
msgid "Sign in using:"
msgstr "Sign in"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "or register"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "Language versions"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "Logout"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -140,66 +141,62 @@ msgstr[1] ""
"href='%(r)s'>right to\n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "Language versions"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "My shelf"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "Administration"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "Logout"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "Sign in"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "Register"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Themes"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Audiobooks"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "All books"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Search"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "Close"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Loading"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "advanced"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -264,102 +261,108 @@ msgstr ""
msgid "More..."
msgstr "More..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "Wolne Lektury Internet library"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "Motifs and themes"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "Theme"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
msgid "See motifs catalog"
msgstr ""
-#: templates/main_page.html:95
+#: templates/main_page.html:53
msgid "Collections"
msgstr ""
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "Latest publications"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "Latest publications"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "News"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "Tools"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "Report an error or make a suggestion"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Download the catalogue in PDF format."
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Reader"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "Missing a book?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Publishing plan"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr "Information"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "Image used:"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr ""
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "Sign in"
@@ -374,23 +377,6 @@ msgstr "previous"
msgid "next"
msgstr "next"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "Authorize access to Wolne Lektury"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"Confirm to authorize access to Wolne Lektury as %(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -402,17 +388,17 @@ msgid ""
"accounts:"
msgstr ""
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
#, fuzzy
msgid "Remove"
msgstr "remove"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr ""
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr ""
@@ -429,7 +415,26 @@ msgid ""
"\">sign in."
msgstr ""
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Sign in"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Sign in"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr ""
@@ -446,19 +451,39 @@ msgstr ""
msgid "Social accounts"
msgstr "or join accounts:"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr ""
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "You have to be logged in to continue"
+#~ msgid "Translations"
+#~ msgstr "Translations"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "Authorize access to Wolne Lektury"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "Confirm to authorize access to Wolne Lektury as %(user)s ."
+
#~ msgid "Widget"
#~ msgstr "Widget"
@@ -759,9 +784,6 @@ msgstr "You have to be logged in to continue"
#~ msgid "Download as"
#~ msgstr "Download as"
-#~ msgid "Artist"
-#~ msgstr "Reader"
-
#~ msgid "Director"
#~ msgstr "Director"
diff --git a/src/wolnelektury/locale/es/LC_MESSAGES/django.po b/src/wolnelektury/locale/es/LC_MESSAGES/django.po
index 0535956a3..282455de5 100644
--- a/src/wolnelektury/locale/es/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/es/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -18,13 +18,6 @@ msgstr ""
"X-Translated-Using: django-rosetta 0.5.6\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Página no existe"
@@ -45,7 +38,7 @@ msgstr ""
msgid "main page"
msgstr "página principal"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Error del servidor"
@@ -61,7 +54,7 @@ msgstr ""
"Informa a nuestros administradores sobre el error.
"
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "Servicio no está disponible"
@@ -69,14 +62,10 @@ msgstr "Servicio no está disponible"
msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
msgstr "La página Wolnelektury.pl no está disponible debido al mantenimiento."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Administración de la página"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "Traducciones"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -90,23 +79,35 @@ msgstr "simplificado"
msgid "Import book"
msgstr "Importar libro"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr "¿Olvidaste tu contraseña?"
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
msgid "Sign in using:"
msgstr "Iniciar sesión con:"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "o registrarse"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "RegÃstrate en WolneLektury.pl"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "Versiones de idiomas"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "Cerrar sesión"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -139,66 +140,62 @@ msgstr[1] ""
"href='%(r)s'>right to\n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "Versiones de idiomas"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "Mi estante"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "Administración"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "Cerrar sesión"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "Iniciar sesión"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "Registrarse"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Temas"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Audiolibros"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Todos los libros"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Buscar"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "Cerrar"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Cargando"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "avanzado"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -264,106 +261,112 @@ msgstr ""
msgid "More..."
msgstr "Más..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "La biblioteca virtual WolneLektury.pl"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "Temas"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "Tema"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
#, fuzzy
#| msgid "See our blog"
msgid "See motifs catalog"
msgstr "Ver nuestro blog"
-#: templates/main_page.html:95
+#: templates/main_page.html:53
#, fuzzy
#| msgid "Account Connections"
msgid "Collections"
msgstr "Conexiones de la cuenta de usuario"
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "Publicaciones recientes"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "Publicaciones recientes"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "Noticias"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "Herramientas"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "Reporta un error o una sugerencia"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Descarga el catálogo en el formato PDF"
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artista"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "¿Falta un libro?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Plan de publicación"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr "Información"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "La imagen usada:"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr "Iniciar sesión con OpenID "
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "Iniciar sesión"
@@ -378,24 +381,6 @@ msgstr "anterior"
msgid "next"
msgstr "siguiente"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "Autoriza el acceso a Wolne Lektury"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"Confirma para autorizar el acceso a Wolne Lektury como el usuario "
-"%(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -409,18 +394,18 @@ msgstr ""
"Puede iniciar sesión en su cuenta de usuario a través de cualquiera de las "
"siguientes cuentas de terceros:"
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
msgid "Remove"
msgstr "Borrar"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr ""
"Actualmente no tiene ninguna cuenta social relacionada con esta cuenta de "
"usuario."
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr "Agrega una cuenta de terceros"
@@ -440,7 +425,26 @@ msgstr ""
"cuentas de usuario existentes. Si se ha equivocado, pase asign in , por favor."
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Iniciar sesión"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Iniciar sesión"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr "Usuario"
@@ -456,19 +460,40 @@ msgstr "Correo electrónico"
msgid "Social accounts"
msgstr "Cuentas sociales"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr "Ya has iniciado sesión como usuario %(user)s"
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "Tienes que iniciar sesión para continuar"
+#~ msgid "Translations"
+#~ msgstr "Traducciones"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "Autoriza el acceso a Wolne Lektury"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "Confirma para autorizar el acceso a Wolne Lektury como el usuario "
+#~ "%(user)s ."
+
#~ msgid "What's new?"
#~ msgstr "Novedades"
@@ -766,9 +791,6 @@ msgstr "Tienes que iniciar sesión para continuar"
#~ msgid "Download as"
#~ msgstr "Descarga como"
-#~ msgid "Artist"
-#~ msgstr "Artista"
-
#~ msgid "Director"
#~ msgstr "Director"
diff --git a/src/wolnelektury/locale/fr/LC_MESSAGES/django.po b/src/wolnelektury/locale/fr/LC_MESSAGES/django.po
index ffe5af36f..86f2d23c9 100644
--- a/src/wolnelektury/locale/fr/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/fr/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,13 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Site n'existe pas"
@@ -44,7 +37,7 @@ msgstr ""
msgid "main page"
msgstr "accueil"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Erreur du serveur"
@@ -60,7 +53,7 @@ msgstr ""
"Informez nos "
"administrateurs de l'erreur."
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "Site inaccessible"
@@ -70,14 +63,10 @@ msgstr ""
"Le site Wolnelektury.pl est temporairement inaccessible en raison "
"d'opérations de maintenance."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Site de l'administrateur"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "Traductions"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -91,24 +80,36 @@ msgstr "simplifié(e)"
msgid "Import book"
msgstr "Importez le livre"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr ""
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
#, fuzzy
msgid "Sign in using:"
msgstr "Connexion"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "ou inscrivez-vous"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "Wolne Lektury (Lectures Libres)"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "Version linguistique"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "Déconnexion"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -141,66 +142,62 @@ msgstr[1] ""
"href='%(r)s'>auxquelles vous avez droit\n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "Version linguistique"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "Mon étagère"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "Administration"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "Déconnexion"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "Connexion"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "Inscrivez-vous"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Thèmes"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Livres audio"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Tous les livres"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Rechercher"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "Fermer"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Chargement en cours"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "avancé(e)"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -265,102 +262,108 @@ msgstr ""
msgid "More..."
msgstr "Plus..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "Wolne Lektury - la bibliothèque en ligne"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "Motifs et thèmes"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "Thème"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
msgid "See motifs catalog"
msgstr ""
-#: templates/main_page.html:95
+#: templates/main_page.html:53
msgid "Collections"
msgstr ""
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "Publications récentes"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "Publications récentes"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "Actualités"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "Outils"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "Rapportez une erreur ou faites une suggestion"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Téléchargez le catalogue au format PDF"
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artiste"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "Il vous manque un livre?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Plan de publication"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr "Informations"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "L'image utilisé:"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr ""
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "Connexion"
@@ -375,24 +378,6 @@ msgstr "précédent(e)"
msgid "next"
msgstr "suivant(e)"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "Autorisez l'accès à Wolne Lektury"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"Confirmez pour autoriser l'accès à Wolne Lektury comme l'utilisateur "
-"%(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -404,17 +389,17 @@ msgid ""
"accounts:"
msgstr ""
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
#, fuzzy
msgid "Remove"
msgstr "supprimer"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr ""
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr ""
@@ -431,7 +416,26 @@ msgid ""
"\">sign in."
msgstr ""
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Connexion"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Connexion"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr ""
@@ -448,19 +452,40 @@ msgstr ""
msgid "Social accounts"
msgstr "ou utilisez votre compte"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr ""
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "Vous devez être connecter pour continuer"
+#~ msgid "Translations"
+#~ msgstr "Traductions"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "Autorisez l'accès à Wolne Lektury"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "Confirmez pour autoriser l'accès à Wolne Lektury comme l'utilisateur "
+#~ "%(user)s ."
+
#~ msgid "Widget"
#~ msgstr "Widget"
@@ -761,9 +786,6 @@ msgstr "Vous devez être connecter pour continuer"
#~ msgid "Download as"
#~ msgstr "Téléchargez comme"
-#~ msgid "Artist"
-#~ msgstr "Artiste"
-
#~ msgid "Director"
#~ msgstr "Metteur en scène"
diff --git a/src/wolnelektury/locale/it/LC_MESSAGES/django.po b/src/wolnelektury/locale/it/LC_MESSAGES/django.po
index 6a99b29ab..f93ec50e8 100644
--- a/src/wolnelektury/locale/it/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/it/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,13 +17,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Questa pagina non esiste"
@@ -44,7 +37,7 @@ msgstr ""
msgid "main page"
msgstr "pagina principale"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Errore del server"
@@ -60,7 +53,7 @@ msgstr ""
"pl'>blog. Si prega di informare i nostri amministratori sull'errore.
"
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "Servizio non disponibile"
@@ -70,14 +63,10 @@ msgstr ""
"A causa di lavori di manutenzione il sito WolneLektury.pl non è "
"momentaneamente disponibile."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Amministrazione del sito"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "Traduzioni"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -91,24 +80,36 @@ msgstr "semplificato"
msgid "Import book"
msgstr "Importa un libro"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr ""
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
#, fuzzy
msgid "Sign in using:"
msgstr "Accedi"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "oppure registrati"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "Versioni in altre lingue"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "Esci"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -141,66 +142,62 @@ msgstr[1] ""
"href='%(r)s'>right to\n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "Versioni in altre lingue"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "Il mio scaffale"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "Amministrazione"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "Esci"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "Accedi"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "Registrati"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Temi"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Audiolibri"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Tutti i libri"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Cerca"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "Chiudi"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Caricamento"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "avanzato"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -259,100 +256,106 @@ msgstr ""
msgid "More..."
msgstr "Più"
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "Wolne Lektury biblioteca online"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "Motivi e temi"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "tema"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
msgid "See motifs catalog"
msgstr ""
-#: templates/main_page.html:95
+#: templates/main_page.html:53
msgid "Collections"
msgstr ""
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr ""
-#: templates/main_page.html:110
+#: templates/main_page.html:64
msgid "More recent publications"
msgstr ""
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr ""
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr ""
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "Segnala un'errore o una proposta"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Scarica il catalogo nel formato PDF."
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artista"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "Manca un libro?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Programma editoriale"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr ""
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "Immagine usata"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr ""
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "Accedi"
@@ -367,24 +370,6 @@ msgstr "precedente"
msgid "next"
msgstr "seguente"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "Autorizza accesso a Wolne Lektury"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"Conferma l'accesso autorizzato a Wolne Lektury come utente %(user)s"
-"strong>."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -396,17 +381,17 @@ msgid ""
"accounts:"
msgstr ""
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
#, fuzzy
msgid "Remove"
msgstr "elimina"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr ""
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr ""
@@ -423,7 +408,26 @@ msgid ""
"\">sign in."
msgstr ""
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Accedi"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Accedi"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr ""
@@ -439,19 +443,40 @@ msgstr ""
msgid "Social accounts"
msgstr ""
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr ""
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr " Per poter continuare devi essere loggato"
+#~ msgid "Translations"
+#~ msgstr "Traduzioni"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "Autorizza accesso a Wolne Lektury"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "Conferma l'accesso autorizzato a Wolne Lektury come utente "
+#~ "%(user)s ."
+
#~ msgid "Widget"
#~ msgstr "Widget"
@@ -733,9 +758,6 @@ msgstr " Per poter continuare devi essere loggato"
#~ msgid "Listing of all pictures"
#~ msgstr "Elenco di tutte le immagini"
-#~ msgid "Artist"
-#~ msgstr "Artista"
-
#~ msgid "Director"
#~ msgstr "Direttore"
diff --git a/src/wolnelektury/locale/jp/LC_MESSAGES/django.po b/src/wolnelektury/locale/jp/LC_MESSAGES/django.po
index c2d5e8fd9..14a299465 100644
--- a/src/wolnelektury/locale/jp/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/jp/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-16 09:20+0100\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2012-02-07 15:50+0100\n"
"Last-Translator: Marcin Koziej \n"
"Language-Team: LANGUAGE \n"
@@ -16,42 +16,25 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: views.py:34 views.py:35 templates/superbase.html:85
-msgid "Sign in"
-msgstr "Zaloguj"
-
-#: views.py:41 views.py:62
-#, python-format
-msgid "Already logged in as user %(user)s"
-msgstr ""
-
-#: views.py:53 views.py:54 views.py:82 templates/superbase.html:89
-msgid "Register"
-msgstr ""
-
-#: views.py:77
-msgid "You have to be logged in to continue"
-msgstr ""
-
-#: templates/404.html:5
+#: templates/404.html:4
msgid "Page does not exist"
msgstr ""
-#: templates/404.html:10
+#: templates/404.html:8
msgid "Page not found"
msgstr ""
-#: templates/404.html:14
+#: templates/404.html:11
msgid ""
"We are sorry, but this page does not exist. Please check if you entered "
"correct address or go to "
msgstr ""
-#: templates/404.html:14
+#: templates/404.html:12
msgid "main page"
msgstr ""
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr ""
@@ -63,7 +46,7 @@ msgid ""
"error."
msgstr ""
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr ""
@@ -71,268 +54,287 @@ msgstr ""
msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
msgstr ""
-#: templates/main_page.html:6 templates/main_page.html.py:7
-msgid "Wolne Lektury internet library"
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
+msgid "Site administration"
msgstr ""
-#: templates/main_page.html:23
-msgid "What's new?"
+#: templates/admin/catalogue/book/change_form.html:6
+#: templates/admin/catalogue/book/change_form.html:36
+msgid "advanced"
msgstr ""
-#: templates/main_page.html:31
-msgid "Recent publications"
+#: templates/admin/catalogue/book/change_form.html:34
+msgid "simplified"
msgstr ""
-#: templates/main_page.html:41
-msgid "News"
+#: templates/admin/catalogue/book/change_list.html:9
+msgid "Import book"
msgstr ""
-#: templates/main_page.html:50
-msgid "Utilities"
+#: templates/auth/login.html:11
+msgid "Forgot Password?"
msgstr ""
-#: templates/main_page.html:53
-msgid "Report a bug or suggestion"
+#: templates/auth/login.html:17 templates/auth/register.html:8
+#, fuzzy
+msgid "Sign in using:"
+msgstr "Zaloguj"
+
+#: templates/auth/login_register.html:8
+msgid "or register"
msgstr ""
-#: templates/main_page.html:56
-msgid "Download the catalogue in PDF format."
+#: templates/base/app.html:20 templates/base/superbase.html:25
+msgid "Wolne Lektury"
msgstr ""
-#: templates/main_page.html:58
-msgid "Widget"
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+msgid "Language"
msgstr ""
-#: templates/main_page.html:59
-msgid "Missing a book?"
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
msgstr ""
-#: templates/main_page.html:60 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
-msgid "Publishing plan"
+#: templates/base/superbase.html:60
+#, python-format
+msgid ""
+"\n"
+" %(c)s free reading you have right to \n"
+" "
+msgid_plural ""
+"\n"
+" %(c)s free readings you have right to \n"
+" "
+msgstr[0] ""
+msgstr[1] ""
+
+#: templates/base/superbase.html:94
+msgid "My shelf"
msgstr ""
-#: templates/main_page.html:71
-msgid "Information"
+#: templates/base/superbase.html:97 templates/board_base.html:43
+msgid "Administration"
msgstr ""
-#: templates/main_page.html:73
-msgid "Privacy policy"
+#: templates/base/superbase.html:104 views.py:64 views.py:65
+msgid "Sign in"
+msgstr "Zaloguj"
+
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
+msgid "Register"
msgstr ""
-#: templates/main_page.html:98
-msgid "Image used:"
+#: templates/base/superbase.html:112
+msgid "Wesprzyj nas"
msgstr ""
-#: templates/superbase.html:18
-msgid "Wolne Lektury"
+#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
+msgid "Themes"
+msgstr ""
+
+#: templates/base/superbase.html:121
+msgid "Audiobooks"
+msgstr ""
+
+#: templates/base/superbase.html:124 templates/main_page.html:83
+msgid "All works"
+msgstr ""
+
+#: templates/base/superbase.html:133 templates/board_base.html:28
+msgid "Search"
+msgstr ""
+
+#: templates/base/superbase.html:164
+msgid "Close"
msgstr ""
-#: templates/superbase.html:55
+#: templates/base/superbase.html:166
+msgid "Loading"
+msgstr ""
+
+#: templates/board_base.html:31
+msgid "Advanced search"
+msgstr ""
+
+#: templates/info/join_us.html:6
#, python-format
msgid ""
"\n"
-" %(c)s free reading you have right to \n"
-" "
+" We have %(c)s work published in Wolne Lektury!\n"
+" Help us expand the library and set new readings free by\n"
+" making a "
+"donation\n"
+" or transferring 1% of your income tax .\n"
+" "
msgid_plural ""
"\n"
-" %(c)s free readings you have right to \n"
-" "
+" We have %(c)s works published in Wolne Lektury!\n"
+" Help us expand the library and set new readings free by\n"
+" making a "
+"donation\n"
+" or transferring 1% of your income tax .\n"
+" "
msgstr[0] ""
msgstr[1] ""
-#: templates/superbase.html:66
-msgid "Welcome"
+#: templates/info/join_us.html:22
+msgid ""
+"Become an editor of Wolne Lektury! Find out if\n"
+" we're currently working on a reading you're looking for and prepare\n"
+" a publication by yourself by logging into the Editorial Platform."
msgstr ""
-#: templates/superbase.html:72 templates/user.html:12
-msgid "Password"
+#: templates/info/join_us.html:25
+msgid "More..."
msgstr ""
-#: templates/superbase.html:73 templates/user.html:13
-msgid "E-mail"
+#: templates/main_page.html:11 templates/main_page.html:12
+msgid "Wolne Lektury internet library"
msgstr ""
-#: templates/superbase.html:74 templates/user.html:14
-msgid "Social accounts"
+#: templates/main_page.html:19
+msgid "In our digital library you will find"
msgstr ""
-#: templates/superbase.html:77
-msgid "My shelf"
+#: templates/main_page.html:28
+msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/superbase.html:79
-msgid "Administration"
+#: templates/main_page.html:35
+msgid "Motifs and themes"
msgstr ""
-#: templates/superbase.html:81
-msgid "Logout"
+#: templates/main_page.html:37
+msgid "Theme"
msgstr ""
-#: templates/superbase.html:111
-msgid "Search"
+#: templates/main_page.html:38
+msgid "Explore works with the same theme"
msgstr ""
-#: templates/superbase.html:131
-msgid "Language versions"
+#: templates/main_page.html:48
+msgid "See motifs catalog"
msgstr ""
-#: templates/superbase.html:165
-msgid ""
-"\n"
-"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation .\n"
-"\t\t\t\tDigital reproductions are made by The National Library , Biblioteka ÅlÄ
ska and Biblioteka ElblÄ
ska , based on TNL, BÅ and BE resources.\n"
-"\t\t\t\tHosting: ICM .\n"
-"\t\t\t\t"
+#: templates/main_page.html:53
+msgid "Collections"
msgstr ""
-#: templates/superbase.html:172
-msgid ""
-"\n"
-"\t\t\t\tModern Poland Foundation, 00-514 Warsaw, ul. MarszaÅkowska 84/92 "
-"lok. 125, tel/fax: (22) 621-30-17\n"
-" e-mail: fundacja@nowoczesnapolska.org.pl \n"
-"\t\t\t\t"
+#: templates/main_page.html:55
+msgid "See collections catalog"
msgstr ""
-#: templates/superbase.html:189
-msgid "Close"
+#: templates/main_page.html:60
+msgid "Recent publications"
msgstr ""
-#: templates/superbase.html:191
-msgid "Loading"
+#: templates/main_page.html:64
+msgid "More recent publications"
msgstr ""
-#: templates/user.html:5 templates/user.html.py:9
-msgid "User"
+#: templates/main_page.html:70
+msgid "News"
msgstr ""
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
-msgid "Site administration"
+#: templates/main_page.html:77
+msgid "Utilities"
msgstr ""
-#: templates/admin/base_site.html:9
-msgid "Translations"
+#: templates/main_page.html:80
+msgid "Report a bug or suggestion"
msgstr ""
-#: templates/admin/catalogue/book/change_form.html:6
-#: templates/admin/catalogue/book/change_form.html:35
-msgid "advanced"
+#: templates/main_page.html:81
+msgid "Download the catalogue in PDF format."
msgstr ""
-#: templates/admin/catalogue/book/change_form.html:33
-msgid "simplified"
+#: templates/main_page.html:82
+msgid "Art"
msgstr ""
-#: templates/admin/catalogue/book/change_list.html:7
-msgid "Import book"
+#: templates/main_page.html:85
+msgid "Footnotes"
msgstr ""
-#: templates/auth/login.html:10
-msgid "Forgot Password?"
+#: templates/main_page.html:86
+msgid "Missing a book?"
msgstr ""
-#: templates/auth/login.html:15 templates/auth/register.html:7
-#, fuzzy
-msgid "Sign in using:"
-msgstr "Zaloguj"
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
+msgid "Publishing plan"
+msgstr ""
-#: templates/auth/login_register.html:9
-msgid "or register"
+#: templates/main_page.html:92
+msgid "Newsletter"
msgstr ""
-#: templates/info/join_us.html:6
-#, python-format
-msgid ""
-"\n"
-"We have %(c)s work published in Wolne Lektury!\n"
-"Help us expand the library and set new readings free by\n"
-"making a donation\n"
-"or transferring 1% of your income tax .\n"
-msgid_plural ""
-"\n"
-"We have %(c)s works published in Wolne Lektury!\n"
-"Help us expand the library and set new readings free by\n"
-"making a donation\n"
-"or transferring 1% of your income tax .\n"
-msgstr[0] ""
-msgstr[1] ""
+#: templates/main_page.html:97
+msgid "Information"
+msgstr ""
-#: templates/info/join_us.html:20
-msgid ""
-"Become an editor of Wolne Lektury! Find out if\n"
-"we're currently working on a reading you're looking for and prepare\n"
-"a publication by yourself by logging into the Editorial Platform."
+#: templates/main_page.html:99
+msgid "Privacy policy"
msgstr ""
-#: templates/info/join_us.html:23
-msgid "More..."
+#: templates/main_page.html:120
+msgid "Image used:"
msgstr ""
-#: templates/openid/login.html:6 templates/openid/login.html.py:10
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr ""
-#: templates/openid/login.html:27
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "Zaloguj"
-#: templates/pagination/pagination.html:5
-#: templates/pagination/pagination.html:7
+#: templates/pagination/pagination.html:6
+#: templates/pagination/pagination.html:8
msgid "previous"
msgstr ""
-#: templates/pagination/pagination.html:21
-#: templates/pagination/pagination.html:23
+#: templates/pagination/pagination.html:22
+#: templates/pagination/pagination.html:24
msgid "next"
msgstr ""
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr ""
-
-#: templates/piston/authorize_token.html:10
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-
#: templates/socialaccount/connections.html:5
-#: templates/socialaccount/connections.html:8
+#: templates/socialaccount/connections.html:10
msgid "Account Connections"
msgstr ""
-#: templates/socialaccount/connections.html:12
+#: templates/socialaccount/connections.html:13
msgid ""
"You can sign in to your account using any of the following third party "
"accounts:"
msgstr ""
-#: templates/socialaccount/connections.html:36
+#: templates/socialaccount/connections.html:33
msgid "Remove"
msgstr ""
-#: templates/socialaccount/connections.html:44
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr ""
-#: templates/socialaccount/connections.html:47
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr ""
#: templates/socialaccount/login_cancelled.html:5
-#: templates/socialaccount/login_cancelled.html:9
+#: templates/socialaccount/login_cancelled.html:10
msgid "Login Cancelled"
msgstr ""
@@ -343,3 +345,59 @@ msgid ""
"accounts. If this was a mistake, please proceed to sign in ."
msgstr ""
+
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Zaloguj"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Zaloguj"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
+msgid "User"
+msgstr ""
+
+#: templates/user.html:11
+msgid "Password"
+msgstr ""
+
+#: templates/user.html:12
+msgid "E-mail"
+msgstr ""
+
+#: templates/user.html:13
+msgid "Social accounts"
+msgstr ""
+
+#: utils.py:123
+msgid "Message sent automatically. Please do not reply."
+msgstr ""
+
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
+#, python-format
+msgid "Already logged in as user %(user)s"
+msgstr ""
+
+#: views.py:107
+msgid "You have to be logged in to continue"
+msgstr ""
diff --git a/src/wolnelektury/locale/lt/LC_MESSAGES/django.po b/src/wolnelektury/locale/lt/LC_MESSAGES/django.po
index 3d4be8e1a..235d97043 100644
--- a/src/wolnelektury/locale/lt/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/lt/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -19,13 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Tinklalapis neegzistuoja"
@@ -46,7 +39,7 @@ msgstr ""
msgid "main page"
msgstr "pagrindinį puslapį"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Serverio klaida"
@@ -62,7 +55,7 @@ msgstr ""
"href='mailto:fundacja@nowoczesnapolska.org.pl'>administratoriams apie "
"klaidÄ
.\""
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "Paslauga neprieinama"
@@ -72,14 +65,10 @@ msgstr ""
"Interneto svetainÄ Wolnelektury.pl Å¡iuo metu yra neprieinama dÄl atliekamų "
"remonto darbų."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Interneto svetainÄs administracija"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "Vertimai"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -93,23 +82,35 @@ msgstr "supaprastintas"
msgid "Import book"
msgstr "Importuoti knygÄ
"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr "Pamiršote slaptažodį?"
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
msgid "Sign in using:"
msgstr "Prisijungti naudojant:"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "arba registruotis "
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "Kalbų versijos"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "Atsijungti"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -147,66 +148,62 @@ msgstr[2] ""
"href='%(r)s'>turite teisÄ\n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "Kalbų versijos"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "Mano lentyna"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "Administracija "
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "Atsijungti"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "Prisijungti "
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "Registruotis "
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Motyvai"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Audio knygos"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Visos knygos"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Ieškoti"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "Uždaryti"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Kraunasi"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "papildomas"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -280,106 +277,112 @@ msgstr ""
msgid "More..."
msgstr "Daugiau..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "Wolne Lektury internetinÄ biblioteka"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "Motyvai ir temos"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "Motyvas"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
#, fuzzy
#| msgid "See our blog"
msgid "See motifs catalog"
msgstr "Aplankyk mÅ«sų blogÄ
"
-#: templates/main_page.html:95
+#: templates/main_page.html:53
#, fuzzy
#| msgid "Account Connections"
msgid "Collections"
msgstr "Paskyros jungtys"
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "Naujos publikacijos"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "Naujos publikacijos"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "Naujienos"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "PriemonÄs"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "PraneÅ¡kite apie klaidÄ
arba teikite pasiūlymus"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Atsisiųsti katalogÄ
PDF formatu."
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "Artistas"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "Neradote knygos?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Publikavimo planas"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr "Informacija"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "Panaudotas paveikslÄlis:"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr "OpenID Prisijungti"
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
msgid "Sign In"
msgstr "Prisijungti "
@@ -393,24 +396,6 @@ msgstr "ankstÄsnis"
msgid "next"
msgstr "sekantis "
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "Leisti prieigÄ
prie Wolne Lektury interneto svetainÄs"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"Patvirtinkite, kad leistute prieigÄ
prie Wolne Lektury interneto svetainÄs "
-"kaip vartotojas %(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -424,16 +409,16 @@ msgstr ""
"Galite prisijungti prie jūsų paskyros naudodamiesi šiomis third party "
"paskyromis:"
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
msgid "Remove"
msgstr "Pašalinti"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr "Neturite socialinio tinklo paskyrų prijungtų prie šios paskyros."
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr "PridÄti 3rd Party PaskyrÄ
"
@@ -453,7 +438,26 @@ msgstr ""
"viena iÅ¡ jÅ«sų egzistuojanÄių paskyrų. Jei įvyko klaida, praÅ¡ome pradÄti Äia "
"sign in ."
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "Prisijungti "
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "Prisijungti "
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr "Vartotojas"
@@ -469,19 +473,40 @@ msgstr "El- paštas"
msgid "Social accounts"
msgstr "SocialinÄs paskyros"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr "Jau esate prisijungÄs kaip vartotojas %(user)s"
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "NorÄdami tÄsti, turite bÅ«ti prisijungÄ"
+#~ msgid "Translations"
+#~ msgstr "Vertimai"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "Leisti prieigÄ
prie Wolne Lektury interneto svetainÄs"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "Patvirtinkite, kad leistute prieigÄ
prie Wolne Lektury interneto "
+#~ "svetainÄs kaip vartotojas %(user)s ."
+
#~ msgid "What's new?"
#~ msgstr "Kas naujo?"
@@ -787,9 +812,6 @@ msgstr "NorÄdami tÄsti, turite bÅ«ti prisijungÄ"
#~ msgid "Download as"
#~ msgstr "Atsisiųsti kaip"
-#~ msgid "Artist"
-#~ msgstr "Artistas"
-
#~ msgid "Director"
#~ msgstr "Režisierus"
diff --git a/src/wolnelektury/locale/pl/LC_MESSAGES/django.mo b/src/wolnelektury/locale/pl/LC_MESSAGES/django.mo
index 6eec37fc7d4437e53ae9afff86b924455ba9ab19..5179fff4b35edb728189ccb0d6b5f3a7f8a0b745 100644
GIT binary patch
delta 1212
zcmXZaPe@cz6vy#1)6CTTaZ)oKwGyRLB%yy0#xPW9WCSLaL=k2PE`k&k$F0O!7yDyo>xkp1@k(Nr
zwzWJ|(XbwCQ3LG9op{i-cVU9KAJu;h3-B>2;R_7lD^%jQ7{^bz0kbY%LG`!1-1~4|
zIyZ2F26e1Kbx5KLX~Z%-=HgB)A-;r#IDq7|QPlV2r~;>)GpIs7y7ymE6a9sUaW&0@
zmb!sn8t^D;CM~F?ZN+vxk94&e+=6p>9RJ`EJV4fmcpJ6kwd{u`(u{lYG%DW^D*p&-
zt1dj?K^>o>mTnT?`#1;Ki#M3&2fvxW$ZU!Cv&FfkpI{lZ60f7k7VCF()#!Y$P9jX0mU_milCrjg4QxNXGWr~(4zxj2f-Q;8~I7it2H
zs7*bI8uv^&$4nnyrGa&^>(2YA4<=9vUZM(`cP^q9a~V}YfNc7{44ZK`YM_2p{z25P
z4x=VIhUaiR&4YF+usL@;3h@;2K5W7v9LCS6mnT}{C7CLdQ`|`zhuQ;)iDJqSJ{sZ6CdBp$#
delta 1223
zcmXZbTS${(9LMqhWShFp+BDDQDiRAiiQO2oh_nm?v*>^zu}Zv1ya>A}kU@2!NGQE}
z6A_{j5k!a-fg`98nM4o~6;T?jD=E4N5rXLZa}Vr&Kksw;KmX^j@x)|e^kOPxW&^y^
zIEVpk37he=HePB!gSB`bgE)v=a0Cl+8lyOi{OpbM6K+f{SpnrzRNR_~r7WM1
z9aOBxdej65aWA&I`m0z$c?i{i5@YxX6)=r{oI?d(z;*ZmOEBxotEm3@MY;B9Q7Sia
zoCVIfWW9iwdxSO6Z$&8MT?Ks03mJ)A%}U#{;N|Mo{s`QKxzrwa|wt
zKDzjrL7h@;Q|@}i@f77|Jc@U41hc5?)z3?bc-Vv!sMGz5x<f5N4Hu>b%7
diff --git a/src/wolnelektury/locale/pl/LC_MESSAGES/django.po b/src/wolnelektury/locale/pl/LC_MESSAGES/django.po
index d87791ad1..3fdd6ee8e 100644
--- a/src/wolnelektury/locale/pl/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/pl/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WolneLektury\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-02-12 10:05+0100\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2020-02-12 10:05+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: \n"
@@ -20,18 +20,6 @@ msgstr ""
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 2.2.4\n"
-#: __init__.py:11
-#, fuzzy
-#| msgid ""
-#| "Please enter a correct %(username)s and password. Note that both fields "
-#| "may be case-sensitive."
-msgid ""
-"Please enter a correct %(username) and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-"Wprowadź poprawne dane (%(username)s oraz hasÅo). Uwaga: wielkoÅÄ liter ma "
-"znaczenie."
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Podana strona nie istnieje"
@@ -111,7 +99,8 @@ msgstr "albo zaÅóż konto"
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/base/app.html:43 templates/base/superbase.html:70
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
msgid "Language"
msgstr "JÄzyk"
@@ -165,39 +154,34 @@ msgid "Register"
msgstr "ZaÅóż konto"
#: templates/base/superbase.html:112
+msgid "Wesprzyj nas"
+msgstr ""
+
+#: templates/base/superbase.html:115
msgid "Literature"
msgstr "Literatura"
-#: templates/base/superbase.html:115
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Motywy"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "Audiobooki"
-#: templates/base/superbase.html:121
-msgid "Wesprzyj nas"
-msgstr ""
-
-#: templates/base/superbase.html:125
-#, python-format
-msgid "Donate 1%%"
-msgstr "Przekaż 1%%"
-
-#: templates/base/superbase.html:127
+#: templates/base/superbase.html:124 templates/main_page.html:83
msgid "All works"
msgstr "Wszystkie utwory"
-#: templates/base/superbase.html:136 templates/board_base.html:28
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "Szukaj"
-#: templates/base/superbase.html:167
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "Zamknij"
-#: templates/base/superbase.html:169
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "Åadowanie"
@@ -317,36 +301,40 @@ msgstr "NarzÄdzia"
msgid "Report a bug or suggestion"
msgstr "ZgÅoÅ bÅÄ
d lub sugestiÄ"
-#: templates/main_page.html:82
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "Pobierz katalog w formacie PDF."
-#: templates/main_page.html:83
+#: templates/main_page.html:82
+msgid "Art"
+msgstr "Sztuka"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr "Przypisy"
-#: templates/main_page.html:84
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "Nie znalazÅeÅ/-aÅ utworu?"
-#: templates/main_page.html:85 templates/publish_plan.html:4
+#: templates/main_page.html:87 templates/publish_plan.html:4
#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Plan publikacji"
-#: templates/main_page.html:90
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr "Newsletter"
-#: templates/main_page.html:95
+#: templates/main_page.html:97
msgid "Information"
msgstr "Informacje"
-#: templates/main_page.html:97
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr "Polityka prywatnoÅci"
-#: templates/main_page.html:118
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "Użyto obrazu:"
@@ -443,10 +431,18 @@ msgstr "E-mail"
msgid "Social accounts"
msgstr "Konta spoÅecznoÅciowe"
-#: utils.py:122
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr "WiadomoÅÄ wysÅana automatycznie. Prosimy nie odpowiadaÄ."
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
@@ -456,6 +452,20 @@ msgstr "Zalogowano jako %(user)s"
msgid "You have to be logged in to continue"
msgstr "Zaloguj siÄ, aby kontynuowaÄ"
+#, fuzzy
+#~| msgid ""
+#~| "Please enter a correct %(username)s and password. Note that both fields "
+#~| "may be case-sensitive."
+#~ msgid ""
+#~ "Please enter a correct %(username) and password. Note that both fields "
+#~ "may be case-sensitive."
+#~ msgstr ""
+#~ "Wprowadź poprawne dane (%(username)s oraz hasÅo). Uwaga: wielkoÅÄ liter "
+#~ "ma znaczenie."
+
+#~ msgid "Donate 1%%"
+#~ msgstr "Przekaż 1%%"
+
#~ msgid "Translations"
#~ msgstr "TÅumaczenia"
@@ -770,9 +780,6 @@ msgstr "Zaloguj siÄ, aby kontynuowaÄ"
#~ msgid "Download as"
#~ msgstr "Pobierz jako"
-#~ msgid "Artist"
-#~ msgstr "Czyta"
-
#~ msgid "Director"
#~ msgstr "Reżyseruje"
diff --git a/src/wolnelektury/locale/ru/LC_MESSAGES/django.po b/src/wolnelektury/locale/ru/LC_MESSAGES/django.po
index d61a998b5..16a978f63 100644
--- a/src/wolnelektury/locale/ru/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/ru/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -19,13 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "Ð¡Ð°Ð¹Ñ Ð½Ðµ ÑÑÑеÑÑвÑеÑ"
@@ -46,7 +39,7 @@ msgstr ""
msgid "main page"
msgstr "главнÑÑ ÑÑÑаниÑÑ"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "ÐÑибка ÑеÑвеÑа"
@@ -62,7 +55,7 @@ msgstr ""
"href='mailto:fundacja@nowoczesnapolska.org.pl'> админиÑÑÑаÑоÑам об "
"оÑибке."
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "СеÑÐ²Ð¸Ñ Ð½ÐµÐ´Ð¾ÑÑÑпен"
@@ -72,14 +65,10 @@ msgstr ""
"Ðо Ð¿Ð¾Ð²Ð¾Ð´Ñ ÑеÑ
ниÑеÑкой поддÑежки ÑÐ°Ð¹Ñ The Wolnelektury.pl вÑеменно не "
"ÑабоÑаеÑ."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "Ð¡Ð°Ð¹Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑÑÑаÑии"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "ÐеÑевод"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -93,24 +82,36 @@ msgstr "ÑпÑоÑеннÑй"
msgid "Import book"
msgstr "ÐмпоÑÑ ÐºÐ½Ð¸Ð³Ð¸"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr ""
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
#, fuzzy
msgid "Sign in using:"
msgstr "ÐÑ
од"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "или заÑегиÑÑÑиÑоваÑÑÑÑ"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "на WolneLektury.pl"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "ЯзÑковÑе веÑÑии"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "ÐÑÑ
од"
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -148,66 +149,62 @@ msgstr[2] ""
"впÑаве полÑзоваÑÑÑÑ \n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "ЯзÑковÑе веÑÑии"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "СоздаÑÑ Ð¿Ð¾Ð»ÐºÑ"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "ÐдминиÑÑÑаÑиÑ"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "ÐÑÑ
од"
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "ÐÑ
од"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "ÐаÑегиÑÑÑоваÑÑÑÑ"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "ÐоÑивÑ"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "ÐÑдиокниги"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "ÐÑе книги"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "ÐоиÑк"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "ÐакÑойÑе"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "ÐогÑÑзка"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "пÑодвинÑÑÑй"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -281,104 +278,110 @@ msgstr ""
msgid "More..."
msgstr "ÐодÑобнее..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "WolneLektury инÑеÑÐ½ÐµÑ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñека"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "ÐоÑÐ¸Ð²Ñ Ð¸ ÑемÑ"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "ÐоÑив"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
#, fuzzy
#| msgid "See our blog"
msgid "See motifs catalog"
msgstr "ÐоÑмоÑÑиÑе Ð½Ð°Ñ Ð±Ð»Ð¾Ð³"
-#: templates/main_page.html:95
+#: templates/main_page.html:53
msgid "Collections"
msgstr ""
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "ÐоÑледние пÑбликаÑии"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "ÐоÑледние пÑбликаÑии"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "ÐовоÑÑи"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "УÑилиÑÑ"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "СообÑиÑÑ Ð¾Ð± оÑибке или пÑедложении"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "СкаÑаÑÑ ÐºÐ°Ñалог в PDF ÑоÑмаÑе."
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "ÐÑÑиÑÑ"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "ÐоÑеÑÑли книгÑ?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "ÐздаÑелÑÑкий план"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr "ÐнÑоÑмаÑиÑ"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "ÐÑполÑзÑемÑе изобÑажениÑ:"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr ""
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
#, fuzzy
msgid "Sign In"
msgstr "ÐÑ
од"
@@ -393,24 +396,6 @@ msgstr "пÑедÑдÑÑаÑ"
msgid "next"
msgstr "ÑледÑÑÑаÑ"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "ÐвÑоÑизаÑÐ¸Ñ Ð´Ð¾ÑÑÑпа к Wolne Lektury"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"ÐодÑвеÑждение Ð´Ð»Ñ Ð°Ð²ÑоÑизаÑии доÑÑÑпа к Wolne Lektury как полÑзоваÑÐµÐ»Ñ "
-"%(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -422,17 +407,17 @@ msgid ""
"accounts:"
msgstr ""
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
#, fuzzy
msgid "Remove"
msgstr "ÑбÑаÑÑ"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr ""
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr ""
@@ -449,7 +434,26 @@ msgid ""
"\">sign in."
msgstr ""
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "ÐÑ
од"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "ÐÑ
од"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr ""
@@ -466,19 +470,40 @@ msgstr ""
msgid "Social accounts"
msgstr "или пÑиÑоединиÑеÑÑ Ðº полÑзоваÑелÑм"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr ""
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "ÐÑ Ð´Ð¾Ð»Ð¶Ð½Ñ Ð²Ð¾Ð¹Ñи, ÑÑÐ¾Ð±Ñ Ð¿ÑодолжaÑÑ"
+#~ msgid "Translations"
+#~ msgstr "ÐеÑевод"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "ÐвÑоÑизаÑÐ¸Ñ Ð´Ð¾ÑÑÑпа к Wolne Lektury"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "ÐодÑвеÑждение Ð´Ð»Ñ Ð°Ð²ÑоÑизаÑии доÑÑÑпа к Wolne Lektury как полÑзоваÑÐµÐ»Ñ "
+#~ "%(user)s ."
+
#~ msgid "Widget"
#~ msgstr "ÐиджеÑ"
@@ -779,9 +804,6 @@ msgstr "ÐÑ Ð´Ð¾Ð»Ð¶Ð½Ñ Ð²Ð¾Ð¹Ñи, ÑÑÐ¾Ð±Ñ Ð¿ÑодолжaÑÑ"
#~ msgid "Download as"
#~ msgstr "СкаÑаÑÑ"
-#~ msgid "Artist"
-#~ msgstr "ÐÑÑиÑÑ"
-
#~ msgid "Director"
#~ msgstr "ÑежиÑÑеÑ"
diff --git a/src/wolnelektury/locale/uk/LC_MESSAGES/django.po b/src/wolnelektury/locale/uk/LC_MESSAGES/django.po
index 9c2e2a2e6..dd9fb3866 100644
--- a/src/wolnelektury/locale/uk/LC_MESSAGES/django.po
+++ b/src/wolnelektury/locale/uk/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-09 15:02+0200\n"
+"POT-Creation-Date: 2020-09-09 22:17+0200\n"
"PO-Revision-Date: 2013-04-09 10:43+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -18,13 +18,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: __init__.py:12
-#, python-format
-msgid ""
-"Please enter a correct %(username)s and password. Note that both fields may "
-"be case-sensitive."
-msgstr ""
-
#: templates/404.html:4
msgid "Page does not exist"
msgstr "СÑоÑÑнка не ÑÑнÑÑ"
@@ -45,7 +38,7 @@ msgstr ""
msgid "main page"
msgstr "головна ÑÑоÑÑнка"
-#: templates/500.html:6 templates/500.html.py:17
+#: templates/500.html:6 templates/500.html:17
msgid "Server error"
msgstr "Ðомилка ÑеÑвеÑа"
@@ -61,7 +54,7 @@ msgstr ""
"href='mailto:fundacja@nowoczesnapolska.org.pl'>адмÑнÑÑÑÑаÑоÑÑв пÑо "
"помилкÑ."
-#: templates/503.html:6 templates/503.html.py:17
+#: templates/503.html:6 templates/503.html:17
msgid "Service unavailable"
msgstr "ÐоÑлÑга недоÑÑÑпна"
@@ -70,14 +63,10 @@ msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
msgstr ""
"У зв'ÑÐ·ÐºÑ Ð· ÑеÑ
нÑÑними ÑобоÑами ÑеÑвÑÑ Wolnelektury.pl ÑимÑаÑово недоÑÑÑпний."
-#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html:7
msgid "Site administration"
msgstr "ÐдмÑнÑÑÑÑаÑÑÑ ÑайÑÑ"
-#: templates/admin/base_site.html:9
-msgid "Translations"
-msgstr "ÐеÑеклади"
-
#: templates/admin/catalogue/book/change_form.html:6
#: templates/admin/catalogue/book/change_form.html:36
msgid "advanced"
@@ -91,23 +80,35 @@ msgstr "ÑпÑоÑений"
msgid "Import book"
msgstr "ÐмпоÑÑÑваÑи книжкÑ"
-#: templates/auth/login.html:12
+#: templates/auth/login.html:11
msgid "Forgot Password?"
msgstr "ÐабÑли паÑолÑ?"
-#: templates/auth/login.html:17 templates/auth/register.html:17
+#: templates/auth/login.html:17 templates/auth/register.html:8
msgid "Sign in using:"
msgstr "УвÑйÑи за допомогоÑ:"
-#: templates/auth/login_register.html:9
+#: templates/auth/login_register.html:8
msgid "or register"
msgstr "або заÑеÑÑÑÑÑваÑиÑÑ"
-#: templates/base/superbase.html:24
+#: templates/base/app.html:20 templates/base/superbase.html:25
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/base/superbase.html:56
+#: templates/base/app.html:42 templates/base/app.html:43
+#: templates/base/superbase.html:69 templates/base/superbase.html:70
+#, fuzzy
+#| msgid "Language versions"
+msgid "Language"
+msgstr "ÐÐ¾Ð²Ð½Ñ Ð²ÐµÑÑÑÑ"
+
+#: templates/base/app.html:66 templates/base/superbase.html:100
+#: templates/board_base.html:48
+msgid "Logout"
+msgstr "ÐийÑи "
+
+#: templates/base/superbase.html:60
#, fuzzy, python-format
#| msgid ""
#| "\n"
@@ -145,66 +146,62 @@ msgstr[2] ""
"маÑÑ Ð¿Ñаво \n"
" "
-#: templates/base/superbase.html:66
-#, fuzzy
-#| msgid "Language versions"
-msgid "Language"
-msgstr "ÐÐ¾Ð²Ð½Ñ Ð²ÐµÑÑÑÑ"
-
-#: templates/base/superbase.html:92
+#: templates/base/superbase.html:94
msgid "My shelf"
msgstr "ÐÐ¾Ñ Ð¿Ð¾Ð»Ð¸ÑÑ"
-#: templates/base/superbase.html:96
+#: templates/base/superbase.html:97 templates/board_base.html:43
msgid "Administration"
msgstr "ÐдмÑнÑÑÑÑаÑÑÑ"
-#: templates/base/superbase.html:100
-msgid "Logout"
-msgstr "ÐийÑи "
-
-#: templates/base/superbase.html:104 views.py:71 views.py:72
+#: templates/base/superbase.html:104 views.py:64 views.py:65
msgid "Sign in"
msgstr "УвÑйÑи"
-#: templates/base/superbase.html:105 views.py:90 views.py:91 views.py:119
+#: templates/base/superbase.html:105 views.py:83 views.py:84 views.py:112
msgid "Register"
msgstr "ÐаÑеÑÑÑÑÑваÑиÑÑ"
#: templates/base/superbase.html:112
-msgid "Literature"
+msgid "Wesprzyj nas"
msgstr ""
#: templates/base/superbase.html:115
+msgid "Literature"
+msgstr ""
+
+#: templates/base/superbase.html:118
msgid "Themes"
msgstr "Теми"
-#: templates/base/superbase.html:118
+#: templates/base/superbase.html:121
msgid "Audiobooks"
msgstr "ÐÑдÑокниги"
-#: templates/base/superbase.html:121
-msgid "Gallery"
-msgstr ""
-
-#: templates/base/superbase.html:124
+#: templates/base/superbase.html:124 templates/main_page.html:83
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "ÐÑÑ ÐºÐ½Ð¸Ð¶ÐºÐ¸"
-#: templates/base/superbase.html:133
+#: templates/base/superbase.html:133 templates/board_base.html:28
msgid "Search"
msgstr "ÐоÑÑк"
-#: templates/base/superbase.html:161
+#: templates/base/superbase.html:164
msgid "Close"
msgstr "ÐакÑиÑи"
-#: templates/base/superbase.html:163
+#: templates/base/superbase.html:166
msgid "Loading"
msgstr "ÐаванÑажÑÑÑÑÑÑ"
+#: templates/board_base.html:31
+#, fuzzy
+#| msgid "advanced"
+msgid "Advanced search"
+msgstr "ÑозÑиÑений"
+
#: templates/info/join_us.html:6
#, fuzzy, python-format
#| msgid ""
@@ -278,106 +275,112 @@ msgstr ""
msgid "More..."
msgstr "ÐÑлÑÑе..."
-#: templates/main_page.html:10 templates/main_page.html.py:11
+#: templates/main_page.html:11 templates/main_page.html:12
msgid "Wolne Lektury internet library"
msgstr "ÐлекÑÑонна бÑблÑоÑека WolneLektury.pl"
-#: templates/main_page.html:22
+#: templates/main_page.html:19
msgid "In our digital library you will find"
msgstr ""
-#: templates/main_page.html:33
+#: templates/main_page.html:28
msgid "and many other books, poems, pictures, audiobooksâ¦"
msgstr ""
-#: templates/main_page.html:40
+#: templates/main_page.html:35
msgid "Motifs and themes"
msgstr "ÐоÑиви Ñа Ñеми"
-#: templates/main_page.html:42
+#: templates/main_page.html:37
msgid "Theme"
msgstr "Тема"
-#: templates/main_page.html:43
+#: templates/main_page.html:38
msgid "Explore works with the same theme"
msgstr ""
-#: templates/main_page.html:55
+#: templates/main_page.html:48
#, fuzzy
#| msgid "See our blog"
msgid "See motifs catalog"
msgstr "ÐивиÑиÑÑ Ð½Ð°Ñ Ð±Ð»Ð¾Ð³"
-#: templates/main_page.html:95
+#: templates/main_page.html:53
#, fuzzy
#| msgid "Account Connections"
msgid "Collections"
msgstr "Ðов'ÑÐ·Ð°Ð½Ñ Ð°ÐºÐ°ÑнÑи"
-#: templates/main_page.html:99
+#: templates/main_page.html:55
msgid "See collections catalog"
msgstr ""
-#: templates/main_page.html:104
+#: templates/main_page.html:60
msgid "Recent publications"
msgstr "оÑÑÐ°Ð½Ð½Ñ Ð¿ÑблÑкаÑÑÑ"
-#: templates/main_page.html:110
+#: templates/main_page.html:64
#, fuzzy
#| msgid "Recent publications"
msgid "More recent publications"
msgstr "оÑÑÐ°Ð½Ð½Ñ Ð¿ÑблÑкаÑÑÑ"
-#: templates/main_page.html:116
+#: templates/main_page.html:70
msgid "News"
msgstr "ÐовоÑÑÑ"
-#: templates/main_page.html:121
+#: templates/main_page.html:77
msgid "Utilities"
msgstr "ÑÑилÑÑи"
-#: templates/main_page.html:124
+#: templates/main_page.html:80
msgid "Report a bug or suggestion"
msgstr "ÐовÑдомиÑи пÑо Ð¿Ð¾Ð¼Ð¸Ð»ÐºÑ Ð°Ð±Ð¾ надÑÑлаÑи ÑÐ²Ð¾Ñ Ð¿ÑопозиÑÑÑ"
-#: templates/main_page.html:126
+#: templates/main_page.html:81
msgid "Download the catalogue in PDF format."
msgstr "ÐаванÑажиÑи каÑалог Ñ ÑоÑмаÑÑ PDF."
-#: templates/main_page.html:127
+#: templates/main_page.html:82
+#, fuzzy
+#| msgid "Artist"
+msgid "Art"
+msgstr "ÐиÑеÑÑ"
+
+#: templates/main_page.html:85
msgid "Footnotes"
msgstr ""
-#: templates/main_page.html:128
+#: templates/main_page.html:86
msgid "Missing a book?"
msgstr "Ðе знайÑли книжки?"
-#: templates/main_page.html:129 templates/publish_plan.html:4
-#: templates/publish_plan.html.py:8
+#: templates/main_page.html:87 templates/publish_plan.html:4
+#: templates/publish_plan.html:8
msgid "Publishing plan"
msgstr "Ðлан пÑблÑкаÑÑÑ"
-#: templates/main_page.html:134
+#: templates/main_page.html:92
msgid "Newsletter"
msgstr ""
-#: templates/main_page.html:139
+#: templates/main_page.html:97
msgid "Information"
msgstr "ÑнÑоÑмаÑÑÑ"
-#: templates/main_page.html:141
+#: templates/main_page.html:99
msgid "Privacy policy"
msgstr ""
-#: templates/main_page.html:162
+#: templates/main_page.html:120
msgid "Image used:"
msgstr "ÐикоÑиÑÑано гÑаÑÑкÑ:"
-#: templates/openid/login.html:6 templates/openid/login.html.py:9
+#: templates/openid/login.html:5 templates/openid/login.html:8
msgid "OpenID Sign In"
msgstr "УвÑйÑи за Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ð¾Ñ OpenID"
-#: templates/openid/login.html:22
+#: templates/openid/login.html:16
msgid "Sign In"
msgstr "УвÑйÑи"
@@ -391,24 +394,6 @@ msgstr "попеÑеднÑ"
msgid "next"
msgstr "наÑÑÑпна"
-#: templates/piston/authorize_token.html:4
-#: templates/piston/authorize_token.html:7
-msgid "Authorize access to Wolne Lektury"
-msgstr "ÐвÑоÑизÑваÑи доÑÑÑп до Wolne Lektury"
-
-#: templates/piston/authorize_token.html:11
-#, python-format
-msgid ""
-"Confirm to authorize access to Wolne Lektury as user %(user)s"
-"strong>."
-msgstr ""
-"ÐÑдÑвеÑдиÑи, Ñоб авÑоÑизÑваÑи доÑÑÑп до Wolne Lektury вÑд ÑÐ¼ÐµÐ½Ñ ÐºÐ¾ÑиÑÑÑваÑа "
-"%(user)s ."
-
-#: templates/piston/authorize_token.html:17
-msgid "Confirm"
-msgstr ""
-
#: templates/socialaccount/connections.html:5
#: templates/socialaccount/connections.html:10
msgid "Account Connections"
@@ -421,16 +406,16 @@ msgid ""
msgstr ""
"ÐожеÑе ÑвÑйÑи Ñ ÐÐ°Ñ Ð°ÐºÐ°ÑÐ½Ñ Ð·Ð° Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ð¾Ñ ÑнÑиÑ
облÑковиÑ
запиÑÑв ÑакиÑ
, Ñк:"
-#: templates/socialaccount/connections.html:37
+#: templates/socialaccount/connections.html:33
msgid "Remove"
msgstr "ÐидалиÑи"
-#: templates/socialaccount/connections.html:45
+#: templates/socialaccount/connections.html:39
msgid ""
"You currently have no social network accounts connected to this account."
msgstr "У ÐÐ°Ñ Ð½ÐµÐ¼Ð°Ñ Ð·Ð°Ñаз жодниÑ
облÑковиÑ
запиÑÑв пов'ÑзаниÑ
з Ñим акаÑнÑом."
-#: templates/socialaccount/connections.html:48
+#: templates/socialaccount/connections.html:43
msgid "Add a 3rd Party Account"
msgstr "ÐодаÑи ÑнÑий облÑковий Ð·Ð°Ð¿Ð¸Ñ "
@@ -450,7 +435,26 @@ msgstr ""
"ЯкÑо Ñе помилка, пеÑейдÑÑÑ Ð´Ð¾ ÑÑоÑÑнки ÑеÑÑÑÑаÑÑÑ"
"a>."
-#: templates/user.html:5 templates/user.html.py:9
+#: templates/socialaccount/signup.html:6
+#, fuzzy
+#| msgid "Sign in"
+msgid "Signup"
+msgstr "УвÑйÑи"
+
+#: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:25
+#, fuzzy
+#| msgid "Sign in"
+msgid "Sign Up"
+msgstr "УвÑйÑи"
+
+#: templates/socialaccount/signup.html:11
+#, python-format
+msgid ""
+"You are about to use your %(provider_name)s account to login to\n"
+"%(site_name)s. As a final step, please complete the following form:"
+msgstr ""
+
+#: templates/user.html:5 templates/user.html:9
msgid "User"
msgstr "ÐоÑиÑÑÑваÑ"
@@ -466,19 +470,40 @@ msgstr "ÐлекÑÑонна адÑеÑа"
msgid "Social accounts"
msgstr "ÐблÑÐºÐ¾Ð²Ñ Ð·Ð°Ð¿Ð¸Ñи в ÑоÑÑалÑниÑ
меÑежаÑ
"
-#: utils.py:120
+#: utils.py:123
msgid "Message sent automatically. Please do not reply."
msgstr ""
-#: views.py:79 views.py:100
+#: utils.py:205
+msgid "Yes"
+msgstr ""
+
+#: utils.py:206
+msgid "No"
+msgstr ""
+
+#: views.py:72 views.py:93
#, python-format
msgid "Already logged in as user %(user)s"
msgstr "Ðи вже ÑвÑйÑли Ñк коÑиÑÑÑÐ²Ð°Ñ %(user)s"
-#: views.py:114
+#: views.py:107
msgid "You have to be logged in to continue"
msgstr "Щоб пÑодовжиÑи, ÑвÑйдÑÑÑ Ð² ÑвÑй акаÑнÑ."
+#~ msgid "Translations"
+#~ msgstr "ÐеÑеклади"
+
+#~ msgid "Authorize access to Wolne Lektury"
+#~ msgstr "ÐвÑоÑизÑваÑи доÑÑÑп до Wolne Lektury"
+
+#~ msgid ""
+#~ "Confirm to authorize access to Wolne Lektury as user %(user)s"
+#~ "strong>."
+#~ msgstr ""
+#~ "ÐÑдÑвеÑдиÑи, Ñоб авÑоÑизÑваÑи доÑÑÑп до Wolne Lektury вÑд ÑÐ¼ÐµÐ½Ñ "
+#~ "коÑиÑÑÑваÑа %(user)s ."
+
#~ msgid "What's new?"
#~ msgstr "Що нового?"
@@ -782,9 +807,6 @@ msgstr "Щоб пÑодовжиÑи, ÑвÑйдÑÑÑ Ð² ÑвÑй акаÑнÑ."
#~ msgid "Download as"
#~ msgstr "ÐаванÑажиÑи Ñк"
-#~ msgid "Artist"
-#~ msgstr "ÐиÑеÑÑ"
-
#~ msgid "Director"
#~ msgstr "РежиÑеÑ"
diff --git a/src/wolnelektury/templates/main_page.html b/src/wolnelektury/templates/main_page.html
index 74eaec928..d14e25a7d 100644
--- a/src/wolnelektury/templates/main_page.html
+++ b/src/wolnelektury/templates/main_page.html
@@ -79,7 +79,7 @@
{% trans "Report a bug or suggestion" %}
{% trans "Download the catalogue in PDF format." %}
- {% trans "Gallery" %}
+ {% trans "Art" %}
{% trans "All works" %}
{% trans "Footnotes" %}
--
2.20.1
From 88bfac93513a532bdbd0311a84a62ab854e473cc Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Thu, 10 Sep 2020 11:27:41 +0200
Subject: [PATCH 07/16] Fix multiple inheritance with NewsletterForm. Make
phplist URL a setting.
---
src/club/forms.py | 6 +++++-
src/newsletter/forms.py | 5 -----
src/newsletter/subscribe.py | 17 ++++++++++++-----
src/wolnelektury/settings/custom.py | 2 ++
4 files changed, 19 insertions(+), 11 deletions(-)
diff --git a/src/club/forms.py b/src/club/forms.py
index 2ebe4e58d..d0568c023 100644
--- a/src/club/forms.py
+++ b/src/club/forms.py
@@ -8,7 +8,7 @@ from . import models
from .payu.forms import CardTokenForm
-class ScheduleForm(NewsletterForm, forms.ModelForm):
+class ScheduleForm(forms.ModelForm, NewsletterForm):
class Meta:
model = models.Schedule
fields = ['monthly', 'amount', 'email']
@@ -24,6 +24,10 @@ class ScheduleForm(NewsletterForm, forms.ModelForm):
raise forms.ValidationError('Minimalna kwota to %d zÅ.' % club.min_amount)
return value
+ def save(self, *args, **kwargs):
+ NewsletterForm.save(self, *args, **kwargs)
+ return super().save(*args, **kwargs)
+
class PayUCardTokenForm(CardTokenForm):
def get_queryset(self, view):
diff --git a/src/newsletter/forms.py b/src/newsletter/forms.py
index ba086e352..3f08668ea 100644
--- a/src/newsletter/forms.py
+++ b/src/newsletter/forms.py
@@ -36,11 +36,6 @@ WiÄcej informacji w polityce prywatnoÅci. '''
if not newsletter:
return
- try:
- # multiple inheritance mode
- super(NewsletterForm, self).save(*args, **kwargs)
- except AttributeError:
- pass
if not (self.mailing or self.cleaned_data.get(self.mailing_field)):
return
email = self.cleaned_data[self.email_field]
diff --git a/src/newsletter/subscribe.py b/src/newsletter/subscribe.py
index d7a8a2795..16a27a793 100644
--- a/src/newsletter/subscribe.py
+++ b/src/newsletter/subscribe.py
@@ -2,6 +2,7 @@
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
import requests
+from django.conf import settings
def subscribe(email, newsletter):
@@ -13,9 +14,15 @@ def subscribe(email, newsletter):
"htmlemail": 1,
"subscribe": "Subscribe",
}
- response = requests.post(
- 'https://mailing.mdrn.pl/?p=subscribe',
- data=data,
- )
- response.raise_for_status()
+ if settings.NEWSLETTER_PHPLIST_SUBSCRIBE_URL:
+ response = requests.post(
+ settings.NEWSLETTER_PHPLIST_SUBSCRIBE_URL,
+ data=data,
+ )
+ response.raise_for_status()
+ else:
+ print("Newsletter not configured, "
+ "NEWSLETTER_PHPLIST_SUBSCRIBE_URL not set. "
+ f"Trying to subscribe email: {email} to newsletter: {list_id}."
+ )
diff --git a/src/wolnelektury/settings/custom.py b/src/wolnelektury/settings/custom.py
index 51453baca..8e51f0fdb 100644
--- a/src/wolnelektury/settings/custom.py
+++ b/src/wolnelektury/settings/custom.py
@@ -44,3 +44,5 @@ AB_TESTS = {
}
MESSAGING_MIN_DAYS = 2
+
+NEWSLETTER_PHPLIST_SUBSCRIBE_URL = None
--
2.20.1
From d8fa6b12909e07456e536fcbab09bb5589eed9c0 Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Thu, 10 Sep 2020 11:41:32 +0200
Subject: [PATCH 08/16] Wording change.
---
src/club/templates/club/schedule.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/club/templates/club/schedule.html b/src/club/templates/club/schedule.html
index 7371f6dda..a30bfe73f 100644
--- a/src/club/templates/club/schedule.html
+++ b/src/club/templates/club/schedule.html
@@ -23,7 +23,7 @@ wspierasz nas kwotÄ
{{ schedule.amount }} zÅ{% if schedule.monthly %} miesiÄc
{% if schedule.is_cancelled %}
PÅatnoÅÄ anulowana.
- Odnów skÅadkÄ
+ WpÅaÄ ponownie
{% else %}
{% endif %}
@@ -44,20 +44,20 @@ wspierasz nas kwotÄ
{{ schedule.amount }} zÅ{% if schedule.monthly %} miesiÄc
CzÅonkostwo wygasÅo.
{% else %}
{% if not schedule.payed_at %}
- SkÅadka nie zostaÅa jeszcze opÅacona.
+ PÅatnoÅÄ nie zostaÅa jeszcze wykonana.
{% if schedule.payuorder_set.exists %}
Czekamy na potwierdzenie pÅatnoÅci.
{% else %}
{% endif %}
--
2.20.1
From 68b5b19ca4d8aedfcaa43e6721fb3a954b534f7a Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Thu, 10 Sep 2020 11:44:07 +0200
Subject: [PATCH 09/16] Minor UI fixes.
---
src/club/templates/club/membership_form.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/club/templates/club/membership_form.html b/src/club/templates/club/membership_form.html
index 474095be3..422ce25f6 100644
--- a/src/club/templates/club/membership_form.html
+++ b/src/club/templates/club/membership_form.html
@@ -211,12 +211,12 @@ vertical-align: middle;
{{ form.agree_newsletter }}
-
+
ChcÄ dostawaÄ informacje o nowoÅciach
- W każdej chwili możesz zrezygnowaÄ z subskrypcji. WiÄcej w polityce prywatnoÅci .
+ W każdej chwili możesz zrezygnowaÄ z subskrypcji. WiÄcej w polityce prywatnoÅci .
WpÅaÄ
--
2.20.1
From 788c99a388fd34de4c159d6a3cefed84291b95f5 Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Thu, 10 Sep 2020 11:45:46 +0200
Subject: [PATCH 10/16] Minor Django version bump.
---
requirements/requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/requirements/requirements.txt b/requirements/requirements.txt
index 747c6300e..1dfba26a9 100644
--- a/requirements/requirements.txt
+++ b/requirements/requirements.txt
@@ -1,7 +1,7 @@
-i https://py.mdrn.pl/simple/
# django
-Django==2.2.10
+Django==2.2.16
fnpdjango==0.4.5
docutils
--
2.20.1
From e7451b87d12c06755d6dc278e72b6650f8de8b4a Mon Sep 17 00:00:00 2001
From: Radek Czajka
Date: Thu, 10 Sep 2020 15:42:34 +0200
Subject: [PATCH 11/16] I18n.
---
src/ajaxable/locale/de/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/en/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/es/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/fr/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/it/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/lt/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/pl/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/ru/LC_MESSAGES/django.po | 4 +-
src/ajaxable/locale/uk/LC_MESSAGES/django.po | 4 +-
src/annoy/locale/de/LC_MESSAGES/django.po | 115 ++
src/annoy/locale/en/LC_MESSAGES/django.po | 115 ++
src/annoy/locale/es/LC_MESSAGES/django.po | 115 ++
src/annoy/locale/fr/LC_MESSAGES/django.po | 115 ++
src/annoy/locale/it/LC_MESSAGES/django.po | 115 ++
src/annoy/locale/lt/LC_MESSAGES/django.po | 117 ++
src/annoy/locale/pl/LC_MESSAGES/django.po | 50 +-
src/annoy/locale/ru/LC_MESSAGES/django.po | 117 ++
src/annoy/locale/uk/LC_MESSAGES/django.po | 118 ++
src/api/locale/de/LC_MESSAGES/django.po | 49 +-
src/api/locale/en/LC_MESSAGES/django.po | 54 +-
src/api/locale/es/LC_MESSAGES/django.po | 49 +-
src/api/locale/fr/LC_MESSAGES/django.po | 49 +-
src/api/locale/it/LC_MESSAGES/django.po | 49 +-
src/api/locale/lt/LC_MESSAGES/django.po | 46 +-
src/api/locale/pl/LC_MESSAGES/django.po | 71 +-
src/api/locale/ru/LC_MESSAGES/django.po | 46 +-
src/api/locale/uk/LC_MESSAGES/django.po | 46 +-
src/catalogue/locale/de/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/en/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/es/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/fr/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/it/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/lt/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/pl/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/ru/LC_MESSAGES/django.po | 481 +++---
src/catalogue/locale/uk/LC_MESSAGES/django.po | 481 +++---
src/chunks/locale/de/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/en/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/es/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/fr/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/it/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/lt/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/pl/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/ru/LC_MESSAGES/django.po | 20 +-
src/chunks/locale/uk/LC_MESSAGES/django.po | 20 +-
src/club/apps.py | 4 +-
src/club/forms.py | 7 +-
src/club/locale/de/LC_MESSAGES/django.po | 370 +++++
src/club/locale/en/LC_MESSAGES/django.po | 370 +++++
src/club/locale/es/LC_MESSAGES/django.po | 370 +++++
src/club/locale/fr/LC_MESSAGES/django.po | 370 +++++
src/club/locale/it/LC_MESSAGES/django.po | 370 +++++
src/club/locale/lt/LC_MESSAGES/django.po | 372 +++++
src/club/locale/pl/LC_MESSAGES/django.mo | Bin 3575 -> 5707 bytes
src/club/locale/pl/LC_MESSAGES/django.po | 251 ++-
src/club/locale/ru/LC_MESSAGES/django.po | 372 +++++
src/club/locale/uk/LC_MESSAGES/django.po | 373 +++++
src/club/models.py | 2 +-
src/club/payment_methods.py | 3 -
.../admin/club/schedule/change_list.html | 8 +-
src/club/templates/club/index.html | 38 +-
src/club/templates/club/membership_form.html | 53 +-
src/club/templates/club/payment/payu-re.html | 3 +-
src/club/templates/club/payment/payu.html | 5 +-
src/club/templates/club/schedule.html | 2 +-
src/club/templates/club/thanks.html | 15 +-
src/club/templates/payu/rec_payment.html | 26 +-
src/club/views.py | 4 -
.../locale/de/LC_MESSAGES/django.po | 40 +-
.../locale/en/LC_MESSAGES/django.po | 40 +-
.../locale/es/LC_MESSAGES/django.po | 40 +-
.../locale/fr/LC_MESSAGES/django.po | 40 +-
.../locale/it/LC_MESSAGES/django.po | 40 +-
.../locale/lt/LC_MESSAGES/django.po | 40 +-
.../locale/pl/LC_MESSAGES/django.po | 40 +-
.../locale/ru/LC_MESSAGES/django.po | 40 +-
.../locale/uk/LC_MESSAGES/django.po | 40 +-
src/funding/locale/de/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/en/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/es/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/fr/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/it/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/lt/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/pl/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/ru/LC_MESSAGES/django.po | 266 ++--
src/funding/locale/uk/LC_MESSAGES/django.po | 266 ++--
src/infopages/locale/de/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/en/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/es/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/fr/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/it/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/lt/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/pl/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/ru/LC_MESSAGES/django.po | 16 +-
src/infopages/locale/uk/LC_MESSAGES/django.po | 16 +-
.../locale/de/LC_MESSAGES/django.po | 16 +-
.../locale/en/LC_MESSAGES/django.po | 16 +-
.../locale/es/LC_MESSAGES/django.po | 16 +-
.../locale/fr/LC_MESSAGES/django.po | 16 +-
.../locale/it/LC_MESSAGES/django.po | 16 +-
.../locale/lt/LC_MESSAGES/django.po | 16 +-
.../locale/pl/LC_MESSAGES/django.po | 16 +-
.../locale/ru/LC_MESSAGES/django.po | 16 +-
.../locale/uk/LC_MESSAGES/django.po | 16 +-
src/libraries/locale/de/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/en/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/es/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/fr/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/it/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/lt/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/pl/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/ru/LC_MESSAGES/django.po | 23 +-
src/libraries/locale/uk/LC_MESSAGES/django.po | 23 +-
src/messaging/locale/de/LC_MESSAGES/django.po | 185 +++
src/messaging/locale/en/LC_MESSAGES/django.po | 185 +++
src/messaging/locale/es/LC_MESSAGES/django.po | 185 +++
src/messaging/locale/fr/LC_MESSAGES/django.po | 185 +++
src/messaging/locale/it/LC_MESSAGES/django.po | 185 +++
src/messaging/locale/lt/LC_MESSAGES/django.po | 187 +++
src/messaging/locale/pl/LC_MESSAGES/django.po | 84 +-
src/messaging/locale/ru/LC_MESSAGES/django.po | 187 +++
src/messaging/locale/uk/LC_MESSAGES/django.po | 188 +++
src/messaging/tests.py | 84 ++
.../locale/de/LC_MESSAGES/django.po | 64 +-
.../locale/en/LC_MESSAGES/django.po | 64 +-
.../locale/es/LC_MESSAGES/django.po | 64 +-
.../locale/fr/LC_MESSAGES/django.po | 64 +-
.../locale/it/LC_MESSAGES/django.po | 64 +-
.../locale/lt/LC_MESSAGES/django.po | 64 +-
.../locale/pl/LC_MESSAGES/django.po | 94 +-
.../locale/ru/LC_MESSAGES/django.po | 64 +-
.../locale/uk/LC_MESSAGES/django.po | 64 +-
src/paypal/locale/de/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/en/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/es/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/fr/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/it/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/lt/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/pl/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/ru/LC_MESSAGES/django.po | 24 +-
src/paypal/locale/uk/LC_MESSAGES/django.po | 24 +-
src/pdcounter/locale/de/LC_MESSAGES/django.po | 69 +-
src/pdcounter/locale/en/LC_MESSAGES/django.po | 66 +-
src/pdcounter/locale/es/LC_MESSAGES/django.po | 69 +-
src/pdcounter/locale/fr/LC_MESSAGES/django.po | 66 +-
src/pdcounter/locale/it/LC_MESSAGES/django.po | 66 +-
src/pdcounter/locale/lt/LC_MESSAGES/django.po | 73 +-
src/pdcounter/locale/pl/LC_MESSAGES/django.po | 69 +-
src/pdcounter/locale/ru/LC_MESSAGES/django.po | 66 +-
src/pdcounter/locale/uk/LC_MESSAGES/django.po | 69 +-
src/picture/locale/de/LC_MESSAGES/django.po | 98 +-
src/picture/locale/en/LC_MESSAGES/django.po | 98 +-
src/picture/locale/es/LC_MESSAGES/django.po | 98 +-
src/picture/locale/fr/LC_MESSAGES/django.po | 98 +-
src/picture/locale/it/LC_MESSAGES/django.po | 98 +-
src/picture/locale/lt/LC_MESSAGES/django.po | 98 +-
src/picture/locale/pl/LC_MESSAGES/django.po | 98 +-
src/picture/locale/ru/LC_MESSAGES/django.po | 98 +-
src/picture/locale/uk/LC_MESSAGES/django.po | 98 +-
src/polls/locale/de/LC_MESSAGES/django.po | 26 +-
src/polls/locale/en/LC_MESSAGES/django.po | 26 +-
src/polls/locale/es/LC_MESSAGES/django.po | 26 +-
src/polls/locale/fr/LC_MESSAGES/django.po | 26 +-
src/polls/locale/it/LC_MESSAGES/django.po | 26 +-
src/polls/locale/lt/LC_MESSAGES/django.po | 26 +-
src/polls/locale/pl/LC_MESSAGES/django.po | 26 +-
src/polls/locale/ru/LC_MESSAGES/django.po | 26 +-
src/polls/locale/uk/LC_MESSAGES/django.po | 26 +-
src/reporting/locale/de/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/en/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/es/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/fr/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/it/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/lt/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/pl/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/ru/LC_MESSAGES/django.po | 4 +-
src/reporting/locale/uk/LC_MESSAGES/django.po | 4 +-
src/search/locale/de/LC_MESSAGES/django.po | 15 +-
src/search/locale/en/LC_MESSAGES/django.po | 15 +-
src/search/locale/es/LC_MESSAGES/django.po | 15 +-
src/search/locale/fr/LC_MESSAGES/django.po | 15 +-
src/search/locale/it/LC_MESSAGES/django.po | 12 +-
src/search/locale/lt/LC_MESSAGES/django.po | 15 +-
src/search/locale/pl/LC_MESSAGES/django.po | 8 +-
src/search/locale/ru/LC_MESSAGES/django.po | 15 +-
src/search/locale/uk/LC_MESSAGES/django.po | 15 +-
src/social/locale/de/LC_MESSAGES/django.po | 168 ++-
src/social/locale/en/LC_MESSAGES/django.po | 168 ++-
src/social/locale/es/LC_MESSAGES/django.po | 168 ++-
src/social/locale/fr/LC_MESSAGES/django.po | 168 ++-
src/social/locale/it/LC_MESSAGES/django.po | 168 ++-
src/social/locale/lt/LC_MESSAGES/django.po | 168 ++-
src/social/locale/pl/LC_MESSAGES/django.po | 103 +-
src/social/locale/ru/LC_MESSAGES/django.po | 168 ++-
src/social/locale/uk/LC_MESSAGES/django.po | 168 ++-
src/sponsors/locale/de/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/en/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/es/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/fr/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/it/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/lt/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/pl/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/ru/LC_MESSAGES/django.po | 12 +-
src/sponsors/locale/uk/LC_MESSAGES/django.po | 12 +-
src/suggest/locale/de/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/en/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/es/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/fr/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/it/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/lt/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/pl/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/ru/LC_MESSAGES/django.po | 54 +-
src/suggest/locale/uk/LC_MESSAGES/django.po | 54 +-
src/waiter/locale/de/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/en/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/es/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/fr/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/it/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/lt/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/pl/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/ru/LC_MESSAGES/django.po | 18 +-
src/waiter/locale/uk/LC_MESSAGES/django.po | 18 +-
.../locale-contrib/de/LC_MESSAGES/django.po | 980 ++++--------
.../locale-contrib/en/LC_MESSAGES/django.po | 988 ++++--------
.../locale-contrib/es/LC_MESSAGES/django.po | 1005 ++++--------
.../locale-contrib/fr/LC_MESSAGES/django.po | 797 +---------
.../locale-contrib/it/LC_MESSAGES/django.po | 797 +---------
.../locale-contrib/lt/LC_MESSAGES/django.po | 986 ++++--------
.../locale-contrib/pl/LC_MESSAGES/django.po | 1342 +++++++----------
.../locale-contrib/ru/LC_MESSAGES/django.po | 799 +---------
.../locale-contrib/uk/LC_MESSAGES/django.po | 989 ++++--------
.../locale/de/LC_MESSAGES/django.po | 195 +--
.../locale/en/LC_MESSAGES/django.po | 195 +--
.../locale/es/LC_MESSAGES/django.po | 195 +--
.../locale/fr/LC_MESSAGES/django.po | 195 +--
.../locale/it/LC_MESSAGES/django.po | 195 +--
.../locale/lt/LC_MESSAGES/django.po | 195 +--
.../locale/pl/LC_MESSAGES/django.po | 195 +--
.../locale/ru/LC_MESSAGES/django.po | 195 +--
.../locale/uk/LC_MESSAGES/django.po | 195 +--
240 files changed, 15774 insertions(+), 13852 deletions(-)
create mode 100644 src/annoy/locale/de/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/en/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/es/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/fr/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/it/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/lt/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/ru/LC_MESSAGES/django.po
create mode 100644 src/annoy/locale/uk/LC_MESSAGES/django.po
create mode 100644 src/club/locale/de/LC_MESSAGES/django.po
create mode 100644 src/club/locale/en/LC_MESSAGES/django.po
create mode 100644 src/club/locale/es/LC_MESSAGES/django.po
create mode 100644 src/club/locale/fr/LC_MESSAGES/django.po
create mode 100644 src/club/locale/it/LC_MESSAGES/django.po
create mode 100644 src/club/locale/lt/LC_MESSAGES/django.po
create mode 100644 src/club/locale/ru/LC_MESSAGES/django.po
create mode 100644 src/club/locale/uk/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/de/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/en/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/es/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/fr/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/it/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/lt/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/ru/LC_MESSAGES/django.po
create mode 100644 src/messaging/locale/uk/LC_MESSAGES/django.po
create mode 100644 src/messaging/tests.py
diff --git a/src/ajaxable/locale/de/LC_MESSAGES/django.po b/src/ajaxable/locale/de/LC_MESSAGES/django.po
index 352dba10c..270b0bcc4 100644
--- a/src/ajaxable/locale/de/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/de/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,6 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/en/LC_MESSAGES/django.po b/src/ajaxable/locale/en/LC_MESSAGES/django.po
index a85f56189..512fdadb8 100644
--- a/src/ajaxable/locale/en/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,6 +17,6 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/es/LC_MESSAGES/django.po b/src/ajaxable/locale/es/LC_MESSAGES/django.po
index 352dba10c..270b0bcc4 100644
--- a/src/ajaxable/locale/es/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/es/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,6 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/fr/LC_MESSAGES/django.po b/src/ajaxable/locale/fr/LC_MESSAGES/django.po
index fef4cde2a..25663799d 100644
--- a/src/ajaxable/locale/fr/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,6 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/it/LC_MESSAGES/django.po b/src/ajaxable/locale/it/LC_MESSAGES/django.po
index 352dba10c..270b0bcc4 100644
--- a/src/ajaxable/locale/it/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/it/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,6 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/lt/LC_MESSAGES/django.po b/src/ajaxable/locale/lt/LC_MESSAGES/django.po
index ca4c8bf2a..e0b5dc539 100644
--- a/src/ajaxable/locale/lt/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/lt/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,6 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/pl/LC_MESSAGES/django.po b/src/ajaxable/locale/pl/LC_MESSAGES/django.po
index d61554ace..305951eea 100644
--- a/src/ajaxable/locale/pl/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/pl/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-01-27 16:36+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -18,6 +18,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2)\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr "WyÅlij"
diff --git a/src/ajaxable/locale/ru/LC_MESSAGES/django.po b/src/ajaxable/locale/ru/LC_MESSAGES/django.po
index 5f6f2cc67..1f8913796 100644
--- a/src/ajaxable/locale/ru/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/ru/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,6 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/ajaxable/locale/uk/LC_MESSAGES/django.po b/src/ajaxable/locale/uk/LC_MESSAGES/django.po
index 5f6f2cc67..1f8913796 100644
--- a/src/ajaxable/locale/uk/LC_MESSAGES/django.po
+++ b/src/ajaxable/locale/uk/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,6 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: utils.py:65
+#: ajaxable/utils.py:62
msgid "Send"
msgstr ""
diff --git a/src/annoy/locale/de/LC_MESSAGES/django.po b/src/annoy/locale/de/LC_MESSAGES/django.po
new file mode 100644
index 000000000..48112e9b8
--- /dev/null
+++ b/src/annoy/locale/de/LC_MESSAGES/django.po
@@ -0,0 +1,115 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/en/LC_MESSAGES/django.po b/src/annoy/locale/en/LC_MESSAGES/django.po
new file mode 100644
index 000000000..48112e9b8
--- /dev/null
+++ b/src/annoy/locale/en/LC_MESSAGES/django.po
@@ -0,0 +1,115 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/es/LC_MESSAGES/django.po b/src/annoy/locale/es/LC_MESSAGES/django.po
new file mode 100644
index 000000000..48112e9b8
--- /dev/null
+++ b/src/annoy/locale/es/LC_MESSAGES/django.po
@@ -0,0 +1,115 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/fr/LC_MESSAGES/django.po b/src/annoy/locale/fr/LC_MESSAGES/django.po
new file mode 100644
index 000000000..43ee852ce
--- /dev/null
+++ b/src/annoy/locale/fr/LC_MESSAGES/django.po
@@ -0,0 +1,115 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/it/LC_MESSAGES/django.po b/src/annoy/locale/it/LC_MESSAGES/django.po
new file mode 100644
index 000000000..48112e9b8
--- /dev/null
+++ b/src/annoy/locale/it/LC_MESSAGES/django.po
@@ -0,0 +1,115 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/lt/LC_MESSAGES/django.po b/src/annoy/locale/lt/LC_MESSAGES/django.po
new file mode 100644
index 000000000..2929e9537
--- /dev/null
+++ b/src/annoy/locale/lt/LC_MESSAGES/django.po
@@ -0,0 +1,117 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
+"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
+"1 : n % 1 != 0 ? 2: 3);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/pl/LC_MESSAGES/django.po b/src/annoy/locale/pl/LC_MESSAGES/django.po
index 078c9936e..ee490eb49 100644
--- a/src/annoy/locale/pl/LC_MESSAGES/django.po
+++ b/src/annoy/locale/pl/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-12-16 13:47+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2019-12-16 13:47+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -20,98 +20,98 @@ msgstr ""
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"X-Generator: Poedit 2.2.4\n"
-#: models.py:10
+#: annoy/models.py:11
msgid "place"
msgstr "miejsce"
-#: models.py:12
+#: annoy/models.py:13
msgid "action label"
msgstr "etykieta akcji"
-#: models.py:14
+#: annoy/models.py:15
msgid "If empty, whole banner will serve as a link"
msgstr "JeÅli pusta, caÅy banner bÄdzie sÅużyÅ jako link."
-#: models.py:16
+#: annoy/models.py:17
msgid "open label"
msgstr "etykieta otwierania"
-#: models.py:17
+#: annoy/models.py:18
msgid "close label"
msgstr "etykieta zamykania"
-#: models.py:18 models.py:86
+#: annoy/models.py:19 annoy/models.py:98
msgid "text"
msgstr "tekst"
-#: models.py:19
+#: annoy/models.py:20
msgid "image"
msgstr "obraz"
-#: models.py:20
+#: annoy/models.py:21
msgid "url"
msgstr "URL"
-#: models.py:22
+#: annoy/models.py:23
msgid "priority"
msgstr "priortytet"
-#: models.py:23
+#: annoy/models.py:24
msgid "Banners with higher priority come first."
msgstr "Bannery z wyższym priorytetem majÄ
pierwszeÅstwo."
-#: models.py:24
+#: annoy/models.py:25
msgid "since"
msgstr "od"
-#: models.py:25
+#: annoy/models.py:26
msgid "until"
msgstr "do"
-#: models.py:26
+#: annoy/models.py:27
msgid "show members"
msgstr "widoczny dla czÅonków klubu"
-#: models.py:27
+#: annoy/models.py:28
msgid "staff preview"
msgstr "podglÄ
d tylko dla zespoÅu"
-#: models.py:30
+#: annoy/models.py:31
msgid "banner"
msgstr "banner"
-#: models.py:31
+#: annoy/models.py:32
msgid "banners"
msgstr "bannery"
-#: models.py:66
+#: annoy/models.py:70
msgid "pararaphs"
msgstr "akapity"
-#: models.py:70
+#: annoy/models.py:74
msgid "dynamic insert"
msgstr "dynamiczna wstawka"
-#: models.py:71
+#: annoy/models.py:75
msgid "dynamic inserts"
msgstr "dynamiczne wstawki"
-#: places.py:4
+#: annoy/places.py:4
msgid "Top of all pages."
msgstr "U góry wszystkich stron"
-#: places.py:5
+#: annoy/places.py:5
msgid "Book page"
msgstr "Strona ksiÄ
żki"
-#: places.py:6
+#: annoy/places.py:6
msgid "Book text intermission"
msgstr "Przerwa w treÅci ksiÄ
żki"
-#: places.py:7
+#: annoy/places.py:7
msgid "Next to list of book fragments."
msgstr "Obok listy fragmentów ksiÄ
żki"
-#: places.py:8
+#: annoy/places.py:8
msgid "Blackout"
msgstr "Blackout"
diff --git a/src/annoy/locale/ru/LC_MESSAGES/django.po b/src/annoy/locale/ru/LC_MESSAGES/django.po
new file mode 100644
index 000000000..a4a4f255e
--- /dev/null
+++ b/src/annoy/locale/ru/LC_MESSAGES/django.po
@@ -0,0 +1,117 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
+"%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/annoy/locale/uk/LC_MESSAGES/django.po b/src/annoy/locale/uk/LC_MESSAGES/django.po
new file mode 100644
index 000000000..f7771bd08
--- /dev/null
+++ b/src/annoy/locale/uk/LC_MESSAGES/django.po
@@ -0,0 +1,118 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
+"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
+"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
+"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#: annoy/models.py:11
+msgid "place"
+msgstr ""
+
+#: annoy/models.py:13
+msgid "action label"
+msgstr ""
+
+#: annoy/models.py:15
+msgid "If empty, whole banner will serve as a link"
+msgstr ""
+
+#: annoy/models.py:17
+msgid "open label"
+msgstr ""
+
+#: annoy/models.py:18
+msgid "close label"
+msgstr ""
+
+#: annoy/models.py:19 annoy/models.py:98
+msgid "text"
+msgstr ""
+
+#: annoy/models.py:20
+msgid "image"
+msgstr ""
+
+#: annoy/models.py:21
+msgid "url"
+msgstr ""
+
+#: annoy/models.py:23
+msgid "priority"
+msgstr ""
+
+#: annoy/models.py:24
+msgid "Banners with higher priority come first."
+msgstr ""
+
+#: annoy/models.py:25
+msgid "since"
+msgstr ""
+
+#: annoy/models.py:26
+msgid "until"
+msgstr ""
+
+#: annoy/models.py:27
+msgid "show members"
+msgstr ""
+
+#: annoy/models.py:28
+msgid "staff preview"
+msgstr ""
+
+#: annoy/models.py:31
+msgid "banner"
+msgstr ""
+
+#: annoy/models.py:32
+msgid "banners"
+msgstr ""
+
+#: annoy/models.py:70
+msgid "pararaphs"
+msgstr ""
+
+#: annoy/models.py:74
+msgid "dynamic insert"
+msgstr ""
+
+#: annoy/models.py:75
+msgid "dynamic inserts"
+msgstr ""
+
+#: annoy/places.py:4
+msgid "Top of all pages."
+msgstr ""
+
+#: annoy/places.py:5
+msgid "Book page"
+msgstr ""
+
+#: annoy/places.py:6
+msgid "Book text intermission"
+msgstr ""
+
+#: annoy/places.py:7
+msgid "Next to list of book fragments."
+msgstr ""
+
+#: annoy/places.py:8
+msgid "Blackout"
+msgstr ""
diff --git a/src/api/locale/de/LC_MESSAGES/django.po b/src/api/locale/de/LC_MESSAGES/django.po
index a4ce1b502..930d8923c 100644
--- a/src/api/locale/de/LC_MESSAGES/django.po
+++ b/src/api/locale/de/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,15 +18,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -37,7 +37,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -47,50 +47,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -102,7 +102,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -113,7 +113,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -123,7 +123,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -136,18 +136,19 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "Den Zugang zu Wolne Lektury authorisieren"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
"strong>."
-msgstr "Bitte bestätigen Sie den Zugang zu Wolne Lektury %(user)s ."
+msgstr ""
+"Bitte bestätigen Sie den Zugang zu Wolne Lektury %(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/api/locale/en/LC_MESSAGES/django.po b/src/api/locale/en/LC_MESSAGES/django.po
index 7041872e3..b5175790f 100644
--- a/src/api/locale/en/LC_MESSAGES/django.po
+++ b/src/api/locale/en/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,15 +17,15 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:15
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -36,7 +36,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -46,50 +46,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -101,7 +101,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -112,7 +112,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -122,7 +122,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -134,3 +134,19 @@ msgid ""
" %(f)s .\n"
" "
msgstr ""
+
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
+msgid "Authorize access to Wolne Lektury"
+msgstr ""
+
+#: api/templates/oauth/authorize_token.html:11
+#, python-format
+msgid ""
+"Confirm to authorize access to Wolne Lektury as user %(user)s"
+"strong>."
+msgstr ""
+
+#: api/templates/oauth/authorize_token.html:17
+msgid "Confirm"
+msgstr ""
diff --git a/src/api/locale/es/LC_MESSAGES/django.po b/src/api/locale/es/LC_MESSAGES/django.po
index cd723830b..e29268c6a 100644
--- a/src/api/locale/es/LC_MESSAGES/django.po
+++ b/src/api/locale/es/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,15 +18,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -37,7 +37,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -47,50 +47,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -102,7 +102,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -113,7 +113,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -123,7 +123,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -136,19 +136,20 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "Autoriza el acceso a Wolne Lektury"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
"strong>."
-msgstr "Confirma para autorizar el acceso a Wolne Lektury como el usuario "
+msgstr ""
+"Confirma para autorizar el acceso a Wolne Lektury como el usuario "
"%(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/api/locale/fr/LC_MESSAGES/django.po b/src/api/locale/fr/LC_MESSAGES/django.po
index faf15d28a..6fcf7de94 100644
--- a/src/api/locale/fr/LC_MESSAGES/django.po
+++ b/src/api/locale/fr/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,15 +18,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -37,7 +37,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -47,50 +47,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -102,7 +102,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -113,7 +113,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -123,7 +123,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -136,19 +136,20 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "Autorisez l'accès à Wolne Lektury"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
"strong>."
-msgstr "Confirmez pour autoriser l'accès à Wolne Lektury comme l'utilisateur "
+msgstr ""
+"Confirmez pour autoriser l'accès à Wolne Lektury comme l'utilisateur "
"%(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/api/locale/it/LC_MESSAGES/django.po b/src/api/locale/it/LC_MESSAGES/django.po
index 089a329d7..803d6345f 100644
--- a/src/api/locale/it/LC_MESSAGES/django.po
+++ b/src/api/locale/it/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,15 +18,15 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -37,7 +37,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -47,50 +47,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -102,7 +102,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -113,7 +113,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -123,7 +123,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -136,19 +136,20 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "Autorizza accesso a Wolne Lektury"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
"strong>."
-msgstr "Conferma l'accesso autorizzato a Wolne Lektury come utente %(user)s"
+msgstr ""
+"Conferma l'accesso autorizzato a Wolne Lektury come utente %(user)s"
"strong>."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/api/locale/lt/LC_MESSAGES/django.po b/src/api/locale/lt/LC_MESSAGES/django.po
index d5e6ae132..653545833 100644
--- a/src/api/locale/lt/LC_MESSAGES/django.po
+++ b/src/api/locale/lt/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,15 +19,15 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -38,7 +38,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -48,50 +48,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -103,7 +103,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -114,7 +114,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -124,7 +124,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -137,12 +137,12 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "Leisti prieigÄ
prie Wolne Lektury interneto svetainÄs"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
@@ -151,6 +151,6 @@ msgstr ""
"Patvirtinkite, kad leistute prieigÄ
prie Wolne Lektury interneto svetainÄs "
"kaip vartotojas %(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/api/locale/pl/LC_MESSAGES/django.po b/src/api/locale/pl/LC_MESSAGES/django.po
index b2e8fbaaa..5df73d623 100644
--- a/src/api/locale/pl/LC_MESSAGES/django.po
+++ b/src/api/locale/pl/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-06-14 11:45+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -19,15 +19,15 @@ msgstr ""
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 1.5.4\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr "slug"
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr "API serwisu WolneLektury.pl"
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -40,9 +40,10 @@ msgstr ""
"\n"
"API serwisu WolneLektury.pl znajduje siÄ pod adresem %(u)s
.\n"
"Za jego pomocÄ
można uzyskaÄ informacje o utworach, ich fragmentach i "
-"metadanych.\n "
+"metadanych.\n"
+" "
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -56,55 +57,56 @@ msgstr ""
"wiki/JSON\">JSON ,\n"
"ale dostÄpny jest też format XML â wystarczy dodaÄ parametr ?"
"format=xml
\n"
-"do każdego zapytania.\n "
+"do każdego zapytania.\n"
+" "
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-
"\n"
-"API Wolnych Lektur zawiera nastÄpujÄ
ce adresy URL:\n "
+"API Wolnych Lektur zawiera nastÄpujÄ
ce adresy URL:\n"
+" "
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr "Wszystkie utwory"
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr "Audiobooki"
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr "DAISY"
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr "Lista autorów"
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr "Lista epok"
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr "Lista gatunków literackich"
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr "Lista rodzajów literackich"
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr "Lista motywów i tematów literackich"
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr "Kolekcje"
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -118,9 +120,10 @@ msgstr ""
"\n"
"Każdy element na tych listach zawiera adres (w atrybucie âhrefâ), pod którym "
"można znaleÅºÄ szczegóÅowe dane, np. %(e1)s czy %(e2)s .\n "
+"href=\"%(e2)s\">%(e2)s.\n"
+" "
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -132,9 +135,10 @@ msgid ""
msgstr ""
"\n"
"Można ÅÄ
czyÄ autorów, epoki, gatunki i rodzaje, aby wybraÄ tylko utwory "
-"odpowiadajÄ
ce zadanym kryteriom. Na przykÅad: %(e)s .\n "
+"odpowiadajÄ
ce zadanym kryteriom. Na przykÅad: %(e)s .\n"
+" "
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -146,9 +150,10 @@ msgstr ""
"\n"
"Aby spoÅród wszystkich pasujÄ
cych wybraÄ tylko utwory najwyższego poziomu "
"(pomijajÄ
c ich podutwory), można użyÄ zapytania /parent_books/, np.: %(e)s .\n "
+"\"%(e)s\">%(e)s.\n"
+" "
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -165,20 +170,22 @@ msgstr ""
"wyszukiwaÄ fragmenty:%(e)s . \n"
"Każdy element uzyskanej listy w atrybucie âhrefâ zawiera link do "
"szczegóÅowego opisu danego fragmentu, np.:\n"
-"%(f)s .\n "
+"%(f)s .\n"
+" "
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "Zezwól na dostÄp do Wolnych Lektur"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
"strong>."
-msgstr "Potwierdź dostÄp do Wolnych Lektur jako użytkownik %(user)s ."
+msgstr ""
+"Potwierdź dostÄp do Wolnych Lektur jako użytkownik %(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr "Potwierdź"
diff --git a/src/api/locale/ru/LC_MESSAGES/django.po b/src/api/locale/ru/LC_MESSAGES/django.po
index f3d7f9d72..ca81158c8 100644
--- a/src/api/locale/ru/LC_MESSAGES/django.po
+++ b/src/api/locale/ru/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,15 +19,15 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -38,7 +38,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -48,50 +48,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -103,7 +103,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -114,7 +114,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -124,7 +124,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -137,12 +137,12 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "ÐвÑоÑизаÑÐ¸Ñ Ð´Ð¾ÑÑÑпа к Wolne Lektury"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
@@ -151,6 +151,6 @@ msgstr ""
"ÐодÑвеÑждение Ð´Ð»Ñ Ð°Ð²ÑоÑизаÑии доÑÑÑпа к Wolne Lektury как полÑзоваÑÐµÐ»Ñ "
"%(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/api/locale/uk/LC_MESSAGES/django.po b/src/api/locale/uk/LC_MESSAGES/django.po
index 419e3dbb2..1b710b5d0 100644
--- a/src/api/locale/uk/LC_MESSAGES/django.po
+++ b/src/api/locale/uk/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-01 09:45+0100\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,15 +19,15 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: models.py:17
+#: api/models.py:16
msgid "slug"
msgstr ""
-#: templates/api/main.html:5
+#: api/templates/api/main.html:5
msgid "WolneLektury.pl API"
msgstr ""
-#: templates/api/main.html:15
+#: api/templates/api/main.html:15
#, python-format
msgid ""
"\n"
@@ -38,7 +38,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:23
+#: api/templates/api/main.html:23
msgid ""
"\n"
" Default data serialization format is\n"
@@ -48,50 +48,50 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:32
+#: api/templates/api/main.html:32
msgid ""
"\n"
" The URLs in WolneLektury.pl API are:\n"
" "
msgstr ""
-#: templates/api/main.html:39
+#: api/templates/api/main.html:39
msgid "All books"
msgstr ""
-#: templates/api/main.html:41
+#: api/templates/api/main.html:41
msgid "Audiobooks"
msgstr ""
-#: templates/api/main.html:43
+#: api/templates/api/main.html:43
msgid "DAISY"
msgstr ""
-#: templates/api/main.html:46
+#: api/templates/api/main.html:46
msgid "List of all authors"
msgstr ""
-#: templates/api/main.html:48
+#: api/templates/api/main.html:48
msgid "List of all epochs"
msgstr ""
-#: templates/api/main.html:50
+#: api/templates/api/main.html:50
msgid "List of all genres"
msgstr ""
-#: templates/api/main.html:52
+#: api/templates/api/main.html:52
msgid "List of all kinds"
msgstr ""
-#: templates/api/main.html:55
+#: api/templates/api/main.html:55
msgid "List of all themes"
msgstr ""
-#: templates/api/main.html:57
+#: api/templates/api/main.html:57
msgid "Collections"
msgstr ""
-#: templates/api/main.html:63
+#: api/templates/api/main.html:63
#, python-format
msgid ""
"\n"
@@ -103,7 +103,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:72
+#: api/templates/api/main.html:72
#, python-format
msgid ""
"\n"
@@ -114,7 +114,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:80
+#: api/templates/api/main.html:80
#, python-format
msgid ""
"\n"
@@ -124,7 +124,7 @@ msgid ""
" "
msgstr ""
-#: templates/api/main.html:88
+#: api/templates/api/main.html:88
#, python-format
msgid ""
"\n"
@@ -137,12 +137,12 @@ msgid ""
" "
msgstr ""
-#: templates/oauth/authorize_token.html:4
-#: templates/oauth/authorize_token.html:7
+#: api/templates/oauth/authorize_token.html:4
+#: api/templates/oauth/authorize_token.html:7
msgid "Authorize access to Wolne Lektury"
msgstr "ÐвÑоÑизÑваÑи доÑÑÑп до Wolne Lektury"
-#: templates/oauth/authorize_token.html:11
+#: api/templates/oauth/authorize_token.html:11
#, python-format
msgid ""
"Confirm to authorize access to Wolne Lektury as user %(user)s"
@@ -151,6 +151,6 @@ msgstr ""
"ÐÑдÑвеÑдиÑи, Ñоб авÑоÑизÑваÑи доÑÑÑп до Wolne Lektury вÑд ÑÐ¼ÐµÐ½Ñ ÐºÐ¾ÑиÑÑÑваÑа "
"%(user)s ."
-#: templates/oauth/authorize_token.html:17
+#: api/templates/oauth/authorize_token.html:17
msgid "Confirm"
msgstr ""
diff --git a/src/catalogue/locale/de/LC_MESSAGES/django.po b/src/catalogue/locale/de/LC_MESSAGES/django.po
index 1b32301b1..bb9fdc0cc 100644
--- a/src/catalogue/locale/de/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/de/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:38+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,466 +17,470 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "Autor"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "Epoche"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "Art"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "Genre"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "Motiv"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "Autor"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "Epoche"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "Art"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "Genre"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "Motiv"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "Sammlungen"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "Sammlungen"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "Bitte stellen Sie die XML bereit."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "Zeige die FuÃnoten nicht"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "Zeige die Motive nicht "
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "Benutze voreingestellte Schrift nicht"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Inhaltsverzeichnis"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Zeilenabstand"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Normaler Zeilenabstand"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "Zeilenabstand 1,5"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Doppelter Zeilenabstand"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "SchriftgröÃe"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Voreingestellt"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "GroÃ"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "Titel"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "Sortierschlüssel"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Ergebnisse nach Autoren"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "Slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "Sprachenkode"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "Beschreibung"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "Erstellungsdatum"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "Erstellungsdatum"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "Elternnummer"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "zusätzliche Informationen"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "Umschlag"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "Buch"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "Bücher"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Buch mit dem Slug = \"%s\" ist nicht vorhanden."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Buch %s ist bereits vorhanden"
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s XML-Datei"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "Typ"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "Name"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "Name"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
#, fuzzy
msgid "file"
msgstr "XML-Datei"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
msgid "book slugs"
msgstr "Büchervorschau"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "Art"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "Sammlung"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "Sammlungen"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "Auszug"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "Auszüge"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "zusätzliche Informationen"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Quelle"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Quelle"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "Autor"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "Epoche"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "Genre"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "Motiv"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "Buchregal"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "Tag"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "Inhaltstyp"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "Objekt ID"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "Kategorie"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "Tags"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "Andere Ressoursen"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "Siehe auch"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Motive"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Quelle"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "vom Buch"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "Art"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "XML-Ursprungsdatei"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Buch über"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Editor-Plattform"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Buchbeschreibung in Wikipedia"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Passe dieses Buch zusammen"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Motiv"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "Im Werk"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Dieses Werk steht unter Lizenz"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -504,74 +508,75 @@ msgstr ""
"(Anmerkungen, Motive), sind sie unter der Lizenz http://creativecommons.org/"
"licenses/by-sa/3.0/ verfügbar."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Der Text basiert auf:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Redigiert und kommentiert von:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "Auflistung von allen Werken"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Inhaltsverzeichnis"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "â top â"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Epoche"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Sorte"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Gattung"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "Sprachenkode"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Online lesen"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -579,218 +584,222 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Herunterladen"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Inhaltsverzeichnis"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Editieren. Notiz"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Elternnummer"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Zeige die Motive nicht "
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "Zeige die FuÃnoten nicht"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Katalog"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Alle Bücher"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Laden Sie den Katalog als PDF-Datei"
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "Sammlungen"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Künstler"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "Sammlungen"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "Sammlungen"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "PDF-Datei herunterladen"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "Auflistung aller DAISY-Dateien"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Neueste DAISY-Audiobücher"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr "Die Kriterien sind mehrdeutig. Wählen Sie eine der folgenden Optionen:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "Den ganzen Auszug zeigen"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "Den Auszug verstecken"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "Das Werk steht unter Lizenz"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Basiert auf"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "Details"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Autor"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "Andere Ressoursen"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "Quelle des Bildes"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "Bild auf dem Editor-Plattform"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "Siehe XML-Quelle"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Motive des Werkes"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Bücherseite"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Herunterladen als"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiobücher wurden als Teil der folgenden Projekte vorbereitet:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, gestiftet von %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -801,175 +810,175 @@ msgstr ""
"Audiobücher wurden als Teil des Projektes %(cs)s vorbereitet, gestiftet von "
"%(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Audiobücher wurden als Teil des Projektes %(cs)s vorbereitet."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "Neueste MP3-Audiobücher"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "gehe zur Public Domain"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Suchen"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Haben Sie gemeint"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "Bücher"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Sorry! Suchkriterien haben keine Ressourcen erwiesen"
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
msgstr "Sorry! Suchfrage muss zumindest zwei Buchstaben enthalten"
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr "Sorry! Suchfrage muss zumindest zwei Buchstaben enthalten"
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
#, fuzzy
msgid "Download a custom PDF"
msgstr "PDF-Datei herunterladen"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Künstler"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Regisseur"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "volle Kategorie sehen"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audioücher"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Autoren"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Epochen"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Gattungen"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Sorten"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Auflistung aller Audiobücher"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF-Datei"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motive und Themen"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "Beschreibung"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "in Wikipedia"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Zeilenabstand"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -980,11 +989,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "Buch wurde erfolgreich importiert"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Fehler beim Importieren der Datei: %r"
diff --git a/src/catalogue/locale/en/LC_MESSAGES/django.po b/src/catalogue/locale/en/LC_MESSAGES/django.po
index b523f8501..a16499f57 100644
--- a/src/catalogue/locale/en/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:38+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,465 +17,469 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "author"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "period"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "form"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "genre"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "motif"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "author"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "period"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "form"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "genre"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "motif"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "collections"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "collections"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "Please supply an XML."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "Don't show footnotes"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "Don't display themes"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "Don't use our custom font"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Table of contents"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Leading"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Normal leading"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "One and a half leading"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Double leading"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "Font size"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Default"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "Big"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "Title"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "Sort key"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Results by authors"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "Slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "language code"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "Description"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "creation date"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "creation date"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "Parent number"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "Additional information"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "cover"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "book"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "Books"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Book with stub = \"%s\" does not exist."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Book %s already exists"
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s file"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "type"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "name"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "name"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
msgid "file"
msgstr "XML file"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
msgid "book slugs"
msgstr "Book stubs"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "form"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "collection"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "collections"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "Fragment"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "Fragments"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "Additional information"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Source"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Source"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "author"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "period"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "genre"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "motif"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "set"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "content type"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "object id"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "Category"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "tags"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "Other sources"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "See also"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Themes"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Source"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "of the book"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "form"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Source XML file"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Book on"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Editor's Platform"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Book description on Wikipedia"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Mix this book"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Theme"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "in work "
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "This work is licensed under:"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -506,74 +510,75 @@ msgstr ""
"Commons Attribution-ShareAlike 3.0\n"
" license."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Text based on:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Edited and annotated by:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "List of all works"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Table of Contents"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "â top â"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Period"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Form"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Genre"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "language code"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Read online"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -581,219 +586,223 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Download"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Table of contents"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Edit. note"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Parent number"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Don't display themes"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "Don't show footnotes"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Catalogue"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "All books"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Download the catalogue in PDF format."
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "collections"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Reader"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "collections"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "collections"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "Download custom PDF"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "List of all DAISY files"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Latest DAISY audiobooks"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
"The criteria are ambiguous. Please select one of the following options:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "Expand fragment"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "Hide fragment"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "Work is licensed under "
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Based on"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "Details"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Author"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "Other sources"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "Source of the image"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "Image on the Editor's Platform"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "View XML source"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Work's themes "
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Book's page"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Download as"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiobooks were prepared as a part of the following projects:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, funded by %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -803,174 +812,174 @@ msgid ""
msgstr ""
"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Audiobooks were prepared as a part of the %(cs)s project."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "Latest MP3 audiobooks"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "Goes to public domain"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Search"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Did you mean"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "Books"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Sorry! Search cirteria did not match any resources."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
msgstr "Sorry! Search query must have at least two characters."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr "Sorry! Search query must have at least two characters."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "Download a custom PDF"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Reader"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Director"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "See full category"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiobooks"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Authors"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Periods"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Genres"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Forms"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "List of the audiobooks"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF file"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motifs and themes"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "Description"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "in Wikipedia"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Leading"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -981,11 +990,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "Book imported succesfully"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "An error occured while importing file: %r"
diff --git a/src/catalogue/locale/es/LC_MESSAGES/django.po b/src/catalogue/locale/es/LC_MESSAGES/django.po
index f1fe1e653..725d2d964 100644
--- a/src/catalogue/locale/es/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/es/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:39+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,444 +17,448 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "autor"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "época"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "tipo"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "género"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "tema"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "autor"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "época"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "tipo"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "género"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "tema"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "colecciones"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "colecciones"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "Por favor, suministre un XML."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "No mostres notas a pie de página"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "No mostres temas"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "No uses nuestro tipo de la fuente de personalización "
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Tabla de contenido"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Interlineado"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Interlineado normal"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "Interlineado uno y medio"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Interlineado doble"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "Tamaño de la fuente"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Valor por defecto"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "Grande"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "tÃtulo"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "clave de clasificación"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Resultados por autor"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "código de idioma"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "descripción"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "fecha de creación"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "fecha de creación"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "cifra matriz"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "información adicional"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "tapa"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "libro"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "libros"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, fuzzy, python-format
msgid "Book \"%s\" does not exist."
msgstr "Libro con slug = \"%s\" no existe."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Libro %s ya existe"
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s archivo"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "tipo"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "nombre"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "nombre"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
msgid "file"
msgstr "archivo"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "los medios de el libro"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
#, fuzzy
msgid "book slugs"
msgstr "vista previa de libros"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "tipo"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "colección"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "colecciones"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "fragmento"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "fragmentos"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "información adicional"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Fuente"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Fuente"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "autor"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "época"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "género"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "tema"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "colección"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "tipo de contenido"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "id de objeto"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "categorÃa"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "tags"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "Otros recursos"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "Véase también"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Temas"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Fuente"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "del libro"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "tipo"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "archivo fuente XML"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "El libro está en el estante"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Plataforma de Editor"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Descripción del libro en Wikipedia"
@@ -462,25 +466,25 @@ msgstr "Descripción del libro en Wikipedia"
# ! relaciona lub combina - jeÅli chodzi o powiÄ
zanie
# ! prepara - jeÅli chodzi o przygotowanie
# (zmieniÄ czasownik "mezcla" na któryÅ z powyższych jeÅli kontekst jest inny)
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Mezcla este libro"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Tema"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "en la obra"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Esta obra está autorizada bajo:"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -511,74 +515,75 @@ msgstr ""
"Attribution-ShareAlike 3.0\n"
" licencia."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Texto preparado a base de:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Editado y anotado por:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "Lista de todas las obras"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Tabla de contenido"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "âvolver arribaâ"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Ãpoca"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Género"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Subgénero"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "código de idioma"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Leer en lÃnea"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -586,221 +591,225 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Descargar"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Tabla de contenido"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
# ! także: N.de la R.
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Nota de la redacción"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "cifra matriz"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "No mostres temas"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "No mostres notas a pie de página"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Catálogo"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Todos los libros"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Descarga el catálogo en formato PDF"
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "colecciones"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Artista"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "colecciones"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "colecciones"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "Descarga PDF personalizado"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "Lista de todos los archivos DAISY"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Los últimos audiolibros en formato DAISY"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
"Los criterios son ambiguos. Por favor, seleccione una de las siguientes "
"opciones:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "Extender fragmento"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "Ocultar fragmento"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "Esta obra está autorizada bajo"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Basado en "
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "Detalles"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Autor"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "Otros recursos"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "Fuente de la imagen"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "Imagen en la Plataforma de Editor"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "Ver código fuente XML"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Temas de las obras"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Página del libro"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Descargar como"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiolibros forman parte de los siguientes proyectos:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s,financiado por %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -809,64 +818,64 @@ msgid ""
"%(fb)s."
msgstr "Audiolibros forman parte del proyecto %(cs)s financiado por %(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Audiolibros forman parte del proyecto %(cs)s."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "Los últimos audiolibros en formato MP3 "
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "pasa al dominio público"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Buscar"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "¿Te has referido a...?"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "libros"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr ""
"¡Lo siento! El criterio de la búsqueda no corresponde a ningún recurso."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
@@ -874,108 +883,108 @@ msgstr ""
"¡Lo siento! La consulta de búsqueda tiene que consistir de dos caracteres "
"como mÃnimo."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr ""
"¡Lo siento! La consulta de búsqueda tiene que consistir de dos caracteres "
"como mÃnimo."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "Descarga un PDF personalisado"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artista"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Director"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "Ver la categorÃa completa"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiolibros"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Autor"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Ãpocas"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Subgénero"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Géneros"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Lista de todos los audiolibros "
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "archivo PDF"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motivos y temas"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "descripción"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "en Wikipedia"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
@@ -983,7 +992,7 @@ msgstr "Interlineado"
# msgid "Today is %(month)s, %(day)s."
# msgstr "Hoy es el %(dÃa)s de %(mes)es"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -994,11 +1003,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "El libro ha sido importado con éxito"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Ha ocurrido un error al cargar el archivo: %r"
diff --git a/src/catalogue/locale/fr/LC_MESSAGES/django.po b/src/catalogue/locale/fr/LC_MESSAGES/django.po
index b587d8fd9..96bae9f07 100644
--- a/src/catalogue/locale/fr/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/fr/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:38+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -16,466 +16,470 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "auteur"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "époque"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "type"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "genre"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "thème"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "auteur"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "époque"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "type"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "genre"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "thème"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "collections"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "collections"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "Fournissez un XML, s'il vous plaît."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "Ne montre pas d'annotations"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "N'affiche pas de thèmes"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "N'utilise pas notre caractère usuel"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Table des matières"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Interligne"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Interligne normal"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "Interligne et demi"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Interligne double"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "Taille des caractères"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Implicite"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "Grand(e)(s)"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "titre"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "critère de tri"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Résultats par l'auteur"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "ébauche"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "code de langue"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "description"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "date de création"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "date de création"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "nombre de parent"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "information supplémentaire"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "couverture"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "livre"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "livres"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Livre \"%s\" n'existe pas."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Livre %s existe déjà "
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "fichier %s"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "type"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "nom"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "nom"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
msgid "file"
msgstr "fichier"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
#, fuzzy
msgid "book slugs"
msgstr "ébauches des livres"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "type"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "collection"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "collections"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "extrait"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "extraits"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "information supplémentaire"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Source"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Source"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "auteur"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "époque"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "genre"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "thème"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "série"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "type du contenu"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "ID de l'objet"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "catégorie"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "tags"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "Autres ressources"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "Voir aussi"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Thèmes"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Source"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "du livre"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "type"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Fichier source XML"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Livre sur"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Plateforme d'éditeur"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Description du livre sur Wikipédia"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Mixez ce livre"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Thème"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "dans l'oeuvre"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Cet oeuvre est publié sous la licence"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -505,74 +509,75 @@ msgstr ""
"Paternité "
"- Partage à l'Identique 3.0 non transposé ."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Préparation du texte basée sur:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Les éditions et annotations par:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "Liste des tous les ouvrages"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Table des matières"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "â top â"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Ãpoque"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Type"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Genre"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "code de langue"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Lire en ligne"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -580,218 +585,222 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Téléchargez"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Table des matières"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Note d'éditeur"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "nombre de parent"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "N'affiche pas de thèmes"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "Ne montre pas d'annotations"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Catalogue"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Tous les livres"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Téléchargez le catalogue au format PDF"
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "collections"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Artiste"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "collections"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "collections"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "Téléchargez un PDF personnalisé"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "Liste des tous les livres audio DAISY"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Le plus nouveaux livres audio DAISY"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr "Les critères sont ambigus. Choisissez parmi les options ci-dessous:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "Montrer l'extrait"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "Cacher l'extrait"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "Ouvrage sous la licence"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Basé sur"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "Détails"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Auteur"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "Autres ressources"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "Source d'image"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "L'image sur la Plateforme d'éditeur"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "Voir source XML"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Les thèmes de l'oeuvre"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury (Lectures Libres)"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Site du livre"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Téléchargez comme"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Livres audios ont été préparés comme une part des projets:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, sponsorisé par %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -802,64 +811,64 @@ msgstr ""
"Livres audios ont été préparés comme une part du projet %(cs)s sponsorisé "
"par %(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Livres audios ont été préparés comme une part du projet %(cs)s."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "Les plus nouveaux livres audio MP3"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "entre dans le domaine public"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Rechercher"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Est-ce que vous cherchez"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "livres"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr ""
"Nous sommes désolés, aucune ressource ne répond aux critères de recherche."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
@@ -867,108 +876,108 @@ msgstr ""
"Nous sommes désolés, pour effectuer la recherche il faut entrer au moins "
"deux caractères."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr ""
"Nous sommes désolés, pour effectuer la recherche il faut entrer au moins "
"deux caractères."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "Téléchargez un PDF pérsonnalisé"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artiste"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Metteur en scène"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury (Lectures Libres)"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "Voir catégorie entière"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Livres audio"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Auteurs"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Ãpoques"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Genres"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Types"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Liste des tous les livres audio"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "fichier PDF"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motifs et thèmes"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "description"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "sur Wikipédia"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
@@ -976,7 +985,7 @@ msgstr "Interligne"
# msgid "Today is %(month)s, %(day)s."
# msgstr "Aujourd'hui nous sommes le"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -987,11 +996,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "Livre importé avec succès"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Erreur pendant l'importation du fichier: %r"
diff --git a/src/catalogue/locale/it/LC_MESSAGES/django.po b/src/catalogue/locale/it/LC_MESSAGES/django.po
index eae5bc787..489a6a8a5 100644
--- a/src/catalogue/locale/it/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/it/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:39+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,465 +17,469 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "autore"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "epoca"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "categoria"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "genere"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "tema"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "autore"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "epoca"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "categoria"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "genere"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "tema"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr " raccolte"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr " raccolte"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "Si prega di fornire un XML."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "Non mostrare le note"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "Non visualizzare i temi"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "Non utilizzare il nostro font personalizzato"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Indice"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Interlinea"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Interlinea normale"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr " Interlinea 1,5"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Interlinea doppia"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "Grandezza del carattere"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Predefinito"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "Grande"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "titolo"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "chiave di ordinamento"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Risultati per autore"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "codice della lingua"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "descrizione"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "data di creazione"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "data di creazione"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "numero del genitore"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr " ulteriori informazioni"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "copertina"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "libro"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "Libri"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Il libro \"%s\" non esiste."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Il libro %s esiste già "
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "i %s di file"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "tipo"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "nome"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "nome"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
msgid "file"
msgstr "file"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
msgid "book slugs"
msgstr " slug del libro "
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "categoria"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "raccolta"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr " raccolte"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "Frammento"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "Frammenti"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr " ulteriori informazioni"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Fonte"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Fonte"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "autore"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "epoca"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "genere"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "tema"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "raccolta"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "tag"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr ""
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr ""
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "categoria"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "i tag"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "Altre fonti"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "Vedi anche"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Temi"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Fonte"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "del libro"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "categoria"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "File di fonte XML"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Libro su"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr " Piattaforma del editore"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Descrizione del libro su Wikipedia"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "Combina questo libro"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "tema"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "in corso"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Questa opera è pubblicata su licenza:"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -508,74 +512,75 @@ msgstr ""
"Commons Attribution-ShareAlike 3.0\n"
"licenza."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Il testo preparato e basato su:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Curato ed elaborato da:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "Elenco di tutte le opere"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Indice"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr ""
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Epoca"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Categoria"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Genere"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "codice della lingua"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Leggi online"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -583,220 +588,224 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Scarica"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Indice"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Modifica. nota"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "numero del genitore"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Non visualizzare i temi"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "Non mostrare le note"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Catalogo"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Tutti i libri"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Scarica il catalogo nel formato PDF."
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr " raccolte"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Artista"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr " raccolte"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr " raccolte"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "Scarica PDF personalizzato"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "Elenco di tutti i file DAISY "
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Ultimi audiolibri DAISY"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
"Questi criteri sono ambigui. Si prega di selezionare una delle seguenti "
"opzioni:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "Espandi il frammento"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "Nascondi il frammento"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "L'opera è su licenza di"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Basato su"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "Dettagli"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Autore"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "Altre fonti"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "Fonte dell'immagine"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "Immagine sulla piattaforma del editore"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "Visualizza la fonte XML"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Temi dell'opera"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Pagina del libro"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Scarica come"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Gli audilobri sono stati preparati come parte dei seguenti progetti:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, creato da %(fb)s // %(cs)s, finanziato da %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -807,62 +816,62 @@ msgstr ""
"Gli audiollibri sono stati preparati come parte del progetto %(cs)s, "
"finanziato da %(fb)s"
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Gli audiolibri sono stati preparati come parte di progetto %(cs)s."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "Ultimi audiolibri MP3"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
msgid "Recent publications"
msgstr ""
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Cerca"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Volevi dire"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "Libri"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Siamo spiacenti!I criteri di ricerca non corrispondono alle risorse."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
@@ -870,114 +879,114 @@ msgstr ""
"Siamo spiacenti! La ricerca viene effettuata su parole con almeno due "
"caratteri."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr ""
"Siamo spiacenti! La ricerca viene effettuata su parole con almeno due "
"caratteri."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr " Scarica un PDF personalizzato"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artista"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Direttore"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "Vedi tutta la categoria"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiolibri"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Autori"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Epoche"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Generi"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Categorie"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Elenco di tutti gli audiolibri "
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "DAISY"
msgid "DAISY files"
msgstr "DAISY"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motivi e temi"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "descrizione"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "su Wikipedia"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Interlinea"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -988,11 +997,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "Libro scaricato con successo"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Errore dell'importazione del file: %r"
diff --git a/src/catalogue/locale/lt/LC_MESSAGES/django.po b/src/catalogue/locale/lt/LC_MESSAGES/django.po
index 52e322f00..be2d17f49 100644
--- a/src/catalogue/locale/lt/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/lt/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:40+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,466 +17,470 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.3\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "autorius"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "epocha"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "rūšis"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "žanras"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "motyvas"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "autorius"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "epocha"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "rūšis"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "žanras"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "motyvas"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "kolekcijos"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "kolekcijos"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "Prašome pateikti XML."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "Nerodyti išnašų"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "Nerodyti motyvų"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "Nenaudoti derinÄių Å¡riftų"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Turinys"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "eiluÄių intervalas"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Normalus intervalas"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "Pusantro intervalo"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Dvigubasis intervalas"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "Å rifto dydis"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Numatytasis "
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "Didelis"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "pavadinimas"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "rikiavimo raktas"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "Rezultatai pagal autorius"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "kalbos kodas"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "aprašymas"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "sukūrimo data"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "sukūrimo data"
# sprawdz
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "pirminis numeris"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "papildomos informacijos"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "viršelis"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "knyga"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "knygos"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Knyga \"%s\" neegzistuoja."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Knyga %s jau egzistuoja"
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "%s failas "
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "tipas"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "pavadinimas"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "pavadinimas"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
msgid "file"
msgstr "failas "
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
msgid "book slugs"
msgstr "book slugs"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "rūšis"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "kolekcija"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "kolekcijos"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "fragmentas"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "fragmentai"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "papildomos informacijos"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "Knygos"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "Knygos"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "autorius"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "epocha"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "žanras"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "motyvas"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "rinkinys"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "žymÄ"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "turinio rūšis"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "id obiektas"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "kategorija "
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "žymÄs"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "Kiti ištekliai"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "ŽiÅ«rÄti daugiau"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Motyvai"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "Knygos"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "šaltinis"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "rūšis"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Å altinio XML failas"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Knyga "
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "Redaktoriaus Platformoje"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "Knygos aprašymas Vikipedijoje"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "MaiÅ¡yti Å¡iÄ
knygÄ
"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Motyvas"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "kūrinyje"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Šis kūrinys yra licencijuotas pagal:"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -508,74 +512,75 @@ msgstr ""
"Attribution-ShareAlike 3.0\n"
"licencijÄ
."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "Tekstas paruoštas remiantis:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Redagavimas ir pastabos:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "Visų kÅ«rinių sÄ
rašas"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Turinys"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "âį viršųâ"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Epocha"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Rūšis "
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Žanras"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "kalbos kodas"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Skaityti online"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -583,221 +588,225 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Atsisiųsti"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Turinys"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Redaguoti pastabÄ
"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Infobox"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
# sprawdz
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "pirminis numeris"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Nerodyti motyvų"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "Nerodyti išnašų"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Katalogas"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "Visos knygos"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Atsisiųsti katalogÄ
PDF formatu."
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "kolekcijos"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Artistas"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "kolekcijos"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "kolekcijos"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "Sukurti ir atsisiųsti PDF failÄ
"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "Visų DAISY failų sÄ
rašas"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Naujosios DAISY audio knygos"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
"PaieÅ¡kos kriterijai nÄra tikslÅ«s. PraÅ¡ome iÅ¡rinkti vienÄ
iš žemiau nurodytų "
"galimybių:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "IÅ¡plÄsti fragmentÄ
"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "SlÄpti fragmentÄ
"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "Kūrinys yra licencijuotas pagal:"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Remiantis"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "DetalÄs "
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Autorius"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "Kiti ištekliai"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "PaveikslÄlio Å¡altinis"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "PaveikslÄlis Redaktoriaus Platformoje"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "ŽiÅ«rÄti XML Å¡altinį"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Kūrinio motyvai"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Knygos puslapis"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Atsisiųsti kaip"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audio knygos buvo paruoštos kaip projektų dalis:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "\"%(cs)s, %(fb)s finansuotų"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -807,176 +816,176 @@ msgid ""
msgstr ""
"Audio knygos buvo paruoštos kaip dalis %(fb)s. finansuoto %(cs)s projekto."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Audio knygos buvo paruoštos kaip dalis %(cs)s projekto."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "Naujosios MP3 audio knygos"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "keliauja į vieÅ¡Ä
tinklapį "
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Ieškoti"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Gal turÄjote omenyje"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "knygos"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "AtsipraÅ¡ome! Rezultatų, atitinkanÄių paieÅ¡kos kriterijus nÄra."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
msgstr ""
"AtsipraÅ¡ome! PaieÅ¡kos užklausa turi susidÄti mažiausiai iÅ¡ dviejų simbolių."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr ""
"AtsipraÅ¡ome! PaieÅ¡kos užklausa turi susidÄti mažiausiai iÅ¡ dviejų simbolių."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "Sukurti ir atsisiųsti PDF failÄ
"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Artistas"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "Režisierus"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "ŽiÅ«rÄti visÄ
kategorijÄ
"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audio knygos"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Autoriai"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Epochos"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Žanrai"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Rūšys"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Visų audio knygų sÄ
rašas"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF failas"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motyvai ir temos"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "aprašymas"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "Vikipedijoje"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "eiluÄių intervalas"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -987,11 +996,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "Knyga buvo sÄkmingai importuota"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Importuojant failÄ
įvyko klaida: %r"
diff --git a/src/catalogue/locale/pl/LC_MESSAGES/django.po b/src/catalogue/locale/pl/LC_MESSAGES/django.po
index 2adf37089..2cf664433 100644
--- a/src/catalogue/locale/pl/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/pl/LC_MESSAGES/django.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: WolneLektury\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2015-12-31 16:45+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: Fundacja Nowoczesna Polska Uznanie autorstwa-"
"Na tych samych warunkach 3.0."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
msgid "Resource prepared based on:"
msgstr "Zasób opracowany na podstawie:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr "Opracowanie redakcyjne:"
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Opracowanie redakcyjne i przypisy:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr "Wydawca:"
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr "PublikacjÄ wsparli i wsparÅy:"
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr "Ilustracja na okÅadce:"
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "Spis wszystkich utworów"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Spis treÅci"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "â góra â"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "Epoka"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Rodzaj"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "Gatunek"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr "Region"
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
msgid "Language"
msgstr "JÄzyk"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "Czytaj online"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -529,108 +534,110 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr "Druk na żÄ
danie z"
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "Pobierz"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr "wiÄcej"
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr "mniej"
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr "Jak na razie ten utwór jest dostÄpny wyÅÄ
cznie dla naszych PrzyjacióÅ."
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Spis treÅci"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr "Ustawienia"
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "Nota red."
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "Informacje"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr "Zamknij"
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr "ProszÄ czekaÄâ¦"
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr "Inne wersje utworu"
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr "Zamknij drugÄ
wersjÄ"
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
msgid "Display line numbers"
msgstr "WyÅwietlaj numeracjÄ"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
msgid "Display themes"
msgstr "WyÅwietlaj motywy"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
msgid "Display footnotes"
msgstr "WyÅwietlaj przypisy"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "Katalog"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
msgid "All works"
msgstr "Wszystkie utwory"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "Pobierz katalog w formacie PDF."
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr "Literatura"
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
msgid "Collections"
msgstr "Kolekcje"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Art"
msgstr "Sztuka"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
msgid "Collection"
msgstr "Kolekcja"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
@@ -638,98 +645,100 @@ msgstr[0] "oraz jedna inna"
msgstr[1] "oraz %(c)s inne"
msgstr[2] "oraz %(c)s innych"
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
msgid "All collections"
msgstr "Wszystkie kolekcje"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "Stwórz wÅasny PDF"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "Spis wszystkich plików DAISY"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "Ostatnio dodane audiobooki w formacie DAISY"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
"Podane kryteria sÄ
niejednoznaczne. ProszÄ wybraÄ jednÄ
z nastÄpujÄ
cych "
"możliwoÅci:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "RozwiÅ fragment"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "ZwiÅ fragment"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr "Zobacz też"
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "Utwór jest udostÄpniony na licencji"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Na podstawie"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "O utworze"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "Autor"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "W innych miejscach"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "ŹródÅo obrazu"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "Obraz na Platformie Redakcyjnej"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "ŹródÅowy plik XML"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Motywy w utworze"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "Strona utworu"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "Pobierz jako"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "Audiobooki przygotowane w ramach projektów:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, finansowanego przez %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, python-format
msgid ""
"Audiobooks were prepared as a part of the %(cs)s project funded by "
@@ -738,27 +747,27 @@ msgstr ""
"Audiobooki przygotowane w ramach projektu finansowanego "
"przez %(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, python-format
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "Audiobooki przygotowane w ramach projektu %(cs)s ."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
msgid "Recent audiobooks"
msgstr "Ostatnio dodane audiobooki"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr "Ostatnio dodane pliki DAISY"
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
msgid "Recent publications"
msgstr "Ostatnie publikacje"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
@@ -767,128 +776,128 @@ msgstr ""
"Zobacz też listÄ ostatnio dodanych audiobooków \n"
" i plików DAISY ."
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "Szukaj"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Czy chodziÅo Ci o"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
msgid "Books"
msgstr "KsiÄ
żki"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Przepraszamy! Brak wyników speÅniajÄ
cych kryteria podane w zapytaniu."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
msgid "Sorry! Search query is too long to be processed."
msgstr "Przepraszamy! Zapytanie jest zbyt dÅugie."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr "Przepraszamy! Zapytanie musi zawieraÄ co najmniej dwa znaki."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "Stwórz wÅasny plik PDF"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
msgid "Artist:"
msgstr "Czyta"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
msgid "director:"
msgstr "reż."
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr "poprzednia"
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr "CzÄÅÄ"
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr "nastÄpna"
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr "Wolna licencja"
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
msgid "on Wolne Lektury"
msgstr "w Wolnych Lekturach"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "Zobacz caÅÄ
kategoriÄ"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "Audiobooki"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "Autorzy"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "Epoki"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "Gatunki"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Rodzaje"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr "Wybrane utwory"
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "Spis wszystkich audiobooków"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
msgid "DAISY files"
msgstr "Pliki DAISY"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "Motywy i tematy"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
msgid "No description."
msgstr "Brak opisu."
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "w Wikipedii"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr "w Culture.pl"
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
msgid "Loading"
msgstr "Åadowanie"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -899,11 +908,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "KsiÄ
żka zaimportowana"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "BÅÄ
d podczas importowania pliku: %r"
diff --git a/src/catalogue/locale/ru/LC_MESSAGES/django.po b/src/catalogue/locale/ru/LC_MESSAGES/django.po
index d9ef204bb..357039e80 100644
--- a/src/catalogue/locale/ru/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/ru/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:40+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -17,467 +17,471 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.6\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "авÑоÑ"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "ÑпоÑ
а"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "ÑоÑма"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "жанÑ"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "моÑив"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "авÑоÑ"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "ÑпоÑ
а"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "ÑоÑма"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "жанÑ"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "моÑив"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "ÑбоÑÑ"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "ÑбоÑÑ"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "УкажиÑе, пожалÑйÑÑа, XML."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "Ðе показÑваÑÑ ÑноÑки"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "Ðе показÑваÑÑ ÑемÑ"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "Ðе иÑполÑзÑйÑе Ð½Ð°Ñ ÑпеÑиалÑнÑй ÑÑиÑÑ"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "Ðглавление"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Ðедение"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "ÐоÑмалÑное ведение"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "1,5 ведениÑ"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Ðвойное ведение"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "Ð Ð°Ð·Ð¼ÐµÑ ÑÑиÑÑа"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "УмолÑание"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "ÐолÑÑой"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "заглавие"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "клÑÑ ÑоÑÑиÑовки "
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "РезÑлÑÑаÑÑ Ð¿Ð¾ авÑоÑам"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "код ÑзÑка"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "опиÑание"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "даÑа ÑозданиÑ"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "даÑа ÑозданиÑ"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "Ð½Ð¾Ð¼ÐµÑ ÑодиÑелÑ"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "дополниÑелÑÐ½Ð°Ñ Ð¸Ð½ÑоÑмаÑиÑ"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "обложка"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "книга"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "книги"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, fuzzy, python-format
msgid "Book \"%s\" does not exist."
msgstr "Ðнига Ñо slug = \"%s\" не ÑÑÑеÑÑвÑеÑ."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Ðнига %s Ñже ÑÑÑеÑÑвÑеÑ"
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, fuzzy, python-format
msgid "%s file"
msgstr "XML Ñайл"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "Ñип"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "название"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "название"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
#, fuzzy
msgid "file"
msgstr "XML Ñайл"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "аÑдиокнига"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
#, fuzzy
msgid "book slugs"
msgstr "анонÑÑ ÐºÐ½Ð¸Ð³Ð¸"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "ÑоÑма"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "ÑбоÑ"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "ÑбоÑÑ"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "ÑÑагменÑ"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "ÑÑагменÑÑ"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "дополниÑелÑÐ½Ð°Ñ Ð¸Ð½ÑоÑмаÑиÑ"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "ÐÑÑоÑник"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "ÐÑÑоÑник"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "авÑоÑ"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "ÑпоÑ
а"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "жанÑ"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "моÑив"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "набоÑ"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "Ñаг"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "Ñип ÑодеÑжаниÑ"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "ID обÑекÑа"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "каÑегоÑиÑ"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "Ñаги"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "дÑÑгие ÑеÑÑÑÑÑ"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "ÐодÑобнее"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "ÐоÑивÑ"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "ÐÑÑоÑник"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "данной книги"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "ÑоÑма"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "ÐÑÑ
однÑй Ñайл"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Ðнига на"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "ÐлаÑÑоÑма ÑедакÑоÑов"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "ÐпиÑание книги на Wikipedia"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "данной книги"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "ÐоÑив"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "в ÑÑÑде"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "РазÑеÑение на ÑабоÑÑ Ñо ÑÑоÑонÑ"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -510,74 +514,75 @@ msgstr ""
"Â Â Â Â Â Â Â Â "
"Creative Commons Attribution-ShareAlike 3.0 a>"
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "ТекÑÑ Ð¿Ð¾Ð´Ð³Ð¾Ñовлен на оÑнове:"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "Ðод ÑедакÑией и Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½ÑаÑиÑми:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "СпиÑок ÑабоÑ"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "Ðглавление"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "â Ñоп â"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "ÑпоÑ
а"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "ÑоÑма"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "жанÑ"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "код ÑзÑка"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "ЧиÑаÑÑ Ð¾Ð½Ð»Ð°Ð¹Ð½"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -585,220 +590,224 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "ÐагÑÑзиÑÑ"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "Ðглавление"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "ÐзмениÑÑ Ð¿ÑимеÑание"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "ÐнÑобокÑ"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Ð½Ð¾Ð¼ÐµÑ ÑодиÑелÑ"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "Ðе показÑваÑÑ ÑемÑ"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "Ðе показÑваÑÑ ÑноÑки"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "ÐаÑалог"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "ÐÑе книги"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "СкаÑаÑÑ ÐºÐ°Ñалог в PDF ÑоÑмаÑе."
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "ÑбоÑÑ"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "ÐÑÑиÑÑ"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "ÑбоÑÑ"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "ÑбоÑÑ"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "СкаÑаÑÑ PDF полÑзоваÑелÑ"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "СпиÑок вÑеÑ
DAISY Ñайлов"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "ÐоÑледние DAISY аÑдиокниги"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr ""
"ÐÑиÑеÑÐ¸Ñ ÑвлÑÑÑÑÑ Ð½ÐµÐ¾Ð´Ð½Ð¾Ð·Ð½Ð°ÑнÑми. ÐожалÑйÑÑа, вÑбеÑиÑе один из ÑледÑÑÑиÑ
"
"ваÑианÑов:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "РаÑÑÑнÑÑÑ ÑÑагменÑ"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "СкÑÑÑÑ ÑÑагменÑ"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "РазÑеÑение на ÑабоÑÑ Ñо ÑÑоÑонÑ"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "ÐÑнованнÑй на"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "ÐодÑобнее"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "ÐвÑоÑ"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "дÑÑгие ÑеÑÑÑÑÑ"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "ÐÑÑоÑник книги"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "ÐзобÑажение на плаÑÑоÑме ÑедакÑоÑов"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "ÐÑоÑмоÑÑ XML-иÑÑоÑник"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Ð¢ÐµÐ¼Ñ ÑÑÑда"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "на WolneLektury.pl"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "ÐозÑаÑиÑеÑÑ Ð½Ð° ÑÐ°Ð¹Ñ ÐºÐ½Ð¸Ð³Ð¸"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "СкаÑаÑÑ"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "ÐÑдиокниги бÑли подгоÑÐ¾Ð²Ð»ÐµÐ½Ñ Ð² ÑамкаÑ
пÑоекÑа:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, ÑинанÑиÑÑемого %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -808,176 +817,176 @@ msgid ""
msgstr ""
"ÐÑдиокниги бÑли подгоÑÐ¾Ð²Ð»ÐµÐ½Ñ Ð² ÑамкаÑ
%(cs)s пÑоекÑa, ÑинанÑиÑÑемого %(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "ÐÑдиокниги бÑли подгоÑÐ¾Ð²Ð»ÐµÐ½Ñ Ð² ÑамкаÑ
%(cs)s пÑоекÑa."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "ÐоÑледние MP3 аÑдиокниги"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "идÑи к пÑблиÑной домене"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "ÐоиÑк"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "ÐÑ Ð¸Ð¼ÐµÐ»Ð¸ в видÑ"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "книги"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "ÐзвиниÑе! ÐÑиÑеÑий поиÑка не ÑооÑвеÑÑÑвÑÐµÑ Ð½Ð¸ÐºÐ°ÐºÐ¸Ð¼ ÑеÑÑÑÑам."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
msgstr ""
"ÐзвиниÑе! У иÑкаемого вопÑоÑа Ð´Ð¾Ð»Ð¶Ð½Ñ Ð±ÑÑÑ Ð¿Ð¾ кÑайней меÑе два ÑвойÑÑва."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr ""
"ÐзвиниÑе! У иÑкаемого вопÑоÑа Ð´Ð¾Ð»Ð¶Ð½Ñ Ð±ÑÑÑ Ð¿Ð¾ кÑайней меÑе два ÑвойÑÑва."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "СкаÑаÑÑ PDF"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "ÐÑÑиÑÑ"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "ÑежиÑÑеÑ"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "на WolneLektury.pl"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "ÐÑÑ ÐºÐ°ÑегоÑиÑ"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "ÐÑдиокниги"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "ÐвÑоÑÑ"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "ÐпоÑ
и"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "ÐанÑÑ"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "ФоÑмÑ"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "СпиÑок ÑабоÑ"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "PDF Ñайл"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "ÐоÑÐ¸Ð²Ñ Ð¸ ÑемÑ"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "опиÑание"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "в Ðикипедии"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Ðедение"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -988,11 +997,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "ÐÑ ÑдаÑно заимпоÑÑиÑовали книгÑ"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "ÐÑибка импоÑÑа Ñайла: %r"
diff --git a/src/catalogue/locale/uk/LC_MESSAGES/django.po b/src/catalogue/locale/uk/LC_MESSAGES/django.po
index dec5fa4e4..8c1160d10 100644
--- a/src/catalogue/locale/uk/LC_MESSAGES/django.po
+++ b/src/catalogue/locale/uk/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-09-09 22:08+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2013-04-09 10:40+0100\n"
"Last-Translator: Radek Czajka \n"
"Language-Team: LANGUAGE \n"
@@ -16,465 +16,469 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: constants.py:9
+#: catalogue/constants.py:9
msgid "Creative Commons Attribution-ShareAlike 3.0 Unported"
msgstr ""
-#: constants.py:13
+#: catalogue/constants.py:13
msgid "Free Art License 1.3"
msgstr ""
-#: constants.py:58
+#: catalogue/constants.py:58
#, fuzzy
#| msgid "author"
msgid "authors"
msgstr "авÑоÑ"
-#: constants.py:59
+#: catalogue/constants.py:59
#, fuzzy
#| msgid "epoch"
msgid "epochs"
msgstr "епоÑ
а"
-#: constants.py:60
+#: catalogue/constants.py:60
#, fuzzy
#| msgid "kind"
msgid "kinds"
msgstr "ÑÑд"
-#: constants.py:61
+#: catalogue/constants.py:61
#, fuzzy
#| msgid "genre"
msgid "genres"
msgstr "жанÑ"
-#: constants.py:62
+#: catalogue/constants.py:62
#, fuzzy
#| msgid "theme"
msgid "themes"
msgstr "Ñема"
-#: constants.py:63
+#: catalogue/constants.py:63
msgid "sets"
msgstr ""
-#: constants.py:64
+#: catalogue/constants.py:64
msgid "things"
msgstr ""
-#: constants.py:68
+#: catalogue/constants.py:68
#, fuzzy
#| msgid "author"
msgid "All authors"
msgstr "авÑоÑ"
-#: constants.py:69
+#: catalogue/constants.py:69
#, fuzzy
#| msgid "epoch"
msgid "All epochs"
msgstr "епоÑ
а"
-#: constants.py:70
+#: catalogue/constants.py:70
#, fuzzy
#| msgid "kind"
msgid "All kinds"
msgstr "ÑÑд"
-#: constants.py:71
+#: catalogue/constants.py:71
#, fuzzy
#| msgid "genre"
msgid "All genres"
msgstr "жанÑ"
-#: constants.py:72
+#: catalogue/constants.py:72
#, fuzzy
#| msgid "theme"
msgid "All themes"
msgstr "Ñема"
-#: constants.py:73
+#: catalogue/constants.py:73
#, fuzzy
#| msgid "collections"
msgid "All sets"
msgstr "колекÑÑÑ"
-#: constants.py:74
+#: catalogue/constants.py:74
#, fuzzy
#| msgid "collections"
msgid "All things"
msgstr "колекÑÑÑ"
-#: forms.py:28
+#: catalogue/forms.py:28
msgid "Please supply an XML."
msgstr "ÐведÑÑÑ Ð±ÑÐ´Ñ Ð»Ð°Ñка XML."
-#: forms.py:48
+#: catalogue/forms.py:48
msgid "Don't show footnotes"
msgstr "СÑ
оваÑи пÑимÑÑки"
-#: forms.py:49
+#: catalogue/forms.py:49
msgid "Don't disply themes"
msgstr "СÑ
оваÑи Ñеми"
-#: forms.py:50
+#: catalogue/forms.py:50
msgid "Don't use our custom font"
msgstr "Ðе викоÑиÑÑовÑваÑи наÑого наÑÑÑоÑваного ÑÑиÑÑÑ"
-#: forms.py:51
+#: catalogue/forms.py:51
msgid "Without cover"
msgstr ""
-#: forms.py:52
+#: catalogue/forms.py:52
#, fuzzy
#| msgid "Table of contents"
msgid "Without table of contents"
msgstr "ÐмÑÑÑ"
-#: forms.py:55
+#: catalogue/forms.py:55
msgid "Leading"
msgstr "Leading"
-#: forms.py:56
+#: catalogue/forms.py:56
msgid "Normal leading"
msgstr "Normal leading"
-#: forms.py:57
+#: catalogue/forms.py:57
msgid "One and a half leading"
msgstr "One and a half leading"
-#: forms.py:58
+#: catalogue/forms.py:58
msgid "Double leading"
msgstr "Double leading"
-#: forms.py:60
+#: catalogue/forms.py:60
msgid "Font size"
msgstr "РозмÑÑ ÑÑиÑÑÑ"
-#: forms.py:61
+#: catalogue/forms.py:61
msgid "Default"
msgstr "Ðа ÑмовÑаннÑм"
-#: forms.py:62
+#: catalogue/forms.py:62
msgid "Big"
msgstr "Ðеликий"
-#: forms.py:63
+#: catalogue/forms.py:63
msgid "Bigger"
msgstr ""
-#: forms.py:85
+#: catalogue/forms.py:85
msgid "Queue is full. Please try again later."
msgstr ""
-#: models/book.py:57 models/collection.py:14
+#: catalogue/models/book.py:57 catalogue/models/collection.py:14
msgid "title"
msgstr "заголовок"
-#: models/book.py:58 models/tag.py:58
+#: catalogue/models/book.py:58 catalogue/models/tag.py:58
msgid "sort key"
msgstr "клÑÑ ÑоÑÑÑваннÑ"
-#: models/book.py:60
+#: catalogue/models/book.py:60
#, fuzzy
#| msgid "Results by authors"
msgid "sort key by author"
msgstr "РезÑлÑÑаÑи за авÑоÑами"
-#: models/book.py:61 models/book.py:62 models/collection.py:15 models/tag.py:57
+#: catalogue/models/book.py:61 catalogue/models/book.py:62
+#: catalogue/models/collection.py:15 catalogue/models/tag.py:57
msgid "slug"
msgstr "slug"
-#: models/book.py:63
+#: catalogue/models/book.py:63
msgid "language code"
msgstr "мовний код"
-#: models/book.py:64 models/book.py:391 models/collection.py:16
-#: models/tag.py:61 models/tag.py:135
+#: catalogue/models/book.py:64 catalogue/models/book.py:391
+#: catalogue/models/collection.py:16 catalogue/models/tag.py:61
+#: catalogue/models/tag.py:135
msgid "description"
msgstr "опиÑ"
-#: models/book.py:65
+#: catalogue/models/book.py:65
msgid "abstract"
msgstr ""
-#: models/book.py:66 models/bookmedia.py:34 models/tag.py:71 models/tag.py:72
+#: catalogue/models/book.py:66 catalogue/models/bookmedia.py:34
+#: catalogue/models/tag.py:71 catalogue/models/tag.py:72
msgid "creation date"
msgstr "даÑа ÑÑвоÑеннÑ"
-#: models/book.py:67
+#: catalogue/models/book.py:67
#, fuzzy
#| msgid "creation date"
msgid "change date"
msgstr "даÑа ÑÑвоÑеннÑ"
-#: models/book.py:68
+#: catalogue/models/book.py:68
msgid "parent number"
msgstr "Ð½Ð¾Ð¼ÐµÑ Ð±Ð°ÑÑка"
-#: models/book.py:69 models/bookmedia.py:35
+#: catalogue/models/book.py:69 catalogue/models/bookmedia.py:35
msgid "extra information"
msgstr "додаÑкова ÑнÑоÑмаÑÑÑ"
-#: models/book.py:72
+#: catalogue/models/book.py:72
msgid "print on demand"
msgstr ""
-#: models/book.py:73
+#: catalogue/models/book.py:73
msgid "recommended"
msgstr ""
-#: models/book.py:74
+#: catalogue/models/book.py:74
msgid "audio length"
msgstr ""
-#: models/book.py:75
+#: catalogue/models/book.py:75
msgid "preview"
msgstr ""
-#: models/book.py:76
+#: catalogue/models/book.py:76
msgid "preview until"
msgstr ""
-#: models/book.py:78
+#: catalogue/models/book.py:78
msgid "findable"
msgstr ""
-#: models/book.py:82
+#: catalogue/models/book.py:82
msgid "cover"
msgstr "обкладинка"
-#: models/book.py:89
+#: catalogue/models/book.py:89
msgid "cover thumbnail"
msgstr ""
-#: models/book.py:95
+#: catalogue/models/book.py:95
msgid "cover thumbnail for mobile app"
msgstr ""
-#: models/book.py:101
+#: catalogue/models/book.py:101
msgid "cover for mobile app"
msgstr ""
-#: models/book.py:107
+#: catalogue/models/book.py:107
msgid "cover for Ebookpoint"
msgstr ""
-#: models/book.py:136 models/collection.py:19
+#: catalogue/models/book.py:136 catalogue/models/collection.py:19
msgid "book"
msgstr "книжка"
-#: models/book.py:137
+#: catalogue/models/book.py:137
msgid "books"
msgstr "книжки"
-#: models/book.py:538
+#: catalogue/models/book.py:538
#, python-format
msgid "Book \"%s\" does not exist."
msgstr "Ðнижка \"%s\" не ÑÑнÑÑ."
-#: models/book.py:554
+#: catalogue/models/book.py:554
#, python-format
msgid "Book %s already exists"
msgstr "Ðнижка %s вже ÑÑнÑÑ"
-#: models/book.py:813
+#: catalogue/models/book.py:813
msgid "This work needs modernisation"
msgstr ""
-#: models/book.py:892 models/bookmedia.py:27
+#: catalogue/models/book.py:892 catalogue/models/bookmedia.py:27
#, python-format
msgid "%s file"
msgstr "Ñайл %s"
-#: models/bookmedia.py:29
+#: catalogue/models/bookmedia.py:29
msgid "type"
msgstr "Ñип"
-#: models/bookmedia.py:30 models/source.py:11 models/tag.py:56
+#: catalogue/models/bookmedia.py:30 catalogue/models/source.py:11
+#: catalogue/models/tag.py:56
msgid "name"
msgstr "назва"
-#: models/bookmedia.py:31
+#: catalogue/models/bookmedia.py:31
#, fuzzy
#| msgid "name"
msgid "part name"
msgstr "назва"
-#: models/bookmedia.py:32
+#: catalogue/models/bookmedia.py:32
msgid "index"
msgstr ""
-#: models/bookmedia.py:33
+#: catalogue/models/bookmedia.py:33
msgid "file"
msgstr "Ñайл"
-#: models/bookmedia.py:44 models/bookmedia.py:45
+#: catalogue/models/bookmedia.py:44 catalogue/models/bookmedia.py:45
msgid "book media"
msgstr "book media"
-#: models/collection.py:17
+#: catalogue/models/collection.py:17
msgid "book slugs"
msgstr "slugs книжок"
-#: models/collection.py:18 models/tag.py:23
+#: catalogue/models/collection.py:18 catalogue/models/tag.py:23
msgid "kind"
msgstr "ÑÑд"
-#: models/collection.py:19
+#: catalogue/models/collection.py:19
msgid "picture"
msgstr ""
-#: models/collection.py:23
+#: catalogue/models/collection.py:23
msgid "collection"
msgstr "колекÑÑÑ"
-#: models/collection.py:24
+#: catalogue/models/collection.py:24
msgid "collections"
msgstr "колекÑÑÑ"
-#: models/fragment.py:28
+#: catalogue/models/fragment.py:28
msgid "fragment"
msgstr "ÑÑагменÑ"
-#: models/fragment.py:29
+#: catalogue/models/fragment.py:29
msgid "fragments"
msgstr "ÑÑагменÑи"
-#: models/source.py:10
+#: catalogue/models/source.py:10
#, fuzzy
#| msgid "extra information"
msgid "network location"
msgstr "додаÑкова ÑнÑоÑмаÑÑÑ"
-#: models/source.py:15
+#: catalogue/models/source.py:15
#, fuzzy
#| msgid "Source"
msgid "source"
msgstr "ÐжеÑело"
-#: models/source.py:16
+#: catalogue/models/source.py:16
#, fuzzy
#| msgid "Source"
msgid "sources"
msgstr "ÐжеÑело"
-#: models/tag.py:21
+#: catalogue/models/tag.py:21
msgid "author"
msgstr "авÑоÑ"
-#: models/tag.py:22
+#: catalogue/models/tag.py:22
msgid "epoch"
msgstr "епоÑ
а"
-#: models/tag.py:24
+#: catalogue/models/tag.py:24
msgid "genre"
msgstr "жанÑ"
-#: models/tag.py:25
+#: catalogue/models/tag.py:25
msgid "theme"
msgstr "Ñема"
-#: models/tag.py:26
+#: catalogue/models/tag.py:26
msgid "set"
msgstr "вибÑÑ"
-#: models/tag.py:27
+#: catalogue/models/tag.py:27
msgid "thing"
msgstr ""
-#: models/tag.py:33 models/tag.py:97
+#: catalogue/models/tag.py:33 catalogue/models/tag.py:97
msgid "tag"
msgstr "ÑеÒ"
-#: models/tag.py:34
+#: catalogue/models/tag.py:34
msgid "content type"
msgstr "Ñип змÑÑÑÑ"
-#: models/tag.py:35
+#: catalogue/models/tag.py:35
msgid "object id"
msgstr "ÐРоб'ÑкÑÑ"
-#: models/tag.py:60
+#: catalogue/models/tag.py:60
msgid "category"
msgstr "каÑегоÑÑÑ"
-#: models/tag.py:98
+#: catalogue/models/tag.py:98
msgid "tags"
msgstr "ÑеÒи"
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/book_text.html:25
+#: catalogue/templates/catalogue/book_detail.html:24
+#: catalogue/templates/catalogue/book_text.html:25
#, fuzzy
#| msgid "Other resources"
msgid "Other versions"
msgstr "ÐнÑÑ ÑеÑÑÑÑи"
-#: templates/catalogue/book_detail.html:34
+#: catalogue/templates/catalogue/book_detail.html:34
msgid "See also"
msgstr "ÐивÑÑÑÑÑ Ñакож"
-#: templates/catalogue/book_detail.html:41
-#: templates/catalogue/book_text.html:38
-#: templates/catalogue/tagged_object_list.html:20
+#: catalogue/templates/catalogue/book_detail.html:41
+#: catalogue/templates/catalogue/book_text.html:38
+#: catalogue/templates/catalogue/tagged_object_list.html:20
msgid "Themes"
msgstr "Теми"
-#: templates/catalogue/book_detail.html:47
+#: catalogue/templates/catalogue/book_detail.html:47
msgid "Information about the work"
msgstr ""
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "Source"
msgstr "ÐжеÑело"
-#: templates/catalogue/book_detail.html:62
-#: templates/catalogue/book_detail.html:68
+#: catalogue/templates/catalogue/book_detail.html:62
+#: catalogue/templates/catalogue/book_detail.html:68
msgid "of the book"
msgstr "книжки"
-#: templates/catalogue/book_detail.html:63
-#: templates/catalogue/book_detail.html:69
+#: catalogue/templates/catalogue/book_detail.html:63
+#: catalogue/templates/catalogue/book_detail.html:69
#, fuzzy
#| msgid "kind"
msgid "in"
msgstr "ÑÑд"
-#: templates/catalogue/book_detail.html:74
+#: catalogue/templates/catalogue/book_detail.html:74
msgid "Source XML file"
msgstr "Файл джеÑела XML"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Book on"
msgstr "Ðнижка на"
-#: templates/catalogue/book_detail.html:78
+#: catalogue/templates/catalogue/book_detail.html:78
msgid "Editor's Platform"
msgstr "ÐлаÑÑоÑма ÑедагÑваннÑ"
-#: templates/catalogue/book_detail.html:83
+#: catalogue/templates/catalogue/book_detail.html:83
msgid "Book description on Wikipedia"
msgstr "ÐÐ¿Ð¸Ñ ÐºÐ½Ð¸Ð¶ÐºÐ¸ на ÐÑкÑпедÑÑ"
-#: templates/catalogue/book_detail.html:87
+#: catalogue/templates/catalogue/book_detail.html:87
msgid "Mix this book"
msgstr "ÐÑкÑÑваÑи ÑÑ ÐºÐ½Ð¸Ð¶ÐºÑ"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:12
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:12
msgid "Theme"
msgstr "Тема"
-#: templates/catalogue/book_fragments.html:6
-#: templates/catalogue/book_fragments.html:14
+#: catalogue/templates/catalogue/book_fragments.html:6
+#: catalogue/templates/catalogue/book_fragments.html:14
msgid "in work "
msgstr "Ñ ÑвоÑÑ"
-#: templates/catalogue/book_info.html:7
+#: catalogue/templates/catalogue/book_info.html:7
msgid "This work is licensed under:"
msgstr "Цей ÑвÑÑ Ñ Ð´Ð¾ÑÑÑпним на лÑÑензÑÑ:"
-#: templates/catalogue/book_info.html:10
+#: catalogue/templates/catalogue/book_info.html:10
#, fuzzy
#| msgid ""
#| "This work isn't covered by copyright and is part of the\n"
@@ -507,74 +511,75 @@ msgstr ""
"Commons Ðз зазнаÑеннÑм ÑÐ¼ÐµÐ½Ñ Ð°Ð²ÑоÑа â Ðа ÑиÑ
же ÑмоваÑ
3.0\n"
" ."
-#: templates/catalogue/book_info.html:21
+#: catalogue/templates/catalogue/book_info.html:21
#, fuzzy
msgid "Resource prepared based on:"
msgstr "ТекÑÑ Ð¿ÑдгоÑовлено на оÑновÑ"
-#: templates/catalogue/book_info.html:31
+#: catalogue/templates/catalogue/book_info.html:31
msgid "Edited by:"
msgstr ""
-#: templates/catalogue/book_info.html:33
+#: catalogue/templates/catalogue/book_info.html:33
msgid "Edited and annotated by:"
msgstr "РедагÑÐ²Ð°Ð½Ð½Ñ Ñа пÑимÑÑки:"
-#: templates/catalogue/book_info.html:41
+#: catalogue/templates/catalogue/book_info.html:41
msgid "Publisher:"
msgstr ""
-#: templates/catalogue/book_info.html:48
+#: catalogue/templates/catalogue/book_info.html:48
msgid "Publication funded by:"
msgstr ""
-#: templates/catalogue/book_info.html:55
+#: catalogue/templates/catalogue/book_info.html:55
msgid "Cover image by:"
msgstr ""
-#: templates/catalogue/book_list.html:8 templates/catalogue/book_list.html:12
-#: templates/catalogue/picture_list.html:8
-#: templates/catalogue/picture_list.html:10
+#: catalogue/templates/catalogue/book_list.html:8
+#: catalogue/templates/catalogue/book_list.html:12
+#: catalogue/templates/catalogue/picture_list.html:8
+#: catalogue/templates/catalogue/picture_list.html:10
msgid "Listing of all works"
msgstr "СпиÑок ÑÑÑÑ
ÑвоÑÑв"
-#: templates/catalogue/book_list.html:25
+#: catalogue/templates/catalogue/book_list.html:25
msgid "Table of Content"
msgstr "ÐмÑÑÑ"
-#: templates/catalogue/book_list.html:35
+#: catalogue/templates/catalogue/book_list.html:35
msgid "â top â"
msgstr "â вгоÑÑ â"
-#: templates/catalogue/book_short.html:53
-#: templates/catalogue/picture_detail.html:52
+#: catalogue/templates/catalogue/book_short.html:53
+#: catalogue/templates/catalogue/picture_detail.html:52
msgid "Epoch"
msgstr "ÐпоÑ
а"
-#: templates/catalogue/book_short.html:61
-#: templates/catalogue/picture_detail.html:58
+#: catalogue/templates/catalogue/book_short.html:61
+#: catalogue/templates/catalogue/picture_detail.html:58
msgid "Kind"
msgstr "Ð Ñд"
-#: templates/catalogue/book_short.html:69
+#: catalogue/templates/catalogue/book_short.html:69
msgid "Genre"
msgstr "ÐанÑ"
-#: templates/catalogue/book_short.html:79
+#: catalogue/templates/catalogue/book_short.html:79
msgid "Region"
msgstr ""
-#: templates/catalogue/book_short.html:87
+#: catalogue/templates/catalogue/book_short.html:87
#, fuzzy
#| msgid "language code"
msgid "Language"
msgstr "мовний код"
-#: templates/catalogue/book_short.html:111
+#: catalogue/templates/catalogue/book_short.html:111
msgid "Read online"
msgstr "ЧиÑаÑи онлайн"
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid ""
"Cena ksiÄ
żki w druku cyfrowym jest zależna od liczby stron. Przed zakupem "
"upewnij siÄ, że cena druku na żÄ
danie jest dla Ciebie odpowiednia."
@@ -582,218 +587,222 @@ msgid ""
"bezpÅatnie."
msgstr ""
-#: templates/catalogue/book_short.html:114
+#: catalogue/templates/catalogue/book_short.html:114
msgid "Print on demand â"
msgstr ""
-#: templates/catalogue/book_short.html:119
-#: templates/catalogue/custom_pdf_form.html:18 views.py:401
+#: catalogue/templates/catalogue/book_short.html:119
+#: catalogue/templates/catalogue/custom_pdf_form.html:18 catalogue/views.py:401
msgid "Download"
msgstr "ÐаванÑажиÑи"
-#: templates/catalogue/book_short.html:133
+#: catalogue/templates/catalogue/book_short.html:133
msgid "more"
msgstr ""
-#: templates/catalogue/book_short.html:144
+#: catalogue/templates/catalogue/book_short.html:144
msgid "less"
msgstr ""
-#: templates/catalogue/book_short.html:150
+#: catalogue/templates/catalogue/book_short.html:150
msgid "For now this work is only available for our subscribers."
msgstr ""
-#: templates/catalogue/book_text.html:32
+#: catalogue/templates/catalogue/book_text.html:32
msgid "Table of contents"
msgstr "ÐмÑÑÑ"
-#: templates/catalogue/book_text.html:44 templates/catalogue/book_text.html:144
+#: catalogue/templates/catalogue/book_text.html:44
+#: catalogue/templates/catalogue/book_text.html:144
msgid "Settings"
msgstr ""
-#: templates/catalogue/book_text.html:50
+#: catalogue/templates/catalogue/book_text.html:50
msgid "Edit. note"
msgstr "РедакÑоÑÑÑкий коменÑаÑ"
-#: templates/catalogue/book_text.html:56
+#: catalogue/templates/catalogue/book_text.html:56
msgid "Infobox"
msgstr "ÐнÑобокÑ"
-#: templates/catalogue/book_text.html:80
-#: templates/catalogue/viewer_base.html:54
+#: catalogue/templates/catalogue/book_text.html:80
+#: catalogue/templates/catalogue/viewer_base.html:54
msgid "Close"
msgstr ""
-#: templates/catalogue/book_text.html:81
+#: catalogue/templates/catalogue/book_text.html:81
msgid "Please wait..."
msgstr ""
-#: templates/catalogue/book_text.html:125
+#: catalogue/templates/catalogue/book_text.html:125
msgid "Other versions of the book"
msgstr ""
-#: templates/catalogue/book_text.html:126
+#: catalogue/templates/catalogue/book_text.html:126
msgid "Close the other version"
msgstr ""
-#: templates/catalogue/book_text.html:146
+#: catalogue/templates/catalogue/book_text.html:146
#, fuzzy
#| msgid "parent number"
msgid "Display line numbers"
msgstr "Ð½Ð¾Ð¼ÐµÑ Ð±Ð°ÑÑка"
-#: templates/catalogue/book_text.html:148
+#: catalogue/templates/catalogue/book_text.html:148
#, fuzzy
#| msgid "Don't disply themes"
msgid "Display themes"
msgstr "СÑ
оваÑи Ñеми"
-#: templates/catalogue/book_text.html:150
+#: catalogue/templates/catalogue/book_text.html:150
#, fuzzy
#| msgid "Don't show footnotes"
msgid "Display footnotes"
msgstr "СÑ
оваÑи пÑимÑÑки"
-#: templates/catalogue/catalogue.html:6
+#: catalogue/templates/catalogue/catalogue.html:6
msgid "Catalogue"
msgstr "ÐаÑалог"
-#: templates/catalogue/catalogue.html:11
-#: templates/catalogue/tagged_object_list.html:57
+#: catalogue/templates/catalogue/catalogue.html:11
+#: catalogue/templates/catalogue/tagged_object_list.html:57
#, fuzzy
#| msgid "All books"
msgid "All works"
msgstr "УÑÑ ÐºÐ½Ð¸Ð¶ÐºÐ¸"
-#: templates/catalogue/catalogue.html:15
+#: catalogue/templates/catalogue/catalogue.html:15
msgid "Download the catalogue in PDF format."
msgstr "ÐаванÑажиÑи каÑалог Ñ ÑоÑмаÑÑ PDF"
-#: templates/catalogue/catalogue.html:19
-#: templates/catalogue/tag_list_split.html:4
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:19
+#: catalogue/templates/catalogue/tag_list_split.html:4
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Literature"
msgstr ""
-#: templates/catalogue/catalogue.html:22 templates/catalogue/collections.html:5
-#: templates/catalogue/collections.html:10
+#: catalogue/templates/catalogue/catalogue.html:22
+#: catalogue/templates/catalogue/collections.html:5
+#: catalogue/templates/catalogue/collections.html:10
#, fuzzy
msgid "Collections"
msgstr "колекÑÑÑ"
-#: templates/catalogue/catalogue.html:25
-#: templates/catalogue/search_multiple_hits.html:45
-#: templates/catalogue/tag_list_split.html:9
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/catalogue.html:25
+#: catalogue/templates/catalogue/search_multiple_hits.html:45
+#: catalogue/templates/catalogue/tag_list_split.html:9
+#: catalogue/templates/catalogue/tagged_object_list.html:5
#, fuzzy
#| msgid "Artist"
msgid "Art"
msgstr "Ð¥Ñдожник"
-#: templates/catalogue/collection_box.html:4
+#: catalogue/templates/catalogue/collection_box.html:4
#, fuzzy
msgid "Collection"
msgstr "колекÑÑÑ"
-#: templates/catalogue/collection_box.html:14
+#: catalogue/templates/catalogue/collection_box.html:14
#, python-format
msgid "and one more"
msgid_plural "and %(c)s more"
msgstr[0] ""
msgstr[1] ""
-#: templates/catalogue/collections.html:16
+#: catalogue/templates/catalogue/collections.html:16
#, fuzzy
#| msgid "collections"
msgid "All collections"
msgstr "колекÑÑÑ"
-#: templates/catalogue/custom_pdf_form.html:5 views.py:400
+#: catalogue/templates/catalogue/custom_pdf_form.html:5 catalogue/views.py:400
msgid "Download custom PDF"
msgstr "ÐаванÑажиÑи наÑÑÑоÑваний PDF"
-#: templates/catalogue/daisy_list.html:7 templates/catalogue/daisy_list.html:15
+#: catalogue/templates/catalogue/daisy_list.html:7
+#: catalogue/templates/catalogue/daisy_list.html:15
msgid "Listing of all DAISY files"
msgstr "СпиÑок ÑÑÑÑ
ÑайлÑв DAISY"
-#: templates/catalogue/daisy_list.html:11
+#: catalogue/templates/catalogue/daisy_list.html:11
msgid "Latest DAISY audiobooks"
msgstr "ÐÑÑÐ°Ð½Ð½Ñ Ð°ÑдÑокниги DAISY"
-#: templates/catalogue/differentiate_tags.html:12
+#: catalogue/templates/catalogue/differentiate_tags.html:12
msgid "The criteria are ambiguous. Please select one of the following options:"
msgstr "ÐÑиÑеÑÑÑ Ð½ÐµÐ¾Ð´Ð½Ð¾Ð·Ð½Ð°ÑнÑ. ÐибеÑÑÑÑ Ð¾Ð´Ð¸Ð½ з ваÑÑанÑÑв нижÑе:"
-#: templates/catalogue/fragment_short.html:12
+#: catalogue/templates/catalogue/fragment_short.html:12
msgid "Expand fragment"
msgstr "РозвинÑÑи ÑÑагменÑ"
-#: templates/catalogue/fragment_short.html:22
+#: catalogue/templates/catalogue/fragment_short.html:22
msgid "Hide fragment"
msgstr "СÑ
оваÑи ÑÑагменÑ"
-#: templates/catalogue/inline_tag_list.html:22
+#: catalogue/templates/catalogue/inline_tag_list.html:22
msgid "Other"
msgstr ""
-#: templates/catalogue/picture_detail.html:29
+#: catalogue/templates/catalogue/picture_detail.html:29
msgid "Work is licensed under "
msgstr "ТвÑÑ Ð½Ð° лÑÑензÑÑ"
-#: templates/catalogue/picture_detail.html:31
+#: catalogue/templates/catalogue/picture_detail.html:31
msgid "Based on"
msgstr "Ðа оÑновÑ"
-#: templates/catalogue/picture_detail.html:43
+#: catalogue/templates/catalogue/picture_detail.html:43
msgid "Details"
msgstr "ÐеÑалÑ"
-#: templates/catalogue/picture_detail.html:46
+#: catalogue/templates/catalogue/picture_detail.html:46
msgid "Author"
msgstr "ÐвÑоÑ"
-#: templates/catalogue/picture_detail.html:64
+#: catalogue/templates/catalogue/picture_detail.html:64
msgid "Other resources"
msgstr "ÐнÑÑ ÑеÑÑÑÑи"
-#: templates/catalogue/picture_detail.html:67
+#: catalogue/templates/catalogue/picture_detail.html:67
msgid "Source of the image"
msgstr "ÐжеÑело гÑаÑÑки"
-#: templates/catalogue/picture_detail.html:70
+#: catalogue/templates/catalogue/picture_detail.html:70
msgid "Image on the Editor's Platform"
msgstr "ÐÑаÑÑка на ÑедакÑоÑÑÑкÑй плаÑÑоÑмÑ"
-#: templates/catalogue/picture_detail.html:73
+#: catalogue/templates/catalogue/picture_detail.html:73
msgid "View XML source"
msgstr "ÐивиÑиÑÑ Ð´Ð¶ÐµÑело XML"
-#: templates/catalogue/picture_detail.html:76
+#: catalogue/templates/catalogue/picture_detail.html:76
msgid "Work's themes "
msgstr "Теми Ñ ÑвоÑÑ"
-#: templates/catalogue/player.html:12 templates/catalogue/viewer_base.html:11
+#: catalogue/templates/catalogue/player.html:12
+#: catalogue/templates/catalogue/viewer_base.html:11
msgid "Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/player.html:29
+#: catalogue/templates/catalogue/player.html:29
msgid "Book's page"
msgstr "СÑоÑÑнка книжки"
-#: templates/catalogue/player.html:30
+#: catalogue/templates/catalogue/player.html:30
msgid "Download as"
msgstr "ÐаванÑажиÑи Ñк"
-#: templates/catalogue/player.html:46
+#: catalogue/templates/catalogue/player.html:46
msgid "Audiobooks were prepared as a part of the projects:"
msgstr "ÐÑдÑокниги вигоÑовлено в ÑамкаÑ
пÑоекÑÑв:"
-#: templates/catalogue/player.html:51
+#: catalogue/templates/catalogue/player.html:51
#, python-format
msgid "%(cs)s, funded by %(fb)s"
msgstr "%(cs)s, ÑÑнанÑованого Ñз коÑÑÑв %(fb)s"
-#: templates/catalogue/player.html:62
+#: catalogue/templates/catalogue/player.html:62
#, fuzzy, python-format
#| msgid ""
#| "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s."
@@ -804,174 +813,174 @@ msgstr ""
"ÐÑдÑокниги вигоÑовлено в ÑамкаÑ
пÑоекÑÑ %(cs)s, ÑÑнанÑованого Ñз коÑÑÑв "
"%(fb)s."
-#: templates/catalogue/player.html:64
+#: catalogue/templates/catalogue/player.html:64
#, fuzzy, python-format
#| msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgid "Audiobooks were prepared as a part of the %(cs)s project."
msgstr "ÐÑдÑокниги вигоÑовлено в ÑамкаÑ
пÑоекÑÑ %(cs)s."
-#: templates/catalogue/recent_audiobooks_list.html:5
-#: templates/catalogue/recent_audiobooks_list.html:10
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:5
+#: catalogue/templates/catalogue/recent_audiobooks_list.html:10
#, fuzzy
msgid "Recent audiobooks"
msgstr "ÐÑÑÐ°Ð½Ð½Ñ Ð°ÑдÑокниги MP3"
-#: templates/catalogue/recent_daisy_list.html:5
-#: templates/catalogue/recent_daisy_list.html:10
+#: catalogue/templates/catalogue/recent_daisy_list.html:5
+#: catalogue/templates/catalogue/recent_daisy_list.html:10
msgid "Recent DAISY files"
msgstr ""
-#: templates/catalogue/recent_list.html:5
-#: templates/catalogue/recent_list.html:10
+#: catalogue/templates/catalogue/recent_list.html:5
+#: catalogue/templates/catalogue/recent_list.html:10
#, fuzzy
msgid "Recent publications"
msgstr "вÑ
одиÑÑ Ñ ÑÑÑпÑлÑне надбаннÑ"
-#: templates/catalogue/recent_list.html:15
+#: catalogue/templates/catalogue/recent_list.html:15
#, python-format
msgid ""
"You can also see recent audiobooks \n"
" and recent DAISY files ."
msgstr ""
-#: templates/catalogue/search_multiple_hits.html:7
-#: templates/catalogue/search_no_hits.html:5
-#: templates/catalogue/search_no_hits.html:10
-#: templates/catalogue/search_too_long.html:5
-#: templates/catalogue/search_too_long.html:10
-#: templates/catalogue/search_too_short.html:5
-#: templates/catalogue/search_too_short.html:10
+#: catalogue/templates/catalogue/search_multiple_hits.html:7
+#: catalogue/templates/catalogue/search_no_hits.html:5
+#: catalogue/templates/catalogue/search_no_hits.html:10
+#: catalogue/templates/catalogue/search_too_long.html:5
+#: catalogue/templates/catalogue/search_too_long.html:10
+#: catalogue/templates/catalogue/search_too_short.html:5
+#: catalogue/templates/catalogue/search_too_short.html:10
msgid "Search"
msgstr "ÐоÑÑк"
-#: templates/catalogue/search_multiple_hits.html:13
-#: templates/catalogue/search_no_hits.html:16
+#: catalogue/templates/catalogue/search_multiple_hits.html:13
+#: catalogue/templates/catalogue/search_no_hits.html:16
msgid "Did you mean"
msgstr "Ðи мали на ÑвазÑ"
-#: templates/catalogue/search_multiple_hits.html:32
+#: catalogue/templates/catalogue/search_multiple_hits.html:32
#, fuzzy
#| msgid "books"
msgid "Books"
msgstr "книжки"
-#: templates/catalogue/search_no_hits.html:20
-#: templates/catalogue/tagged_object_list.html:66
+#: catalogue/templates/catalogue/search_no_hits.html:20
+#: catalogue/templates/catalogue/tagged_object_list.html:66
msgid "Sorry! Search cirteria did not match any resources."
msgstr "Ðа жалÑ, ÐаÑÑ ÐºÑиÑеÑÑÑ Ð¿Ð¾ÑÑÐºÑ Ð½Ðµ вÑдповÑдаÑÑÑ Ð¶Ð¾Ð´Ð½Ð¸Ð¼ ÑезÑлÑÑаÑам."
-#: templates/catalogue/search_too_long.html:13
+#: catalogue/templates/catalogue/search_too_long.html:13
#, fuzzy
#| msgid "Sorry! Search query must have at least two characters."
msgid "Sorry! Search query is too long to be processed."
msgstr "Ðа жалÑ, Ð´Ð»Ñ Ð¿Ð¾ÑÑÐºÑ Ð¿Ð¾ÑÑÑбно ввеÑÑи ÑонайменÑе два знаки."
-#: templates/catalogue/search_too_short.html:13
+#: catalogue/templates/catalogue/search_too_short.html:13
msgid "Sorry! Search query must have at least two characters."
msgstr "Ðа жалÑ, Ð´Ð»Ñ Ð¿Ð¾ÑÑÐºÑ Ð¿Ð¾ÑÑÑбно ввеÑÑи ÑонайменÑе два знаки."
-#: templates/catalogue/snippets/custom_pdf_link_li.html:3
+#: catalogue/templates/catalogue/snippets/custom_pdf_link_li.html:3
msgid "Download a custom PDF"
msgstr "ÐаванÑажиÑи наÑÑÑоÑваний PDF"
-#: templates/catalogue/snippets/jplayer.html:36
+#: catalogue/templates/catalogue/snippets/jplayer.html:36
#, fuzzy
#| msgid "Artist"
msgid "Artist:"
msgstr "Ð¥Ñдожник"
-#: templates/catalogue/snippets/jplayer.html:37
+#: catalogue/templates/catalogue/snippets/jplayer.html:37
#, fuzzy
#| msgid "Director"
msgid "director:"
msgstr "РежиÑеÑ"
-#: templates/catalogue/snippets/jplayer.html:61
+#: catalogue/templates/catalogue/snippets/jplayer.html:61
msgid "previous"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:62
+#: catalogue/templates/catalogue/snippets/jplayer.html:62
msgid "Part"
msgstr ""
-#: templates/catalogue/snippets/jplayer.html:63
+#: catalogue/templates/catalogue/snippets/jplayer.html:63
msgid "next"
msgstr ""
-#: templates/catalogue/snippets/license_icon.html:6
-#: templates/catalogue/snippets/license_icon.html:7
+#: catalogue/templates/catalogue/snippets/license_icon.html:6
+#: catalogue/templates/catalogue/snippets/license_icon.html:7
msgid "Free license"
msgstr ""
-#: templates/catalogue/tag_catalogue.html:11
+#: catalogue/templates/catalogue/tag_catalogue.html:11
#, fuzzy
#| msgid "Wolne Lektury"
msgid "on Wolne Lektury"
msgstr "Wolne Lektury"
-#: templates/catalogue/tag_list.html:7
+#: catalogue/templates/catalogue/tag_list.html:7
msgid "See full category"
msgstr "ÐивиÑиÑÑ Ð¿Ð¾Ð²Ð½Ñ ÐºÐ°ÑегоÑÑÑ"
-#: templates/catalogue/tagged_object_list.html:5
+#: catalogue/templates/catalogue/tagged_object_list.html:5
msgid "Audiobooks"
msgstr "ÐÑдÑокниги"
-#: templates/catalogue/tagged_object_list.html:15
+#: catalogue/templates/catalogue/tagged_object_list.html:15
msgid "Authors"
msgstr "ÐвÑоÑи"
-#: templates/catalogue/tagged_object_list.html:16
+#: catalogue/templates/catalogue/tagged_object_list.html:16
msgid "Epochs"
msgstr "ÐпоÑ
и"
-#: templates/catalogue/tagged_object_list.html:17
+#: catalogue/templates/catalogue/tagged_object_list.html:17
msgid "Genres"
msgstr "ÐанÑи"
-#: templates/catalogue/tagged_object_list.html:18
+#: catalogue/templates/catalogue/tagged_object_list.html:18
msgid "Kinds"
msgstr "Роди"
-#: templates/catalogue/tagged_object_list.html:52
+#: catalogue/templates/catalogue/tagged_object_list.html:52
msgid "All matching works"
msgstr ""
-#: templates/catalogue/tagged_object_list.html:55
+#: catalogue/templates/catalogue/tagged_object_list.html:55
msgid "Listing of all audiobooks"
msgstr "СпиÑок ÑÑÑÑ
аÑдÑокниг"
-#: templates/catalogue/tagged_object_list.html:62
+#: catalogue/templates/catalogue/tagged_object_list.html:62
#, fuzzy
#| msgid "PDF file"
msgid "DAISY files"
msgstr "Ñайл PDF"
-#: templates/catalogue/tagged_object_list.html:72
+#: catalogue/templates/catalogue/tagged_object_list.html:72
msgid "Motifs and themes"
msgstr "ÐоÑиви Ñа Ñеми"
-#: templates/catalogue/tagged_object_list.html:84
+#: catalogue/templates/catalogue/tagged_object_list.html:84
#, fuzzy
#| msgid "description"
msgid "No description."
msgstr "опиÑ"
-#: templates/catalogue/tagged_object_list.html:91
+#: catalogue/templates/catalogue/tagged_object_list.html:91
msgid "in Wikipedia"
msgstr "на ÐÑкÑпедÑÑ"
-#: templates/catalogue/tagged_object_list.html:97
+#: catalogue/templates/catalogue/tagged_object_list.html:97
msgid "in Culture.pl"
msgstr ""
-#: templates/catalogue/viewer_base.html:56
+#: catalogue/templates/catalogue/viewer_base.html:56
#, fuzzy
#| msgid "Leading"
msgid "Loading"
msgstr "Leading"
-#: views.py:351
+#: catalogue/views.py:351
#, python-format
msgid ""
"An error occurred: %(exception)s\n"
@@ -982,11 +991,11 @@ msgstr ""
"\n"
"%(tb)s"
-#: views.py:356
+#: catalogue/views.py:356
msgid "Book imported successfully"
msgstr "ÐÐ½Ð¸Ð¶ÐºÑ ÑÑпÑÑно заванÑажено"
-#: views.py:357
+#: catalogue/views.py:357
#, python-format
msgid "Error importing file: %r"
msgstr "Ðомилка в заванÑÐ°Ð¶ÐµÐ½Ð½Ñ Ñайла: %r"
diff --git a/src/chunks/locale/de/LC_MESSAGES/django.po b/src/chunks/locale/de/LC_MESSAGES/django.po
index 0cd4f4d70..f1913e2aa 100644
--- a/src/chunks/locale/de/LC_MESSAGES/django.po
+++ b/src/chunks/locale/de/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-04-11 22:56+0100\n"
"Last-Translator: Kamil \n"
"Language-Team: \n"
@@ -16,39 +16,39 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "Schlüssel"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "Die einzigartige Bezeichnung für dieses Chunk von Inhalten"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "Beschreibung"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "Inhalt"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "Chunk"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "Chunks"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "Die einzigartige Bezeichnung für diese Beilage"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "Beilage"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "Beilagen"
diff --git a/src/chunks/locale/en/LC_MESSAGES/django.po b/src/chunks/locale/en/LC_MESSAGES/django.po
index 0226cb4f2..ead8e2769 100644
--- a/src/chunks/locale/en/LC_MESSAGES/django.po
+++ b/src/chunks/locale/en/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-03-04 20:05+0100\n"
"Last-Translator: xxx \n"
"Language-Team: LANGUAGE \n"
@@ -16,38 +16,38 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "key"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "A unique name for this piece of content"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "description"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "content"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "piece"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "pieces"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "A unique name for this attachment"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "attachment"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "attachments"
diff --git a/src/chunks/locale/es/LC_MESSAGES/django.po b/src/chunks/locale/es/LC_MESSAGES/django.po
index 3607ab482..c34d76d5e 100644
--- a/src/chunks/locale/es/LC_MESSAGES/django.po
+++ b/src/chunks/locale/es/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-02-18 13:02+0100\n"
"Last-Translator: Anna Jopp \n"
"Language-Team: LANGUAGE \n"
@@ -16,38 +16,38 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "clave"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "El nombre único para este elemento del contenido"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "descripción"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "contenido"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "elemento"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "elementos"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "El nombre único para este archivo adjunto"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "archivo adjunto"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "archivos adjuntos"
diff --git a/src/chunks/locale/fr/LC_MESSAGES/django.po b/src/chunks/locale/fr/LC_MESSAGES/django.po
index 711959cbf..083eba8bf 100644
--- a/src/chunks/locale/fr/LC_MESSAGES/django.po
+++ b/src/chunks/locale/fr/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-02-22 20:52+0100\n"
"Last-Translator: Ela Janota \n"
"Language-Team: LANGUAGE \n"
@@ -16,38 +16,38 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "clé"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "Un nom unique pour ce fragment du contenu"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "description"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "contenu"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "fragment"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "fragments"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "Un nom unique pour cette pièce jointe"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "pièce jointe"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "pièces jointes"
diff --git a/src/chunks/locale/it/LC_MESSAGES/django.po b/src/chunks/locale/it/LC_MESSAGES/django.po
index 53d1e07f3..9f2dcae25 100644
--- a/src/chunks/locale/it/LC_MESSAGES/django.po
+++ b/src/chunks/locale/it/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-02-21 16:52+0100\n"
"Last-Translator: xxx\n"
"Language-Team: LANGUAGE \n"
@@ -17,38 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "Chiave"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "un nome unico per questo allegato"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "descrizione"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "contenuto"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "blocco"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "blocchi"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "Un nome unico per questo allegato"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "allegato"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "allegati"
diff --git a/src/chunks/locale/lt/LC_MESSAGES/django.po b/src/chunks/locale/lt/LC_MESSAGES/django.po
index e649db29d..dde463f60 100644
--- a/src/chunks/locale/lt/LC_MESSAGES/django.po
+++ b/src/chunks/locale/lt/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-03-01 16:13+0100\n"
"Last-Translator: Aneta\n"
"Language-Team: LANGUAGE \n"
@@ -17,38 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.3\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "raktas"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "Unikalus šio turinio gabalo pavadnimas"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "aprašymas"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "turinys"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "gabalas"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "gabalai"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "Unikalus šio priedo pavadnimas"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "priedas"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "priedai"
diff --git a/src/chunks/locale/pl/LC_MESSAGES/django.po b/src/chunks/locale/pl/LC_MESSAGES/django.po
index dcbbc4a47..ec4152916 100644
--- a/src/chunks/locale/pl/LC_MESSAGES/django.po
+++ b/src/chunks/locale/pl/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2010-05-19 16:19\n"
"Last-Translator: \n"
"Language-Team: LANGUAGE \n"
@@ -17,38 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Translated-Using: django-rosetta 0.5.3\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "klucz"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "Unikalna nazwa dla tego kawaÅka treÅci"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "opis"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "zawartoÅÄ"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "kawaÅek"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "kawaÅki"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "Unikalna nazwa dla tego zaÅÄ
cznika"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "zaÅÄ
cznik"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "zaÅÄ
czniki"
diff --git a/src/chunks/locale/ru/LC_MESSAGES/django.po b/src/chunks/locale/ru/LC_MESSAGES/django.po
index 1d44631ff..f02a984d0 100644
--- a/src/chunks/locale/ru/LC_MESSAGES/django.po
+++ b/src/chunks/locale/ru/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-03-04 22:10+0100\n"
"Last-Translator: xxx \n"
"Language-Team: LANGUAGE \n"
@@ -16,38 +16,38 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "клÑÑ"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "УникалÑное Ð¸Ð¼Ñ Ð´Ð»Ñ ÑÑого ÑÑагменÑа ÑодеÑжаниÑ"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "опиÑание"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "ÑодеÑжание"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "ÑÑагменÑ"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "ÑÑагменÑÑ"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "УникалÑное Ð¸Ð¼Ñ Ð´Ð»Ñ ÑÑого пÑиложениÑ"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "пÑиложение"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "пÑиложениÑ"
diff --git a/src/chunks/locale/uk/LC_MESSAGES/django.po b/src/chunks/locale/uk/LC_MESSAGES/django.po
index 5eff76bf2..faa982728 100644
--- a/src/chunks/locale/uk/LC_MESSAGES/django.po
+++ b/src/chunks/locale/uk/LC_MESSAGES/django.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-09-14 12:34+0200\n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
"PO-Revision-Date: 2012-03-04 17:29+0100\n"
"Last-Translator: xxx \n"
"Language-Team: LANGUAGE \n"
@@ -16,38 +16,38 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: models.py:16 models.py:41
+#: chunks/models.py:15 chunks/models.py:36
msgid "key"
msgstr "клÑÑ"
-#: models.py:16
+#: chunks/models.py:15
msgid "A unique name for this chunk of content"
msgstr "УнÑкалÑна назва Ð´Ð»Ñ ÑÑÑÑ ÑаÑÑини змÑÑÑÑ"
-#: models.py:18
+#: chunks/models.py:17
msgid "description"
msgstr "опиÑ"
-#: models.py:19
+#: chunks/models.py:18
msgid "content"
msgstr "змÑÑÑ"
-#: models.py:23
+#: chunks/models.py:22
msgid "chunk"
msgstr "ÑаÑÑина"
-#: models.py:24
+#: chunks/models.py:23
msgid "chunks"
msgstr "ÑаÑÑини"
-#: models.py:41
+#: chunks/models.py:36
msgid "A unique name for this attachment"
msgstr "УнÑкалÑна назва Ð´Ð»Ñ ÑÑого додаÑкÑ"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachment"
msgstr "додаÑок"
-#: models.py:46
+#: chunks/models.py:41
msgid "attachments"
msgstr "додаÑки"
diff --git a/src/club/apps.py b/src/club/apps.py
index 84813598a..44a257ce0 100644
--- a/src/club/apps.py
+++ b/src/club/apps.py
@@ -2,7 +2,9 @@
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
from django.apps import AppConfig
+from django.utils.translation import ugettext_lazy as _
+
class ClubConfig(AppConfig):
name = 'club'
- verbose_name = 'Towarzystwo'
+ verbose_name = _('Club')
diff --git a/src/club/forms.py b/src/club/forms.py
index d0568c023..ed18e2240 100644
--- a/src/club/forms.py
+++ b/src/club/forms.py
@@ -3,6 +3,7 @@
#
from decimal import Decimal
from django import forms
+from django.utils.translation import ugettext as _
from newsletter.forms import NewsletterForm
from . import models
from .payu.forms import CardTokenForm
@@ -21,7 +22,11 @@ class ScheduleForm(forms.ModelForm, NewsletterForm):
value = self.cleaned_data['amount']
club = models.Club.objects.first()
if club and value < club.min_amount:
- raise forms.ValidationError('Minimalna kwota to %d zÅ.' % club.min_amount)
+ raise forms.ValidationError(
+ _('Minimal amount is %(amount)d PLN.') % {
+ 'amount': club.min_amount
+ }
+ )
return value
def save(self, *args, **kwargs):
diff --git a/src/club/locale/de/LC_MESSAGES/django.po b/src/club/locale/de/LC_MESSAGES/django.po
new file mode 100644
index 000000000..56d2927af
--- /dev/null
+++ b/src/club/locale/de/LC_MESSAGES/django.po
@@ -0,0 +1,370 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/en/LC_MESSAGES/django.po b/src/club/locale/en/LC_MESSAGES/django.po
new file mode 100644
index 000000000..56d2927af
--- /dev/null
+++ b/src/club/locale/en/LC_MESSAGES/django.po
@@ -0,0 +1,370 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/es/LC_MESSAGES/django.po b/src/club/locale/es/LC_MESSAGES/django.po
new file mode 100644
index 000000000..56d2927af
--- /dev/null
+++ b/src/club/locale/es/LC_MESSAGES/django.po
@@ -0,0 +1,370 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/fr/LC_MESSAGES/django.po b/src/club/locale/fr/LC_MESSAGES/django.po
new file mode 100644
index 000000000..250afc7f9
--- /dev/null
+++ b/src/club/locale/fr/LC_MESSAGES/django.po
@@ -0,0 +1,370 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/it/LC_MESSAGES/django.po b/src/club/locale/it/LC_MESSAGES/django.po
new file mode 100644
index 000000000..56d2927af
--- /dev/null
+++ b/src/club/locale/it/LC_MESSAGES/django.po
@@ -0,0 +1,370 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/lt/LC_MESSAGES/django.po b/src/club/locale/lt/LC_MESSAGES/django.po
new file mode 100644
index 000000000..be9931566
--- /dev/null
+++ b/src/club/locale/lt/LC_MESSAGES/django.po
@@ -0,0 +1,372 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
+"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? "
+"1 : n % 1 != 0 ? 2: 3);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/pl/LC_MESSAGES/django.mo b/src/club/locale/pl/LC_MESSAGES/django.mo
index f7fe7dded00a47a408c827dba7edd7d90c20e73d..e2f59d0494519a55b2954ebcc85450349c96554d 100644
GIT binary patch
literal 5707
zcmb`KYm6mD6~{|Jgu%yxA};c%SydzgXVVyNOsr^;!}2=uWtiM
zZVROEwtMac@nZ{~hd|O>fTZtHknHgV&u2lB^KFpid=I=3{GqS+K>XOx@c1D3OYkc2
z4Up`0;rko?E(6J4n>;srZUJe$TR<9T54aWF58eQFL6ZM@kmNrD(z<=a*Ixih?vFu|
z^D0PocpW5t{{oU8Z-Qi}|A5s00xTNUF9XSro51Ja1Kq(z)L+J6q|asyM)SEIB)PYP
zq{lwrz66qfU697hzy+>G~45T;@;fTT|kqGf}r
z*6|WJJ=yOnknA%GQomi`C&2yS7?}9>uYe@?Igt9l08%`96(qTDfV7YQ36fr$(3$kU
z*7F9>F_7#v0n&H3`}!ORH>}fy=cmBE$mEwWTit&j*iQ(hbs|0X`*I5;J#IyYDjSJn
z7bUXcZOC^alONI?X+7qUNw0pIMd1$Qdy#2AWZSEe$!BQ2$Op)ODeXk2Jxg{W8febU$X%tWLXWAR&7v!VYBlpumUswWfN1j9`
zzag7b+Ko){>HsqN(I=59ZAYF)=E&C}Q@RuRZsePghZ9`C-YfIqE&jz;&-*>u2>0m`
zlXGDucQVVAUgdep1y795x^c-0{cVk<>h4i8F#R!poVKPaOtx8*3C7nx-9MiUlp
z4tcC1=wi5)fmBB%=G-wh@zO=x?%Pedf!)H|Zfr@Ehj<`th>;_yt?sL7Pl<{GjKy_)f-#Fm5fdE}~iL5E`*1
zYmTT8cF|n65}}|_7+UEZdr+>)fUNnD=*a$RJNA&2WJ`+{m-QE5oIR8$iLfQvG9BjFPi>si3!Q`eQ@p@k+g+#A~co_iVkJk`>buklEDzz!L)?~+LZKgEWoCNE5R!L
z;-gf|U4{T)`N9&bHEafCq3nn}&Nd>A7vFDo@Prr^ZUzlirz0%|qKyWZ8YkN5((Ies
zy;yA!>1f(*~@%)wFpvca<{9I#9t#ls5iV0D%|Jjfz(Ns)wlv=+kFr(s!m
z-V7gkP*PxTExJ_|w)W?%uC;8?ymWu-L3u<`rxwN989qHZJ=vPv)tZ{*Q@73Rn7Re^
z$&rJIF|B194WZmve0fml)m*H~*0L1IP<@7{@yO!B;$4Hmr^Y8oa1vzjjn*;_j2TYK
zPoy#S^llz>g~hoxduaJUYv-V!pIPfJ9T*CbGkj-TWg|;*ZbjTWfT-_gxK8V;o87S+
z!_u4CZF+Wgir>K}`3&Etw@yv&ot@@4-NdQ5XLiRJmFxD&JyX;C@yF{I=rn~_ckn5E
zrAHy4-)rye&;IoX3XS)c1##Ikp~#2nW0-s!Uj%dBIj_uItBfy$IG%;&b?XfqMUlr(q1IkWBLzL6;pWM64AQjbN{*dZ#1B
zt*B(eD~@oWHcoae>Iov+n}ONF+H9;2OuRmiBWy8*@!H@DVSlZ8Sq|O~UP5_>^S%MuIJw5VH_;+WWJg-5=U2$Jr)vH>*-5;SG`(
zwQ?mpY}x|L>I&?07%GD{K_#3i(4|>3InEACGGH@!D6A<|rQt%>MET$f5XPbzm)bT?
z{}qQ3EmS)5l=sb8;4|BYT#pTvZ{@wy61zK)_+ofrc-|}=)^=m%-~$5(=9S>f=b2n3
z5OYNDG&!%5qkKiWl-vr-?Qs6WH>jCzK!Vkl#S64&u!0RMS_ZblBM1oP8Wby3tZ=kJ
zODI@bS(U30K`sZ|;;@WtnFecWoUhP!#3u!Rm#z%BDqzuYm-811^62K~Kv#rH$=;LD
z8`~YTJ*8=MmDjfit^WUZTj6{g7A2EfmLKMwUei$T=DYfuGPtl%2|g(q#U6o!Oj3+v
z!pEi(n{NmF6?X1LX(ueQ}IR&AdeqJSPDYTt~zhW
z6dNooH3fr>&8KuVgbUl(GkK~VTLQBx#A#%`S5gh
zotziD70vzg0M^o?DwK;18;ok$!aR0NKhy|jC`=%B2-XC%=JcpUKXMCJg=^$fvboui
z(<8djLX`X+?NeWs&gptS3z<;1ae9l!8rV#pw78iVq
G3;zR#awYWu
delta 1522
zcmXw(TWDNW6oyxtHqB*XE}f*cQ_ZwZtF;$9xzw8U!I}^WLMts&+n0KnIkjUl=S+tg
zV+V0Wi%_40g8?Bgwoif-VGtrJ7;KPIO0X}bq9Qbr_CaC<30@xj{>kp*{QKK`&)I9Q
zz1BW+bKh#B@=NFXj|_VjZ9|K7X2;=Y^)%T1^=1w50c?bSz$W-Nl3QzW{1o(Xj%x{(~ATX47=KnYaSG;FnM*S%7lzE0lxZppvrU#(zOM(s3RE
zF}N8fpibCNqrirtGWVS0IF#QLa2NaAD|B|kx1k(ffpT~aDz)FZ@hvDvKS7;z2`aE<
z$YcM|Xv1~9ByNPnXfgN&W!(g|@eLMh{Q^xz4(`&?f<>r1@Blsr8~9O~=ye=)9CJJc
zaB#%*v99D;g31LY?NbvG`-1e}4yZnG6S_^|6x5&qzK$MI*V7wqojXDic|?-KY;KD4qNe(mI(o*2V780MmXlWu~GVy$L;o9-1PQZAClK0dx>O
zH2qh|9!2|*0+T7VgGk@~IwaF4EQ_z9mJMZ4#%EozU3B)=hHH&3jx33K(c@?UDLaRe
z(yB|kAF0-=zfAubB&SwBjb+=B$|6%)YIZaimV%;)-66W%gev#g&SM;OT
z8qYPJ@L%`S%tY~~vFOjHp6KJ|)##I!e0w3|7n0+nmiI3DnWR^YhGR3){n*y1rS+xO
z)c#a|GL;${7~Fd>RXyMOYF%&Nfq`awaVji&b~GqWhErbP+shN-{H1g`q|1(8^nCmK
zO~*5Zaw*MJw5{Vv;$$i3*+|)+@REU-%!kFPtY65K{UGaCZ+Bj;i{6R9)ipkvEPJ`{
os{9sYJqz>m?|SKIu=2 && n%10<=4) && (n"
"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
-"X-Generator: Poedit 2.2.4\n"
+"X-Generator: Poedit 2.3\n"
-#: models.py:20
+#: club/admin.py:45
+msgid "payment complete"
+msgstr "pÅatnoÅÄ zakoÅczona"
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr "harmonogram przedawniony"
+
+#: club/apps.py:10
+msgid "Club"
+msgstr "Towarzystwo"
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr "Minimalna kwota to %(amount)d zÅ."
+
+#: club/models.py:25
msgid "minimum amount"
msgstr "minimalna kwota"
-#: models.py:21
+#: club/models.py:26
msgid "minimum amount for year"
msgstr "minimalna kwota na rok"
-#: models.py:22
+#: club/models.py:27
msgid "proposed amounts for single payment"
msgstr "proponowane kwoty dla pojedynczej wpÅaty"
-#: models.py:23
+#: club/models.py:28
msgid "default single amount"
msgstr "domyÅlna kwota dla pojedynczej wpÅaty"
-#: models.py:24
+#: club/models.py:29
msgid "proposed amounts for monthly payments"
msgstr "proponowane kwoty dla miesiÄcznych wpÅat"
-#: models.py:25
+#: club/models.py:30
msgid "default monthly amount"
msgstr "domyÅlna kwota dla miesiÄcznych wpÅat"
-#: models.py:28
+#: club/models.py:33
msgid "club"
msgstr "towarzystwo"
-#: models.py:29
+#: club/models.py:34
msgid "clubs"
msgstr "towarzystwa"
-#: models.py:43
+#: club/models.py:48
msgid "key"
msgstr "klucz"
-#: models.py:44
+#: club/models.py:49
msgid "email"
msgstr "email"
-#: models.py:45 models.py:120
+#: club/models.py:50 club/models.py:139
msgid "membership"
msgstr "czÅonkostwo"
-#: models.py:46
+#: club/models.py:51
msgid "amount"
msgstr "kwota"
-#: models.py:47
+#: club/models.py:52 club/templates/club/membership_form.html:185
msgid "monthly"
msgstr "miesiÄcznie"
-#: models.py:48
+#: club/models.py:53
msgid "yearly"
msgstr "rocznie"
-#: models.py:50
+#: club/models.py:55
msgid "cancelled"
msgstr "anulowany"
-#: models.py:51
+#: club/models.py:56
msgid "payed at"
msgstr "opÅacona"
-#: models.py:52
+#: club/models.py:57
msgid "started at"
msgstr "start"
-#: models.py:53
+#: club/models.py:58
msgid "expires_at"
msgstr "wygasa"
-#: models.py:57
+#: club/models.py:62
msgid "schedule"
msgstr "harmonogram"
-#: models.py:58
+#: club/models.py:63
msgid "schedules"
msgstr "harmonogramy"
-#: models.py:114
+#: club/models.py:133
msgid "user"
msgstr "użytkownik"
-#: models.py:115
+#: club/models.py:134
msgid "created at"
msgstr "utworzone"
-#: models.py:121
+#: club/models.py:140
msgid "memberships"
msgstr "czÅonkostwa"
-#: models.py:143
+#: club/models.py:162
msgid "days before"
msgstr "dni przed"
-#: models.py:144
+#: club/models.py:163
msgid "subject"
msgstr "temat"
-#: models.py:145 payu/models.py:140
+#: club/models.py:164 club/payu/models.py:140
msgid "body"
msgstr "treÅÄ"
-#: models.py:148
+#: club/models.py:167
msgid "reminder email"
msgstr "email z przypomnieniem"
-#: models.py:149
+#: club/models.py:168
msgid "reminder emails"
msgstr "emaile z przypomnieniem"
-#: models.py:154
+#: club/models.py:173
#, python-format
msgid "a day before expiration"
msgid_plural "%d days before expiration"
@@ -141,7 +158,7 @@ msgstr[1] "%d dni przed wygaÅniÄciem"
msgstr[2] "%d dni przed wygaÅniÄciem"
msgstr[3] "%d dni przed wygaÅniÄciem"
-#: models.py:156
+#: club/models.py:175
#, python-format
msgid "a day after expiration"
msgid_plural "%d days after expiration"
@@ -150,119 +167,220 @@ msgstr[1] "%d dni po wygaÅniÄciu"
msgstr[2] "%d dni po wygaÅniÄciu"
msgstr[3] "%d dni przed wygaÅniÄciem"
-#: models.py:160
+#: club/models.py:179
msgid "name"
msgstr "nazwisko"
-#: models.py:161
+#: club/models.py:180
msgid "photo"
msgstr "zdjÄcie"
-#: models.py:162
+#: club/models.py:181
msgid "text"
msgstr "tekst"
-#: models.py:165
+#: club/models.py:184
msgid "ambassador"
msgstr "ambasador"
-#: models.py:166
+#: club/models.py:185
msgid "ambassadors"
msgstr "ambasadorowie"
-#: models.py:197
-msgid "Towarzystwo Wolnych Lektur"
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
msgstr ""
-#: payu/models.py:17 payu/models.py:29
+#: club/payu/models.py:17 club/payu/models.py:29
msgid "POS id"
msgstr ""
-#: payu/models.py:18
+#: club/payu/models.py:18
msgid "disposable token"
msgstr "token jednorazowy"
-#: payu/models.py:19
+#: club/payu/models.py:19
msgid "reusable token"
msgstr "token wielokrotnego użytku"
-#: payu/models.py:20
+#: club/payu/models.py:20
msgid "created_at"
msgstr "utworzone"
-#: payu/models.py:24
+#: club/payu/models.py:24
msgid "PayU card token"
msgstr "token PayU karty pÅatniczej"
-#: payu/models.py:25
+#: club/payu/models.py:25
msgid "PayU card tokens"
msgstr "tokeny PayU kart pÅatniczych"
-#: payu/models.py:30
+#: club/payu/models.py:30
msgid "customer IP"
msgstr "adres IP klienta"
-#: payu/models.py:31
+#: club/payu/models.py:31
msgid "order ID"
msgstr "ID zamówienia"
-#: payu/models.py:34
+#: club/payu/models.py:34
msgid "Pending"
msgstr "Czeka"
-#: payu/models.py:35
+#: club/payu/models.py:35
msgid "Waiting for confirmation"
msgstr "Czeka na potwierdzenie"
-#: payu/models.py:36
+#: club/payu/models.py:36
msgid "Completed"
msgstr "UkoÅczone"
-#: payu/models.py:37
+#: club/payu/models.py:37
msgid "Canceled"
msgstr "Anulowane"
-#: payu/models.py:38
+#: club/payu/models.py:38
msgid "Rejected"
msgstr "Odrzucone"
-#: payu/models.py:44
+#: club/payu/models.py:44
msgid "PayU order"
msgstr "zamówienie PayU"
-#: payu/models.py:45
+#: club/payu/models.py:45
msgid "PayU orders"
msgstr "zamówienia PayU"
-#: payu/models.py:141
+#: club/payu/models.py:141
msgid "received_at"
msgstr "odebrana"
-#: payu/models.py:145
+#: club/payu/models.py:145
msgid "PayU notification"
msgstr "notyfikacja PayU"
-#: payu/models.py:146
+#: club/payu/models.py:146
msgid "PayU notifications"
msgstr "notyfikacje PayU"
-#: templates/club/year_summary.html:10
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr "Gratulacje â należysz już do Towarzystwa PrzyjacióŠWolnych Lektur!"
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr "DoÅÄ
cz do Towarzystwa"
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr "Uwalniaj ksiÄ
żki razem z nami!"
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr "Wspieraj Wolne Lektury"
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+"DziÄkujemy za Twoje dotychczasowe zaangażowanie! Wesprzyj nas ponownie!"
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr "DziÄkujemy, że chcesz razem z nami uwalniaÄ ksiÄ
żki!"
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr "Zobacz swoje dotychczasowe wsparcie."
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr "Wybierz rodzaj wsparcia"
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr "jednorazowo"
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr "Wybierz kwotÄ"
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr "inna kwota"
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr "Podaj adres e-mail"
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr "ChcÄ dostawaÄ informacje o nowoÅciach"
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+"W każdej chwili możesz zrezygnowaÄ z subskrypcji. WiÄcej w polityce "
+"prywatnoÅci ."
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr "WpÅaÄ"
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr "Bezpieczne wpÅaty"
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr "przelew"
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr "DziÄkujemy"
+
+#: club/templates/club/year_summary.html:10
#, python-format
msgid "Summary of donations in the year %(year)s for the address %(email)s."
msgstr "Zestawienie darowizn w roku %(year)s dla adresu %(email)s."
-#: templates/club/year_summary.html:15
+#: club/templates/club/year_summary.html:15
msgid "Date"
msgstr "Data"
-#: templates/club/year_summary.html:16
+#: club/templates/club/year_summary.html:16
msgid "Amount"
msgstr "Kwota"
-#: templates/club/year_summary.html:27
+#: club/templates/club/year_summary.html:27
msgid "Total"
msgstr "Suma"
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr "Wspierasz Wolne Lektury"
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
+"\n"
+"Zlecasz comiesiÄcznÄ
pÅatnoÅÄ w wysokoÅci %(amount)s zÅ. DziÄkujemy!"
+
#~ msgid "in perpetuity"
#~ msgstr "jednorazowo"
@@ -272,9 +390,6 @@ msgstr "Suma"
#~ msgid "allow recurring"
#~ msgstr "pÅatnoÅci cykliczne"
-#~ msgid "allow one time"
-#~ msgstr "pÅatnoÅci jednorazowe"
-
#~ msgid "active"
#~ msgstr "aktywny"
@@ -286,9 +401,3 @@ msgstr "Suma"
#~ msgid "method"
#~ msgstr "metoda pÅatnoÅci"
-
-#~ msgid "payment"
-#~ msgstr "pÅatnoÅÄ"
-
-#~ msgid "payments"
-#~ msgstr "pÅatnoÅci"
diff --git a/src/club/locale/ru/LC_MESSAGES/django.po b/src/club/locale/ru/LC_MESSAGES/django.po
new file mode 100644
index 000000000..2f7e8c8f6
--- /dev/null
+++ b/src/club/locale/ru/LC_MESSAGES/django.po
@@ -0,0 +1,372 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
+"%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/locale/uk/LC_MESSAGES/django.po b/src/club/locale/uk/LC_MESSAGES/django.po
new file mode 100644
index 000000000..34cc7e681
--- /dev/null
+++ b/src/club/locale/uk/LC_MESSAGES/django.po
@@ -0,0 +1,373 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-10 15:34+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
+"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
+"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
+"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#: club/admin.py:45
+msgid "payment complete"
+msgstr ""
+
+#: club/admin.py:51
+msgid "schedule expired"
+msgstr ""
+
+#: club/apps.py:10
+msgid "Club"
+msgstr ""
+
+#: club/forms.py:26
+#, python-format
+msgid "Minimal amount is %(amount)d PLN."
+msgstr ""
+
+#: club/models.py:25
+msgid "minimum amount"
+msgstr ""
+
+#: club/models.py:26
+msgid "minimum amount for year"
+msgstr ""
+
+#: club/models.py:27
+msgid "proposed amounts for single payment"
+msgstr ""
+
+#: club/models.py:28
+msgid "default single amount"
+msgstr ""
+
+#: club/models.py:29
+msgid "proposed amounts for monthly payments"
+msgstr ""
+
+#: club/models.py:30
+msgid "default monthly amount"
+msgstr ""
+
+#: club/models.py:33
+msgid "club"
+msgstr ""
+
+#: club/models.py:34
+msgid "clubs"
+msgstr ""
+
+#: club/models.py:48
+msgid "key"
+msgstr ""
+
+#: club/models.py:49
+msgid "email"
+msgstr ""
+
+#: club/models.py:50 club/models.py:139
+msgid "membership"
+msgstr ""
+
+#: club/models.py:51
+msgid "amount"
+msgstr ""
+
+#: club/models.py:52 club/templates/club/membership_form.html:185
+msgid "monthly"
+msgstr ""
+
+#: club/models.py:53
+msgid "yearly"
+msgstr ""
+
+#: club/models.py:55
+msgid "cancelled"
+msgstr ""
+
+#: club/models.py:56
+msgid "payed at"
+msgstr ""
+
+#: club/models.py:57
+msgid "started at"
+msgstr ""
+
+#: club/models.py:58
+msgid "expires_at"
+msgstr ""
+
+#: club/models.py:62
+msgid "schedule"
+msgstr ""
+
+#: club/models.py:63
+msgid "schedules"
+msgstr ""
+
+#: club/models.py:133
+msgid "user"
+msgstr ""
+
+#: club/models.py:134
+msgid "created at"
+msgstr ""
+
+#: club/models.py:140
+msgid "memberships"
+msgstr ""
+
+#: club/models.py:162
+msgid "days before"
+msgstr ""
+
+#: club/models.py:163
+msgid "subject"
+msgstr ""
+
+#: club/models.py:164 club/payu/models.py:140
+msgid "body"
+msgstr ""
+
+#: club/models.py:167
+msgid "reminder email"
+msgstr ""
+
+#: club/models.py:168
+msgid "reminder emails"
+msgstr ""
+
+#: club/models.py:173
+#, python-format
+msgid "a day before expiration"
+msgid_plural "%d days before expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:175
+#, python-format
+msgid "a day after expiration"
+msgid_plural "%d days after expiration"
+msgstr[0] ""
+msgstr[1] ""
+
+#: club/models.py:179
+msgid "name"
+msgstr ""
+
+#: club/models.py:180
+msgid "photo"
+msgstr ""
+
+#: club/models.py:181
+msgid "text"
+msgstr ""
+
+#: club/models.py:184
+msgid "ambassador"
+msgstr ""
+
+#: club/models.py:185
+msgid "ambassadors"
+msgstr ""
+
+#: club/models.py:216 club/templates/club/index.html:7
+#: club/templates/club/index.html:13 club/templates/club/thanks.html:6
+#: club/templates/payu/rec_payment.html:5
+msgid "Towarzystwo PrzyjacióŠWolnych Lektur"
+msgstr ""
+
+#: club/payu/models.py:17 club/payu/models.py:29
+msgid "POS id"
+msgstr ""
+
+#: club/payu/models.py:18
+msgid "disposable token"
+msgstr ""
+
+#: club/payu/models.py:19
+msgid "reusable token"
+msgstr ""
+
+#: club/payu/models.py:20
+msgid "created_at"
+msgstr ""
+
+#: club/payu/models.py:24
+msgid "PayU card token"
+msgstr ""
+
+#: club/payu/models.py:25
+msgid "PayU card tokens"
+msgstr ""
+
+#: club/payu/models.py:30
+msgid "customer IP"
+msgstr ""
+
+#: club/payu/models.py:31
+msgid "order ID"
+msgstr ""
+
+#: club/payu/models.py:34
+msgid "Pending"
+msgstr ""
+
+#: club/payu/models.py:35
+msgid "Waiting for confirmation"
+msgstr ""
+
+#: club/payu/models.py:36
+msgid "Completed"
+msgstr ""
+
+#: club/payu/models.py:37
+msgid "Canceled"
+msgstr ""
+
+#: club/payu/models.py:38
+msgid "Rejected"
+msgstr ""
+
+#: club/payu/models.py:44
+msgid "PayU order"
+msgstr ""
+
+#: club/payu/models.py:45
+msgid "PayU orders"
+msgstr ""
+
+#: club/payu/models.py:141
+msgid "received_at"
+msgstr ""
+
+#: club/payu/models.py:145
+msgid "PayU notification"
+msgstr ""
+
+#: club/payu/models.py:146
+msgid "PayU notifications"
+msgstr ""
+
+#: club/templates/club/index.html:20
+msgid "Congratulations â you're already a supporter of Wolne Lektury!"
+msgstr ""
+
+#: club/templates/club/index.html:22
+msgid "Become a supporter"
+msgstr ""
+
+#: club/templates/club/membership_form.html:7
+msgid "Join us in freeing the books!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:8
+msgid "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer"
+msgstr ""
+
+#: club/templates/club/membership_form.html:144
+msgid "Support Wolne Lektury"
+msgstr ""
+
+#: club/templates/club/membership_form.html:148
+msgid "Thank you for your support! Support us again!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:151
+msgid "Thank you for wanting to free the books with us!"
+msgstr ""
+
+#: club/templates/club/membership_form.html:156
+msgid "See your past support."
+msgstr ""
+
+#: club/templates/club/membership_form.html:179
+msgid "Choose your type of support"
+msgstr ""
+
+#: club/templates/club/membership_form.html:184
+msgid "one-time"
+msgstr ""
+
+#: club/templates/club/membership_form.html:188
+msgid "Choose the amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:196
+#: club/templates/club/membership_form.html:209
+msgid "different amount"
+msgstr ""
+
+#: club/templates/club/membership_form.html:215
+msgid "Provide an e-mail address"
+msgstr ""
+
+#: club/templates/club/membership_form.html:222
+msgid "I'd like to receive informations about new publications."
+msgstr ""
+
+#: club/templates/club/membership_form.html:226
+msgid ""
+"You can unsubscribe at any point. More in the privacy policy ."
+msgstr ""
+
+#: club/templates/club/membership_form.html:228
+msgid "Donate"
+msgstr ""
+
+#: club/templates/club/payment/payu-re.html:4
+#: club/templates/club/payment/payu.html:4
+msgid "Safe payments"
+msgstr ""
+
+#: club/templates/club/payment/payu.html:10
+msgid "transfer"
+msgstr ""
+
+#: club/templates/club/thanks.html:14
+msgid "Thank you"
+msgstr ""
+
+#: club/templates/club/year_summary.html:10
+#, python-format
+msgid "Summary of donations in the year %(year)s for the address %(email)s."
+msgstr ""
+
+#: club/templates/club/year_summary.html:15
+msgid "Date"
+msgstr ""
+
+#: club/templates/club/year_summary.html:16
+msgid "Amount"
+msgstr ""
+
+#: club/templates/club/year_summary.html:27
+msgid "Total"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:12
+msgid "Supporting Wolne Lektury"
+msgstr ""
+
+#: club/templates/payu/rec_payment.html:15
+#, python-format
+msgid ""
+"\n"
+" You are setting up a monthly payment in the amount of %(amount)s "
+"PLN. Thank you!\n"
+" "
+msgstr ""
diff --git a/src/club/models.py b/src/club/models.py
index 1d993bc77..1a691440f 100644
--- a/src/club/models.py
+++ b/src/club/models.py
@@ -213,7 +213,7 @@ class PayUOrder(payu_models.Order):
self.schedule.get_thanks_url())
def get_description(self):
- return ugettext('Towarzystwo Wolnych Lektur')
+ return ugettext('Towarzystwo PrzyjacióŠWolnych Lektur')
def is_recurring(self):
return self.schedule.get_payment_method().is_recurring
diff --git a/src/club/payment_methods.py b/src/club/payment_methods.py
index 7657701ab..1b27bd3e7 100644
--- a/src/club/payment_methods.py
+++ b/src/club/payment_methods.py
@@ -16,7 +16,6 @@ class PaymentMethod(object):
class PayU(PaymentMethod):
is_onetime = True
slug = 'payu'
- name = 'PayU'
template_name = 'club/payment/payu.html'
def __init__(self, pos_id):
@@ -35,7 +34,6 @@ class PayU(PaymentMethod):
class PayURe(PaymentMethod):
slug='payu-re'
- name = 'PayU (pÅatnoÅÄ odnawialna)'
template_name = 'club/payment/payu-re.html'
is_recurring = True
@@ -62,7 +60,6 @@ class PayURe(PaymentMethod):
class PayPal(PaymentMethod):
slug='paypal'
- name = 'PayPal (pÅatnoÅÄ odnawialna)'
template_name = 'club/payment/paypal.html'
is_recurring = True
is_onetime = True
diff --git a/src/club/templates/admin/club/schedule/change_list.html b/src/club/templates/admin/club/schedule/change_list.html
index 69fd851a6..2f79a5f37 100644
--- a/src/club/templates/admin/club/schedule/change_list.html
+++ b/src/club/templates/admin/club/schedule/change_list.html
@@ -1,20 +1,20 @@
{% extends "admin/change_list.html" %}
-{% load club %}
+{% load club i18n %}
{% block content %}
- Aktywne miesiÄczne wpÅaty cykliczne:
+ {% trans "Active monthly recurring donations %}:
{% club_active_monthly_count %} sztuk
{% club_active_monthly_sum %} zÅ.
- Aktywne roczne wpÅaty cykliczne:
+ {% trans "Active yearly recurring donations %}:
{% club_active_yearly_count %} sztuk
{% club_active_yearly_sum %} zÅ.
- Jednorazowe wpÅaty w ciÄ
gu ostatnich 30 dni:
+ {% trans "One-time donations in last 30 days %}:
{% club_active_30day_count %} sztuk
{% club_active_30day_sum %} zÅ.
diff --git a/src/club/templates/club/index.html b/src/club/templates/club/index.html
index ba5977be4..6796f25d5 100644
--- a/src/club/templates/club/index.html
+++ b/src/club/templates/club/index.html
@@ -1,30 +1,28 @@
{% extends "base/base.html" %}
+{% load i18n %}
{% load active_schedule from club %}
{% load chunks %}
-{% block titleextra %}Towarzystwo PrzyjacióŠWolnych Lektur{% endblock %}
+{% block titleextra %}{% trans "Towarzystwo PrzyjacióŠWolnych Lektur" %}{% endblock %}
{% block body %}
-
-
-
Towarzystwo PrzyjacióŠWolnych Lektur
-
-
Towarzystwo jest fajne.
- {% chunk 'club' %}
-
-
-
-{% with schedule=request.user|active_schedule %}
-{% if schedule %}
-Gratulacje â należysz już do Towarzystwa PrzyjacióŠWolnych Lektur!
-{% else %}
-
DoÅÄ
cz do Towarzystwa
-{% endif %}
-{% endwith %}
-
-
-
+
+
+
{% trans "Towarzystwo PrzyjacióŠWolnych Lektur" %}
+
+ {% chunk 'club' %}
+
+
+ {% with schedule=request.user|active_schedule %}
+ {% if schedule %}
+ {% trans "Congratulations â you're already a supporter of Wolne Lektury!" %}
+ {% else %}
+ {% trans "Become a supporter" %}
+ {% endif %}
+ {% endwith %}
+
+
{% endblock %}
diff --git a/src/club/templates/club/membership_form.html b/src/club/templates/club/membership_form.html
index 422ce25f6..1ae2f82e5 100644
--- a/src/club/templates/club/membership_form.html
+++ b/src/club/templates/club/membership_form.html
@@ -1,10 +1,11 @@
{% extends request.session.from_app|yesno:"base/app.html,base/base.html" %}
+{% load i18n %}
{% load chunks %}
{% load thumbnail %}
{% load club %}
-{% block titleextra %}Uwalniaj ksiÄ
żki razem z nami!{% endblock %}
-{% block metadescription %}âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer{% endblock %}
+{% block titleextra %}{% trans "Join us in freeing the books!" %}{% endblock %}
+{% block metadescription %}{% trans "âWolne Lektury należy wspieraÄ, bo sÄ
â - Filip Springer" %}{% endblock %}
{% block body %}
@@ -140,17 +141,23 @@ vertical-align: middle;
-
Wspieraj Wolne Lektury
+
{% trans "Support Wolne Lektury" %}
- {% if membership %}DziÄkujemy za Twoje dotychczasowe zaangażowanie! Wesprzyj nas ponownie!{% else %}DziÄkujemy, że chcesz razem z nami uwalniaÄ ksiÄ
żki!{% endif %}
-
- {% with schedule=request.user|active_schedule %}
- {% if schedule %}
-
Zobacz swoje dotychczasowe wsparcie.
- {% endif %}
- {% endwith %}
+ {% if membership %}
+ {# Displays to members. #}
+ {% trans "Thank you for your support! Support us again!" %}
+ {% else %}
+ {# Displays to non-supporters. #}
+ {% trans "Thank you for wanting to free the books with us!" %}
+ {% endif %}
+
+ {% with schedule=request.user|active_schedule %}
+ {% if schedule %}
+
{% trans "See your past support." %}
+ {% endif %}
+ {% endwith %}
-
+
-
3. Podaj adres e-mail
+
3. {% trans "Provide an e-mail address" %}
{{ form.email }}
{{ form.agree_newsletter }}
- ChcÄ dostawaÄ informacje o nowoÅciach
+ {% trans "I'd like to receive informations about new publications." %}
-
W każdej chwili możesz zrezygnowaÄ z subskrypcji. WiÄcej w polityce prywatnoÅci .
+
{% trans 'You can unsubscribe at any point. More in the privacy policy .' %}
-
WpÅaÄ
+
{% trans "Donate" %}
{% chunk 'club_form_bottom' %}
diff --git a/src/club/templates/club/payment/payu-re.html b/src/club/templates/club/payment/payu-re.html
index 781577c69..b71e87a27 100644
--- a/src/club/templates/club/payment/payu-re.html
+++ b/src/club/templates/club/payment/payu-re.html
@@ -1,6 +1,7 @@
+{% load i18n %}
{% load static %}
- Bezpieczne wpÅaty
+ {% trans "Safe payments" %}
diff --git a/src/club/templates/club/payment/payu.html b/src/club/templates/club/payment/payu.html
index 634f01704..d9849efe0 100644
--- a/src/club/templates/club/payment/payu.html
+++ b/src/club/templates/club/payment/payu.html
@@ -1,9 +1,10 @@
+{% load i18n %}
{% load static %}
- Bezpieczne wpÅaty
+ {% trans "Safe payments" %}
-
przelew
+
{# As in wire transfer of money. #}{% trans "transfer" %}
diff --git a/src/club/templates/club/schedule.html b/src/club/templates/club/schedule.html
index a30bfe73f..7ae714e42 100644
--- a/src/club/templates/club/schedule.html
+++ b/src/club/templates/club/schedule.html
@@ -1,7 +1,7 @@
{% extends "base/base.html" %}
-{% block titleextra %}Towarzystwo Wolnych Lektur{% endblock %}
+{% block titleextra %}Towarzystwo PrzyjacióŠWolnych Lektur{% endblock %}
{% block body %}
diff --git a/src/club/templates/club/thanks.html b/src/club/templates/club/thanks.html
index c83b70269..33e053fbb 100644
--- a/src/club/templates/club/thanks.html
+++ b/src/club/templates/club/thanks.html
@@ -1,8 +1,9 @@
{% extends request.session.from_app|yesno:"base/app.html,base/base.html" %}
{% load chunks %}
+{% load i18n %}
-{% block titleextra %}Towarzystwo Wolnych Lektur{% endblock %}
+{% block titleextra %}{% trans "Towarzystwo PrzyjacióŠWolnych Lektur" %}{% endblock %}
{% block body %}
@@ -10,15 +11,13 @@
-
DziÄkujemy
+
{% trans "Thank you" %}
+ {% chunk 'club_thanks' %}
-{% chunk 'club_thanks' %}
-
-{% if request.session.from_app %}
-
WrÃ³Ä do aplikacji
-{% else %}
-{% endif %}
+ {% if request.session.from_app %}
+
{% trans "Go back to the app %}
+ {% endif %}
diff --git a/src/club/templates/payu/rec_payment.html b/src/club/templates/payu/rec_payment.html
index 254c2bc46..71dcdca37 100644
--- a/src/club/templates/payu/rec_payment.html
+++ b/src/club/templates/payu/rec_payment.html
@@ -1,15 +1,21 @@
{% extends request.session.from_app|yesno:"base/app.html,base/base.html" %}
+{% load i18n %}
-{% block titleextra %}Towarzystwo Wolnych Lektur{% endblock %}
+{% block titleextra %}{% trans "Towarzystwo PrzyjacióŠWolnych Lektur" %}{% endblock %}
{% block body %}
-
+
-
Wspierasz Wolne Lektury
+ {# On the card payment page. #}
+
{% trans "Supporting Wolne Lektury" %}
-
Zlecasz comiesiÄcznÄ
pÅatnoÅÄ w wysokoÅci {{ schedule.amount}} zÅ. DziÄkujemy!
+
+ {% blocktrans with amount=schedule.amount %}
+ You are setting up a monthly payment in the amount of {{ amount }} PLN. Thank you!
+ {% endblocktrans %}
+