2a00ac247662b40b4e8fb98df63473ae32543ba7
[wolnelektury.git] / src / catalogue / constants.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.utils.translation import ugettext_lazy as _
5
6 LICENSES = {
7     'http://creativecommons.org/licenses/by-sa/3.0/': {
8         'icon': 'cc-by-sa',
9         'description': _('Creative Commons Attribution-ShareAlike 3.0 Unported'),
10     },
11     'http://artlibre.org/licence/lal/pl/': {
12         'icon': 'lal',
13         'description': _('Free Art License 1.3'),
14     }
15 }
16 LICENSES['http://creativecommons.org/licenses/by-sa/3.0/deed.pl'] = \
17     LICENSES['http://creativecommons.org/licenses/by-sa/3.0/']
18
19
20 for license, data in list(LICENSES.items()):
21     LICENSES[license.replace('http://', 'https://')] = data
22
23 # Those will be generated only for books with own HTML.
24 EBOOK_FORMATS_WITHOUT_CHILDREN = ['txt', 'fb2']
25 # Those will be generated for all books.
26 EBOOK_FORMATS_WITH_CHILDREN = ['pdf', 'epub', 'mobi']
27 # Those will be generated when inherited cover changes.
28 EBOOK_FORMATS_WITH_COVERS = ['pdf', 'epub', 'mobi']
29
30 EBOOK_FORMATS = EBOOK_FORMATS_WITHOUT_CHILDREN + EBOOK_FORMATS_WITH_CHILDREN
31
32 EBOOK_CONTENT_TYPES = {
33     'html': 'text/html',
34     'pdf': 'application/pdf',
35     'txt': 'text/plain',
36     'epub': 'application/epub+zip',
37     'mobi': 'application/x-mobipocket-ebook',
38     'fb2': 'text/xml',
39     'xml': 'text/xml',
40 }
41
42 LANGUAGES_3TO2 = {
43     'deu': 'de',
44     'ger': 'de',
45     'eng': 'en',
46     'spa': 'es',
47     'fra': 'fr',
48     'fre': 'fr',
49     'ita': 'it',
50     'jpn': 'jp',
51     'lit': 'lt',
52     'pol': 'pl',
53     'rus': 'ru',
54     'ukr': 'uk',
55 }
56
57 CATEGORIES_NAME_PLURAL = {
58     'author': _('authors'),
59     'epoch': _('epochs'),
60     'kind': _('kinds'),
61     'genre': _('genres'),
62     'theme': _('themes'),
63     'set': _('sets'),
64     'thing': _('things'),
65 }
66
67 WHOLE_CATEGORY = {
68     'author': _('All authors'),
69     'epoch': _('All epochs'),
70     'kind': _('All kinds'),
71     'genre': _('All genres'),
72     'theme': _('All themes'),
73     'set': _('All sets'),
74     'thing': _('All things'),
75 }