X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9bc86f5a6542c5893ac94284da33162a7c7be2d6..e24e657ebf536f55c1bde66bd41563fae30a98b0:/src/annoy/places.py diff --git a/src/annoy/places.py b/src/annoy/places.py index adcf3dcc6..c9f8031af 100644 --- a/src/annoy/places.py +++ b/src/annoy/places.py @@ -1,14 +1,12 @@ -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, ( - ('full', _('Full screen')), -# ('centre', _('Centre of screen')), - ('upper', _('Upper half of screen')), + ('top', 'U góry wszystkich stron', True), + ('book-page', 'Strona książki', False), + ('book-text-intermission', 'Przerwa w treści książki', False), + ('book-fragment-list', 'Obok listy fragmentów książki', False), + ('blackout', 'Blackout', True, ( + ('full', 'Cały ekran'), +# ('centre', 'Środek ekranu'), + ('upper', 'Górna połowa ekranu'), )), ]