1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
4 from django.utils.translation import gettext_lazy as _
7 'http://creativecommons.org/licenses/by-sa/3.0/': {
9 'description': _('Creative Commons Attribution-ShareAlike 3.0 Unported'),
10 'locative': 'licencji CC BY-SA 3.0 PL',
12 'http://creativecommons.org/licenses/by-sa/4.0/deed.pl': {
14 'description': _('Creative Commons Attribution-ShareAlike 4.0 Unported'),
15 'locative': 'licencji CC BY-SA 4.0 PL',
17 'http://artlibre.org/licence/lal/pl/': {
19 'description': _('Licencja Wolnej Sztuki 1.3'),
20 'locative': 'Licencji Wolnej Sztuki 1.3',
23 LICENSES['http://creativecommons.org/licenses/by-sa/3.0/deed.pl'] = \
24 LICENSES['http://creativecommons.org/licenses/by-sa/3.0/']
26 for license, data in list(LICENSES.items()):
27 LICENSES[license.replace('http://', 'https://')] = data
29 # Those will be generated only for books with own HTML.
30 EBOOK_FORMATS_WITHOUT_CHILDREN = ['txt', 'fb2']
31 # Those will be generated for all books.
32 EBOOK_FORMATS_WITH_CHILDREN = ['pdf', 'epub', 'mobi']
33 # Those will be generated when inherited cover changes.
34 EBOOK_FORMATS_WITH_COVERS = ['pdf', 'epub', 'mobi']
36 EBOOK_FORMATS = EBOOK_FORMATS_WITHOUT_CHILDREN + EBOOK_FORMATS_WITH_CHILDREN
38 EBOOK_CONTENT_TYPES = {
40 'pdf': 'application/pdf',
41 'txt': 'text/plain; charset=utf-8',
42 'epub': 'application/epub+zip',
43 'mobi': 'application/x-mobipocket-ebook',
63 CATEGORIES_NAME_PLURAL = {
64 'author': _('autorzy'),
67 'genre': _('gatunki'),
73 'author': _('Wszyscy autorzy'),
74 'epoch': _('Wszystkie epoki'),
75 'kind': _('Wszystkie rodzaje'),
76 'genre': _('Wszystkie gatunki'),
77 'theme': _('Wszystkie motywy'),
78 'set': _('Wszystkie półki'),