X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f5129e7c47fa5fcf0a20f04249b90afcbc54cb9c..af43a678694121f8b7c81a52a64d02c1b024fc57:/src/annoy/places.py diff --git a/src/annoy/places.py b/src/annoy/places.py index 93b22e44e..adcf3dcc6 100644 --- a/src/annoy/places.py +++ b/src/annoy/places.py @@ -1,11 +1,15 @@ -from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import gettext_lazy as _ PLACE_DEFINITIONS = [ ('top', _('Top of all pages.'), True), ('book-page', _('Book page'), False), ('book-text-intermission', _('Book text intermission'), False), ('book-fragment-list', _('Next to list of book fragments.'), False), - ('blackout', _('Blackout'), True), + ('blackout', _('Blackout'), True, ( + ('full', _('Full screen')), +# ('centre', _('Centre of screen')), + ('upper', _('Upper half of screen')), + )), ] PLACE_CHOICES = [p[:2] for p in PLACE_DEFINITIONS] @@ -14,3 +18,12 @@ PLACES = { p[0]: p[2] for p in PLACE_DEFINITIONS } + + +STYLES = [] +for p in PLACE_DEFINITIONS: + if len(p) > 3: + STYLES.extend([ + (f'{p[0]}_{s[0]}', s[1]) + for s in p[3] + ])