Merge branch 'master' of git@github.com:fnp/wolnelektury
authorLukasz Anwajler <lukasz@anwajler.com>
Thu, 30 Dec 2010 01:26:57 +0000 (19:26 -0600)
committerLukasz Anwajler <lukasz@anwajler.com>
Thu, 30 Dec 2010 01:26:57 +0000 (19:26 -0600)
58 files changed:
apps/catalogue/admin.py
apps/catalogue/migrations/0005_many2many_files_for_books.py
apps/catalogue/migrations/0006_auto__del_bookstub__del_field_tag_death.py [new file with mode: 0644]
apps/catalogue/models.py
apps/catalogue/templatetags/catalogue_tags.py
apps/catalogue/views.py
apps/pdcounter/__init__.py [new file with mode: 0644]
apps/pdcounter/admin.py [new file with mode: 0644]
apps/pdcounter/fixtures/lista.json [new file with mode: 0644]
apps/pdcounter/locale/de/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/de/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/en/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/en/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/es/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/es/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/fr/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/fr/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/lt/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/lt/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/pl/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/pl/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/ru/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/ru/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/locale/uk/LC_MESSAGES/django.mo [new file with mode: 0644]
apps/pdcounter/locale/uk/LC_MESSAGES/django.po [new file with mode: 0644]
apps/pdcounter/migrations/0001_initial.py [new file with mode: 0644]
apps/pdcounter/migrations/__init__.py [new file with mode: 0644]
apps/pdcounter/models.py [new file with mode: 0644]
apps/pdcounter/templatetags/__init__.py [new file with mode: 0644]
apps/pdcounter/templatetags/switch_tag.py [new file with mode: 0644]
apps/pdcounter/urls.py [new file with mode: 0644]
apps/pdcounter/views.py [new file with mode: 0644]
fabfile.py
lib/librarian
wolnelektury/locale/de/LC_MESSAGES/django.mo
wolnelektury/locale/de/LC_MESSAGES/django.po
wolnelektury/locale/en/LC_MESSAGES/django.mo
wolnelektury/locale/en/LC_MESSAGES/django.po
wolnelektury/locale/es/LC_MESSAGES/django.mo
wolnelektury/locale/es/LC_MESSAGES/django.po
wolnelektury/locale/fr/LC_MESSAGES/django.mo
wolnelektury/locale/fr/LC_MESSAGES/django.po
wolnelektury/locale/lt/LC_MESSAGES/django.mo
wolnelektury/locale/lt/LC_MESSAGES/django.po
wolnelektury/locale/pl/LC_MESSAGES/django.mo
wolnelektury/locale/pl/LC_MESSAGES/django.po
wolnelektury/locale/ru/LC_MESSAGES/django.mo
wolnelektury/locale/ru/LC_MESSAGES/django.po
wolnelektury/locale/uk/LC_MESSAGES/django.mo
wolnelektury/locale/uk/LC_MESSAGES/django.po
wolnelektury/settings.py
wolnelektury/templates/catalogue/book_stub_detail.html [deleted file]
wolnelektury/templates/catalogue/pd_counter.html [deleted file]
wolnelektury/templates/catalogue/tagged_object_list.html
wolnelektury/templates/info/join_us.html
wolnelektury/templates/pdcounter/author_detail.html [new file with mode: 0644]
wolnelektury/templates/pdcounter/book_stub_detail.html [new file with mode: 0644]
wolnelektury/templates/pdcounter/pd_counter.html [new file with mode: 0644]

index 88f549f..564e812 100644 (file)
@@ -5,7 +5,7 @@
 from django.contrib import admin
 
 from newtagging.admin import TaggableModelAdmin
-from catalogue.models import Tag, Book, Fragment, BookStub, BookMedia
+from catalogue.models import Tag, Book, Fragment, BookMedia
 
 
 class TagAdmin(admin.ModelAdmin):
@@ -35,15 +35,6 @@ class FragmentAdmin(TaggableModelAdmin):
     ordering = ('book', 'anchor',)
 
 
-class BookStubAdmin(admin.ModelAdmin):
-    # tag_model = Tag
-
-    list_display = ('title', 'author', 'slug','pd')
-    search_fields = ('title','author')
-    ordering = ('title',)
-
-    prepopulated_fields = {'slug': ('title',)}
-
 class MediaAdmin(admin.ModelAdmin):
     #tag_model = BookMedia
 
@@ -52,7 +43,6 @@ class MediaAdmin(admin.ModelAdmin):
 
 
 
-admin.site.register(BookStub, BookStubAdmin)
 admin.site.register(Tag, TagAdmin)
 admin.site.register(Book, BookAdmin)
 admin.site.register(Fragment, FragmentAdmin)
index 44411f0..cf72b2c 100644 (file)
@@ -149,10 +149,6 @@ class Migration(SchemaMigration):
             'parent': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'children'", 'blank': 'True', 'null': 'True', 'to': "orm['catalogue.Book']"}),
             'parent_number': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
             'pdf_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
-            'odt_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
-            'daisy_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
-            'mp3_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
-            'ogg_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
             'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'unique': 'True', 'db_index': 'True'}),
             'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
             'txt_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),            
@@ -213,7 +209,7 @@ class Migration(SchemaMigration):
             'main_page': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'db_index': 'True', 'blank': 'True'}),
             'name': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
             'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'db_index': 'True'}),
-            'sort_key': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'db_index': 'True'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
             'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'blank': 'True'}),
             'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'})
         },
diff --git a/apps/catalogue/migrations/0006_auto__del_bookstub__del_field_tag_death.py b/apps/catalogue/migrations/0006_auto__del_bookstub__del_field_tag_death.py
new file mode 100644 (file)
index 0000000..c251770
--- /dev/null
@@ -0,0 +1,159 @@
+# encoding: utf-8
+import datetime
+from south.db import db
+from south.v2 import SchemaMigration
+from django.db import models
+
+class Migration(SchemaMigration):
+
+    def forwards(self, orm):
+        
+        # Deleting model 'BookStub'
+        db.delete_table('catalogue_bookstub')
+
+        # Deleting field 'Tag.death'
+        db.delete_column('catalogue_tag', 'death')
+
+
+    def backwards(self, orm):
+        
+        # Adding model 'BookStub'
+        db.create_table('catalogue_bookstub', (
+            ('title', self.gf('django.db.models.fields.CharField')(max_length=120)),
+            ('author', self.gf('django.db.models.fields.CharField')(max_length=120)),
+            ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
+            ('translator', self.gf('django.db.models.fields.TextField')(blank=True)),
+            ('translator_death', self.gf('django.db.models.fields.TextField')(blank=True)),
+            ('pd', self.gf('django.db.models.fields.IntegerField')(null=True, blank=True)),
+            ('slug', self.gf('django.db.models.fields.SlugField')(unique=True, max_length=120, db_index=True)),
+        ))
+        db.send_create_signal('catalogue', ['BookStub'])
+
+        # Adding field 'Tag.death'
+        db.add_column('catalogue_tag', 'death', self.gf('django.db.models.fields.IntegerField')(null=True, blank=True), keep_default=False)
+
+
+    models = {
+        'auth.group': {
+            'Meta': {'object_name': 'Group'},
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '80', 'unique': 'True'}),
+            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
+        },
+        'auth.permission': {
+            'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
+            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
+        },
+        'auth.user': {
+            'Meta': {'object_name': 'User'},
+            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
+            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
+            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
+            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
+            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
+            'username': ('django.db.models.fields.CharField', [], {'max_length': '30', 'unique': 'True'})
+        },
+        'catalogue.book': {
+            'Meta': {'ordering': "('title',)", 'object_name': 'Book'},
+            '_short_html': ('django.db.models.fields.TextField', [], {}),
+            '_short_html_de': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_en': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_es': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_fr': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_lt': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_pl': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_ru': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_uk': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_tag_counter': ('catalogue.fields.JSONField', [], {'null': 'True'}),
+            '_theme_counter': ('catalogue.fields.JSONField', [], {'null': 'True'}),
+            'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'epub_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'extra_info': ('catalogue.fields.JSONField', [], {}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'html_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'medias': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['catalogue.BookMedia']", 'symmetrical': 'False', 'blank': 'True'}),
+            'parent': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'children'", 'blank': 'True', 'null': 'True', 'to': "orm['catalogue.Book']"}),
+            'parent_number': ('django.db.models.fields.IntegerField', [], {'default': '0'}),
+            'pdf_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'unique': 'True', 'db_index': 'True'}),
+            'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'txt_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'xml_file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'})
+        },
+        'catalogue.bookmedia': {
+            'Meta': {'ordering': "('type', 'name')", 'object_name': 'BookMedia'},
+            'file': ('django.db.models.fields.files.FileField', [], {'max_length': '100', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': "'100'", 'blank': 'True'}),
+            'type': ('django.db.models.fields.CharField', [], {'max_length': "'100'"}),
+            'uploaded_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'})
+        },
+        'catalogue.filerecord': {
+            'Meta': {'ordering': "('-time', '-slug', '-type')", 'object_name': 'FileRecord'},
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'sha1': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'db_index': 'True'}),
+            'time': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}),
+            'type': ('django.db.models.fields.CharField', [], {'max_length': '20', 'db_index': 'True'})
+        },
+        'catalogue.fragment': {
+            'Meta': {'ordering': "('book', 'anchor')", 'object_name': 'Fragment'},
+            '_short_html': ('django.db.models.fields.TextField', [], {}),
+            '_short_html_de': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_en': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_es': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_fr': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_lt': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_pl': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_ru': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            '_short_html_uk': ('django.db.models.fields.TextField', [], {'null': True, 'blank': True}),
+            'anchor': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'book': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'fragments'", 'to': "orm['catalogue.Book']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'short_text': ('django.db.models.fields.TextField', [], {}),
+            'text': ('django.db.models.fields.TextField', [], {})
+        },
+        'catalogue.tag': {
+            'Meta': {'ordering': "('sort_key',)", 'unique_together': "(('slug', 'category'),)", 'object_name': 'Tag'},
+            'book_count': ('django.db.models.fields.IntegerField', [], {'null': 'True'}),
+            'category': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'main_page': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'db_index': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'db_index': 'True'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
+            'user': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']", 'null': 'True', 'blank': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'})
+        },
+        'catalogue.tagrelation': {
+            'Meta': {'unique_together': "(('tag', 'content_type', 'object_id'),)", 'object_name': 'TagRelation', 'db_table': "'catalogue_tag_relation'"},
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'object_id': ('django.db.models.fields.PositiveIntegerField', [], {'db_index': 'True'}),
+            'tag': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'items'", 'to': "orm['catalogue.Tag']"})
+        },
+        'contenttypes.contenttype': {
+            'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
+            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
+        }
+    }
+
+    complete_apps = ['catalogue']
index 5b33dcc..1d0b83b 100644 (file)
@@ -12,7 +12,6 @@ from django.template.defaultfilters import slugify
 from django.utils.safestring import mark_safe
 from django.utils.translation import get_language
 from django.core.urlresolvers import reverse
-from datetime import datetime
 
 from django.conf import settings
 
@@ -61,7 +60,6 @@ class Tag(TagBase):
 
     user = models.ForeignKey(User, blank=True, null=True)
     book_count = models.IntegerField(_('book count'), blank=False, null=True)
-    death = models.IntegerField(_(u'year of death'), blank=True, null=True)
     gazeta_link = models.CharField(blank=True, max_length=240)
     wiki_link = models.CharField(blank=True, max_length=240)
 
@@ -96,17 +94,6 @@ class Tag(TagBase):
     has_description.short_description = _('description')
     has_description.boolean = True
 
-    def alive(self):
-        return self.death is None
-
-    def in_pd(self):
-        """ tests whether an author is in public domain """
-        return self.death is not None and self.goes_to_pd() <= datetime.now().year
-
-    def goes_to_pd(self):
-        """ calculates the year of public domain entry for an author """
-        return self.death + 71 if self.death is not None else None
-
     def get_count(self):
         """ returns global book count for book tags, fragment count for themes """
 
@@ -661,6 +648,24 @@ class Book(models.Model):
             return self.refresh_theme_counter()
         return dict((int(k), v) for k, v in self.get__theme_counter_value().iteritems())
 
+    def pretty_title(self, html_links=False):
+        book = self
+        names = list(book.tags.filter(category='author'))
+
+        books = []
+        while book:
+            books.append(book)
+            book = book.parent
+        names.extend(reversed(books))
+
+        if html_links:
+            names = ['<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name) for tag in names]
+        else:
+            names = [tag.name for tag in names]
+
+        return ', '.join(names)
+
+
 class Fragment(models.Model):
     text = models.TextField()
     short_text = models.TextField(editable=False)
@@ -692,34 +697,6 @@ class Fragment(models.Model):
             return mark_safe(getattr(self, key))
 
 
-class BookStub(models.Model):
-    title = models.CharField(_('title'), max_length=120)
-    author = models.CharField(_('author'), max_length=120)
-    pd = models.IntegerField(_('goes to public domain'), null=True, blank=True)
-    slug = models.SlugField(_('slug'), max_length=120, unique=True, db_index=True)
-    translator = models.TextField(_('translator'), blank=True)
-    translator_death = models.TextField(_('year of translator\'s death'), blank=True)
-
-    class Meta:
-        ordering = ('title',)
-        verbose_name = _('book stub')
-        verbose_name_plural = _('book stubs')
-
-    def __unicode__(self):
-        return self.title
-
-    @permalink
-    def get_absolute_url(self):
-        return ('catalogue.views.book_detail', [self.slug])
-
-    def in_pd(self):
-        return self.pd is not None and self.pd <= datetime.now().year
-
-    @property
-    def name(self):
-        return self.title
-
-
 class FileRecord(models.Model):
     slug = models.SlugField(_('slug'), max_length=120, db_index=True)
     type = models.CharField(_('type'), max_length=20, db_index=True)
index 6ad83a0..6560730 100644 (file)
@@ -53,29 +53,9 @@ def simple_title(tags):
     return capfirst(', '.join(title))
 
 
-def book_stub_title(book):
-    return ', '.join((book.author, book.title))
-
-
 @register.simple_tag
 def book_title(book, html_links=False):
-    try:
-        names = list(book.tags.filter(category='author'))
-    except AttributeError:
-        return book_stub_title(book)
-
-    books = []
-    while book:
-        books.append(book)
-        book = book.parent
-    names.extend(reversed(books))
-
-    if html_links:
-        names = ['<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name) for tag in names]
-    else:
-        names = [tag.name for tag in names]
-
-    return ', '.join(names)
+    return book.pretty_title(html_links)
 
 
 @register.simple_tag
index fbd4fb6..82ca9fd 100644 (file)
@@ -36,6 +36,8 @@ from catalogue import models
 from catalogue import forms
 from catalogue.utils import split_tags
 from newtagging import views as newtagging_views
+from pdcounter import models as pdcounter_models
+from pdcounter import views as pdcounter_views
 from slughifi import slughifi
 
 
@@ -144,7 +146,11 @@ def tagged_object_list(request, tags=''):
     try:
         tags = models.Tag.get_tag_list(tags)
     except models.Tag.DoesNotExist:
-        raise Http404
+        chunks = tags.split('/')
+        if len(chunks) == 2 and chunks[0] == 'autor':
+            return pdcounter_views.author_detail(request, chunks[1])
+        else:
+            raise Http404
     except models.Tag.MultipleObjectsReturned, e:
         return differentiate_tags(request, e.tags, e.ambiguous_slugs)
 
@@ -162,7 +168,7 @@ def tagged_object_list(request, tags=''):
     only_shelf = shelf_is_set and len(tags) == 1
     only_my_shelf = only_shelf and request.user.is_authenticated() and request.user == tags[0].user
 
-    objects = only_author = pd_counter = None
+    objects = only_author = None
     categories = {}
 
     if theme_is_set:
@@ -215,7 +221,6 @@ def tagged_object_list(request, tags=''):
 
     if not objects:
         only_author = len(tags) == 1 and tags[0].category == 'author'
-        pd_counter = only_author and tags[0].goes_to_pd()
         objects = models.Book.objects.none()
 
     return object_list(
@@ -226,7 +231,6 @@ def tagged_object_list(request, tags=''):
             'categories': categories,
             'only_shelf': only_shelf,
             'only_author': only_author,
-            'pd_counter': pd_counter,
             'only_my_shelf': only_my_shelf,
             'formats_form': forms.DownloadFormatsForm(),
 
@@ -250,7 +254,7 @@ def book_detail(request, slug):
     try:
         book = models.Book.objects.get(slug=slug)
     except models.Book.DoesNotExist:
-        return book_stub_detail(request, slug)
+        return pdcounter_views.book_stub_detail(request, slug)
 
     book_tag = book.book_tag()
     tags = list(book.tags.filter(~Q(category='set')))
@@ -276,15 +280,6 @@ def book_detail(request, slug):
         context_instance=RequestContext(request))
 
 
-def book_stub_detail(request, slug):
-    book = get_object_or_404(models.BookStub, slug=slug)
-    pd_counter = book.pd
-    form = forms.SearchForm()
-
-    return render_to_response('catalogue/book_stub_detail.html', locals(),
-        context_instance=RequestContext(request))
-
-
 def book_text(request, slug):
     book = get_object_or_404(models.Book, slug=slug)
     if not book.has_html_file():
@@ -378,9 +373,11 @@ _apps = (
 
 def _tags_starting_with(prefix, user=None):
     prefix = prefix.lower()
-    book_stubs = models.BookStub.objects.filter(_word_starts_with('title', prefix))
+    # PD counter
+    book_stubs = pdcounter_models.BookStub.objects.filter(_word_starts_with('title', prefix))
+    authors = pdcounter_models.Author.objects.filter(_word_starts_with('name', prefix))
+
     books = models.Book.objects.filter(_word_starts_with('title', prefix))
-    book_stubs = filter(lambda x: x not in books, book_stubs)
     tags = models.Tag.objects.filter(_word_starts_with('name', prefix))
     if user and user.is_authenticated():
         tags = tags.filter(~Q(category='book') & (~Q(category='set') | Q(user=user)))
@@ -388,21 +385,22 @@ def _tags_starting_with(prefix, user=None):
         tags = tags.filter(~Q(category='book') & ~Q(category='set'))
 
     prefix_regexp = re.compile(_word_starts_with_regexp(prefix))
-    return list(books) + list(tags) + list(book_stubs) + [app for app in _apps if prefix_regexp.search(app.lower)]
+    return list(books) + list(tags) + [app for app in _apps if prefix_regexp.search(app.lower)] + list(book_stubs) + list(authors)
 
 
 def _get_result_link(match, tag_list):
-    if isinstance(match, models.Book) or isinstance(match, models.BookStub):
-        return match.get_absolute_url()
-    elif isinstance(match, App):
-        return match.view()
-    else:
+    if isinstance(match, models.Tag):
         return reverse('catalogue.views.tagged_object_list',
             kwargs={'tags': '/'.join(tag.url_chunk for tag in tag_list + [match])}
         )
+    elif isinstance(match, App):
+        return match.view()
+    else:
+        return match.get_absolute_url()
+
 
 def _get_result_type(match):
-    if isinstance(match, models.Book) or isinstance(match, models.BookStub):
+    if isinstance(match, models.Book) or isinstance(match, pdcounter_models.BookStub):
         type = 'book'
     else:
         type = match.category
@@ -415,7 +413,7 @@ def books_starting_with(prefix):
 
 
 def find_best_matches(query, user=None):
-    """ Finds a Book, Tag or Bookstub best matching a query.
+    """ Finds a Book, Tag, BookStub or Author best matching a query.
 
     Returns a with:
       - zero elements when nothing is found,
@@ -430,11 +428,21 @@ def find_best_matches(query, user=None):
         raise ValueError("query must have at least two characters")
 
     result = tuple(_tags_starting_with(query, user))
+    # remove pdcounter stuff
+    book_titles = set(match.pretty_title().lower() for match in result
+                      if isinstance(match, models.Book))
+    authors = set(match.name.lower() for match in result
+                  if isinstance(match, models.Tag) and match.category=='author')
+    result = (res for res in result if not (
+                 (isinstance(res, pdcounter_models.BookStub) and res.pretty_title().lower() in book_titles)
+                 or (isinstance(res, pdcounter_models.Author) and res.name.lower() in authors)
+             ))
+
     exact_matches = tuple(res for res in result if res.name.lower() == query)
     if exact_matches:
         return exact_matches
     else:
-        return result[:1]
+        return tuple(result)[:1]
 
 
 def search(request):
diff --git a/apps/pdcounter/__init__.py b/apps/pdcounter/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/apps/pdcounter/admin.py b/apps/pdcounter/admin.py
new file mode 100644 (file)
index 0000000..f946cad
--- /dev/null
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.contrib import admin
+
+from pdcounter.models import BookStub, Author
+
+
+class BookStubAdmin(admin.ModelAdmin):
+    list_display = ('title', 'author', 'slug', 'pd')
+    search_fields = ('title','author')
+    ordering = ('title',)
+
+    prepopulated_fields = {'slug': ('title',)}
+
+class AuthorAdmin(admin.ModelAdmin):
+    list_display = ('name', 'slug', 'death')
+    search_fields = ('name',)
+    ordering = ('sort_key', 'name')
+
+    prepopulated_fields = {'slug': ('name',), 'sort_key': ('name',),}
+
+
+admin.site.register(BookStub, BookStubAdmin)
+admin.site.register(Author, AuthorAdmin)
diff --git a/apps/pdcounter/fixtures/lista.json b/apps/pdcounter/fixtures/lista.json
new file mode 100644 (file)
index 0000000..b73b543
--- /dev/null
@@ -0,0 +1,9699 @@
+[
+  {
+    "pk": 1, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "amiel", 
+      "slug": "irit-amiel", 
+      "gazeta_link": "", 
+      "name": "Irit Amiel"
+    }
+  }, 
+  {
+    "pk": 2, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "anczyc", 
+      "slug": "wladyslaw-anczyc", 
+      "gazeta_link": "", 
+      "name": "W\u0142adys\u0142aw Anczyc"
+    }
+  }, 
+  {
+    "pk": 3, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1944, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "baczynski", 
+      "slug": "krzysztof-kamil-baczynski", 
+      "gazeta_link": "", 
+      "name": "Krzysztof Kamil Baczy\u0144ski"
+    }
+  }, 
+  {
+    "pk": 4, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "balucki", 
+      "slug": "michal-balucki", 
+      "gazeta_link": "", 
+      "name": "Micha\u0142 Ba\u0142ucki"
+    }
+  }, 
+  {
+    "pk": 5, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "baranczak", 
+      "slug": "stanislaw-baranczak", 
+      "gazeta_link": "", 
+      "name": "Stanis\u0142aw Bara\u0144czak"
+    }
+  }, 
+  {
+    "pk": 6, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "bedier", 
+      "slug": "joseph-bedier", 
+      "gazeta_link": "", 
+      "name": "Joseph B\u00e9dier"
+    }
+  }, 
+  {
+    "pk": 7, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "belza", 
+      "slug": "wladyslaw-belza", 
+      "gazeta_link": "", 
+      "name": "W\u0142adys\u0142aw Be\u0142za"
+    }
+  }, 
+  {
+    "pk": 8, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1983, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "bialoszewski", 
+      "slug": "miron-bialoszewski", 
+      "gazeta_link": "", 
+      "name": "Miron Bia\u0142oszewski"
+    }
+  }, 
+  {
+    "pk": 9, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "bielowski", 
+      "slug": "august-bielowski", 
+      "gazeta_link": "", 
+      "name": "August Bielowski"
+    }
+  }, 
+  {
+    "pk": 10, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2009, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "blonski", 
+      "slug": "jan-blonski", 
+      "gazeta_link": "", 
+      "name": "Jan B\u0142o\u0144ski"
+    }
+  }, 
+  {
+    "pk": 11, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "bordkiewicz", 
+      "slug": "stefan-bordkiewicz", 
+      "gazeta_link": "", 
+      "name": "Stefan Bordkiewicz"
+    }
+  }, 
+  {
+    "pk": 12, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1951, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "borowski", 
+      "slug": "tadeusz-borowski", 
+      "gazeta_link": "", 
+      "name": "Tadeusz Borowski"
+    }
+  }, 
+  {
+    "pk": 13, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "bracia", 
+      "slug": "grimm-bracia", 
+      "gazeta_link": "", 
+      "name": "Grimm Bracia"
+    }
+  }, 
+  {
+    "pk": 14, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1966, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "brzechwa", 
+      "slug": "jan-brzechwa", 
+      "gazeta_link": "", 
+      "name": "Jan Brzechwa"
+    }
+  }, 
+  {
+    "pk": 15, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1940, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "bulhakow", 
+      "slug": "michal-bulhakow", 
+      "gazeta_link": "", 
+      "name": "Micha\u0142 Bu\u0142hakow"
+    }
+  }, 
+  {
+    "pk": 16, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "burnett", 
+      "slug": "frances-hodgson-burnett", 
+      "gazeta_link": "", 
+      "name": "Frances Hodgson Burnett"
+    }
+  }, 
+  {
+    "pk": 17, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1960, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "camus", 
+      "slug": "albert-camus", 
+      "gazeta_link": "", 
+      "name": "Albert Camus"
+    }
+  }, 
+  {
+    "pk": 18, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "cervantes", 
+      "slug": "miguel-cervantes", 
+      "gazeta_link": "", 
+      "name": "Miguel Cervantes"
+    }
+  }, 
+  {
+    "pk": 19, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1976, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "christie", 
+      "slug": "agatha-christie", 
+      "gazeta_link": "", 
+      "name": "Agatha Christie"
+    }
+  }, 
+  {
+    "pk": 20, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "chwin", 
+      "slug": "stefan-chwin", 
+      "gazeta_link": "", 
+      "name": "Stefan Chwin"
+    }
+  }, 
+  {
+    "pk": 21, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "collodi", 
+      "slug": "carlo-collodi", 
+      "gazeta_link": "", 
+      "name": "Carlo Collodi"
+    }
+  }, 
+  {
+    "pk": 22, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "conrad", 
+      "slug": "joseph-conrad", 
+      "gazeta_link": "", 
+      "name": "Joseph Conrad"
+    }
+  }, 
+  {
+    "pk": 23, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "czechowicz", 
+      "slug": "jozef-czechowicz", 
+      "gazeta_link": "", 
+      "name": "J\u00f3zef Czechowicz"
+    }
+  }, 
+  {
+    "pk": 24, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1965, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "dabrowska", 
+      "slug": "maria-dabrowska", 
+      "gazeta_link": "", 
+      "name": "Maria D\u0105browska"
+    }
+  }, 
+  {
+    "pk": 25, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1990, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "dahl", 
+      "slug": "ronald-dahl", 
+      "gazeta_link": "", 
+      "name": "Ronald Dahl"
+    }
+  }, 
+  {
+    "pk": 26, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "dennhoff-czarnocki", 
+      "slug": "waclaw-dennhoff-czarnocki", 
+      "gazeta_link": "", 
+      "name": "Wac\u0142aw Dennhoff-Czarnocki"
+    }
+  }, 
+  {
+    "pk": 27, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "dmowski", 
+      "slug": "roman-dmowski", 
+      "gazeta_link": "", 
+      "name": "Roman Dmowski"
+    }
+  }, 
+  {
+    "pk": 28, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "dolega-mostowicz", 
+      "slug": "tadeusz-dolega-mostowicz", 
+      "gazeta_link": "", 
+      "name": "Tadeusz Do\u0142\u0119ga-Mostowicz"
+    }
+  }, 
+  {
+    "pk": 29, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "dostojewski", 
+      "slug": "fiodor-dostojewski", 
+      "gazeta_link": "", 
+      "name": "Fiodor Dostojewski"
+    }
+  }, 
+  {
+    "pk": 30, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "eco", 
+      "slug": "umberto-eco", 
+      "gazeta_link": "", 
+      "name": "Umberto Eco"
+    }
+  }, 
+  {
+    "pk": 31, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "erynbergh", 
+      "slug": "gustawa-erynbergh", 
+      "gazeta_link": "", 
+      "name": "Gustawa Erynbergh"
+    }
+  }, 
+  {
+    "pk": 32, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1985, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "fiedler", 
+      "slug": "arkady-fiedler", 
+      "gazeta_link": "", 
+      "name": "Arkady Fiedler"
+    }
+  }, 
+  {
+    "pk": 33, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "fink", 
+      "slug": "ida-fink", 
+      "gazeta_link": "", 
+      "name": "Ida Fink"
+    }
+  }, 
+  {
+    "pk": 34, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "flaubert", 
+      "slug": "gustaw-flaubert", 
+      "gazeta_link": "", 
+      "name": "Gustaw Flaubert"
+    }
+  }, 
+  {
+    "pk": 35, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "fredro", 
+      "slug": "aleksander-fredro", 
+      "gazeta_link": "", 
+      "name": "Aleksander Fredro"
+    }
+  }, 
+  {
+    "pk": 36, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1953, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "galczynski", 
+      "slug": "konstanty-ildefons-galczynski", 
+      "gazeta_link": "", 
+      "name": "Konstanty Ildefons Ga\u0142czy\u0144ski"
+    }
+  }, 
+  {
+    "pk": 37, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1969, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "gombrowicz", 
+      "slug": "witold-gombrowicz", 
+      "gazeta_link": "", 
+      "name": "Witold Gombrowicz"
+    }
+  }, 
+  {
+    "pk": 38, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "gomulicki", 
+      "slug": "wiktor-gomulicki", 
+      "gazeta_link": "", 
+      "name": "Wiktor Gomulicki"
+    }
+  }, 
+  {
+    "pk": 39, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1977, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "goscinny", 
+      "slug": "rene-goscinny", 
+      "gazeta_link": "", 
+      "name": "Ren\u00e9 Goscinny"
+    }
+  }, 
+  {
+    "pk": 40, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "grabinski", 
+      "slug": "stefan-grabinski", 
+      "gazeta_link": "", 
+      "name": "Stefan Grabi\u0144ski"
+    }
+  }, 
+  {
+    "pk": 41, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "grass", 
+      "slug": "guenter-grass", 
+      "gazeta_link": "", 
+      "name": "G\u00fcnter Grass"
+    }
+  }, 
+  {
+    "pk": 42, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "grynberg", 
+      "slug": "henryk-grynberg", 
+      "gazeta_link": "", 
+      "name": "Henryk Grynberg"
+    }
+  }, 
+  {
+    "pk": 43, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1998, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "herbert", 
+      "slug": "zbigniew-herbert", 
+      "gazeta_link": "", 
+      "name": "Zbigniew Herbert"
+    }
+  }, 
+  {
+    "pk": 44, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2000, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "herling-grudzinski", 
+      "slug": "gustaw-herling-grudzinski", 
+      "gazeta_link": "", 
+      "name": "Gustaw Herling-Grudzi\u0144ski"
+    }
+  }, 
+  {
+    "pk": 45, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "homer", 
+      "slug": "homer", 
+      "gazeta_link": "", 
+      "name": "Homer"
+    }
+  }, 
+  {
+    "pk": 46, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "horacy", 
+      "slug": "horacy", 
+      "gazeta_link": "", 
+      "name": "Horacy"
+    }
+  }, 
+  {
+    "pk": 47, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "huelle", 
+      "slug": "pawel-huelle", 
+      "gazeta_link": "", 
+      "name": "Pawe\u0142 Huelle"
+    }
+  }, 
+  {
+    "pk": 48, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1980, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "iwaszkiewicz", 
+      "slug": "jaroslaw-iwaszkiewicz", 
+      "gazeta_link": "", 
+      "name": "Jaros\u0142aw Iwaszkiewicz"
+    }
+  }, 
+  {
+    "pk": 49, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "jachowicz", 
+      "slug": "stanislaw-jachowicz", 
+      "gazeta_link": "", 
+      "name": "Stanis\u0142aw Jachowicz"
+    }
+  }, 
+  {
+    "pk": 50, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "janion", 
+      "slug": "maria-janion", 
+      "gazeta_link": "", 
+      "name": "Maria Janion"
+    }
+  }, 
+  {
+    "pk": 51, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1983, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "jastrun", 
+      "slug": "mieczyslaw-jastrun", 
+      "gazeta_link": "", 
+      "name": "Mieczys\u0142aw Jastrun"
+    }
+  }, 
+  {
+    "pk": 52, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2003, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "jurgielewiczowa", 
+      "slug": "irena-jurgielewiczowa", 
+      "gazeta_link": "", 
+      "name": "Irena Jurgielewiczowa"
+    }
+  }, 
+  {
+    "pk": 53, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kafka", 
+      "slug": "franz-kafka", 
+      "gazeta_link": "", 
+      "name": "Franz Kafka"
+    }
+  }, 
+  {
+    "pk": 54, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kakolewski", 
+      "slug": "krzysztof-kakolewski", 
+      "gazeta_link": "", 
+      "name": "Krzysztof K\u0105kolewski"
+    }
+  }, 
+  {
+    "pk": 55, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1978, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kaminski", 
+      "slug": "aleksander-kaminski", 
+      "gazeta_link": "", 
+      "name": "Aleksander Kami\u0144ski"
+    }
+  }, 
+  {
+    "pk": 56, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2007, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kapuscinski", 
+      "slug": "ryszard-kapuscinski", 
+      "gazeta_link": "", 
+      "name": "Ryszard Kapu\u015bci\u0144ski"
+    }
+  }, 
+  {
+    "pk": 57, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "karpinski", 
+      "slug": "franciszek-karpinski", 
+      "gazeta_link": "", 
+      "name": "Franciszek Karpi\u0144ski"
+    }
+  }, 
+  {
+    "pk": 58, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kasdepke", 
+      "slug": "grzegorz-kasdepke", 
+      "gazeta_link": "", 
+      "name": "Grzegorz Kasdepke"
+    }
+  }, 
+  {
+    "pk": 59, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kasprowicz", 
+      "slug": "jan-kasprowicz", 
+      "gazeta_link": "", 
+      "name": "Jan Kasprowicz"
+    }
+  }, 
+  {
+    "pk": 60, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kochanowski", 
+      "slug": "jan-kochanowski", 
+      "gazeta_link": "", 
+      "name": "Jan Kochanowski"
+    }
+  }, 
+  {
+    "pk": 61, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2009, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kolakowski", 
+      "slug": "leszek-kolakowski", 
+      "gazeta_link": "", 
+      "name": "Leszek Ko\u0142akowski"
+    }
+  }, 
+  {
+    "pk": 62, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kolberg", 
+      "slug": "oskar-kolberg", 
+      "gazeta_link": "", 
+      "name": "Oskar Kolberg"
+    }
+  }, 
+  {
+    "pk": 63, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "konopnicka", 
+      "slug": "maria-konopnicka", 
+      "gazeta_link": "", 
+      "name": "Maria Konopnicka"
+    }
+  }, 
+  {
+    "pk": 64, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "konwicki", 
+      "slug": "tadeusz-konwicki", 
+      "gazeta_link": "", 
+      "name": "Tadeusz Konwicki"
+    }
+  }, 
+  {
+    "pk": 65, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kowalski", 
+      "slug": "franciszek-kowalski", 
+      "gazeta_link": "", 
+      "name": "Franciszek Kowalski"
+    }
+  }, 
+  {
+    "pk": 66, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kozakiewicz", 
+      "slug": "jan-kozakiewicz", 
+      "gazeta_link": "", 
+      "name": "Jan Kozakiewicz"
+    }
+  }, 
+  {
+    "pk": 67, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "krall", 
+      "slug": "hanna-krall", 
+      "gazeta_link": "", 
+      "name": "Hanna Krall"
+    }
+  }, 
+  {
+    "pk": 68, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "krasicki", 
+      "slug": "ignacy-krasicki", 
+      "gazeta_link": "", 
+      "name": "Ignacy Krasicki"
+    }
+  }, 
+  {
+    "pk": 69, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "krasinski", 
+      "slug": "zygmunt-krasinski", 
+      "gazeta_link": "", 
+      "name": "Zygmunt Krasi\u0144ski"
+    }
+  }, 
+  {
+    "pk": 70, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kraszewski", 
+      "slug": "ignacy-kraszewski", 
+      "gazeta_link": "", 
+      "name": "Ignacy Kraszewski"
+    }
+  }, 
+  {
+    "pk": 71, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2004, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kubiak", 
+      "slug": "zygmunt-kubiak", 
+      "gazeta_link": "", 
+      "name": "Zygmunt Kubiak"
+    }
+  }, 
+  {
+    "pk": 72, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1989, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kuncewiczowa", 
+      "slug": "maria-kuncewiczowa", 
+      "gazeta_link": "", 
+      "name": "Maria Kuncewiczowa"
+    }
+  }, 
+  {
+    "pk": 73, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1993, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "kusniewicz", 
+      "slug": "andrzej-kusniewicz", 
+      "gazeta_link": "", 
+      "name": "Andrzej Ku\u015bniewicz"
+    }
+  }, 
+  {
+    "pk": 74, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "le-guin", 
+      "slug": "ursula-le-guin", 
+      "gazeta_link": "", 
+      "name": "Ursula Le Guin"
+    }
+  }, 
+  {
+    "pk": 75, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1956, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lechon", 
+      "slug": "jan-lechon", 
+      "gazeta_link": "", 
+      "name": "Jan Lecho\u0144"
+    }
+  }, 
+  {
+    "pk": 76, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2006, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lem", 
+      "slug": "stanislaw-lem", 
+      "gazeta_link": "", 
+      "name": "Stanis\u0142aw Lem"
+    }
+  }, 
+  {
+    "pk": 77, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lenartowicz", 
+      "slug": "teofil-lenartowicz", 
+      "gazeta_link": "", 
+      "name": "Teofil Lenartowicz"
+    }
+  }, 
+  {
+    "pk": 78, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lesmian", 
+      "slug": "boleslaw-lesmian", 
+      "gazeta_link": "", 
+      "name": "Boles\u0142aw Le\u015bmian"
+    }
+  }, 
+  {
+    "pk": 79, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1963, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lewis", 
+      "slug": "clive-staples-lewis", 
+      "gazeta_link": "", 
+      "name": "Clive Staples Lewis"
+    }
+  }, 
+  {
+    "pk": 80, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2002, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lindgren", 
+      "slug": "astrid-lindgren", 
+      "gazeta_link": "", 
+      "name": "Astrid Lindgren"
+    }
+  }, 
+  {
+    "pk": 81, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lipska", 
+      "slug": "ewa-lipska", 
+      "gazeta_link": "", 
+      "name": "Ewa Lipska"
+    }
+  }, 
+  {
+    "pk": 82, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "lubinski", 
+      "slug": "ludwik-pomian-lubinski", 
+      "gazeta_link": "", 
+      "name": "Ludwik Pomian \u0141ubi\u0144ski"
+    }
+  }, 
+  {
+    "pk": 83, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1985, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "mackiewicz", 
+      "slug": "jozef-mackiewicz", 
+      "gazeta_link": "", 
+      "name": "J\u00f3zef Mackiewicz"
+    }
+  }, 
+  {
+    "pk": 84, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1953, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "makuszynski", 
+      "slug": "kornel-makuszynski", 
+      "gazeta_link": "", 
+      "name": "Kornel Makuszy\u0144ski"
+    }
+  }, 
+  {
+    "pk": 85, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1955, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "mann", 
+      "slug": "thomas-mann", 
+      "gazeta_link": "", 
+      "name": "Thomas Mann"
+    }
+  }, 
+  {
+    "pk": 86, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "marquez", 
+      "slug": "gabriel-garcia-marquez", 
+      "gazeta_link": "", 
+      "name": "Gabriel Garcia Marquez"
+    }
+  }, 
+  {
+    "pk": 87, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "mickiewicz", 
+      "slug": "adam-mickiewicz", 
+      "gazeta_link": "", 
+      "name": "Adam Mickiewicz"
+    }
+  }, 
+  {
+    "pk": 88, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2004, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "milosz", 
+      "slug": "czeslaw-milosz", 
+      "gazeta_link": "", 
+      "name": "Czes\u0142aw Mi\u0142osz"
+    }
+  }, 
+  {
+    "pk": 89, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "minkowski", 
+      "slug": "aleksander-minkowski", 
+      "gazeta_link": "", 
+      "name": "Aleksander Minkowski"
+    }
+  }, 
+  {
+    "pk": 90, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "moliere", 
+      "slug": "moliere", 
+      "gazeta_link": "", 
+      "name": "Moli\u00e8re"
+    }
+  }, 
+  {
+    "pk": 91, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1952, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "molnar", 
+      "slug": "ferenc-molnar", 
+      "gazeta_link": "", 
+      "name": "Ferenc Moln\u00e1r"
+    }
+  }, 
+  {
+    "pk": 92, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1942, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "montgomery", 
+      "slug": "lucy-maud-montgomery", 
+      "gazeta_link": "", 
+      "name": "Lucy Maud Montgomery"
+    }
+  }, 
+  {
+    "pk": 93, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "morsztyn", 
+      "slug": "jan-andrzej-morsztyn", 
+      "gazeta_link": "", 
+      "name": "Jan Andrzej Morsztyn"
+    }
+  }, 
+  {
+    "pk": 94, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "morsztyn", 
+      "slug": "zbigniew-morsztyn", 
+      "gazeta_link": "", 
+      "name": "Zbigniew Morsztyn"
+    }
+  }, 
+  {
+    "pk": 95, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "mrozek", 
+      "slug": "slawomir-mrozek", 
+      "gazeta_link": "", 
+      "name": "S\u0142awomir Mro\u017cek"
+    }
+  }, 
+  {
+    "pk": 96, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "musierowicz", 
+      "slug": "malgorzata-musierowicz", 
+      "gazeta_link": "", 
+      "name": "Ma\u0142gorzata Musierowicz"
+    }
+  }, 
+  {
+    "pk": 97, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "mysliwski", 
+      "slug": "wieslaw-mysliwski", 
+      "gazeta_link": "", 
+      "name": "Wies\u0142aw My\u015bliwski"
+    }
+  }, 
+  {
+    "pk": 98, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1977, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "nabokov", 
+      "slug": "vladimir-nabokov", 
+      "gazeta_link": "", 
+      "name": "Vladimir Nabokov"
+    }
+  }, 
+  {
+    "pk": 99, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "naborowski", 
+      "slug": "daniel-naborowski", 
+      "gazeta_link": "", 
+      "name": "Daniel Naborowski"
+    }
+  }, 
+  {
+    "pk": 100, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1954, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "nalkowska", 
+      "slug": "zofia-nalkowska", 
+      "gazeta_link": "", 
+      "name": "Zofia Na\u0142kowska"
+    }
+  }, 
+  {
+    "pk": 101, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "niemcewicz", 
+      "slug": "julian-ursyn-niemcewicz", 
+      "gazeta_link": "", 
+      "name": "Julian Ursyn Niemcewicz"
+    }
+  }, 
+  {
+    "pk": 102, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "niziurski", 
+      "slug": "edmund-niziurski", 
+      "gazeta_link": "", 
+      "name": "Edmund Niziurski"
+    }
+  }, 
+  {
+    "pk": 103, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "norwid", 
+      "slug": "cyprian-kamil-norwid", 
+      "gazeta_link": "", 
+      "name": "Cyprian Kamil Norwid"
+    }
+  }, 
+  {
+    "pk": 104, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "nowakowski", 
+      "slug": "marek-nowakowski", 
+      "gazeta_link": "", 
+      "name": "Marek Nowakowski"
+    }
+  }, 
+  {
+    "pk": 105, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "olech", 
+      "slug": "joanna-olech", 
+      "gazeta_link": "", 
+      "name": "Joanna Olech"
+    }
+  }, 
+  {
+    "pk": 106, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "onichimowska", 
+      "slug": "anna-onichimowska", 
+      "gazeta_link": "", 
+      "name": "Anna Onichimowska"
+    }
+  }, 
+  {
+    "pk": 107, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "oppman", 
+      "slug": "artur-oppman", 
+      "gazeta_link": "", 
+      "name": "Artur Oppman"
+    }
+  }, 
+  {
+    "pk": 108, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1950, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "orwell", 
+      "slug": "george-orwell", 
+      "gazeta_link": "", 
+      "name": "George Orwell"
+    }
+  }, 
+  {
+    "pk": 109, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "orzeszkowa", 
+      "slug": "eliza-orzeszkowa", 
+      "gazeta_link": "", 
+      "name": "Eliza Orzeszkowa"
+    }
+  }, 
+  {
+    "pk": 110, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "ostrowska", 
+      "slug": "bronislawa-ostrowska", 
+      "gazeta_link": "", 
+      "name": "Bronis\u0142awa Ostrowska"
+    }
+  }, 
+  {
+    "pk": 111, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1978, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "parandowski", 
+      "slug": "jan-parandowski", 
+      "gazeta_link": "", 
+      "name": "Jan Parandowski"
+    }
+  }, 
+  {
+    "pk": 112, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "pasek", 
+      "slug": "jan-chryzostom-pasek", 
+      "gazeta_link": "", 
+      "name": "Jan Chryzostom Pasek"
+    }
+  }, 
+  {
+    "pk": 113, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1945, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "pawlikowska-jasnorzewska", 
+      "slug": "maria-pawlikowska-jasnorzewska", 
+      "gazeta_link": "", 
+      "name": "Maria Pawlikowska-Jasnorzewska"
+    }
+  }, 
+  {
+    "pk": 114, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "pilch", 
+      "slug": "jerzy-pilch", 
+      "gazeta_link": "", 
+      "name": "Jerzy Pilch"
+    }
+  }, 
+  {
+    "pk": 115, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "platon", 
+      "slug": "platon", 
+      "gazeta_link": "", 
+      "name": "Platon"
+    }
+  }, 
+  {
+    "pk": 116, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "pol", 
+      "slug": "wincenty-pol", 
+      "gazeta_link": "", 
+      "name": "Wincenty Pol"
+    }
+  }, 
+  {
+    "pk": 117, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "potocki", 
+      "slug": "waclaw-potocki", 
+      "gazeta_link": "", 
+      "name": "Wac\u0142aw Potocki"
+    }
+  }, 
+  {
+    "pk": 118, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "prus", 
+      "slug": "boleslaw-prus", 
+      "gazeta_link": "", 
+      "name": "Boles\u0142aw Prus"
+    }
+  }, 
+  {
+    "pk": 119, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1940, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "przerwa-tetmajer", 
+      "slug": "kazimierz-przerwa-tetmajer", 
+      "gazeta_link": "", 
+      "name": "Kazimierz Przerwa-Tetmajer"
+    }
+  }, 
+  {
+    "pk": 120, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1970, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "przybos", 
+      "slug": "julian-przybos", 
+      "gazeta_link": "", 
+      "name": "Julian Przybo\u015b"
+    }
+  }, 
+  {
+    "pk": 121, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "rej", 
+      "slug": "mikolaj-rej", 
+      "gazeta_link": "", 
+      "name": "Miko\u0142aj Rej"
+    }
+  }, 
+  {
+    "pk": 122, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "reymont", 
+      "slug": "wladyslaw-stanislaw-reymont", 
+      "gazeta_link": "", 
+      "name": "W\u0142adys\u0142aw Stanis\u0142aw Reymont"
+    }
+  }, 
+  {
+    "pk": 123, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "rozewicz", 
+      "slug": "tadeusz-rozewicz", 
+      "gazeta_link": "", 
+      "name": "Tadeusz R\u00f3\u017cewicz"
+    }
+  }, 
+  {
+    "pk": 124, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "rymkiewicz", 
+      "slug": "jaroslaw-rymkiewicz", 
+      "gazeta_link": "", 
+      "name": "Jaros\u0142aw Rymkiewicz"
+    }
+  }, 
+  {
+    "pk": 125, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "rzewuski", 
+      "slug": "henryk-rzewuski", 
+      "gazeta_link": "", 
+      "name": "Henryk Rzewuski"
+    }
+  }, 
+  {
+    "pk": 126, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1944, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "saint-exupery", 
+      "slug": "antoine-de-saint-exupery", 
+      "gazeta_link": "", 
+      "name": "Antoine de Saint Exup\u00e9ry"
+    }
+  }, 
+  {
+    "pk": 127, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "sapkowski", 
+      "slug": "andrzej-sapkowski", 
+      "gazeta_link": "", 
+      "name": "Andrzej Sapkowski"
+    }
+  }, 
+  {
+    "pk": 128, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1942, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "schulz", 
+      "slug": "bruno-schulz", 
+      "gazeta_link": "", 
+      "name": "Bruno Schulz"
+    }
+  }, 
+  {
+    "pk": 129, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "sempe", 
+      "slug": "jean-jacques-sempe", 
+      "gazeta_link": "", 
+      "name": "Jean-Jacques Semp\u00e9"
+    }
+  }, 
+  {
+    "pk": 130, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "shakespeare", 
+      "slug": "william-shakespeare", 
+      "gazeta_link": "", 
+      "name": "William Shakespeare"
+    }
+  }, 
+  {
+    "pk": 131, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "sienkiewicz", 
+      "slug": "henryk-sienkiewicz", 
+      "gazeta_link": "", 
+      "name": "Henryk Sienkiewicz"
+    }
+  }, 
+  {
+    "pk": 132, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1991, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "singer", 
+      "slug": "isaac-bashevis-singer", 
+      "gazeta_link": "", 
+      "name": "Isaac Bashevis Singer"
+    }
+  }, 
+  {
+    "pk": 133, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "skalkowski", 
+      "slug": "marceli-skalkowski", 
+      "gazeta_link": "", 
+      "name": "Marceli Ska\u0142kowski"
+    }
+  }, 
+  {
+    "pk": 134, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "skarga", 
+      "slug": "piotr-skarga", 
+      "gazeta_link": "", 
+      "name": "Piotr Skarga"
+    }
+  }, 
+  {
+    "pk": 135, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "slowacki", 
+      "slug": "juliusz-slowacki", 
+      "gazeta_link": "", 
+      "name": "Juliusz S\u0142owacki"
+    }
+  }, 
+  {
+    "pk": 136, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1957, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "staff", 
+      "slug": "leopold-staff", 
+      "gazeta_link": "", 
+      "name": "Leopold Staff"
+    }
+  }, 
+  {
+    "pk": 137, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "staszic", 
+      "slug": "stanislaw-staszic", 
+      "gazeta_link": "", 
+      "name": "Stanis\u0142aw Staszic"
+    }
+  }, 
+  {
+    "pk": 138, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1968, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "steinbeck", 
+      "slug": "john-steinbeck", 
+      "gazeta_link": "", 
+      "name": "John Steinbeck"
+    }
+  }, 
+  {
+    "pk": 139, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1969, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "stempowski", 
+      "slug": "jerzy-stempowski", 
+      "gazeta_link": "", 
+      "name": "Jerzy Stempowski"
+    }
+  }, 
+  {
+    "pk": 140, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "stevenson", 
+      "slug": "robert-louis-stevenson", 
+      "gazeta_link": "", 
+      "name": "Robert Louis Stevenson"
+    }
+  }, 
+  {
+    "pk": 141, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1966, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "stryjkowski", 
+      "slug": "julian-stryjkowski", 
+      "gazeta_link": "", 
+      "name": "Julian Stryjkowski"
+    }
+  }, 
+  {
+    "pk": 142, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "suchodolski", 
+      "slug": "rajnold-suchodolski", 
+      "gazeta_link": "", 
+      "name": "Rajnold Suchodolski"
+    }
+  }, 
+  {
+    "pk": 143, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "swietochowski", 
+      "slug": "aleksander-swietochowski", 
+      "gazeta_link": "", 
+      "name": "Aleksander \u015awi\u0119tochowski"
+    }
+  }, 
+  {
+    "pk": 144, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1992, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "szklarski", 
+      "slug": "alfred-szklarski", 
+      "gazeta_link": "", 
+      "name": "Alfred Szklarski"
+    }
+  }, 
+  {
+    "pk": 145, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "szymborska", 
+      "slug": "wislawa-szymborska", 
+      "gazeta_link": "", 
+      "name": "Wis\u0142awa Szymborska"
+    }
+  }, 
+  {
+    "pk": 146, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "tarnowski", 
+      "slug": "wladyslaw-tarnowski", 
+      "gazeta_link": "", 
+      "name": "W\u0142adys\u0142aw Tarnowski"
+    }
+  }, 
+  {
+    "pk": 147, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2004, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "terakowska", 
+      "slug": "dorota-terakowska", 
+      "gazeta_link": "", 
+      "name": "Dorota Terakowska"
+    }
+  }, 
+  {
+    "pk": 148, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "thackeray", 
+      "slug": "william-makepeace-thackeray", 
+      "gazeta_link": "", 
+      "name": "William Makepeace Thackeray"
+    }
+  }, 
+  {
+    "pk": 149, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2000, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "tischner", 
+      "slug": "jozef-tischner", 
+      "gazeta_link": "", 
+      "name": "J\u00f3zef Tischner"
+    }
+  }, 
+  {
+    "pk": 150, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "tokarczuk", 
+      "slug": "olga-tokarczuk", 
+      "gazeta_link": "", 
+      "name": "Olga Tokarczuk"
+    }
+  }, 
+  {
+    "pk": 151, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1973, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "tolkien", 
+      "slug": "john-ronald-reuel-tolkien", 
+      "gazeta_link": "", 
+      "name": "John Ronald Reuel Tolkien"
+    }
+  }, 
+  {
+    "pk": 152, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1953, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "tuwim", 
+      "slug": "julian-tuwim", 
+      "gazeta_link": "", 
+      "name": "Julian Tuwim"
+    }
+  }, 
+  {
+    "pk": 153, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "twain", 
+      "slug": "mark-twain", 
+      "gazeta_link": "", 
+      "name": "Mark Twain"
+    }
+  }, 
+  {
+    "pk": 154, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2006, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "twardowski", 
+      "slug": "jan-twardowski", 
+      "gazeta_link": "", 
+      "name": "Jan Twardowski"
+    }
+  }, 
+  {
+    "pk": 155, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "tyrtajos", 
+      "slug": "tyrtajos", 
+      "gazeta_link": "", 
+      "name": "Tyrtajos"
+    }
+  }, 
+  {
+    "pk": 156, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "verne", 
+      "slug": "jules-gabriel-verne", 
+      "gazeta_link": "", 
+      "name": "Jules Gabriel Verne"
+    }
+  }, 
+  {
+    "pk": 157, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "wasilewski", 
+      "slug": "edmund-wasilewski", 
+      "gazeta_link": "", 
+      "name": "Edmund Wasilewski"
+    }
+  }, 
+  {
+    "pk": 158, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1969, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "wierzynski", 
+      "slug": "kazimierz-wierzynski", 
+      "gazeta_link": "", 
+      "name": "Kazimierz Wierzy\u0144ski"
+    }
+  }, 
+  {
+    "pk": 159, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "witcher", 
+      "slug": "moony-witcher", 
+      "gazeta_link": "", 
+      "name": "Moony Witcher"
+    }
+  }, 
+  {
+    "pk": 160, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "witkiewicz", 
+      "slug": "stanislaw-ignacy-witkiewicz", 
+      "gazeta_link": "", 
+      "name": "Stanis\u0142aw Ignacy Witkiewicz"
+    }
+  }, 
+  {
+    "pk": 161, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1976, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "wittlin", 
+      "slug": "jozef-wittlin", 
+      "gazeta_link": "", 
+      "name": "J\u00f3zef Wittlin"
+    }
+  }, 
+  {
+    "pk": 162, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 2005, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "wojtyla", 
+      "slug": "karol-wojtyla", 
+      "gazeta_link": "", 
+      "name": "Karol Wojty\u0142a"
+    }
+  }, 
+  {
+    "pk": 163, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 1975, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "wyka", 
+      "slug": "kazimierz-wyka", 
+      "gazeta_link": "", 
+      "name": "Kazimierz Wyka"
+    }
+  }, 
+  {
+    "pk": 164, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "wyspianski", 
+      "slug": "stanislaw-wyspianski", 
+      "gazeta_link": "", 
+      "name": "Stanis\u0142aw Wyspia\u0144ski"
+    }
+  }, 
+  {
+    "pk": 165, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": null, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "zagajewski", 
+      "slug": "adam-zagajewski", 
+      "gazeta_link": "", 
+      "name": "Adam Zagajewski"
+    }
+  }, 
+  {
+    "pk": 166, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "zeromski", 
+      "slug": "stefan-zeromski", 
+      "gazeta_link": "", 
+      "name": "Stefan \u017beromski"
+    }
+  }, 
+  {
+    "pk": 167, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "zola", 
+      "slug": "emil-zola", 
+      "gazeta_link": "", 
+      "name": "Emil Zola"
+    }
+  }, 
+  {
+    "pk": 168, 
+    "model": "pdcounter.author", 
+    "fields": {
+      "death": 0, 
+      "description": "", 
+      "wiki_link": "", 
+      "sort_key": "zygmunt", 
+      "slug": "gloger-zygmunt", 
+      "gazeta_link": "", 
+      "name": "Gloger Zygmunt"
+    }
+  }, 
+  {
+    "pk": 622, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jules Gabriel Verne", 
+      "slug": "20-000-mil-podmorskiej-zeglugi", 
+      "pd": 0, 
+      "title": "20 000 mil podmorskiej \u017ceglugi"
+    }
+  }, 
+  {
+    "pk": 629, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "a-coz-z-ta-dziecina", 
+      "pd": 0, 
+      "title": "A c\u00f3\u017c z t\u0105 dziecin\u0105"
+    }
+  }, 
+  {
+    "pk": 437, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "abc", 
+      "pd": 0, 
+      "title": "ABC"
+    }
+  }, 
+  {
+    "pk": 356, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "ach-juz-w-mym-rodzicielskim-domu", 
+      "pd": 0, 
+      "title": "Ach, ju\u017c w mym rodzicielskim domu"
+    }
+  }, 
+  {
+    "pk": 110, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Brzechwa", 
+      "slug": "akademia-pana-kleksa", 
+      "pd": 2037, 
+      "title": "Akademia Pana Kleksa"
+    }
+  }, 
+  {
+    "pk": 3, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "albatros", 
+      "pd": 0, 
+      "title": "Albatros"
+    }
+  }, 
+  {
+    "pk": 388, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Lucy Maud Montgomery", 
+      "slug": "ania-z-zielonego-wzgorza", 
+      "pd": null, 
+      "title": "Ania z Zielonego Wzg\u00f3rza"
+    }
+  }, 
+  {
+    "pk": 528, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "aniol-ognisty-moj-aniol-lewy", 
+      "pd": 0, 
+      "title": "Anio\u0142 ognisty \u2014 m\u00f3j anio\u0142 lewy"
+    }
+  }, 
+  {
+    "pk": 529, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "anioly-stoja-na-rodzinnych-polach", 
+      "pd": 0, 
+      "title": "Anio\u0142y stoj\u0105 na rodzinnych polach"
+    }
+  }, 
+  {
+    "pk": 301, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ignacy Krasicki", 
+      "slug": "antymonachomachia", 
+      "pd": 0, 
+      "title": "Antymonachomachia"
+    }
+  }, 
+  {
+    "pk": 83, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "apokalipsa-sw-jana", 
+      "pd": 0, 
+      "title": "Apokalipsa \u015bw. Jana"
+    }
+  }, 
+  {
+    "pk": 609, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Julian Stryjkowski", 
+      "slug": "austeria", 
+      "pd": 2037, 
+      "title": "Austeria"
+    }
+  }, 
+  {
+    "pk": 105, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "bajka-o-szesciu-slugach", 
+      "pd": 0, 
+      "title": "Bajka o sze\u015bciu s\u0142ugach"
+    }
+  }, 
+  {
+    "pk": 309, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Lem", 
+      "slug": "bajki-robotow", 
+      "pd": 2077, 
+      "title": "Bajki robot\u00f3w"
+    }
+  }, 
+  {
+    "pk": 4, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "balkon", 
+      "pd": 0, 
+      "title": "Balkon"
+    }
+  }, 
+  {
+    "pk": 649, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Marceli Ska\u0142kowski", 
+      "slug": "bartoszu-bartoszu-czyli-krakowiak-kosciuszki", 
+      "pd": 0, 
+      "title": "Bartoszu, Bartoszu, czyli krakowiak Ko\u015bciuszki"
+    }
+  }, 
+  {
+    "pk": 5, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "beatrycze", 
+      "pd": 0, 
+      "title": "Beatrycze"
+    }
+  }, 
+  {
+    "pk": 530, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "beniowski", 
+      "pd": 0, 
+      "title": "Beniowski"
+    }
+  }, 
+  {
+    "pk": 119, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "bieg-bez-nadziei", 
+      "pd": 0, 
+      "title": "Bieg bez nadziei"
+    }
+  }, 
+  {
+    "pk": 120, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "bildur-baldur-i-czas", 
+      "pd": 0, 
+      "title": "Bildur, Baldur i czas"
+    }
+  }, 
+  {
+    "pk": 189, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "G\u00fcnter Grass", 
+      "slug": "blaszany-bebenek", 
+      "pd": null, 
+      "title": "Blaszany b\u0119benek"
+    }
+  }, 
+  {
+    "pk": 106, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "blekitny-ognik", 
+      "pd": 0, 
+      "title": "B\u0142\u0119kitny ognik"
+    }
+  }, 
+  {
+    "pk": 6, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "blogoslawienstwo", 
+      "pd": 0, 
+      "title": "B\u0142ogos\u0142awie\u0144stwo"
+    }
+  }, 
+  {
+    "pk": 456, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Bronis\u0142awa Ostrowska", 
+      "slug": "bohaterski-mis", 
+      "pd": 0, 
+      "title": "Bohaterski mi\u015b"
+    }
+  }, 
+  {
+    "pk": 1, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Dante Alighieri", 
+      "slug": "boska-komedia", 
+      "pd": 0, 
+      "title": "Boska komedia"
+    }
+  }, 
+  {
+    "pk": 650, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Alojzy Feli\u0144ski, Antoni G\u00f3recki", 
+      "slug": "boze-cos-polske", 
+      "pd": 0, 
+      "title": "Bo\u017ce, co\u015b Polsk\u0119"
+    }
+  }, 
+  {
+    "pk": 313, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "boze-pelen-w-niebie-chwaly", 
+      "pd": 0, 
+      "title": "Bo\u017ce, pe\u0142en w niebie chwa\u0142y"
+    }
+  }, 
+  {
+    "pk": 287, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Franciszek Karpi\u0144ski", 
+      "slug": "bog-sie-rodzi", 
+      "pd": 0, 
+      "title": "B\u00f3g si\u0119 rodzi"
+    }
+  }, 
+  {
+    "pk": 350, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Astrid Lindgren", 
+      "slug": "bracia-lwie-serce", 
+      "pd": 2081, 
+      "title": "Bracia Lwie Serce"
+    }
+  }, 
+  {
+    "pk": 630, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "bracia-patrzcie-jana", 
+      "pd": 0, 
+      "title": "Bracia, patrzcie Jana"
+    }
+  }, 
+  {
+    "pk": 84, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "brat-i-siostra", 
+      "pd": 0, 
+      "title": "Brat i siostra"
+    }
+  }, 
+  {
+    "pk": 397, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "brulion-bebe-b", 
+      "pd": null, 
+      "title": "Brulion Bebe B."
+    }
+  }, 
+  {
+    "pk": 279, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jaros\u0142aw Iwaszkiewicz", 
+      "slug": "brzezina", 
+      "pd": 2051, 
+      "title": "Brzezina"
+    }
+  }, 
+  {
+    "pk": 488, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "burza", 
+      "pd": 0, 
+      "title": "Burza"
+    }
+  }, 
+  {
+    "pk": 438, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "cham", 
+      "pd": 0, 
+      "title": "Cham"
+    }
+  }, 
+  {
+    "pk": 172, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ronald Dahl", 
+      "slug": "charlie-i-fabryka-czekolady", 
+      "pd": null, 
+      "title": "Charlie i fabryka czekolady"
+    }
+  }, 
+  {
+    "pk": 611, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander \u015awi\u0119tochowski", 
+      "slug": "chawa-rubin", 
+      "pd": 0, 
+      "title": "Chawa Rubin"
+    }
+  }, 
+  {
+    "pk": 387, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ferenc Moln\u00e1r", 
+      "slug": "chlopcy-z-placu-broni", 
+      "pd": null, 
+      "title": "Ch\u0142opcy z Placu Broni"
+    }
+  }, 
+  {
+    "pk": 311, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Teofil Lenartowicz", 
+      "slug": "chodzil-senek-i-drzemota", 
+      "pd": 0, 
+      "title": "Chodzi\u0142 Senek i Drzemota"
+    }
+  }, 
+  {
+    "pk": 280, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Jachowicz", 
+      "slug": "chory-kotek", 
+      "pd": 0, 
+      "title": "Chory kotek"
+    }
+  }, 
+  {
+    "pk": 531, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "chor-duchow-izraelskich", 
+      "pd": 0, 
+      "title": "Ch\u00f3r duch\u00f3w izraelskich"
+    }
+  }, 
+  {
+    "pk": 314, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "cialo-me-wyklete", 
+      "pd": 0, 
+      "title": "Cia\u0142o me, wykl\u0119te"
+    }
+  }, 
+  {
+    "pk": 631, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "cicha-noc", 
+      "pd": 0, 
+      "title": "Cicha noc"
+    }
+  }, 
+  {
+    "pk": 466, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "cienie", 
+      "pd": 0, 
+      "title": "Cienie"
+    }
+  }, 
+  {
+    "pk": 7, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "co-powiesz-w-ten-zmierzch", 
+      "pd": 0, 
+      "title": "Co Powiesz W Ten Zmierzch"
+    }
+  }, 
+  {
+    "pk": 532, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "corka-cerery", 
+      "pd": 0, 
+      "title": "C\u00f3rka Cerery"
+    }
+  }, 
+  {
+    "pk": 402, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "corka-robrojka", 
+      "pd": null, 
+      "title": "C\u00f3rka Robrojka"
+    }
+  }, 
+  {
+    "pk": 306, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Maria Kuncewiczowa", 
+      "slug": "cudzoziemka", 
+      "pd": 2060, 
+      "title": "Cudzoziemka"
+    }
+  }, 
+  {
+    "pk": 408, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "czarna-polewka", 
+      "pd": null, 
+      "title": "Czarna polewka"
+    }
+  }, 
+  {
+    "pk": 353, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Thomas Mann", 
+      "slug": "czarodziejska-gora", 
+      "pd": 2026, 
+      "title": "Czarodziejska g\u00f3ra"
+    }
+  }, 
+  {
+    "pk": 357, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "czaty", 
+      "pd": 0, 
+      "title": "Czaty"
+    }
+  }, 
+  {
+    "pk": 85, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "czerwony-kapturek", 
+      "pd": 0, 
+      "title": "Czerwony Kapturek"
+    }
+  }, 
+  {
+    "pk": 8, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "czlowiek-i-morze", 
+      "pd": 0, 
+      "title": "Cz\u0142owiek I Morze"
+    }
+  }, 
+  {
+    "pk": 432, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Anna Onichimowska", 
+      "slug": "daleki-rejs", 
+      "pd": null, 
+      "title": "Daleki rejs"
+    }
+  }, 
+  {
+    "pk": 612, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander \u015awi\u0119tochowski", 
+      "slug": "damian-cepenko", 
+      "pd": 0, 
+      "title": "Damian Cepenko"
+    }
+  }, 
+  {
+    "pk": 9, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "danse-macabre", 
+      "pd": 0, 
+      "title": "Danse Macabre"
+    }
+  }, 
+  {
+    "pk": 10, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "de-profundis-clamavi", 
+      "pd": 0, 
+      "title": "De Profundis Clamavi"
+    }
+  }, 
+  {
+    "pk": 205, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "djanie-i-apollinowi", 
+      "pd": 0, 
+      "title": "Djanie i Apollinowi"
+    }
+  }, 
+  {
+    "pk": 578, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do", 
+      "pd": 0, 
+      "title": "Do ***"
+    }
+  }, 
+  {
+    "pk": 206, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-albiusa-tibulla", 
+      "pd": 0, 
+      "title": "Do Albiusa Tibulla"
+    }
+  }, 
+  {
+    "pk": 412, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Daniel Naborowski", 
+      "slug": "do-anny", 
+      "pd": 0, 
+      "title": "Do Anny"
+    }
+  }, 
+  {
+    "pk": 207, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-antoniusa", 
+      "pd": 0, 
+      "title": "Do Antoniusa"
+    }
+  }, 
+  {
+    "pk": 208, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-apollina", 
+      "pd": 0, 
+      "title": "Do Apollina"
+    }
+  }, 
+  {
+    "pk": 209, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-aristiusa-fuska", 
+      "pd": 0, 
+      "title": "Do Aristiusa Fuska"
+    }
+  }, 
+  {
+    "pk": 210, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-asteryi", 
+      "pd": 0, 
+      "title": "Do Asteryi"
+    }
+  }, 
+  {
+    "pk": 211, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-augusta", 
+      "pd": 0, 
+      "title": "Do Augusta"
+    }
+  }, 
+  {
+    "pk": 212, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-bakchusa", 
+      "pd": 0, 
+      "title": "Do Bakchusa"
+    }
+  }, 
+  {
+    "pk": 213, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-bariny", 
+      "pd": 0, 
+      "title": "Do Bariny"
+    }
+  }, 
+  {
+    "pk": 214, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-cezara-augusta", 
+      "pd": 0, 
+      "title": "Do Cezara Augusta"
+    }
+  }, 
+  {
+    "pk": 215, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-chciwych-na-pieniadz", 
+      "pd": 0, 
+      "title": "Do chciwych na pieni\u0105dz"
+    }
+  }, 
+  {
+    "pk": 216, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-chloe", 
+      "pd": 0, 
+      "title": "Do Chloe"
+    }
+  }, 
+  {
+    "pk": 217, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-chlorydy", 
+      "pd": 0, 
+      "title": "Do Chlorydy"
+    }
+  }, 
+  {
+    "pk": 218, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-chorego-mecenasa", 
+      "pd": 0, 
+      "title": "Do chorego Mecenasa"
+    }
+  }, 
+  {
+    "pk": 219, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-cilniusa-mecenasa", 
+      "pd": 0, 
+      "title": "Do Cilniusa Mecenasa"
+    }
+  }, 
+  {
+    "pk": 33, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "do-czytelnika", 
+      "pd": 0, 
+      "title": "Do Czytelnika"
+    }
+  }, 
+  {
+    "pk": 358, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "do-d-d", 
+      "pd": 0, 
+      "title": "Do D* D*"
+    }
+  }, 
+  {
+    "pk": 276, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-djany", 
+      "pd": 0, 
+      "title": "Do Djany"
+    }
+  }, 
+  {
+    "pk": 221, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-dzbanka", 
+      "pd": 0, 
+      "title": "Do dzbanka"
+    }
+  }, 
+  {
+    "pk": 222, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-eliusa-lamii", 
+      "pd": 0, 
+      "title": "Do Eliusa Lamii"
+    }
+  }, 
+  {
+    "pk": 220, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-elljusa", 
+      "pd": 0, 
+      "title": "Do Elljusa"
+    }
+  }, 
+  {
+    "pk": 223, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-fauna", 
+      "pd": 0, 
+      "title": "Do Fauna"
+    }
+  }, 
+  {
+    "pk": 224, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-festjusa", 
+      "pd": 0, 
+      "title": "Do Festjusa"
+    }
+  }, 
+  {
+    "pk": 225, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-fihdyli", 
+      "pd": 0, 
+      "title": "Do Fihdyli"
+    }
+  }, 
+  {
+    "pk": 226, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-fortuny", 
+      "pd": 0, 
+      "title": "Do Fortuny"
+    }
+  }, 
+  {
+    "pk": 533, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-franciszka-szemiotha", 
+      "pd": 0, 
+      "title": "Do Franciszka Szemiotha"
+    }
+  }, 
+  {
+    "pk": 227, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-fyllidy", 
+      "pd": 0, 
+      "title": "Do Fyllidy"
+    }
+  }, 
+  {
+    "pk": 228, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-galatei", 
+      "pd": 0, 
+      "title": "Do Galatei"
+    }
+  }, 
+  {
+    "pk": 229, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-glycery", 
+      "pd": 0, 
+      "title": "Do Glycery"
+    }
+  }, 
+  {
+    "pk": 534, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-hrabiego-gustawa-podziekowanie", 
+      "pd": 0, 
+      "title": "Do hrabiego Gustawa podzi\u0119kowanie"
+    }
+  }, 
+  {
+    "pk": 230, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-ikciusa", 
+      "pd": 0, 
+      "title": "Do Ikciusa"
+    }
+  }, 
+  {
+    "pk": 231, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-kajusa-asiniusa-polliona", 
+      "pd": 0, 
+      "title": "Do Kajusa Asiniusa Polliona"
+    }
+  }, 
+  {
+    "pk": 232, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-kalliopy", 
+      "pd": 0, 
+      "title": "Do Kalliopy"
+    }
+  }, 
+  {
+    "pk": 194, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-kanidii-trucicielki", 
+      "pd": 0, 
+      "title": "Do Kanidii trucicielki"
+    }
+  }, 
+  {
+    "pk": 233, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-kochanka-lalagi", 
+      "pd": 0, 
+      "title": "Do kochanka Lalagi"
+    }
+  }, 
+  {
+    "pk": 11, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "do-kreolki", 
+      "pd": 0, 
+      "title": "Do Kreolki"
+    }
+  }, 
+  {
+    "pk": 234, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-ksantiasa-focejczyka", 
+      "pd": 0, 
+      "title": "Do Ksantiasa Focejczyka"
+    }
+  }, 
+  {
+    "pk": 235, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-kwinktiliusa-warusa", 
+      "pd": 0, 
+      "title": "Do Kwinktiliusa Warusa"
+    }
+  }, 
+  {
+    "pk": 236, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-kwinktiusa-hirpina", 
+      "pd": 0, 
+      "title": "Do Kwinktiusa Hirpina"
+    }
+  }, 
+  {
+    "pk": 568, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-laury", 
+      "pd": 0, 
+      "title": "Do Laury"
+    }
+  }, 
+  {
+    "pk": 237, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-leukonoe", 
+      "pd": 0, 
+      "title": "Do Leukonoe"
+    }
+  }, 
+  {
+    "pk": 238, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-liciniusa-mureny", 
+      "pd": 0, 
+      "title": "Do Liciniusa Mureny"
+    }
+  }, 
+  {
+    "pk": 239, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-ligurina", 
+      "pd": 0, 
+      "title": "Do Ligurina"
+    }
+  }, 
+  {
+    "pk": 195, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-lubieznej-staruszki", 
+      "pd": 0, 
+      "title": "Do lubie\u017cnej staruszki"
+    }
+  }, 
+  {
+    "pk": 196, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-ludu-rzymskiego", 
+      "pd": 0, 
+      "title": "Do ludu rzymskiego"
+    }
+  }, 
+  {
+    "pk": 535, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-ludwiki-bobrowny", 
+      "pd": 0, 
+      "title": "Do Ludwiki Bobr\u00f3wny"
+    }
+  }, 
+  {
+    "pk": 240, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-lutni", 
+      "pd": 0, 
+      "title": "Do lutni"
+    }
+  }, 
+  {
+    "pk": 241, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-lyce", 
+      "pd": 0, 
+      "title": "Do Lyce"
+    }
+  }, 
+  {
+    "pk": 242, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-lyhdyi", 
+      "pd": 0, 
+      "title": "Do Lyhdyi"
+    }
+  }, 
+  {
+    "pk": 12, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "do-madonny", 
+      "pd": 0, 
+      "title": "Do Madonny"
+    }
+  }, 
+  {
+    "pk": 243, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-manliusa-torkwata", 
+      "pd": 0, 
+      "title": "Do Manliusa Torkwata"
+    }
+  }, 
+  {
+    "pk": 244, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-marciusa-cenzorina", 
+      "pd": 0, 
+      "title": "Do Marciusa Cenzorina"
+    }
+  }, 
+  {
+    "pk": 245, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-marka-lolljusa", 
+      "pd": 0, 
+      "title": "Do Marka Lolljusa"
+    }
+  }, 
+  {
+    "pk": 246, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-marka-wipsaniusa-agrippy", 
+      "pd": 0, 
+      "title": "Do Marka Wipsaniusa Agrippy"
+    }
+  }, 
+  {
+    "pk": 359, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "do-maryi-putkamerowej", 
+      "pd": 0, 
+      "title": "Do Maryi Putkamerowej"
+    }
+  }, 
+  {
+    "pk": 536, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-matki", 
+      "pd": 0, 
+      "title": "Do matki"
+    }
+  }, 
+  {
+    "pk": 360, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "do-matki-polki", 
+      "pd": 0, 
+      "title": "Do Matki Polki"
+    }
+  }, 
+  {
+    "pk": 197, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-mecenasa", 
+      "pd": 0, 
+      "title": "Do Mecenasa"
+    }
+  }, 
+  {
+    "pk": 247, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-melpomeny", 
+      "pd": 0, 
+      "title": "Do Melpomeny"
+    }
+  }, 
+  {
+    "pk": 248, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-merkuryusza", 
+      "pd": 0, 
+      "title": "Do Merkuryusza"
+    }
+  }, 
+  {
+    "pk": 198, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-mewiusa-poety", 
+      "pd": 0, 
+      "title": "Do Mewiusa poety"
+    }
+  }, 
+  {
+    "pk": 249, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-miasta-rzymu", 
+      "pd": 0, 
+      "title": "Do miasta Rzymu"
+    }
+  }, 
+  {
+    "pk": 250, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-mlodego-slugi", 
+      "pd": 0, 
+      "title": "Do m\u0142odego s\u0142ugi"
+    }
+  }, 
+  {
+    "pk": 251, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-mlodziezy", 
+      "pd": 0, 
+      "title": "Do m\u0142odzie\u017cy"
+    }
+  }, 
+  {
+    "pk": 252, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-munaciusa-pianka", 
+      "pd": 0, 
+      "title": "Do Munaciusa Pianka"
+    }
+  }, 
+  {
+    "pk": 199, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-neery", 
+      "pd": 0, 
+      "title": "Do Neery"
+    }
+  }, 
+  {
+    "pk": 253, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-neobuli", 
+      "pd": 0, 
+      "title": "Do Neobuli"
+    }
+  }, 
+  {
+    "pk": 361, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "do-niemna", 
+      "pd": 0, 
+      "title": "Do Niemna"
+    }
+  }, 
+  {
+    "pk": 254, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-okretu-majacego-zawiesc-wirgiljusa-do-aten", 
+      "pd": 0, 
+      "title": "Do okr\u0119tu maj\u0105cego zawie\u015b\u0107 Wirgiljusa do Aten"
+    }
+  }, 
+  {
+    "pk": 537, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-pani-joanny-bobrowej", 
+      "pd": 0, 
+      "title": "Do pani Joanny Bobrowej"
+    }
+  }, 
+  {
+    "pk": 538, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-pastereczki", 
+      "pd": 0, 
+      "title": "Do pastereczki"
+    }
+  }, 
+  {
+    "pk": 200, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-pettiusa", 
+      "pd": 0, 
+      "title": "Do Pettiusa"
+    }
+  }, 
+  {
+    "pk": 256, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-pompejusa", 
+      "pd": 0, 
+      "title": "Do Pompejusa"
+    }
+  }, 
+  {
+    "pk": 255, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-pompejusa-grosfa", 
+      "pd": 0, 
+      "title": "Do Pompejusa Grosfa"
+    }
+  }, 
+  {
+    "pk": 257, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-postumiusa", 
+      "pd": 0, 
+      "title": "Do Postumiusa"
+    }
+  }, 
+  {
+    "pk": 13, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "do-przechodzacej", 
+      "pd": 0, 
+      "title": "Do Przechodz\u0105cej"
+    }
+  }, 
+  {
+    "pk": 201, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-przyjaciol", 
+      "pd": 0, 
+      "title": "Do przyjaci\u00f3\u0142"
+    }
+  }, 
+  {
+    "pk": 258, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-przyjaciolki", 
+      "pd": 0, 
+      "title": "Do przyjaci\u00f3\u0142ki"
+    }
+  }, 
+  {
+    "pk": 260, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-pyrry", 
+      "pd": 0, 
+      "title": "Do Pyrry"
+    }
+  }, 
+  {
+    "pk": 261, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-rzeczypospolitej", 
+      "pd": 0, 
+      "title": "Do Rzeczypospolitej"
+    }
+  }, 
+  {
+    "pk": 262, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-rzymian", 
+      "pd": 0, 
+      "title": "Do Rzymian"
+    }
+  }, 
+  {
+    "pk": 263, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-sallustiusa-krispa", 
+      "pd": 0, 
+      "title": "Do Sallustiusa Krispa"
+    }
+  }, 
+  {
+    "pk": 264, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-septimiusa", 
+      "pd": 0, 
+      "title": "Do Septimiusa"
+    }
+  }, 
+  {
+    "pk": 265, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-siebie-samego", 
+      "pd": 0, 
+      "title": "Do siebie samego"
+    }
+  }, 
+  {
+    "pk": 266, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-skapca", 
+      "pd": 0, 
+      "title": "Do sk\u0105pca"
+    }
+  }, 
+  {
+    "pk": 202, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-starej-rozpustnicy", 
+      "pd": 0, 
+      "title": "Do starej rozpustnicy"
+    }
+  }, 
+  {
+    "pk": 632, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "do-szopy-hej-pasterze", 
+      "pd": 0, 
+      "title": "Do szopy, hej pasterze"
+    }
+  }, 
+  {
+    "pk": 267, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-taliarcha", 
+      "pd": 0, 
+      "title": "Do Taliarcha"
+    }
+  }, 
+  {
+    "pk": 268, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-telefa", 
+      "pd": 0, 
+      "title": "Do Telefa"
+    }
+  }, 
+  {
+    "pk": 539, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-teofila-januszewskiego", 
+      "pd": 0, 
+      "title": "Do Teofila Januszewskiego"
+    }
+  }, 
+  {
+    "pk": 269, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-tyndarydy", 
+      "pd": 0, 
+      "title": "Do Tyndarydy"
+    }
+  }, 
+  {
+    "pk": 270, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-walgiusa-rufusa", 
+      "pd": 0, 
+      "title": "Do Walgiusa Rufusa"
+    }
+  }, 
+  {
+    "pk": 271, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-wenery", 
+      "pd": 0, 
+      "title": "Do Wenery"
+    }
+  }, 
+  {
+    "pk": 272, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-wergiliusa", 
+      "pd": 0, 
+      "title": "Do Wergiliusa"
+    }
+  }, 
+  {
+    "pk": 273, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-wirgiliusa-marona", 
+      "pd": 0, 
+      "title": "Do Wirgiliusa Marona"
+    }
+  }, 
+  {
+    "pk": 274, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-wspolbiesiadnikow", 
+      "pd": 0, 
+      "title": "Do wsp\u00f3\u0142biesiadnik\u00f3w"
+    }
+  }, 
+  {
+    "pk": 203, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-zlosliwca", 
+      "pd": 0, 
+      "title": "Do z\u0142o\u015bliwca"
+    }
+  }, 
+  {
+    "pk": 540, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "do-zygmunta", 
+      "pd": 0, 
+      "title": "Do Zygmunta"
+    }
+  }, 
+  {
+    "pk": 275, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "do-zrodla-banduzyi", 
+      "pd": 0, 
+      "title": "Do \u017ar\u00f3d\u0142a Banduzyi"
+    }
+  }, 
+  {
+    "pk": 439, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "dobra-pani", 
+      "pd": 0, 
+      "title": "Dobra Pani"
+    }
+  }, 
+  {
+    "pk": 385, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander Minkowski", 
+      "slug": "dolina-swiatla", 
+      "pd": null, 
+      "title": "Dolina \u015awiat\u0142a"
+    }
+  }, 
+  {
+    "pk": 121, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "dom-swietego-kazimierza", 
+      "pd": 0, 
+      "title": "Dom \u015bwi\u0119tego Kazimierza"
+    }
+  }, 
+  {
+    "pk": 14, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "don-juan-w-piekle", 
+      "pd": 0, 
+      "title": "Don Juan W Piekle"
+    }
+  }, 
+  {
+    "pk": 114, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Miguel Cervantes", 
+      "slug": "don-kichote", 
+      "pd": 2045, 
+      "title": "Don Kichote"
+    }
+  }, 
+  {
+    "pk": 315, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "dreszcze-nasze-u-warg-sie-spotkaly", 
+      "pd": 0, 
+      "title": "Dreszcze nasze u warg si\u0119 spotka\u0142y"
+    }
+  }, 
+  {
+    "pk": 351, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Mackiewicz", 
+      "slug": "droga-donikad", 
+      "pd": 2056, 
+      "title": "Droga donik\u0105d"
+    }
+  }, 
+  {
+    "pk": 431, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Anna Onichimowska", 
+      "slug": "duch-starej-kamienicy", 
+      "pd": null, 
+      "title": "Duch starej kamienicy"
+    }
+  }, 
+  {
+    "pk": 362, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "dudasz", 
+      "pd": 0, 
+      "title": "Dudasz"
+    }
+  }, 
+  {
+    "pk": 541, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "duma-o-waclawie-rzewuskim", 
+      "pd": 0, 
+      "title": "Duma o Wac\u0142awie Rzewuskim"
+    }
+  }, 
+  {
+    "pk": 613, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander \u015awi\u0119tochowski", 
+      "slug": "dumania-pesymisty", 
+      "pd": 0, 
+      "title": "Dumania pesymisty"
+    }
+  }, 
+  {
+    "pk": 542, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "dusza-sie-moja-zamysla-gleboko", 
+      "pd": 0, 
+      "title": "Dusza si\u0119 moja zamy\u015bla g\u0142\u0119boko"
+    }
+  }, 
+  {
+    "pk": 15, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "dusza-wina", 
+      "pd": 0, 
+      "title": "Dusza Wina"
+    }
+  }, 
+  {
+    "pk": 86, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "dwie-ksiezniczki", 
+      "pd": 0, 
+      "title": "Dwie ksi\u0119\u017cniczki"
+    }
+  }, 
+  {
+    "pk": 430, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Joanna Olech", 
+      "slug": "dynastia-miziolkow", 
+      "pd": null, 
+      "title": "Dynastia Mizio\u0142k\u00f3w"
+    }
+  }, 
+  {
+    "pk": 180, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Arkady Fiedler", 
+      "slug": "dywizjon-303", 
+      "pd": 2056, 
+      "title": "Dywizjon 303"
+    }
+  }, 
+  {
+    "pk": 304, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ignacy Kraszewski", 
+      "slug": "dziad-i-baba", 
+      "pd": 0, 
+      "title": "Dziad i baba"
+    }
+  }, 
+  {
+    "pk": 400, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "dziecko-piatku", 
+      "pd": null, 
+      "title": "Dziecko pi\u0105tku"
+    }
+  }, 
+  {
+    "pk": 316, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "dziejba-lesna", 
+      "pd": 0, 
+      "title": "Dziejba le\u015bna"
+    }
+  }, 
+  {
+    "pk": 68, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Joseph B\u00e9dier", 
+      "slug": "dzieje-tristana-i-izoldy", 
+      "pd": 2012, 
+      "title": "Dzieje Tristana i Izoldy"
+    }
+  }, 
+  {
+    "pk": 625, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Moony Witcher", 
+      "slug": "dziewczynka-z-szostego-ksiezyca", 
+      "pd": null, 
+      "title": "Dziewczynka z sz\u00f3stego ksi\u0119\u017cyca"
+    }
+  }, 
+  {
+    "pk": 633, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "dzisiaj-w-betlejem", 
+      "pd": 0, 
+      "title": "Dzisiaj w Betlejem"
+    }
+  }, 
+  {
+    "pk": 440, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "dziurdziowie", 
+      "pd": 0, 
+      "title": "Dziurdziowie"
+    }
+  }, 
+  {
+    "pk": 489, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "dziwna-opowiesc", 
+      "pd": 0, 
+      "title": "Dziwna opowie\u015b\u0107"
+    }
+  }, 
+  {
+    "pk": 113, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Albert Camus", 
+      "slug": "dzuma", 
+      "pd": 2080, 
+      "title": "D\u017cuma"
+    }
+  }, 
+  {
+    "pk": 480, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kazimierz Przerwa-Tetmajer", 
+      "slug": "e-viva-larte", 
+      "pd": 2011, 
+      "title": "E viva l'arte"
+    }
+  }, 
+  {
+    "pk": 682, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stefan \u017beromski", 
+      "slug": "echa-lesne", 
+      "pd": 0, 
+      "title": "Echa le\u015bne"
+    }
+  }, 
+  {
+    "pk": 467, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "echa-muzyczne", 
+      "pd": 0, 
+      "title": "Echa muzyczne"
+    }
+  }, 
+  {
+    "pk": 122, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "elegia-czwarta", 
+      "pd": 0, 
+      "title": "Elegia czwarta"
+    }
+  }, 
+  {
+    "pk": 123, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "elegia-zalu", 
+      "pd": 0, 
+      "title": "Elegia \u017calu"
+    }
+  }, 
+  {
+    "pk": 391, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Zbigniew Morsztyn", 
+      "slug": "emblemata", 
+      "pd": 0, 
+      "title": "Emblemata"
+    }
+  }, 
+  {
+    "pk": 193, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "epody", 
+      "pd": 0, 
+      "title": "Epody"
+    }
+  }, 
+  {
+    "pk": 462, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Platon", 
+      "slug": "fajdros", 
+      "pd": 0, 
+      "title": "Fajdros"
+    }
+  }, 
+  {
+    "pk": 543, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "fantazy", 
+      "pd": 0, 
+      "title": "Fantazy"
+    }
+  }, 
+  {
+    "pk": 363, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "farys", 
+      "pd": 0, 
+      "title": "Farys"
+    }
+  }, 
+  {
+    "pk": 184, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Johann Goethe", 
+      "slug": "faust", 
+      "pd": 0, 
+      "title": "Faust"
+    }
+  }, 
+  {
+    "pk": 185, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Witold Gombrowicz", 
+      "slug": "ferdydurke", 
+      "pd": 2040, 
+      "title": "Ferdydurke"
+    }
+  }, 
+  {
+    "pk": 490, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "fermenty", 
+      "pd": 0, 
+      "title": "Fermenty"
+    }
+  }, 
+  {
+    "pk": 468, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "filozof-i-prostak", 
+      "pd": 0, 
+      "title": "Filozof i prostak"
+    }
+  }, 
+  {
+    "pk": 491, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "franek", 
+      "pd": 0, 
+      "title": "Franek"
+    }
+  }, 
+  {
+    "pk": 124, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "front", 
+      "pd": 0, 
+      "title": "Front"
+    }
+  }, 
+  {
+    "pk": 545, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "gdy-noc-gleboka-wszystko-uspi-i-oniemi", 
+      "pd": 0, 
+      "title": "Gdy noc g\u0142\u0119boka wszystko u\u015bpi i oniemi"
+    }
+  }, 
+  {
+    "pk": 634, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "gdy-sie-chrystus-rodzi", 
+      "pd": 0, 
+      "title": "Gdy si\u0119 Chrystus rodzi"
+    }
+  }, 
+  {
+    "pk": 635, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "gdy-sliczna-panna", 
+      "pd": 0, 
+      "title": "Gdy \u015bliczna panna"
+    }
+  }, 
+  {
+    "pk": 364, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "gdy-tu-moj-trup", 
+      "pd": 0, 
+      "title": "Gdy tu m\u00f3j trup"
+    }
+  }, 
+  {
+    "pk": 365, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "geby-za-lud-krzyczace", 
+      "pd": 0, 
+      "title": "G\u0119by za lud krzycz\u0105ce"
+    }
+  }, 
+  {
+    "pk": 87, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "gesiareczka", 
+      "pd": 0, 
+      "title": "G\u0119siareczka"
+    }
+  }, 
+  {
+    "pk": 16, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "glos", 
+      "pd": 0, 
+      "title": "G\u0142os"
+    }
+  }, 
+  {
+    "pk": 546, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "godzina-mysli", 
+      "pd": 0, 
+      "title": "Godzina my\u015bli"
+    }
+  }, 
+  {
+    "pk": 651, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Micha\u0142 Ba\u0142ucki", 
+      "slug": "goralu-czy-ci-nie-zal", 
+      "pd": 0, 
+      "title": "G\u00f3ralu, czy ci nie \u017cal"
+    }
+  }, 
+  {
+    "pk": 17, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "gra", 
+      "pd": 0, 
+      "title": "Gra"
+    }
+  }, 
+  {
+    "pk": 416, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Zofia Na\u0142kowska", 
+      "slug": "granica", 
+      "pd": 2025, 
+      "title": "Granica"
+    }
+  }, 
+  {
+    "pk": 366, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "grazyna", 
+      "pd": 0, 
+      "title": "Gra\u017cyna"
+    }
+  }, 
+  {
+    "pk": 522, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Henryk Sienkiewicz", 
+      "slug": "hania", 
+      "pd": 0, 
+      "title": "Hania"
+    }
+  }, 
+  {
+    "pk": 18, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "harmonia-wieczorna", 
+      "pd": 0, 
+      "title": "Harmonia Wieczorna"
+    }
+  }, 
+  {
+    "pk": 19, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "heautonimoroumenos", 
+      "pd": 0, 
+      "title": "Heautonimoroumenos"
+    }
+  }, 
+  {
+    "pk": 652, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "hej-hej-ulani", 
+      "pd": 0, 
+      "title": "Hej, hej, u\u0142ani"
+    }
+  }, 
+  {
+    "pk": 653, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Anczyc", 
+      "slug": "hej-strzelcy-w-las", 
+      "pd": 0, 
+      "title": "Hej, strzelcy w las"
+    }
+  }, 
+  {
+    "pk": 636, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "hej-w-dzien-narodzenia", 
+      "pd": 0, 
+      "title": "Hej, w dzie\u0144 narodzenia"
+    }
+  }, 
+  {
+    "pk": 619, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "John Ronald Reuel Tolkien", 
+      "slug": "hobbit-czyli-tam-i-z-powrotem", 
+      "pd": 2055, 
+      "title": "Hobbit, czyli tam i z powrotem"
+    }
+  }, 
+  {
+    "pk": 547, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "hymn-bogarodzico-dziewico", 
+      "pd": 0, 
+      "title": "Hymn (Bogarodzico, Dziewico!)"
+    }
+  }, 
+  {
+    "pk": 654, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ignacy Krasicki", 
+      "slug": "hymn-do-milosci-ojczyzny", 
+      "pd": 0, 
+      "title": "Hymn do mi\u0142o\u015bci ojczyzny"
+    }
+  }, 
+  {
+    "pk": 481, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kazimierz Przerwa-Tetmajer", 
+      "slug": "hymn-do-nirwany", 
+      "pd": 2011, 
+      "title": "Hymn do nirwany"
+    }
+  }, 
+  {
+    "pk": 656, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "hymn-narodowy", 
+      "pd": 0, 
+      "title": "Hymn narodowy"
+    }
+  }, 
+  {
+    "pk": 71, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "hymn-sw-pawla-o-milosci", 
+      "pd": 0, 
+      "title": "Hymn \u015bw. Paw\u0142a o mi\u0142o\u015bci"
+    }
+  }, 
+  {
+    "pk": 125, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "i-kompozycja", 
+      "pd": 0, 
+      "title": "I kompozycja"
+    }
+  }, 
+  {
+    "pk": 126, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "i-wigilia-co-splywa-ku-nam", 
+      "pd": 0, 
+      "title": "I Wigilia co sp\u0142ywa ku nam"
+    }
+  }, 
+  {
+    "pk": 395, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "ida-sierpniowa", 
+      "pd": null, 
+      "title": "Ida sierpniowa"
+    }
+  }, 
+  {
+    "pk": 20, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "ideal", 
+      "pd": 0, 
+      "title": "Idea\u0142"
+    }
+  }, 
+  {
+    "pk": 191, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Homer", 
+      "slug": "iliada", 
+      "pd": 0, 
+      "title": "Iliada"
+    }
+  }, 
+  {
+    "pk": 403, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "imieniny", 
+      "pd": null, 
+      "title": "Imieniny"
+    }
+  }, 
+  {
+    "pk": 179, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Umberto Eco", 
+      "slug": "imie-rozy", 
+      "pd": null, 
+      "title": "Imi\u0119 r\u00f3\u017cy"
+    }
+  }, 
+  {
+    "pk": 190, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Gustaw Herling-Grudzi\u0144ski", 
+      "slug": "inny-swiat", 
+      "pd": 2071, 
+      "title": "Inny \u015bwiat"
+    }
+  }, 
+  {
+    "pk": 127, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "inwokacja", 
+      "pd": 0, 
+      "title": "Inwokacja"
+    }
+  }, 
+  {
+    "pk": 128, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "jablko-zycia", 
+      "pd": 0, 
+      "title": "Jab\u0142ko \u017cycia"
+    }
+  }, 
+  {
+    "pk": 317, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "jak-niewiele-ma-znakow", 
+      "pd": 0, 
+      "title": "Jak niewiele ma znak\u00f3w"
+    }
+  }, 
+  {
+    "pk": 657, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Tarnowski", 
+      "slug": "jak-to-na-wojence-ladnie", 
+      "pd": 0, 
+      "title": "Jak to na wojence \u0142adnie"
+    }
+  }, 
+  {
+    "pk": 510, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "jak-wam-sie-podoba", 
+      "pd": 0, 
+      "title": "Jak wam sie podoba"
+    }
+  }, 
+  {
+    "pk": 318, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "jam-nie-osjan", 
+      "pd": 0, 
+      "title": "Jam \u2014 nie osjan"
+    }
+  }, 
+  {
+    "pk": 548, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "jan-bielecki", 
+      "pd": 0, 
+      "title": "Jan Bielecki"
+    }
+  }, 
+  {
+    "pk": 88, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "jas-i-malgosia", 
+      "pd": 0, 
+      "title": "Ja\u015b i Ma\u0142gosia"
+    }
+  }, 
+  {
+    "pk": 115, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Joseph Conrad", 
+      "slug": "jadro-ciemnosci", 
+      "pd": 2014, 
+      "title": "J\u0105dro ciemno\u015bci"
+    }
+  }, 
+  {
+    "pk": 129, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "je-le-sois", 
+      "pd": 0, 
+      "title": "Je le sois"
+    }
+  }, 
+  {
+    "pk": 469, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "jeden-z-wielu", 
+      "pd": 0, 
+      "title": "Jeden z wielu"
+    }
+  }, 
+  {
+    "pk": 130, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "jesienia", 
+      "pd": 0, 
+      "title": "Jesieni\u0105"
+    }
+  }, 
+  {
+    "pk": 131, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "jeszcze-pejzaz-modlitwa-zalobna", 
+      "pd": 0, 
+      "title": "Jeszcze pejza\u017c modlitwa \u017ca\u0142obna"
+    }
+  }, 
+  {
+    "pk": 637, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "jezus-malusienki", 
+      "pd": 0, 
+      "title": "Jezus malusie\u0144ki"
+    }
+  }, 
+  {
+    "pk": 549, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "jezeli-ci-pan-nie-zbuduje-domu", 
+      "pd": 0, 
+      "title": "Je\u017celi ci Pan nie zbuduje domu"
+    }
+  }, 
+  {
+    "pk": 550, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "jezeli-kiedy-w-tej-mojej-krainie", 
+      "pd": 0, 
+      "title": "Je\u017celi kiedy w tej mojej krainie"
+    }
+  }, 
+  {
+    "pk": 406, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "jezyk-trolli", 
+      "pd": null, 
+      "title": "J\u0119zyk Trolli"
+    }
+  }, 
+  {
+    "pk": 511, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "juliusz-cezar", 
+      "pd": 0, 
+      "title": "Juliusz Cezar"
+    }
+  }, 
+  {
+    "pk": 405, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "kalamburka", 
+      "pd": null, 
+      "title": "Kalamburka"
+    }
+  }, 
+  {
+    "pk": 285, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander Kami\u0144ski", 
+      "slug": "kamienie-na-szaniec", 
+      "pd": 2049, 
+      "title": "Kamienie na szaniec"
+    }
+  }, 
+  {
+    "pk": 173, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Tadeusz Do\u0142\u0119ga-Mostowicz", 
+      "slug": "kariera-nikodema-dyzmy", 
+      "pd": 0, 
+      "title": "Kariera Nikodema Dyzmy"
+    }
+  }, 
+  {
+    "pk": 312, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Teofil Lenartowicz", 
+      "slug": "kasia", 
+      "pd": 0, 
+      "title": "Kasia"
+    }
+  }, 
+  {
+    "pk": 69, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Be\u0142za", 
+      "slug": "katechizm-polskiego-dziecka", 
+      "pd": 0, 
+      "title": "Katechizm polskiego dziecka"
+    }
+  }, 
+  {
+    "pk": 526, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Piotr Skarga", 
+      "slug": "kazania-sejmowe", 
+      "pd": 0, 
+      "title": "Kazania sejmowe"
+    }
+  }, 
+  {
+    "pk": 551, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "kiedy-prawdziwie-polacy-powstana", 
+      "pd": 0, 
+      "title": "Kiedy prawdziwie Polacy powstan\u0105"
+    }
+  }, 
+  {
+    "pk": 441, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "kilka-slow-o-kobietach", 
+      "pd": 0, 
+      "title": "Kilka s\u0142\u00f3w o kobietach"
+    }
+  }, 
+  {
+    "pk": 442, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "kilka-uwag-nad-powiescia", 
+      "pd": 0, 
+      "title": "Kilka uwag nad powie\u015bci\u0105"
+    }
+  }, 
+  {
+    "pk": 319, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "klechdy-polskie", 
+      "pd": 0, 
+      "title": "Klechdy polskie"
+    }
+  }, 
+  {
+    "pk": 320, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "klechdy-sezamowe", 
+      "pd": 0, 
+      "title": "Klechdy sezamowe"
+    }
+  }, 
+  {
+    "pk": 21, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "klejnoty", 
+      "pd": 0, 
+      "title": "Klejnoty"
+    }
+  }, 
+  {
+    "pk": 420, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "kleopatra-i-cezar", 
+      "pd": 0, 
+      "title": "Kleopatra i Cezar"
+    }
+  }, 
+  {
+    "pk": 614, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander \u015awi\u0119tochowski", 
+      "slug": "klub-szachistow", 
+      "pd": 0, 
+      "title": "Klub szachist\u00f3w"
+    }
+  }, 
+  {
+    "pk": 393, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "klamczucha", 
+      "pd": null, 
+      "title": "K\u0142amczucha"
+    }
+  }, 
+  {
+    "pk": 132, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "knajpa", 
+      "pd": 0, 
+      "title": "Knajpa"
+    }
+  }, 
+  {
+    "pk": 187, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stefan Grabi\u0144ski", 
+      "slug": "kochanka-szamoty", 
+      "pd": 0, 
+      "title": "Kochanka Szamoty"
+    }
+  }, 
+  {
+    "pk": 117, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "kolysanki", 
+      "pd": 0, 
+      "title": "Ko\u0142ysanki"
+    }
+  }, 
+  {
+    "pk": 133, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "kolysanki-pedem", 
+      "pd": 0, 
+      "title": "Ko\u0142ysanki p\u0119dem"
+    }
+  }, 
+  {
+    "pk": 421, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "komedia", 
+      "pd": 0, 
+      "title": "Komedia"
+    }
+  }, 
+  {
+    "pk": 492, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "komediantka", 
+      "pd": 0, 
+      "title": "Komediantka"
+    }
+  }, 
+  {
+    "pk": 493, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "komurasaki", 
+      "pd": 0, 
+      "title": "Komurasaki"
+    }
+  }, 
+  {
+    "pk": 134, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "koniec-rewolucji", 
+      "pd": 0, 
+      "title": "Koniec rewolucji"
+    }
+  }, 
+  {
+    "pk": 482, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kazimierz Przerwa-Tetmajer", 
+      "slug": "koniec-wieku", 
+      "pd": 2011, 
+      "title": "Koniec wieku"
+    }
+  }, 
+  {
+    "pk": 107, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "kopciuszek", 
+      "pd": 0, 
+      "title": "Kopciuszek"
+    }
+  }, 
+  {
+    "pk": 89, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "kot-w-butach", 
+      "pd": 0, 
+      "title": "Kot w butach"
+    }
+  }, 
+  {
+    "pk": 22, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "koty", 
+      "pd": 0, 
+      "title": "Koty"
+    }
+  }, 
+  {
+    "pk": 321, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "krajobraz-utracony", 
+      "pd": 0, 
+      "title": "Krajobraz utracony"
+    }
+  }, 
+  {
+    "pk": 681, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Gloger Zygmunt", 
+      "slug": "krakowiaczek-jeden", 
+      "pd": 0, 
+      "title": "Krakowiaczek jeden"
+    }
+  }, 
+  {
+    "pk": 658, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Kozakiewicz", 
+      "slug": "krew-nasza-dlugo-leja-katy", 
+      "pd": 0, 
+      "title": "Krew nasz\u0105 d\u0142ugo lej\u0105 katy"
+    }
+  }, 
+  {
+    "pk": 299, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Tadeusz Konwicki", 
+      "slug": "kronika-wypadkow-milosnych", 
+      "pd": null, 
+      "title": "Kronika wypadk\u00f3w mi\u0142osnych"
+    }
+  }, 
+  {
+    "pk": 90, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "krol-drozdobrody", 
+      "pd": 0, 
+      "title": "Kr\u00f3l Drozdobrody"
+    }
+  }, 
+  {
+    "pk": 512, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "krol-lear", 
+      "pd": 0, 
+      "title": "Kr\u00f3l Lear"
+    }
+  }, 
+  {
+    "pk": 91, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "krolewna-sniezka", 
+      "pd": 0, 
+      "title": "Kr\u00f3lewna \u015anie\u017cka"
+    }
+  }, 
+  {
+    "pk": 486, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Miko\u0142aj Rej", 
+      "slug": "krotka-rozprawa-miedzy-panem-wojtem-i-plebanem", 
+      "pd": 0, 
+      "title": "Kr\u00f3tka rozprawa mi\u0119dzy panem, w\u00f3jtem i plebanem"
+    }
+  }, 
+  {
+    "pk": 413, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Daniel Naborowski", 
+      "slug": "krotkosc-zywota", 
+      "pd": 0, 
+      "title": "Kr\u00f3tko\u015b\u0107 \u017cywota"
+    }
+  }, 
+  {
+    "pk": 108, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "krysztalowa-kula", 
+      "pd": 0, 
+      "title": "Kryszta\u0142owa kula"
+    }
+  }, 
+  {
+    "pk": 494, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "krzyk", 
+      "pd": 0, 
+      "title": "Krzyk"
+    }
+  }, 
+  {
+    "pk": 322, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "krzywda", 
+      "pd": 0, 
+      "title": "Krzywda"
+    }
+  }, 
+  {
+    "pk": 521, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Henryk Sienkiewicz", 
+      "slug": "krzyzacy", 
+      "pd": 0, 
+      "title": "Krzy\u017cacy"
+    }
+  }, 
+  {
+    "pk": 82, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "ksiega-hioba", 
+      "pd": 0, 
+      "title": "Ksi\u0119ga Hioba"
+    }
+  }, 
+  {
+    "pk": 73, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "ksiega-rodzaju", 
+      "pd": 0, 
+      "title": "Ksi\u0119ga Rodzaju"
+    }
+  }, 
+  {
+    "pk": 291, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Kasprowicz", 
+      "slug": "ksiega-ubogich", 
+      "pd": 0, 
+      "title": "Ksi\u0119ga ubogich"
+    }
+  }, 
+  {
+    "pk": 552, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "ksiezyc", 
+      "pd": 0, 
+      "title": "Ksi\u0119\u017cyc"
+    }
+  }, 
+  {
+    "pk": 464, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wac\u0142aw Potocki", 
+      "slug": "kto-mocniejszy-ten-lepszy", 
+      "pd": 0, 
+      "title": "Kto mocniejszy, ten lepszy"
+    }
+  }, 
+  {
+    "pk": 553, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "kulik", 
+      "pd": 0, 
+      "title": "Kulik"
+    }
+  }, 
+  {
+    "pk": 394, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "kwiat-kalafiora", 
+      "pd": null, 
+      "title": "Kwiat kalafiora"
+    }
+  }, 
+  {
+    "pk": 135, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "kwiecien-tych-co-bez-troski", 
+      "pd": 0, 
+      "title": "Kwiecie\u0144 tych co bez troski"
+    }
+  }, 
+  {
+    "pk": 554, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "lambro", 
+      "pd": 0, 
+      "title": "Lambro"
+    }
+  }, 
+  {
+    "pk": 308, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "lament-swietokrzyski", 
+      "pd": 0, 
+      "title": "Lament \u015bwi\u0119tokrzyski"
+    }
+  }, 
+  {
+    "pk": 659, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wincenty Pol", 
+      "slug": "lecieliscie-z-drzewa", 
+      "pd": 0, 
+      "title": "Lecieli\u015bcie z drzewa"
+    }
+  }, 
+  {
+    "pk": 136, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "legie-der-trauer", 
+      "pd": 0, 
+      "title": "Legie der Trauer"
+    }
+  }, 
+  {
+    "pk": 660, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "legun-na-wojence", 
+      "pd": 0, 
+      "title": "Legun na wojence"
+    }
+  }, 
+  {
+    "pk": 23, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "leta", 
+      "pd": 0, 
+      "title": "Leta"
+    }
+  }, 
+  {
+    "pk": 349, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Clive Staples Lewis", 
+      "slug": "lew-czarownica-i-stara-szafa", 
+      "pd": null, 
+      "title": "Lew, czarownica i stara szafa"
+    }
+  }, 
+  {
+    "pk": 544, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "lilia-weneda", 
+      "pd": 0, 
+      "title": "Lilia Weneda"
+    }
+  }, 
+  {
+    "pk": 137, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "liryka", 
+      "pd": 0, 
+      "title": "Liryka"
+    }
+  }, 
+  {
+    "pk": 435, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Artur Oppman", 
+      "slug": "lis-i-kurka", 
+      "pd": 0, 
+      "title": "Lis i kurka"
+    }
+  }, 
+  {
+    "pk": 204, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "listy", 
+      "pd": 0, 
+      "title": "Listy"
+    }
+  }, 
+  {
+    "pk": 303, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Zygmunt Krasi\u0144ski", 
+      "slug": "krasinski-listy", 
+      "pd": 0, 
+      "title": "Listy"
+    }
+  }, 
+  {
+    "pk": 24, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "litanie-do-szatana", 
+      "pd": 0, 
+      "title": "Litanie Do Szatana"
+    }
+  }, 
+  {
+    "pk": 25, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "lola-de-valence", 
+      "pd": 0, 
+      "title": "Lola De Valence"
+    }
+  }, 
+  {
+    "pk": 411, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Vladimir Nabokov", 
+      "slug": "lolita", 
+      "pd": null, 
+      "title": "Lolita"
+    }
+  }, 
+  {
+    "pk": 555, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "los-mie-juz-zaden-nie-moze-zatrwozyc", 
+      "pd": 0, 
+      "title": "Los mi\u0119 ju\u017c \u017caden nie mo\u017ce zatrwo\u017cy\u0107"
+    }
+  }, 
+  {
+    "pk": 483, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kazimierz Przerwa-Tetmajer", 
+      "slug": "ludzie-miotaja-sie", 
+      "pd": 2011, 
+      "title": "Ludzie miotaj\u0105 si\u0119"
+    }
+  }, 
+  {
+    "pk": 638, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "lulajze-jezuniu", 
+      "pd": 0, 
+      "title": "Lulaj\u017ce Jezuniu"
+    }
+  }, 
+  {
+    "pk": 26, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "labedz", 
+      "pd": 0, 
+      "title": "\u0141ab\u0119d\u017a"
+    }
+  }, 
+  {
+    "pk": 177, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Fiodor Dostojewski", 
+      "slug": "lagodna", 
+      "pd": 2049, 
+      "title": "\u0141agodna"
+    }
+  }, 
+  {
+    "pk": 513, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "makbet", 
+      "pd": 0, 
+      "title": "Makbet"
+    }
+  }, 
+  {
+    "pk": 182, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander Fredro", 
+      "slug": "malpa-w-kapieli", 
+      "pd": 0, 
+      "title": "Ma\u0142pa w k\u0105pieli"
+    }
+  }, 
+  {
+    "pk": 509, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Antoine de Saint Exup\u00e9ry", 
+      "slug": "maly-ksiaze", 
+      "pd": null, 
+      "title": "Ma\u0142y ksi\u0105\u017c\u0119"
+    }
+  }, 
+  {
+    "pk": 290, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grzegorz Kasdepke", 
+      "slug": "mam-prawo-czyli-nieomal-wszystko-co-powinniscie-wiedziec-o-prawach-dziecka-a-nie-macie-kogo-zapytac", 
+      "pd": null, 
+      "title": "Mam prawo! Czyli nieomal wszystko, co powinni\u015bcie wiedzie\u0107 o prawach dziecka, a nie macie kogo zapyta\u0107"
+    }
+  }, 
+  {
+    "pk": 443, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "maria", 
+      "pd": 0, 
+      "title": "Maria"
+    }
+  }, 
+  {
+    "pk": 414, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Daniel Naborowski", 
+      "slug": "marnosc", 
+      "pd": 0, 
+      "title": "Marno\u015b\u0107"
+    }
+  }, 
+  {
+    "pk": 444, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "marta", 
+      "pd": 0, 
+      "title": "Marta"
+    }
+  }, 
+  {
+    "pk": 27, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "marzenie-ciekawego", 
+      "pd": 0, 
+      "title": "Marzenie Ciekawego"
+    }
+  }, 
+  {
+    "pk": 626, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Ignacy Witkiewicz", 
+      "slug": "matka", 
+      "pd": 0, 
+      "title": "Matka"
+    }
+  }, 
+  {
+    "pk": 661, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wincenty Pol", 
+      "slug": "mazur", 
+      "pd": 0, 
+      "title": "Mazur"
+    }
+  }, 
+  {
+    "pk": 655, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "mazurek-dabrowskiego", 
+      "pd": 0, 
+      "title": "Mazurek D\u0105browskiego"
+    }
+  }, 
+  {
+    "pk": 445, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "meir-ezofowicz", 
+      "pd": 0, 
+      "title": "Meir Ezofowicz"
+    }
+  }, 
+  {
+    "pk": 639, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stefan Bordkiewicz", 
+      "slug": "medrcy-swiata", 
+      "pd": 0, 
+      "title": "M\u0119drcy \u015bwiata"
+    }
+  }, 
+  {
+    "pk": 433, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ren\u00e9 Goscinny, Jean-Jacques Semp\u00e9", 
+      "slug": "mikolajek", 
+      "pd": null, 
+      "title": "Miko\u0142ajek"
+    }
+  }, 
+  {
+    "pk": 470, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "milknace-glosy", 
+      "pd": 0, 
+      "title": "Milkn\u0105ce g\u0142osy"
+    }
+  }, 
+  {
+    "pk": 323, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "milosc-stroskana", 
+      "pd": 0, 
+      "title": "Milo\u015b\u0107 stroskana"
+    }
+  }, 
+  {
+    "pk": 297, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Maria Konopnicka", 
+      "slug": "milosierdzie-gminy", 
+      "pd": 0, 
+      "title": "Mi\u0142osierdzie gminy"
+    }
+  }, 
+  {
+    "pk": 28, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "milosc-klamstwa", 
+      "pd": 0, 
+      "title": "Mi\u0142o\u015b\u0107 K\u0142amstwa"
+    }
+  }, 
+  {
+    "pk": 446, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "mirtala", 
+      "pd": 0, 
+      "title": "Mirtala"
+    }
+  }, 
+  {
+    "pk": 111, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Micha\u0142 Bu\u0142hakow", 
+      "slug": "mistrz-i-malgorzata", 
+      "pd": null, 
+      "title": "Mistrz i Ma\u0142gorzata"
+    }
+  }, 
+  {
+    "pk": 640, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Teofil Lenartowicz", 
+      "slug": "mizerna-cicha", 
+      "pd": 0, 
+      "title": "Mizerna, cicha"
+    }
+  }, 
+  {
+    "pk": 29, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "modlitwa-do-szatana", 
+      "pd": 0, 
+      "title": "Modlitwa Do Szatana"
+    }
+  }, 
+  {
+    "pk": 30, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "moesta-et-errabunda", 
+      "pd": 0, 
+      "title": "Moesta Et Errabunda"
+    }
+  }, 
+  {
+    "pk": 422, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "moja-ojczyzna", 
+      "pd": 0, 
+      "title": "Moja ojczyzna"
+    }
+  }, 
+  {
+    "pk": 138, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "moje-zaduszki", 
+      "pd": 0, 
+      "title": "Moje Zaduszki"
+    }
+  }, 
+  {
+    "pk": 302, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ignacy Krasicki", 
+      "slug": "monachomachia", 
+      "pd": 0, 
+      "title": "Monachomachia"
+    }
+  }, 
+  {
+    "pk": 556, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "moj-adamito-widzisz-jak-to-trudne", 
+      "pd": 0, 
+      "title": "M\u00f3j Adamito \u2014 widzisz, jak to trudne"
+    }
+  }, 
+  {
+    "pk": 31, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "muzyka", 
+      "pd": 0, 
+      "title": "Muzyka"
+    }
+  }, 
+  {
+    "pk": 92, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "muzykanci-z-bremy", 
+      "pd": 0, 
+      "title": "Muzykanci z Bremy"
+    }
+  }, 
+  {
+    "pk": 457, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Bronis\u0142awa Ostrowska", 
+      "slug": "myszka", 
+      "pd": 0, 
+      "title": "Myszka"
+    }
+  }, 
+  {
+    "pk": 507, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Roman Dmowski", 
+      "slug": "mysli-nowoczesnego-polaka", 
+      "pd": 0, 
+      "title": "My\u015bli nowoczesnego Polaka"
+    }
+  }, 
+  {
+    "pk": 557, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "na-drzewie-zawisl-waz", 
+      "pd": 0, 
+      "title": "Na drzewie zawis\u0142 w\u0105\u017c"
+    }
+  }, 
+  {
+    "pk": 615, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander \u015awi\u0119tochowski", 
+      "slug": "na-pogrzebie", 
+      "pd": 0, 
+      "title": "Na pogrzebie"
+    }
+  }, 
+  {
+    "pk": 558, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "na-sprowadzenie-prochow-napoleona", 
+      "pd": 0, 
+      "title": "Na sprowadzenie proch\u00f3w Napoleona"
+    }
+  }, 
+  {
+    "pk": 471, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "na-wakacjach", 
+      "pd": 0, 
+      "title": "Na wakacjach"
+    }
+  }, 
+  {
+    "pk": 662, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Edmund Wasilewski", 
+      "slug": "na-wawel-na-wawel", 
+      "pd": 0, 
+      "title": "Na Wawel, na Wawel"
+    }
+  }, 
+  {
+    "pk": 607, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "John Steinbeck", 
+      "slug": "na-wschod-od-edenu", 
+      "pd": 2056, 
+      "title": "Na wsch\u00f3d od Edenu"
+    }
+  }, 
+  {
+    "pk": 139, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "na-wsi", 
+      "pd": 0, 
+      "title": "Na wsi"
+    }
+  }, 
+  {
+    "pk": 367, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "nad-woda-wielka-i-czysta", 
+      "pd": 0, 
+      "title": "Nad wod\u0105 wielk\u0105 i czyst\u0105"
+    }
+  }, 
+  {
+    "pk": 389, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Andrzej Morsztyn", 
+      "slug": "nagrobek-kusiowi", 
+      "pd": 0, 
+      "title": "Nagrobek Kusiowi"
+    }
+  }, 
+  {
+    "pk": 680, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Emil Zola", 
+      "slug": "nana", 
+      "pd": 2046, 
+      "title": "Nana"
+    }
+  }, 
+  {
+    "pk": 627, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Ignacy Witkiewicz", 
+      "slug": "narkotyki", 
+      "pd": 0, 
+      "title": "Narkotyki"
+    }
+  }, 
+  {
+    "pk": 559, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "narodzie-moj", 
+      "pd": 0, 
+      "title": "Narodzie m\u00f3j"
+    }
+  }, 
+  {
+    "pk": 560, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "nastal-moj-mily-wiek-eschylesowy", 
+      "pd": 0, 
+      "title": "Nasta\u0142, m\u00f3j mi\u0142y, wiek Eschylesowy"
+    }
+  }, 
+  {
+    "pk": 472, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "nawrocony", 
+      "pd": 0, 
+      "title": "Nawr\u00f3cony"
+    }
+  }, 
+  {
+    "pk": 140, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "nic-wiecej", 
+      "pd": 0, 
+      "title": "Nic wi\u0119cej"
+    }
+  }, 
+  {
+    "pk": 561, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "nie-wiadomo-co-czyli-romantycznosc", 
+      "pd": 0, 
+      "title": "Nie wiadomo co, czyli Romantyczno\u015b\u0107"
+    }
+  }, 
+  {
+    "pk": 484, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kazimierz Przerwa-Tetmajer", 
+      "slug": "nie-wierze-w-nic", 
+      "pd": 2011, 
+      "title": "Nie wierz\u0119 w nic"
+    }
+  }, 
+  {
+    "pk": 562, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "niedawno-jeszcze-kiedym-spoczywal-uspiony", 
+      "pd": 0, 
+      "title": "Niedawno jeszcze \u2014 kiedym spoczywa\u0142 u\u015bpiony"
+    }
+  }, 
+  {
+    "pk": 563, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "niedawno-jeszcze-wasze-mogily", 
+      "pd": 0, 
+      "title": "Niedawno jeszcze wasze mogi\u0142y"
+    }
+  }, 
+  {
+    "pk": 324, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "niegdys-dom-moj-ochoczy", 
+      "pd": 0, 
+      "title": "Niegdy\u015b dom m\u00f3j ochoczy"
+    }
+  }, 
+  {
+    "pk": 281, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Jachowicz", 
+      "slug": "niegrzeczna-andzia", 
+      "pd": 0, 
+      "title": "Niegrzeczna Andzia"
+    }
+  }, 
+  {
+    "pk": 141, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "nienazwane-niejasne", 
+      "pd": 0, 
+      "title": "Nienazwane niejasne"
+    }
+  }, 
+  {
+    "pk": 368, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "niepewnosc", 
+      "pd": 0, 
+      "title": "Niepewno\u015b\u0107"
+    }
+  }, 
+  {
+    "pk": 32, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "niepowodzenie", 
+      "pd": 0, 
+      "title": "Niepowodzenie"
+    }
+  }, 
+  {
+    "pk": 465, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wac\u0142aw Potocki", 
+      "slug": "nierzadem-polska-stoi", 
+      "pd": 0, 
+      "title": "Nierz\u0105dem Polska stoi"
+    }
+  }, 
+  {
+    "pk": 418, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Edmund Niziurski", 
+      "slug": "niewiarygodne-przygody-marka-piegusa", 
+      "pd": null, 
+      "title": "Niewiarygodne przygody Marka Piegusa"
+    }
+  }, 
+  {
+    "pk": 485, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kazimierz Przerwa-Tetmajer", 
+      "slug": "niewierny", 
+      "pd": 2011, 
+      "title": "Niewierny"
+    }
+  }, 
+  {
+    "pk": 458, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Bronis\u0142awa Ostrowska", 
+      "slug": "niezapominajka", 
+      "pd": 0, 
+      "title": "Niezapominajka"
+    }
+  }, 
+  {
+    "pk": 307, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Milan Kundera", 
+      "slug": "nieznosna-lekkosc-bytu", 
+      "pd": null, 
+      "title": "Niezno\u015bna lekko\u015b\u0107 bytu"
+    }
+  }, 
+  {
+    "pk": 676, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Wyspia\u0144ski", 
+      "slug": "noc-listopadowa", 
+      "pd": 0, 
+      "title": "Noc listopadowa"
+    }
+  }, 
+  {
+    "pk": 423, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "noc-tysiaczna-druga", 
+      "pd": 0, 
+      "title": "Noc tysi\u0105czna druga"
+    }
+  }, 
+  {
+    "pk": 398, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "noelka", 
+      "pd": null, 
+      "title": "Noelka"
+    }
+  }, 
+  {
+    "pk": 142, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "nuta-na-dzwony", 
+      "pd": 0, 
+      "title": "Nuta na dzwony"
+    }
+  }, 
+  {
+    "pk": 401, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "nutria-i-nerwus", 
+      "pd": null, 
+      "title": "Nutria i Nerwus"
+    }
+  }, 
+  {
+    "pk": 93, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "o-diable-z-trzema-zlotymi-wlosami", 
+      "pd": 0, 
+      "title": "O Diable z trzema z\u0142otymi w\u0142osami"
+    }
+  }, 
+  {
+    "pk": 94, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "o-dzielnym-krawczyku", 
+      "pd": 0, 
+      "title": "O dzielnym krawczyku"
+    }
+  }, 
+  {
+    "pk": 298, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Maria Konopnicka", 
+      "slug": "o-krasnoludkach-i-sierotce-marysi", 
+      "pd": 0, 
+      "title": "O krasnoludkach i sierotce Marysi"
+    }
+  }, 
+  {
+    "pk": 95, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "o-mlodziencu-ktory-nie-znal-strachu", 
+      "pd": 0, 
+      "title": "O m\u0142odzie\u0144cu, kt\u00f3ry nie zna\u0142 strachu"
+    }
+  }, 
+  {
+    "pk": 355, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "o-morze-zjawisk", 
+      "pd": 0, 
+      "title": "O morze zjawisk"
+    }
+  }, 
+  {
+    "pk": 663, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wac\u0142aw Dennhoff-Czarnocki", 
+      "slug": "o-moj-rozmarynie", 
+      "pd": 0, 
+      "title": "O m\u00f3j rozmarynie"
+    }
+  }, 
+  {
+    "pk": 144, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "o-niebie", 
+      "pd": 0, 
+      "title": "O niebie"
+    }
+  }, 
+  {
+    "pk": 447, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "o-powiesciach-t-t-jeza", 
+      "pd": 0, 
+      "title": "O powie\u015bciach T. T. Je\u017ca"
+    }
+  }, 
+  {
+    "pk": 143, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "o-swierszczach", 
+      "pd": 0, 
+      "title": "O \u015bwierszczach"
+    }
+  }, 
+  {
+    "pk": 434, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Artur Oppman", 
+      "slug": "o-warsie-i-sawie", 
+      "pd": 0, 
+      "title": "O Warsie i Sawie"
+    }
+  }, 
+  {
+    "pk": 96, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "o-wilku-i-siedmiu-kozlatkach", 
+      "pd": 0, 
+      "title": "O wilku i siedmiu ko\u017al\u0105tkach"
+    }
+  }, 
+  {
+    "pk": 325, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "o-zmierzchu", 
+      "pd": 0, 
+      "title": "O zmierzchu"
+    }
+  }, 
+  {
+    "pk": 564, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "o-nieszczesliwa-o-uciemiezona", 
+      "pd": 0, 
+      "title": "O! nieszcz\u0119\u015bliwa! o! uciemi\u0119\u017cona"
+    }
+  }, 
+  {
+    "pk": 145, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "obloki", 
+      "pd": 0, 
+      "title": "Ob\u0142oki"
+    }
+  }, 
+  {
+    "pk": 463, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Platon", 
+      "slug": "obrona-sokratesa", 
+      "pd": 0, 
+      "title": "Obrona Sokratesa"
+    }
+  }, 
+  {
+    "pk": 146, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "od-dnia-do-dna", 
+      "pd": 0, 
+      "title": "Od dnia do dna"
+    }
+  }, 
+  {
+    "pk": 565, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "oda-do-wolnosci", 
+      "pd": 0, 
+      "title": "Oda do wolno\u015bci"
+    }
+  }, 
+  {
+    "pk": 34, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "oddzwieki", 
+      "pd": 0, 
+      "title": "Odd\u017awi\u0119ki"
+    }
+  }, 
+  {
+    "pk": 147, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "odpowiedz", 
+      "pd": 0, 
+      "title": "Odpowied\u017a"
+    }
+  }, 
+  {
+    "pk": 192, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Homer", 
+      "slug": "odyseja", 
+      "pd": 0, 
+      "title": "Odyseja"
+    }
+  }, 
+  {
+    "pk": 641, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "oj-maluski-maluski", 
+      "pd": 0, 
+      "title": "Oj, maluski, malu\u015bki"
+    }
+  }, 
+  {
+    "pk": 566, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "ojciec-zadzumionych", 
+      "pd": 0, 
+      "title": "Ojciec zad\u017cumionych"
+    }
+  }, 
+  {
+    "pk": 35, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "olbrzymka", 
+      "pd": 0, 
+      "title": "Olbrzymka"
+    }
+  }, 
+  {
+    "pk": 36, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "opetanie", 
+      "pd": 0, 
+      "title": "Op\u0119tanie"
+    }
+  }, 
+  {
+    "pk": 72, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "opis-stworzenia-swiata-i-czlowieka", 
+      "pd": 0, 
+      "title": "Opis stworzenia \u015bwiata i cz\u0142owieka"
+    }
+  }, 
+  {
+    "pk": 396, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "opium-w-rosole", 
+      "pd": null, 
+      "title": "Opium w rosole"
+    }
+  }, 
+  {
+    "pk": 148, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "opowiadanie", 
+      "pd": 0, 
+      "title": "Opowiadanie"
+    }
+  }, 
+  {
+    "pk": 2, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Irit Amiel", 
+      "slug": "osmaleni", 
+      "pd": null, 
+      "title": "Osmaleni"
+    }
+  }, 
+  {
+    "pk": 664, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ludwik Pomian \u0141ubi\u0144ski", 
+      "slug": "ostatni-mazur", 
+      "pd": 0, 
+      "title": "Ostatni mazur"
+    }
+  }, 
+  {
+    "pk": 567, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "ostatnie-wspomnienie", 
+      "pd": 0, 
+      "title": "Ostatnie wspomnienie"
+    }
+  }, 
+  {
+    "pk": 37, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "otchlan", 
+      "pd": 0, 
+      "title": "Otch\u0142a\u0144"
+    }
+  }, 
+  {
+    "pk": 514, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "otello", 
+      "pd": 0, 
+      "title": "Otello"
+    }
+  }, 
+  {
+    "pk": 569, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "oto-bog-ktory-lona-tajemnic-odmyka", 
+      "pd": 0, 
+      "title": "Oto B\u00f3g, kt\u00f3ry \u0142ona tajemnic odmyka"
+    }
+  }, 
+  {
+    "pk": 508, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Henryk Rzewuski", 
+      "slug": "pamiatki-soplicy", 
+      "pd": 0, 
+      "title": "Pami\u0105tki Soplicy"
+    }
+  }, 
+  {
+    "pk": 70, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Miron Bia\u0142oszewski", 
+      "slug": "pamietnik-z-powstania-warszawskiego", 
+      "pd": 2054, 
+      "title": "Pami\u0119tnik z powstania warszawskiego"
+    }
+  }, 
+  {
+    "pk": 460, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Chryzostom Pasek", 
+      "slug": "pamietniki", 
+      "pd": 0, 
+      "title": "Pami\u0119tniki"
+    }
+  }, 
+  {
+    "pk": 181, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Gustaw Flaubert", 
+      "slug": "pani-bovary", 
+      "pd": 2062, 
+      "title": "Pani Bovary"
+    }
+  }, 
+  {
+    "pk": 369, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "pani-czy-dziewczyna", 
+      "pd": 0, 
+      "title": "Pani czy dziewczyna"
+    }
+  }, 
+  {
+    "pk": 448, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "pani-luiza", 
+      "pd": 0, 
+      "title": "Pani Luiza"
+    }
+  }, 
+  {
+    "pk": 449, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "panna-antonina", 
+      "pd": 0, 
+      "title": "Panna Antonina"
+    }
+  }, 
+  {
+    "pk": 450, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "panna-roza", 
+      "pd": 0, 
+      "title": "Panna R\u00f3\u017ca"
+    }
+  }, 
+  {
+    "pk": 278, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jaros\u0142aw Iwaszkiewicz", 
+      "slug": "panny-z-wilka", 
+      "pd": 2051, 
+      "title": "Panny z Wilka"
+    }
+  }, 
+  {
+    "pk": 570, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "paryz", 
+      "pd": 0, 
+      "title": "Pary\u017c"
+    }
+  }, 
+  {
+    "pk": 293, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Kochanowski", 
+      "slug": "paslterz-dawidow", 
+      "pd": 0, 
+      "title": "Pas\u0142terz Dawid\u00f3w"
+    }
+  }, 
+  {
+    "pk": 183, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander Fredro", 
+      "slug": "pawel-i-gawel", 
+      "pd": 0, 
+      "title": "Pawe\u0142 i Gawe\u0142"
+    }
+  }, 
+  {
+    "pk": 149, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "paysage-nocturne", 
+      "pd": 0, 
+      "title": "Paysage nocturne"
+    }
+  }, 
+  {
+    "pk": 38, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "pekniety-dzwon", 
+      "pd": 0, 
+      "title": "P\u0119kni\u0119ty Dzwon"
+    }
+  }, 
+  {
+    "pk": 618, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Makepeace Thackeray", 
+      "slug": "pierscien-i-roza", 
+      "pd": 0, 
+      "title": "Pier\u015bcie\u0144 i r\u00f3\u017ca"
+    }
+  }, 
+  {
+    "pk": 424, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "pierscien-wielkiej-damy-czyli-ex-machina-durejko", 
+      "pd": 0, 
+      "title": "Pier\u015bcie\u0144 Wielkiej Damy, czyli Ex-machina Durejko"
+    }
+  }, 
+  {
+    "pk": 81, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "piesn-nad-piesniami", 
+      "pd": 0, 
+      "title": "Pie\u015b\u0144 nad pie\u015bniami"
+    }
+  }, 
+  {
+    "pk": 150, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "piesn-o-niedobrej-burzy", 
+      "pd": 0, 
+      "title": "Pie\u015b\u0144 o niedobrej burzy"
+    }
+  }, 
+  {
+    "pk": 461, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "piesn-o-rolandzie", 
+      "pd": 2012, 
+      "title": "Pie\u015b\u0144 o Rolandzie"
+    }
+  }, 
+  {
+    "pk": 288, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Franciszek Karpi\u0144ski", 
+      "slug": "piesn-poranna", 
+      "pd": 0, 
+      "title": "Pie\u015b\u0144 poranna"
+    }
+  }, 
+  {
+    "pk": 390, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Andrzej Morsztyn", 
+      "slug": "piesn-w-obozie-wojskowym-pod-zwancem", 
+      "pd": 0, 
+      "title": "Pie\u015b\u0144 w obozie wojskowym pod \u017bwa\u0144cem"
+    }
+  }, 
+  {
+    "pk": 289, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Franciszek Karpi\u0144ski", 
+      "slug": "piesn-wieczorna", 
+      "pd": 0, 
+      "title": "Pie\u015b\u0144 wieczorna"
+    }
+  }, 
+  {
+    "pk": 39, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "piekno", 
+      "pd": 0, 
+      "title": "Pi\u0119kno"
+    }
+  }, 
+  {
+    "pk": 40, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "piekny-statek", 
+      "pd": 0, 
+      "title": "Pi\u0119kny Statek"
+    }
+  }, 
+  {
+    "pk": 116, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Carlo Collodi", 
+      "slug": "pinokio", 
+      "pd": null, 
+      "title": "Pinokio"
+    }
+  }, 
+  {
+    "pk": 151, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "piosenka-czeski-domek", 
+      "pd": 0, 
+      "title": "Piosenka czeski domek"
+    }
+  }, 
+  {
+    "pk": 152, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "plan-akacji", 
+      "pd": 0, 
+      "title": "Plan akacji"
+    }
+  }, 
+  {
+    "pk": 473, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "plesn-swiata", 
+      "pd": 0, 
+      "title": "Ple\u015b\u0144 \u015bwiata"
+    }
+  }, 
+  {
+    "pk": 624, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Edmund Wasilewski", 
+      "slug": "plynie-wisla-plynie", 
+      "pd": 0, 
+      "title": "P\u0142ynie Wis\u0142a, p\u0142ynie"
+    }
+  }, 
+  {
+    "pk": 259, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "po-pyrrusa", 
+      "pd": 0, 
+      "title": "Po Pyrrusa"
+    }
+  }, 
+  {
+    "pk": 665, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wincenty Pol", 
+      "slug": "pobudka", 
+      "pd": 0, 
+      "title": "Pobudka"
+    }
+  }, 
+  {
+    "pk": 153, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "pod-dworcem-glownym-w-warszawie", 
+      "pd": 0, 
+      "title": "Pod Dworcem G\u0142\u00f3wnym w Warszawie"
+    }
+  }, 
+  {
+    "pk": 41, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "podroz", 
+      "pd": 0, 
+      "title": "Podr\u00f3\u017c"
+    }
+  }, 
+  {
+    "pk": 42, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "podroz-na-cytere", 
+      "pd": 0, 
+      "title": "Podr\u00f3\u017c Na Cyter\u0119"
+    }
+  }, 
+  {
+    "pk": 286, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ryszard Kapu\u015bci\u0144ski", 
+      "slug": "podroze-z-herodotem", 
+      "pd": 2078, 
+      "title": "Podr\u00f3\u017ce z Herodotem"
+    }
+  }, 
+  {
+    "pk": 571, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "poeta-i-natchnienie", 
+      "pd": 0, 
+      "title": "Poeta i Natchnienie"
+    }
+  }, 
+  {
+    "pk": 326, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "pogrzeb", 
+      "pd": 0, 
+      "title": "Pogrzeb"
+    }
+  }, 
+  {
+    "pk": 327, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "pogrzeb-don-zuana", 
+      "pd": 0, 
+      "title": "Pogrzeb don \u017cuana"
+    }
+  }, 
+  {
+    "pk": 572, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "pogrzeb-kapitana-meyznera", 
+      "pd": 0, 
+      "title": "Pogrzeb kapitana Meyznera"
+    }
+  }, 
+  {
+    "pk": 154, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "polacy", 
+      "pd": 0, 
+      "title": "Polacy"
+    }
+  }, 
+  {
+    "pk": 370, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "polaly-sie-lzy", 
+      "pd": 0, 
+      "title": "Pola\u0142y si\u0119 \u0142zy"
+    }
+  }, 
+  {
+    "pk": 573, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "polska-polska-o-krolowa", 
+      "pd": 0, 
+      "title": "Polska! Polska! o! kr\u00f3lowa"
+    }
+  }, 
+  {
+    "pk": 574, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "polsko-moja-tys-pierwsza-swiatu", 
+      "pd": 0, 
+      "title": "Polsko moja! ty\u015b pierwsza \u015bwiatu"
+    }
+  }, 
+  {
+    "pk": 328, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "poludnie", 
+      "pd": 0, 
+      "title": "Po\u0142udnie"
+    }
+  }, 
+  {
+    "pk": 371, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "popas-w-upicie", 
+      "pd": 0, 
+      "title": "Popas w Upicie"
+    }
+  }, 
+  {
+    "pk": 451, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "porcelanka", 
+      "pd": 0, 
+      "title": "Porcelanka"
+    }
+  }, 
+  {
+    "pk": 515, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "poskromienie-zlosnicy", 
+      "pd": 0, 
+      "title": "Poskromienie z\u0142o\u015bnicy"
+    }
+  }, 
+  {
+    "pk": 43, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "poswiecam-ci-te-wiersze", 
+      "pd": 0, 
+      "title": "Po\u015bwi\u0119cam Ci Te Wiersze"
+    }
+  }, 
+  {
+    "pk": 329, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "powrot", 
+      "pd": 0, 
+      "title": "Powr\u00f3t"
+    }
+  }, 
+  {
+    "pk": 417, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Julian Ursyn Niemcewicz", 
+      "slug": "powrot-posla", 
+      "pd": 0, 
+      "title": "Powr\u00f3t pos\u0142a"
+    }
+  }, 
+  {
+    "pk": 666, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "pozegnanie", 
+      "pd": 0, 
+      "title": "Po\u017cegnanie"
+    }
+  }, 
+  {
+    "pk": 628, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Ignacy Witkiewicz", 
+      "slug": "pozegnanie-jesieni", 
+      "pd": 0, 
+      "title": "Po\u017cegnanie jesieni"
+    }
+  }, 
+  {
+    "pk": 642, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "pojdzmy-wszyscy-do-stajenki", 
+      "pd": 0, 
+      "title": "P\u00f3jd\u017amy wszyscy do stajenki"
+    }
+  }, 
+  {
+    "pk": 643, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "polnoc", 
+      "pd": 0, 
+      "title": "P\u00f3\u0142noc"
+    }
+  }, 
+  {
+    "pk": 425, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "praca", 
+      "pd": 0, 
+      "title": "Praca"
+    }
+  }, 
+  {
+    "pk": 284, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Franz Kafka", 
+      "slug": "proces", 
+      "pd": 2013, 
+      "title": "Proces"
+    }
+  }, 
+  {
+    "pk": 174, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Tadeusz Do\u0142\u0119ga-Mostowicz", 
+      "slug": "profesor-wilczur", 
+      "pd": 0, 
+      "title": "Profesor Wilczur"
+    }
+  }, 
+  {
+    "pk": 575, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "proroctwo", 
+      "pd": 0, 
+      "title": "Proroctwo"
+    }
+  }, 
+  {
+    "pk": 330, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "prosba", 
+      "pd": 0, 
+      "title": "Pro\u015bba"
+    }
+  }, 
+  {
+    "pk": 576, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "prowadzil-mnie-na-bardzo-ciemne-wezowisko", 
+      "pd": 0, 
+      "title": "Prowadzi\u0142 mnie na bardzo ciemne w\u0119\u017cowisko"
+    }
+  }, 
+  {
+    "pk": 474, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "przed-kopernikiem", 
+      "pd": 0, 
+      "title": "Przed Kopernikiem"
+    }
+  }, 
+  {
+    "pk": 495, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "przed-switem", 
+      "pd": 0, 
+      "title": "Przed \u015bwitem"
+    }
+  }, 
+  {
+    "pk": 155, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "przedswit", 
+      "pd": 0, 
+      "title": "Przed\u015bwit"
+    }
+  }, 
+  {
+    "pk": 577, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "przeklestwo", 
+      "pd": 0, 
+      "title": "Przekl\u0119stwo"
+    }
+  }, 
+  {
+    "pk": 606, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Staszic", 
+      "slug": "przestrogi-dla-polski", 
+      "pd": 0, 
+      "title": "Przestrogi dla Polski"
+    }
+  }, 
+  {
+    "pk": 156, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "przez-kresy", 
+      "pd": 0, 
+      "title": "Przez kresy"
+    }
+  }, 
+  {
+    "pk": 644, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przybiezeli-do-betlejem", 
+      "pd": 0, 
+      "title": "Przybie\u017celi do Betlejem"
+    }
+  }, 
+  {
+    "pk": 459, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Parandowski", 
+      "slug": "przygody-odyseusza", 
+      "pd": 2049, 
+      "title": "Przygody Odyseusza"
+    }
+  }, 
+  {
+    "pk": 331, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "przygody-sindbada-zeglarza", 
+      "pd": 0, 
+      "title": "Przygody Sindbada \u017beglarza"
+    }
+  }, 
+  {
+    "pk": 620, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Mark Twain", 
+      "slug": "przygody-tomka-sawyera", 
+      "pd": 2054, 
+      "title": "Przygody Tomka Sawyera"
+    }
+  }, 
+  {
+    "pk": 74, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-milosiernym-samarytaninie", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o mi\u0142osiernym Samarytaninie"
+    }
+  }, 
+  {
+    "pk": 75, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-pannach-roztropnych", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o pannach roztropnych"
+    }
+  }, 
+  {
+    "pk": 76, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-robotnikach-w-winnicy", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o robotnikach w winnicy"
+    }
+  }, 
+  {
+    "pk": 77, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-siewcy", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o siewcy"
+    }
+  }, 
+  {
+    "pk": 78, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-synu-marnotrawnym", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o synu marnotrawnym"
+    }
+  }, 
+  {
+    "pk": 79, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-talentach", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o talentach"
+    }
+  }, 
+  {
+    "pk": 80, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "przypowiesc-o-ziarnku-gorczycy", 
+      "pd": 0, 
+      "title": "Przypowie\u015b\u0107 o ziarnku gorczycy"
+    }
+  }, 
+  {
+    "pk": 399, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "pulpecja", 
+      "pd": null, 
+      "title": "Pulpecja"
+    }
+  }, 
+  {
+    "pk": 332, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "puscila-po-stole-swawolacy-wianek", 
+      "pd": 0, 
+      "title": "Pu\u015bci\u0142a po stole swawol\u0105cy wianek"
+    }
+  }, 
+  {
+    "pk": 372, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "renegat-ballada-turecka", 
+      "pd": 0, 
+      "title": "Renegat (ballada turecka)"
+    }
+  }, 
+  {
+    "pk": 415, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Daniel Naborowski", 
+      "slug": "respons-niespodziewany", 
+      "pd": 0, 
+      "title": "Respons niespodziewany"
+    }
+  }, 
+  {
+    "pk": 436, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "George Orwell", 
+      "slug": "rok-1984", 
+      "pd": 2074, 
+      "title": "Rok 1984"
+    }
+  }, 
+  {
+    "pk": 44, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "romantyczny-zachod-slonca", 
+      "pd": 0, 
+      "title": "Romantyczny Zach\u00f3d S\u0142o\u0144ca"
+    }
+  }, 
+  {
+    "pk": 109, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "roszpunka", 
+      "pd": 0, 
+      "title": "Roszpunka"
+    }
+  }, 
+  {
+    "pk": 667, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Maria Konopnicka", 
+      "slug": "rota", 
+      "pd": 0, 
+      "title": "Rota"
+    }
+  }, 
+  {
+    "pk": 579, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "rozlaczenie", 
+      "pd": 0, 
+      "title": "Roz\u0142\u0105czenie"
+    }
+  }, 
+  {
+    "pk": 668, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "August Bielowski", 
+      "slug": "bielowski-rozlaczenie", 
+      "pd": 0, 
+      "title": "Roz\u0142\u0105czenie"
+    }
+  }, 
+  {
+    "pk": 527, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "rozmowa-z-piramidami", 
+      "pd": 0, 
+      "title": "Rozmowa z piramidami"
+    }
+  }, 
+  {
+    "pk": 157, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "rymy-pobozne", 
+      "pd": 0, 
+      "title": "Rymy pobo\u017cne"
+    }
+  }, 
+  {
+    "pk": 516, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "ryszard-ii", 
+      "pd": 0, 
+      "title": "Ryszard II"
+    }
+  }, 
+  {
+    "pk": 621, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Tyrtajos", 
+      "slug": "rzecz-to-piekna", 
+      "pd": 0, 
+      "title": "Rzecz to pi\u0119kna"
+    }
+  }, 
+  {
+    "pk": 580, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "rzym", 
+      "pd": 0, 
+      "title": "Rzym"
+    }
+  }, 
+  {
+    "pk": 277, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Horacy", 
+      "slug": "satyry", 
+      "pd": 0, 
+      "title": "Satyry"
+    }
+  }, 
+  {
+    "pk": 496, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "seans", 
+      "pd": 0, 
+      "title": "Seans"
+    }
+  }, 
+  {
+    "pk": 45, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "sed-non-satiata", 
+      "pd": 0, 
+      "title": "Sed Non Satiata"
+    }
+  }, 
+  {
+    "pk": 523, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Henryk Sienkiewicz", 
+      "slug": "selim-mirza", 
+      "pd": 0, 
+      "title": "Selim Mirza"
+    }
+  }, 
+  {
+    "pk": 158, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "sen", 
+      "pd": 0, 
+      "title": "Sen"
+    }
+  }, 
+  {
+    "pk": 475, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "prus-sen", 
+      "pd": 0, 
+      "title": "Sen"
+    }
+  }, 
+  {
+    "pk": 517, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "sen-nocy-letniej", 
+      "pd": 0, 
+      "title": "Sen nocy letniej"
+    }
+  }, 
+  {
+    "pk": 159, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "sen-sielski", 
+      "pd": 0, 
+      "title": "Sen sielski"
+    }
+  }, 
+  {
+    "pk": 333, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "sen-wiejski", 
+      "pd": 0, 
+      "title": "Sen wiejski"
+    }
+  }, 
+  {
+    "pk": 497, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "senne-dzieje", 
+      "pd": 0, 
+      "title": "Senne dzieje"
+    }
+  }, 
+  {
+    "pk": 677, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Wyspia\u0144ski", 
+      "slug": "sedziowie", 
+      "pd": 0, 
+      "title": "S\u0119dziowie"
+    }
+  }, 
+  {
+    "pk": 46, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "skargi-jakiegos-ikara", 
+      "pd": 0, 
+      "title": "Skargi Jakiego\u015b Ikara"
+    }
+  }, 
+  {
+    "pk": 386, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Moli\u00e8re", 
+      "slug": "skapiec", 
+      "pd": 0, 
+      "title": "Sk\u0105piec"
+    }
+  }, 
+  {
+    "pk": 520, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Bruno Schulz", 
+      "slug": "sklepy-cynamonowe", 
+      "pd": 2013, 
+      "title": "Sklepy cynamonowe"
+    }
+  }, 
+  {
+    "pk": 334, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "skonczonosc", 
+      "pd": 0, 
+      "title": "Sko\u0144czono\u015b\u0107"
+    }
+  }, 
+  {
+    "pk": 335, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "skrzeble", 
+      "pd": 0, 
+      "title": "Skrzeble"
+    }
+  }, 
+  {
+    "pk": 373, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "slowiczku-moj", 
+      "pd": 0, 
+      "title": "S\u0142owiczku m\u00f3j"
+    }
+  }, 
+  {
+    "pk": 374, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "snuc-milosc", 
+      "pd": 0, 
+      "title": "Snu\u0107 mi\u0142o\u015b\u0107"
+    }
+  }, 
+  {
+    "pk": 582, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "snycerz-byl-zatrudniony-dyjany-lepieniem", 
+      "pd": 0, 
+      "title": "Snycerz by\u0142 zatrudniony Dyjany lepieniem"
+    }
+  }, 
+  {
+    "pk": 426, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "socjalizm", 
+      "pd": 0, 
+      "title": "Socjalizm"
+    }
+  }, 
+  {
+    "pk": 310, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Lem", 
+      "slug": "solaris", 
+      "pd": 2077, 
+      "title": "Solaris"
+    }
+  }, 
+  {
+    "pk": 519, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "sonety", 
+      "pd": 0, 
+      "title": "Sonety"
+    }
+  }, 
+  {
+    "pk": 375, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "sonety-odeskie", 
+      "pd": 0, 
+      "title": "Sonety odeskie"
+    }
+  }, 
+  {
+    "pk": 583, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "sowinski-w-okopach-woli", 
+      "pd": 0, 
+      "title": "Sowi\u0144ski w okopach Woli"
+    }
+  }, 
+  {
+    "pk": 47, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "spleen-i", 
+      "pd": 0, 
+      "title": "Spleen I"
+    }
+  }, 
+  {
+    "pk": 48, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "spleen-ii", 
+      "pd": 0, 
+      "title": "Spleen II"
+    }
+  }, 
+  {
+    "pk": 419, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Edmund Niziurski", 
+      "slug": "sposob-na-alcybiadesa", 
+      "pd": null, 
+      "title": "Spos\u00f3b na Alcybiadesa"
+    }
+  }, 
+  {
+    "pk": 336, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "spotykam-go-codziennie", 
+      "pd": 0, 
+      "title": "Spotykam go codziennie"
+    }
+  }, 
+  {
+    "pk": 498, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "sprawiedliwie", 
+      "pd": 0, 
+      "title": "Sprawiedliwie"
+    }
+  }, 
+  {
+    "pk": 409, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "sprezyna", 
+      "pd": null, 
+      "title": "Spr\u0119\u017cyna"
+    }
+  }, 
+  {
+    "pk": 118, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "srebrne-nitki", 
+      "pd": 0, 
+      "title": "Srebrne nitki"
+    }
+  }, 
+  {
+    "pk": 605, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "sroczka-kaszke-wazyla", 
+      "pd": null, 
+      "title": "Sroczka kaszk\u0119 wa\u017cy\u0142a"
+    }
+  }, 
+  {
+    "pk": 305, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ignacy Kraszewski", 
+      "slug": "stara-basn", 
+      "pd": 0, 
+      "title": "Stara Ba\u015b\u0144"
+    }
+  }, 
+  {
+    "pk": 49, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "staruszeczki", 
+      "pd": 0, 
+      "title": "Staruszeczki"
+    }
+  }, 
+  {
+    "pk": 294, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Oskar Kolberg", 
+      "slug": "stary-niedzwiedz", 
+      "pd": 0, 
+      "title": "Stary nied\u017awied\u017a"
+    }
+  }, 
+  {
+    "pk": 524, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Henryk Sienkiewicz", 
+      "slug": "stary-sluga", 
+      "pd": 0, 
+      "title": "Stary s\u0142uga"
+    }
+  }, 
+  {
+    "pk": 354, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Gabriel Garcia Marquez", 
+      "slug": "sto-lat-samotnosci", 
+      "pd": null, 
+      "title": "Sto lat samotno\u015bci"
+    }
+  }, 
+  {
+    "pk": 97, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "stoliczku-nakryj-sie", 
+      "pd": 0, 
+      "title": "Stoliczku nakryj si\u0119"
+    }
+  }, 
+  {
+    "pk": 499, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "suka", 
+      "pd": 0, 
+      "title": "Suka"
+    }
+  }, 
+  {
+    "pk": 50, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "sygnaly", 
+      "pd": 0, 
+      "title": "Sygna\u0142y"
+    }
+  }, 
+  {
+    "pk": 160, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "synteza", 
+      "pd": 0, 
+      "title": "Synteza"
+    }
+  }, 
+  {
+    "pk": 683, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stefan \u017beromski", 
+      "slug": "syzyfowe-prace", 
+      "pd": 0, 
+      "title": "Syzyfowe prace"
+    }
+  }, 
+  {
+    "pk": 352, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Kornel Makuszy\u0144ski", 
+      "slug": "szatan-z-siodmej-klasy", 
+      "pd": 2024, 
+      "title": "Szatan z si\u00f3dmej klasy"
+    }
+  }, 
+  {
+    "pk": 337, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "szczescie", 
+      "pd": 0, 
+      "title": "Szcz\u0119\u015bcie"
+    }
+  }, 
+  {
+    "pk": 98, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "szesc-labedzi", 
+      "pd": 0, 
+      "title": "Sze\u015b\u0107 \u0142ab\u0119dzi"
+    }
+  }, 
+  {
+    "pk": 669, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Gustawa Erynbergh", 
+      "slug": "szlachta-w-roku-1831", 
+      "pd": 0, 
+      "title": "Szlachta w roku 1831"
+    }
+  }, 
+  {
+    "pk": 392, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "szosta-klepka", 
+      "pd": null, 
+      "title": "Sz\u00f3sta klepka"
+    }
+  }, 
+  {
+    "pk": 525, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Isaac Bashevis Singer", 
+      "slug": "sztukmistrz-z-lublina", 
+      "pd": null, 
+      "title": "Sztukmistrz z Lublina"
+    }
+  }, 
+  {
+    "pk": 161, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "smierc", 
+      "pd": 0, 
+      "title": "\u015amier\u0107"
+    }
+  }, 
+  {
+    "pk": 500, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "reymont-smierc", 
+      "pd": 0, 
+      "title": "\u015amier\u0107"
+    }
+  }, 
+  {
+    "pk": 338, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "smierc-buddy", 
+      "pd": 0, 
+      "title": "\u015amier\u0107 buddy"
+    }
+  }, 
+  {
+    "pk": 51, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "smierc-kochankow", 
+      "pd": 0, 
+      "title": "\u015amier\u0107 Kochank\u00f3w"
+    }
+  }, 
+  {
+    "pk": 52, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "smierc-nedzarzy", 
+      "pd": 0, 
+      "title": "\u015amier\u0107 N\u0119dzarzy"
+    }
+  }, 
+  {
+    "pk": 339, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "smierc-wtora", 
+      "pd": 0, 
+      "title": "\u015amier\u0107 wt\u00f3ra"
+    }
+  }, 
+  {
+    "pk": 584, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "smierc-co-trzynascie-lat-stala-kolo-mnie", 
+      "pd": 0, 
+      "title": "\u015amier\u0107, co trzyna\u015bcie \u0142at sta\u0142a ko\u0142o mnie"
+    }
+  }, 
+  {
+    "pk": 581, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "sni-mi-sie-jakas-wielka-a-przez-wieki-idaca", 
+      "pd": 0, 
+      "title": "\u015ani mi si\u0119 jaka\u015b wielka a przez wieki id\u0105ca"
+    }
+  }, 
+  {
+    "pk": 376, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "snila-sie-zima", 
+      "pd": 0, 
+      "title": "\u015ani\u0142a si\u0119 zima"
+    }
+  }, 
+  {
+    "pk": 99, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "spiaca-krolewna", 
+      "pd": 0, 
+      "title": "\u015api\u0105ca kr\u00f3lewna"
+    }
+  }, 
+  {
+    "pk": 670, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Rajnold Suchodolski", 
+      "slug": "spiew", 
+      "pd": 0, 
+      "title": "\u015apiew"
+    }
+  }, 
+  {
+    "pk": 162, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "spiewny-pocalunek", 
+      "pd": 0, 
+      "title": "\u015apiewny poca\u0142unek"
+    }
+  }, 
+  {
+    "pk": 452, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "swiatlo-w-ruinach", 
+      "pd": 0, 
+      "title": "\u015awiat\u0142o w ruinach"
+    }
+  }, 
+  {
+    "pk": 53, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "swit", 
+      "pd": 0, 
+      "title": "\u015awit"
+    }
+  }, 
+  {
+    "pk": 163, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "ta-chwila", 
+      "pd": 0, 
+      "title": "Ta chwila"
+    }
+  }, 
+  {
+    "pk": 178, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Artur Conan Doyle", 
+      "slug": "tajemnica-baskervilleow", 
+      "pd": 0, 
+      "title": "Tajemnica Baskerville'\u00f3w"
+    }
+  }, 
+  {
+    "pk": 112, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Frances Hodgson Burnett", 
+      "slug": "tajemniczy-ogrod", 
+      "pd": 2014, 
+      "title": "Tajemniczy ogr\u00f3d"
+    }
+  }, 
+  {
+    "pk": 585, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "tak-mi-boze-dopomoz", 
+      "pd": 0, 
+      "title": "Tak mi, Bo\u017ce, dopom\u00f3\u017c"
+    }
+  }, 
+  {
+    "pk": 340, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "tango", 
+      "pd": 0, 
+      "title": "Tango"
+    }
+  }, 
+  {
+    "pk": 283, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Irena Jurgielewiczowa", 
+      "slug": "ten-obcy", 
+      "pd": 2074, 
+      "title": "Ten obcy"
+    }
+  }, 
+  {
+    "pk": 586, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "ten-sam-duchowi-plomienny-szlak", 
+      "pd": 0, 
+      "title": "Ten sam duchowi p\u0142omienny szlak"
+    }
+  }, 
+  {
+    "pk": 100, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "titelitury", 
+      "pd": 0, 
+      "title": "Titelitury"
+    }
+  }, 
+  {
+    "pk": 164, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "to-wiem", 
+      "pd": 0, 
+      "title": "To wiem"
+    }
+  }, 
+  {
+    "pk": 101, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "tomcio-paluszek", 
+      "pd": 0, 
+      "title": "Tomcio paluszek"
+    }
+  }, 
+  {
+    "pk": 610, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Alfred Szklarski", 
+      "slug": "tomek-w-krainie-kangurow", 
+      "pd": 2063, 
+      "title": "Tomek w krainie kangur\u00f3w"
+    }
+  }, 
+  {
+    "pk": 165, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "torun", 
+      "pd": 0, 
+      "title": "Toru\u0144"
+    }
+  }, 
+  {
+    "pk": 410, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wies\u0142aw My\u015bliwski", 
+      "slug": "traktat-o-luskaniu-fasoli", 
+      "pd": null, 
+      "title": "Traktat o \u0142uskaniu fasoli"
+    }
+  }, 
+  {
+    "pk": 645, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "triumfy-krola-niebieskiego", 
+      "pd": 0, 
+      "title": "Triumfy Kr\u00f3la Niebieskiego"
+    }
+  }, 
+  {
+    "pk": 282, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Karol Wojty\u0142a", 
+      "slug": "tryptyk-rzymski", 
+      "pd": 2076, 
+      "title": "Tryptyk Rzymski"
+    }
+  }, 
+  {
+    "pk": 377, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "trzech-budrysow", 
+      "pd": 0, 
+      "title": "Trzech Budrys\u00f3w"
+    }
+  }, 
+  {
+    "pk": 671, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "trzeci-maj-litwina", 
+      "pd": 0, 
+      "title": "Trzeci Maj Litwina"
+    }
+  }, 
+  {
+    "pk": 341, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "tu-jestem", 
+      "pd": 0, 
+      "title": "Tu jestem"
+    }
+  }, 
+  {
+    "pk": 378, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "tukaj", 
+      "pd": 0, 
+      "title": "Tukaj"
+    }
+  }, 
+  {
+    "pk": 616, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Aleksander \u015awi\u0119tochowski", 
+      "slug": "twingo", 
+      "pd": 0, 
+      "title": "Twingo"
+    }
+  }, 
+  {
+    "pk": 342, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "twoj-portret", 
+      "pd": 0, 
+      "title": "Tw\u00f3j portret"
+    }
+  }, 
+  {
+    "pk": 587, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "ty-glos-cierpiacy-podnies-i-niech-w-tobie", 
+      "pd": 0, 
+      "title": "Ty g\u0142os cierpi\u0105cy podnie\u015b \u2014 i niech w tobie"
+    }
+  }, 
+  {
+    "pk": 404, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "tygrys-i-roza", 
+      "pd": null, 
+      "title": "Tygrys i R\u00f3\u017ca"
+    }
+  }, 
+  {
+    "pk": 379, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "uciec-z-dusza-na-listek", 
+      "pd": 0, 
+      "title": "Uciec z dusz\u0105 na listek"
+    }
+  }, 
+  {
+    "pk": 380, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "ucieczka", 
+      "pd": 0, 
+      "title": "Ucieczka"
+    }
+  }, 
+  {
+    "pk": 672, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Franciszek Kowalski", 
+      "slug": "ulan-i-dziewczyna", 
+      "pd": 0, 
+      "title": "U\u0142an i dziewczyna"
+    }
+  }, 
+  {
+    "pk": 588, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "uspokojenie", 
+      "pd": 0, 
+      "title": "Uspokojenie"
+    }
+  }, 
+  {
+    "pk": 343, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "usta-i-oczy", 
+      "pd": 0, 
+      "title": "Usta i oczy"
+    }
+  }, 
+  {
+    "pk": 623, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jules Gabriel Verne", 
+      "slug": "w-80-dni-dokola-swiata", 
+      "pd": 0, 
+      "title": "W 80 dni doko\u0142a \u015bwiata"
+    }
+  }, 
+  {
+    "pk": 590, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "w-albumie-e-hr-krasinskiej", 
+      "pd": 0, 
+      "title": "W albumie E. hr. Krasi\u0144skiej"
+    }
+  }, 
+  {
+    "pk": 166, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "w-boju", 
+      "pd": 0, 
+      "title": "W boju"
+    }
+  }, 
+  {
+    "pk": 188, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stefan Grabi\u0144ski", 
+      "slug": "w-domu-sary", 
+      "pd": 0, 
+      "title": "W domu Sary"
+    }
+  }, 
+  {
+    "pk": 591, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "w-dziecinne-moje-cudne-lata", 
+      "pd": 0, 
+      "title": "W dziecinne moje cudne lata"
+    }
+  }, 
+  {
+    "pk": 381, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "w-imienniku-celiny-szymanowskiej", 
+      "pd": 0, 
+      "title": "W imienniku Celiny Szymanowskiej"
+    }
+  }, 
+  {
+    "pk": 476, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "w-ogrodzie-saskim", 
+      "pd": 0, 
+      "title": "W Ogrodzie Saskim"
+    }
+  }, 
+  {
+    "pk": 592, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "w-ostatni-dzien-w-ostatni-dzien", 
+      "pd": 0, 
+      "title": "W ostatni dzie\u0144 \u2014 w ostatni dzie\u0144"
+    }
+  }, 
+  {
+    "pk": 501, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "w-palarni-opium", 
+      "pd": 0, 
+      "title": "W palarni opium"
+    }
+  }, 
+  {
+    "pk": 593, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "w-pamietniku-zofii-bobrowny", 
+      "pd": 0, 
+      "title": "W pami\u0119tniku Zofii Bobr\u00f3wny"
+    }
+  }, 
+  {
+    "pk": 594, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "w-sztambuchu-marii-wodzinskiej", 
+      "pd": 0, 
+      "title": "W sztambuchu Marii Wodzi\u0144skiej"
+    }
+  }, 
+  {
+    "pk": 589, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "w-szwajcarii", 
+      "pd": 0, 
+      "title": "W Szwajcarii"
+    }
+  }, 
+  {
+    "pk": 428, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "w-weronie", 
+      "pd": 0, 
+      "title": "W Weronie"
+    }
+  }, 
+  {
+    "pk": 453, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "w-zimowy-wieczor", 
+      "pd": 0, 
+      "title": "W zimowy wiecz\u00f3r"
+    }
+  }, 
+  {
+    "pk": 646, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Piotr Skarga", 
+      "slug": "w-zlobie-lezy", 
+      "pd": 0, 
+      "title": "W \u017c\u0142obie le\u017cy"
+    }
+  }, 
+  {
+    "pk": 595, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "waclaw", 
+      "pd": 0, 
+      "title": "Wac\u0142aw"
+    }
+  }, 
+  {
+    "pk": 502, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "wampir", 
+      "pd": 0, 
+      "title": "Wampir"
+    }
+  }, 
+  {
+    "pk": 427, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "wanda", 
+      "pd": 0, 
+      "title": "Wanda"
+    }
+  }, 
+  {
+    "pk": 673, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "warszawianka", 
+      "pd": 0, 
+      "title": "Warszawianka"
+    }
+  }, 
+  {
+    "pk": 678, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Wyspia\u0144ski", 
+      "slug": "wyspianski-warszawianka", 
+      "pd": 0, 
+      "title": "Warszawianka"
+    }
+  }, 
+  {
+    "pk": 674, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "warszawianka-1831", 
+      "pd": 0, 
+      "title": "Warszawianka 1831"
+    }
+  }, 
+  {
+    "pk": 675, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "warszawianka-1905", 
+      "pd": 0, 
+      "title": "Warszawianka 1905"
+    }
+  }, 
+  {
+    "pk": 344, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "wczesnym-rankiem", 
+      "pd": 0, 
+      "title": "Wczesnym rankiem"
+    }
+  }, 
+  {
+    "pk": 503, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "we-mglach", 
+      "pd": 0, 
+      "title": "We mg\u0142ach"
+    }
+  }, 
+  {
+    "pk": 518, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "William Shakespeare", 
+      "slug": "wesole-kumoszki-z-windsoru", 
+      "pd": 0, 
+      "title": "Weso\u0142e kumoszki z Windsoru"
+    }
+  }, 
+  {
+    "pk": 54, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wesoly-zmarly", 
+      "pd": 0, 
+      "title": "Weso\u0142y Zmar\u0142y"
+    }
+  }, 
+  {
+    "pk": 167, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "westchnienie", 
+      "pd": 0, 
+      "title": "Westchnienie"
+    }
+  }, 
+  {
+    "pk": 55, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "widmo", 
+      "pd": 0, 
+      "title": "Widmo"
+    }
+  }, 
+  {
+    "pk": 168, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "widzenie", 
+      "pd": 0, 
+      "title": "Widzenie"
+    }
+  }, 
+  {
+    "pk": 477, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "widziadla", 
+      "pd": 0, 
+      "title": "Widziad\u0142a"
+    }
+  }, 
+  {
+    "pk": 596, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "wielcysmy-byli-i-smiesznismy-byli", 
+      "pd": 0, 
+      "title": "Wielcy\u015bmy byli i \u015bmieszni\u015bmy byli"
+    }
+  }, 
+  {
+    "pk": 102, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "wierny-jan", 
+      "pd": 0, 
+      "title": "Wierny Jan"
+    }
+  }, 
+  {
+    "pk": 345, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "wiersz-konny", 
+      "pd": 0, 
+      "title": "Wiersz konny"
+    }
+  }, 
+  {
+    "pk": 169, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "wiersz-o-smierci", 
+      "pd": 0, 
+      "title": "Wiersz o \u015bmierci"
+    }
+  }, 
+  {
+    "pk": 597, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "wierze", 
+      "pd": 0, 
+      "title": "Wierz\u0119"
+    }
+  }, 
+  {
+    "pk": 598, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "wiesz-panie-i-zem-zbiegal-swiat-szeroki", 
+      "pd": 0, 
+      "title": "Wiesz, Panie, i \u017cem zbiega\u0142 \u015bwiat szeroki"
+    }
+  }, 
+  {
+    "pk": 170, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "wiezien-milosci", 
+      "pd": 0, 
+      "title": "Wi\u0119zie\u0144 mi\u0142o\u015bci"
+    }
+  }, 
+  {
+    "pk": 56, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wino-galganiarzy", 
+      "pd": 0, 
+      "title": "Wino Ga\u0142ganiarzy"
+    }
+  }, 
+  {
+    "pk": 57, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wino-mordercy", 
+      "pd": 0, 
+      "title": "Wino Mordercy"
+    }
+  }, 
+  {
+    "pk": 58, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wino-samotnika", 
+      "pd": 0, 
+      "title": "Wino Samotnika"
+    }
+  }, 
+  {
+    "pk": 295, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Oskar Kolberg", 
+      "slug": "wlazl-kotek-na-plotek", 
+      "pd": 0, 
+      "title": "Wlaz\u0142 kotek na p\u0142otek"
+    }
+  }, 
+  {
+    "pk": 617, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Dorota Terakowska", 
+      "slug": "wladca-lewawu", 
+      "pd": 2075, 
+      "title": "W\u0142adca Lewawu"
+    }
+  }, 
+  {
+    "pk": 59, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wrog", 
+      "pd": 0, 
+      "title": "Wr\u00f3g"
+    }
+  }, 
+  {
+    "pk": 186, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Wiktor Gomulicki", 
+      "slug": "wspomnienia-niebieskiego-mundurka", 
+      "pd": 0, 
+      "title": "Wspomnienia niebieskiego mundurka"
+    }
+  }, 
+  {
+    "pk": 599, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "wspomnienie-pani-de-st-marcel-z-domu-chauveaux", 
+      "pd": 0, 
+      "title": "Wspomnienie pani de St Marcel z domu Chauveaux"
+    }
+  }, 
+  {
+    "pk": 600, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "wstal-anhelli-z-grobu-za-nim-wszystkie-duchy", 
+      "pd": 0, 
+      "title": "Wsta\u0142 Anhelli z grobu \u2014 za nim wszystkie duchy"
+    }
+  }, 
+  {
+    "pk": 647, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "wsrod-nocnej-ciszy", 
+      "pd": 0, 
+      "title": "W\u015br\u00f3d nocnej ciszy"
+    }
+  }, 
+  {
+    "pk": 601, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "wyjdzie-stu-robotnikow", 
+      "pd": 0, 
+      "title": "Wyjdzie stu robotnik\u00f3w"
+    }
+  }, 
+  {
+    "pk": 346, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "wyruszyla-dusza-w-droge", 
+      "pd": 0, 
+      "title": "Wyruszy\u0142a dusza w drog\u0119"
+    }
+  }, 
+  {
+    "pk": 60, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wyrzut-posmiertny", 
+      "pd": 0, 
+      "title": "Wyrzut Po\u015bmiertny"
+    }
+  }, 
+  {
+    "pk": 608, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Robert Louis Stevenson", 
+      "slug": "wyspa-skarbow", 
+      "pd": 0, 
+      "title": "Wyspa skarb\u00f3w"
+    }
+  }, 
+  {
+    "pk": 679, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Stanis\u0142aw Wyspia\u0144ski", 
+      "slug": "wyzwolenie", 
+      "pd": 0, 
+      "title": "Wyzwolenie"
+    }
+  }, 
+  {
+    "pk": 61, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "wzlot", 
+      "pd": 0, 
+      "title": "Wzlot"
+    }
+  }, 
+  {
+    "pk": 478, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "z-bielan", 
+      "pd": 0, 
+      "title": "Z Bielan"
+    }
+  }, 
+  {
+    "pk": 292, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Jan Kasprowicz", 
+      "slug": "z-chalupy", 
+      "pd": 0, 
+      "title": "Z cha\u0142upy"
+    }
+  }, 
+  {
+    "pk": 602, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "z-listu-do-ksiegarza", 
+      "pd": 0, 
+      "title": "Z listu do ksi\u0119garza"
+    }
+  }, 
+  {
+    "pk": 648, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "autor nieznany", 
+      "slug": "z-narodzenia-pana", 
+      "pd": 0, 
+      "title": "Z narodzenia Pana"
+    }
+  }, 
+  {
+    "pk": 504, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "z-pamietnika", 
+      "pd": 0, 
+      "title": "Z pami\u0119tnika"
+    }
+  }, 
+  {
+    "pk": 505, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "z-wedrowek-haruna-al-reszyda", 
+      "pd": 0, 
+      "title": "Z w\u0119dr\u00f3wek Haruna al Reszyda"
+    }
+  }, 
+  {
+    "pk": 479, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Prus", 
+      "slug": "z-wypracowan-malego-frania", 
+      "pd": 0, 
+      "title": "Z wypracowa\u0144 ma\u0142ego Frania"
+    }
+  }, 
+  {
+    "pk": 429, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Cyprian Kamil Norwid", 
+      "slug": "za-kulisami", 
+      "pd": 0, 
+      "title": "Za kulisami"
+    }
+  }, 
+  {
+    "pk": 506, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "W\u0142adys\u0142aw Stanis\u0142aw Reymont", 
+      "slug": "zabilem", 
+      "pd": 0, 
+      "title": "Zabi\u0142em"
+    }
+  }, 
+  {
+    "pk": 347, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "zachod", 
+      "pd": 0, 
+      "title": "Zach\u00f3d"
+    }
+  }, 
+  {
+    "pk": 603, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "zachwycenie", 
+      "pd": 0, 
+      "title": "Zachwycenie"
+    }
+  }, 
+  {
+    "pk": 62, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "zapach-egzotyczny", 
+      "pd": 0, 
+      "title": "Zapach Egzotyczny"
+    }
+  }, 
+  {
+    "pk": 63, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "zaproszenie-do-podrozy", 
+      "pd": 0, 
+      "title": "Zaproszenie Do Podr\u00f3\u017cy"
+    }
+  }, 
+  {
+    "pk": 296, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Oskar Kolberg", 
+      "slug": "zasiali-gorale", 
+      "pd": 0, 
+      "title": "Zasiali g\u00f3rale"
+    }
+  }, 
+  {
+    "pk": 348, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Boles\u0142aw Le\u015bmian", 
+      "slug": "zboj", 
+      "pd": 0, 
+      "title": "Zb\u00f3j"
+    }
+  }, 
+  {
+    "pk": 176, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Fiodor Dostojewski", 
+      "slug": "zbrodnia-i-kara", 
+      "pd": 2027, 
+      "title": "Zbrodnia i kara"
+    }
+  }, 
+  {
+    "pk": 382, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "zdania-i-uwagi", 
+      "pd": 0, 
+      "title": "Zdania i uwagi"
+    }
+  }, 
+  {
+    "pk": 300, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Hanna Krall", 
+      "slug": "zdazyc-przed-panem-bogiem", 
+      "pd": null, 
+      "title": "Zd\u0105\u017cy\u0107 przed Panem Bogiem"
+    }
+  }, 
+  {
+    "pk": 454, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "zefirek", 
+      "pd": 0, 
+      "title": "Zefirek"
+    }
+  }, 
+  {
+    "pk": 64, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "zegar", 
+      "pd": 0, 
+      "title": "Zegar"
+    }
+  }, 
+  {
+    "pk": 383, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "zima-w-miescie", 
+      "pd": 0, 
+      "title": "Zima w mie\u015bcie"
+    }
+  }, 
+  {
+    "pk": 103, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "zlodziej-nad-zlodziejami", 
+      "pd": 0, 
+      "title": "Z\u0142odziej nad z\u0142odziejami"
+    }
+  }, 
+  {
+    "pk": 455, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Eliza Orzeszkowa", 
+      "slug": "zlota-nitka", 
+      "pd": 0, 
+      "title": "Z\u0142ota nitka"
+    }
+  }, 
+  {
+    "pk": 175, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Tadeusz Do\u0142\u0119ga-Mostowicz", 
+      "slug": "znachor", 
+      "pd": 0, 
+      "title": "Znachor"
+    }
+  }, 
+  {
+    "pk": 65, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "zniszczenie", 
+      "pd": 0, 
+      "title": "Zniszczenie"
+    }
+  }, 
+  {
+    "pk": 66, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "zwloki", 
+      "pd": 0, 
+      "title": "Zw\u0142oki"
+    }
+  }, 
+  {
+    "pk": 407, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Ma\u0142gorzata Musierowicz", 
+      "slug": "zaba", 
+      "pd": null, 
+      "title": "\u017baba"
+    }
+  }, 
+  {
+    "pk": 104, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Grimm Bracia", 
+      "slug": "zabi-krol", 
+      "pd": 0, 
+      "title": "\u017babi kr\u00f3l"
+    }
+  }, 
+  {
+    "pk": 171, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "J\u00f3zef Czechowicz", 
+      "slug": "zal", 
+      "pd": 0, 
+      "title": "\u017bal"
+    }
+  }, 
+  {
+    "pk": 384, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Adam Mickiewicz", 
+      "slug": "zeglarz", 
+      "pd": 0, 
+      "title": "\u017beglarz"
+    }
+  }, 
+  {
+    "pk": 604, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Juliusz S\u0142owacki", 
+      "slug": "zmija", 
+      "pd": 0, 
+      "title": "\u017bmija"
+    }
+  }, 
+  {
+    "pk": 67, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Charles Baudleaire", 
+      "slug": "zywa-pochodnia", 
+      "pd": 0, 
+      "title": "\u017bywa Pochodnia"
+    }
+  }, 
+  {
+    "pk": 487, 
+    "model": "pdcounter.bookstub", 
+    "fields": {
+      "translator": "", 
+      "author": "Miko\u0142aj Rej", 
+      "slug": "zywot-czlowieka-poczciwego", 
+      "pd": 0, 
+      "title": "\u017bywot cz\u0142owieka poczciwego"
+    }
+  }
+]
\ No newline at end of file
diff --git a/apps/pdcounter/locale/de/LC_MESSAGES/django.mo b/apps/pdcounter/locale/de/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..dcafb84
Binary files /dev/null and b/apps/pdcounter/locale/de/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/de/LC_MESSAGES/django.po b/apps/pdcounter/locale/de/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..09d055f
--- /dev/null
@@ -0,0 +1,72 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-08-25 10:45\n"
+"Last-Translator: <radek.czajka@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: models.py:12
+msgid "name"
+msgstr "Name"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "slug"
+
+#: models.py:14
+msgid "sort key"
+msgstr "Sortierschlüssel"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "Beschreibung"
+
+#: models.py:16
+msgid "year of death"
+msgstr "Todesjahr"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "Autor"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "Autor"
+
+#: models.py:61
+msgid "title"
+msgstr "Titel"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "gehe zur Public Domain"
+
+#: models.py:65
+msgid "translator"
+msgstr "Übersetzer"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "Todesjahr des Übersetzers"
+
+#: models.py:70
+msgid "book stub"
+msgstr "Buch Vorschau"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "Bücher Vorschau"
+
diff --git a/apps/pdcounter/locale/en/LC_MESSAGES/django.mo b/apps/pdcounter/locale/en/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..623c4c4
Binary files /dev/null and b/apps/pdcounter/locale/en/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/en/LC_MESSAGES/django.po b/apps/pdcounter/locale/en/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..2c2425b
--- /dev/null
@@ -0,0 +1,72 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-08-25 10:45\n"
+"Last-Translator: <radek.czajka@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: models.py:12
+msgid "name"
+msgstr "name"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "Slug"
+
+#: models.py:14
+msgid "sort key"
+msgstr "Sort key"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "Description"
+
+#: models.py:16
+msgid "year of death"
+msgstr "Year of death"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "author"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "author"
+
+#: models.py:61
+msgid "title"
+msgstr "Title"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "Goes to public domain"
+
+#: models.py:65
+msgid "translator"
+msgstr "Translator"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "Year of translator's death"
+
+#: models.py:70
+msgid "book stub"
+msgstr "Book stub"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "Book stubs"
+
diff --git a/apps/pdcounter/locale/es/LC_MESSAGES/django.mo b/apps/pdcounter/locale/es/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..916c453
Binary files /dev/null and b/apps/pdcounter/locale/es/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/es/LC_MESSAGES/django.po b/apps/pdcounter/locale/es/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..88dbcdf
--- /dev/null
@@ -0,0 +1,72 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-08-25 10:48\n"
+"Last-Translator: <radek.czajka@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: models.py:12
+msgid "name"
+msgstr "nombre"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "slug"
+
+#: models.py:14
+msgid "sort key"
+msgstr "clave de clasificación"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "descripción"
+
+#: models.py:16
+msgid "year of death"
+msgstr "año de muerte"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "autor"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "autor"
+
+#: models.py:61
+msgid "title"
+msgstr "título"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "pasa al dominio público"
+
+#: models.py:65
+msgid "translator"
+msgstr "traductor"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "año de la muerte del traductor"
+
+#: models.py:70
+msgid "book stub"
+msgstr "vista previa del libro"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "vista previa de libros"
+
diff --git a/apps/pdcounter/locale/fr/LC_MESSAGES/django.mo b/apps/pdcounter/locale/fr/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..9f07107
Binary files /dev/null and b/apps/pdcounter/locale/fr/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/fr/LC_MESSAGES/django.po b/apps/pdcounter/locale/fr/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..1363508
--- /dev/null
@@ -0,0 +1,71 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-08-07 20:25+0100\n"
+"Last-Translator: Natalia Kertyczak <natalczyk@o2.pl>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: models.py:12
+msgid "name"
+msgstr "nom"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "slug"
+
+#: models.py:14
+msgid "sort key"
+msgstr "critère de tri"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "description"
+
+#: models.py:16
+msgid "year of death"
+msgstr "année de la mort"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "auteur"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "auteur"
+
+#: models.py:61
+msgid "title"
+msgstr "titre"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "entre dans le domaine public"
+
+#: models.py:65
+msgid "translator"
+msgstr "traducteur"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "année de la mort du traducteur"
+
+#: models.py:70
+msgid "book stub"
+msgstr "ébauche du livre"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "ébauches des livres"
+
diff --git a/apps/pdcounter/locale/lt/LC_MESSAGES/django.mo b/apps/pdcounter/locale/lt/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..3efcb65
Binary files /dev/null and b/apps/pdcounter/locale/lt/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/lt/LC_MESSAGES/django.po b/apps/pdcounter/locale/lt/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..2f88715
--- /dev/null
@@ -0,0 +1,72 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-07-12 19:07+0100\n"
+"Last-Translator: Alicja Sinkiewicz <alicja.sinkiewicz@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.3\n"
+
+#: models.py:12
+msgid "name"
+msgstr "pavadinimas"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "slugas"
+
+#: models.py:14
+msgid "sort key"
+msgstr "rūšiavimo raktas"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "aprašymas"
+
+#: models.py:16
+msgid "year of death"
+msgstr "mirimo metai"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "autorius"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "autorius"
+
+#: models.py:61
+msgid "title"
+msgstr "pavadinimas"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "keliauja į viešą tinklapį  "
+
+#: models.py:65
+msgid "translator"
+msgstr "vertėjas"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "vertėjo mirimo metai"
+
+#: models.py:70
+msgid "book stub"
+msgstr "knygos paskelbimas"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "knygu paskelbimai"
+
diff --git a/apps/pdcounter/locale/pl/LC_MESSAGES/django.mo b/apps/pdcounter/locale/pl/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..96a0333
Binary files /dev/null and b/apps/pdcounter/locale/pl/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/pl/LC_MESSAGES/django.po b/apps/pdcounter/locale/pl/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..765f7d3
--- /dev/null
@@ -0,0 +1,71 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-08-25 11:02\n"
+"Last-Translator: <radek.czajka@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: models.py:12
+msgid "name"
+msgstr "nazwa"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr ""
+
+#: models.py:14
+msgid "sort key"
+msgstr "klucz sortowania"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "opis"
+
+#: models.py:16
+msgid "year of death"
+msgstr "rok śmierci"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "autor"
+
+#: models.py:23
+msgid "authors"
+msgstr "autorzy"
+
+#: models.py:61
+msgid "title"
+msgstr "tytuł"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "trafia do domeny publicznej"
+
+#: models.py:65
+msgid "translator"
+msgstr "tłumacz"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "rok śmierci tłumacza"
+
+#: models.py:70
+msgid "book stub"
+msgstr "zapowiedź książki"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "zapowiedzi książek"
+
diff --git a/apps/pdcounter/locale/ru/LC_MESSAGES/django.mo b/apps/pdcounter/locale/ru/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..d3ba5f1
Binary files /dev/null and b/apps/pdcounter/locale/ru/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/ru/LC_MESSAGES/django.po b/apps/pdcounter/locale/ru/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..34ea094
--- /dev/null
@@ -0,0 +1,72 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: 2010-08-25 11:02\n"
+"Last-Translator: <radek.czajka@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Translated-Using: django-rosetta 0.5.6\n"
+
+#: models.py:12
+msgid "name"
+msgstr "название"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "slug"
+
+#: models.py:14
+msgid "sort key"
+msgstr "ключ сортировки "
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "описание"
+
+#: models.py:16
+msgid "year of death"
+msgstr "год смерти"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "автор"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "автор"
+
+#: models.py:61
+msgid "title"
+msgstr "заглавие"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "идти к публичной домене"
+
+#: models.py:65
+msgid "translator"
+msgstr "переводчик"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "год смерти переводчика"
+
+#: models.py:70
+msgid "book stub"
+msgstr "анонс книги"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "анонсы книги"
+
diff --git a/apps/pdcounter/locale/uk/LC_MESSAGES/django.mo b/apps/pdcounter/locale/uk/LC_MESSAGES/django.mo
new file mode 100644 (file)
index 0000000..cd26b86
Binary files /dev/null and b/apps/pdcounter/locale/uk/LC_MESSAGES/django.mo differ
diff --git a/apps/pdcounter/locale/uk/LC_MESSAGES/django.po b/apps/pdcounter/locale/uk/LC_MESSAGES/django.po
new file mode 100644 (file)
index 0000000..2d7d677
--- /dev/null
@@ -0,0 +1,71 @@
+# 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 <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-29 13:52+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: Natalia Kertyczak <natalczyk@o2.pl>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: models.py:12
+msgid "name"
+msgstr "назва"
+
+#: models.py:13 models.py:64
+msgid "slug"
+msgstr "слуґ"
+
+#: models.py:14
+msgid "sort key"
+msgstr "ключ сортування"
+
+#: models.py:15 models.py:41
+msgid "description"
+msgstr "опис"
+
+#: models.py:16
+msgid "year of death"
+msgstr "дата смерті"
+
+#: models.py:22 models.py:62
+msgid "author"
+msgstr "автор"
+
+#: models.py:23
+#, fuzzy
+msgid "authors"
+msgstr "автор"
+
+#: models.py:61
+msgid "title"
+msgstr "заголовок"
+
+#: models.py:63
+msgid "goes to public domain"
+msgstr "входить у суспільне надбання"
+
+#: models.py:65
+msgid "translator"
+msgstr "перекладач"
+
+#: models.py:66
+msgid "year of translator's death"
+msgstr "рік смерті перекладача"
+
+#: models.py:70
+msgid "book stub"
+msgstr "заготовка книжки"
+
+#: models.py:71
+msgid "book stubs"
+msgstr "заготовки книжок"
+
diff --git a/apps/pdcounter/migrations/0001_initial.py b/apps/pdcounter/migrations/0001_initial.py
new file mode 100644 (file)
index 0000000..ce6a962
--- /dev/null
@@ -0,0 +1,68 @@
+# encoding: utf-8
+import datetime
+from south.db import db
+from south.v2 import SchemaMigration
+from django.db import models
+
+class Migration(SchemaMigration):
+
+    def forwards(self, orm):
+        
+        # Adding model 'Author'
+        db.create_table('pdcounter_author', (
+            ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
+            ('name', self.gf('django.db.models.fields.CharField')(max_length=50, db_index=True)),
+            ('slug', self.gf('django.db.models.fields.SlugField')(max_length=120, unique=True, db_index=True)),
+            ('sort_key', self.gf('django.db.models.fields.CharField')(max_length=120, db_index=True)),
+            ('description', self.gf('django.db.models.fields.TextField')(blank=True)),
+            ('death', self.gf('django.db.models.fields.IntegerField')(null=True, blank=True)),
+            ('gazeta_link', self.gf('django.db.models.fields.CharField')(max_length=240, blank=True)),
+            ('wiki_link', self.gf('django.db.models.fields.CharField')(max_length=240, blank=True)),
+        ))
+        db.send_create_signal('pdcounter', ['Author'])
+
+        # Adding model 'BookStub'
+        db.create_table('pdcounter_bookstub', (
+            ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
+            ('title', self.gf('django.db.models.fields.CharField')(max_length=120)),
+            ('author', self.gf('django.db.models.fields.CharField')(max_length=120)),
+            ('pd', self.gf('django.db.models.fields.IntegerField')(null=True, blank=True)),
+            ('slug', self.gf('django.db.models.fields.SlugField')(max_length=120, unique=True, db_index=True)),
+            ('translator', self.gf('django.db.models.fields.TextField')(blank=True)),
+        ))
+        db.send_create_signal('pdcounter', ['BookStub'])
+
+
+    def backwards(self, orm):
+        
+        # Deleting model 'Author'
+        db.delete_table('pdcounter_author')
+
+        # Deleting model 'BookStub'
+        db.delete_table('pdcounter_bookstub')
+
+
+    models = {
+        'pdcounter.author': {
+            'Meta': {'ordering': "('sort_key',)", 'object_name': 'Author'},
+            'death': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
+            'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}),
+            'gazeta_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50', 'db_index': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'unique': 'True', 'db_index': 'True'}),
+            'sort_key': ('django.db.models.fields.CharField', [], {'max_length': '120', 'db_index': 'True'}),
+            'wiki_link': ('django.db.models.fields.CharField', [], {'max_length': '240', 'blank': 'True'})
+        },
+        'pdcounter.bookstub': {
+            'Meta': {'ordering': "('title',)", 'object_name': 'BookStub'},
+            'author': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'pd': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
+            'slug': ('django.db.models.fields.SlugField', [], {'max_length': '120', 'unique': 'True', 'db_index': 'True'}),
+            'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}),
+            'translator': ('django.db.models.fields.TextField', [], {'blank': 'True'})
+        }
+    }
+
+    complete_apps = ['pdcounter']
diff --git a/apps/pdcounter/migrations/__init__.py b/apps/pdcounter/migrations/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/apps/pdcounter/models.py b/apps/pdcounter/models.py
new file mode 100644 (file)
index 0000000..f483293
--- /dev/null
@@ -0,0 +1,87 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.db import models
+from django.db.models import permalink
+from django.utils.translation import ugettext as _
+from datetime import datetime
+
+
+class Author(models.Model):
+    name = models.CharField(_('name'), max_length=50, db_index=True)
+    slug = models.SlugField(_('slug'), max_length=120, db_index=True, unique=True)
+    sort_key = models.CharField(_('sort key'), max_length=120, db_index=True)
+    description = models.TextField(_('description'), blank=True)
+    death = models.IntegerField(_(u'year of death'), blank=True, null=True)
+    gazeta_link = models.CharField(blank=True, max_length=240)
+    wiki_link = models.CharField(blank=True, max_length=240)
+
+    class Meta:
+        ordering = ('sort_key',)
+        verbose_name = _('author')
+        verbose_name_plural = _('authors')
+
+    @property
+    def category(self):
+        return "author"
+
+    def __unicode__(self):
+        return self.name
+
+    def __repr__(self):
+        return "Author(slug=%r)" % self.slug
+
+    @permalink
+    def get_absolute_url(self):
+        return ('catalogue.views.tagged_object_list', [self.url_chunk])
+
+    def has_description(self):
+        return len(self.description) > 0
+    has_description.short_description = _('description')
+    has_description.boolean = True
+
+    def alive(self):
+        return self.death is None
+
+    def in_pd(self):
+        """ tests whether an author is in public domain """
+        return self.death is not None and self.goes_to_pd() <= datetime.now().year
+
+    def goes_to_pd(self):
+        """ calculates the year of public domain entry for an author """
+        return self.death + 71 if self.death is not None else None
+
+    @property
+    def url_chunk(self):
+        return '/'.join(('autor', self.slug))
+
+
+class BookStub(models.Model):
+    title = models.CharField(_('title'), max_length=120)
+    author = models.CharField(_('author'), max_length=120)
+    pd = models.IntegerField(_('goes to public domain'), null=True, blank=True)
+    slug = models.SlugField(_('slug'), max_length=120, unique=True, db_index=True)
+    translator = models.TextField(_('translator'), blank=True)
+
+    class Meta:
+        ordering = ('title',)
+        verbose_name = _('book stub')
+        verbose_name_plural = _('book stubs')
+
+    def __unicode__(self):
+        return self.title
+
+    @permalink
+    def get_absolute_url(self):
+        return ('catalogue.views.book_detail', [self.slug])
+
+    def in_pd(self):
+        return self.pd is not None and self.pd <= datetime.now().year
+
+    @property
+    def name(self):
+        return self.title
+
+    def pretty_title(self, html_links=False):
+        return ', '.join((self.author, self.title))
diff --git a/apps/pdcounter/templatetags/__init__.py b/apps/pdcounter/templatetags/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/apps/pdcounter/templatetags/switch_tag.py b/apps/pdcounter/templatetags/switch_tag.py
new file mode 100644 (file)
index 0000000..72476be
--- /dev/null
@@ -0,0 +1,135 @@
+# Source: http://djangosnippets.org/snippets/967/
+# Author: adurdin
+# Posted: August 13, 2008
+#
+#
+# We can use it based on djangosnippets Terms of Service:
+# (http://djangosnippets.org/about/tos/)
+#
+# 2. That you grant any third party who sees the code you post
+# a royalty-free, non-exclusive license to copy and distribute that code
+# and to make and distribute derivative works based on that code. You may
+# include license terms in snippets you post, if you wish to use
+# a particular license (such as the BSD license or GNU GPL), but that
+# license must permit royalty-free copying, distribution and modification
+# of the code to which it is applied.
+
+from django import template
+from django.template import Library, Node, VariableDoesNotExist
+
+register = Library()
+
+
+@register.tag(name="switch")
+def do_switch(parser, token):
+    """
+    The ``{% switch %}`` tag compares a variable against one or more values in
+    ``{% case %}`` tags, and outputs the contents of the matching block.  An
+    optional ``{% else %}`` tag sets off the default output if no matches
+    could be found::
+
+        {% switch result_count %}
+            {% case 0 %}
+                There are no search results.
+            {% case 1 %}
+                There is one search result.
+            {% else %}
+                Jackpot! Your search found {{ result_count }} results.
+        {% endswitch %}
+
+    Each ``{% case %}`` tag can take multiple values to compare the variable
+    against::
+
+        {% switch username %}
+            {% case "Jim" "Bob" "Joe" %}
+                Me old mate {{ username }}! How ya doin?
+            {% else %}
+                Hello {{ username }}
+        {% endswitch %}
+    """
+    bits = token.contents.split()
+    tag_name = bits[0]
+    if len(bits) != 2:
+        raise template.TemplateSyntaxError("'%s' tag requires one argument" % tag_name)
+    variable = parser.compile_filter(bits[1])
+
+    class BlockTagList(object):
+        # This is a bit of a hack, as it embeds knowledge of the behaviour
+        # of Parser.parse() relating to the "parse_until" argument.
+        def __init__(self, *names):
+            self.names = set(names)
+        def __contains__(self, token_contents):
+            name = token_contents.split()[0]
+            return name in self.names
+
+    # Skip over everything before the first {% case %} tag
+    parser.parse(BlockTagList('case', 'endswitch'))
+
+    cases = []
+    token = parser.next_token()
+    got_case = False
+    got_else = False
+    while token.contents != 'endswitch':
+        nodelist = parser.parse(BlockTagList('case', 'else', 'endswitch'))
+
+        if got_else:
+            raise template.TemplateSyntaxError("'else' must be last tag in '%s'." % tag_name)
+
+        contents = token.contents.split()
+        token_name, token_args = contents[0], contents[1:]
+
+        if token_name == 'case':
+            tests = map(parser.compile_filter, token_args)
+            case = (tests, nodelist)
+            got_case = True
+        else:
+            # The {% else %} tag
+            case = (None, nodelist)
+            got_else = True
+        cases.append(case)
+        token = parser.next_token()
+
+    if not got_case:
+        raise template.TemplateSyntaxError("'%s' must have at least one 'case'." % tag_name)
+
+    return SwitchNode(variable, cases)
+
+class SwitchNode(Node):
+    def __init__(self, variable, cases):
+        self.variable = variable
+        self.cases = cases
+
+    def __repr__(self):
+        return "<Switch node>"
+
+    def __iter__(self):
+        for tests, nodelist in self.cases:
+            for node in nodelist:
+                yield node
+
+    def get_nodes_by_type(self, nodetype):
+        nodes = []
+        if isinstance(self, nodetype):
+            nodes.append(self)
+        for tests, nodelist in self.cases:
+            nodes.extend(nodelist.get_nodes_by_type(nodetype))
+        return nodes
+
+    def render(self, context):
+        try:
+            value_missing = False
+            value = self.variable.resolve(context, True)
+        except VariableDoesNotExist:
+            no_value = True
+            value_missing = None
+
+        for tests, nodelist in self.cases:
+            if tests is None:
+                return nodelist.render(context)
+            elif not value_missing:
+                for test in tests:
+                    test_value = test.resolve(context, True)
+                    if value == test_value:
+                        return nodelist.render(context)
+        else:
+            return ""
diff --git a/apps/pdcounter/urls.py b/apps/pdcounter/urls.py
new file mode 100644 (file)
index 0000000..2325137
--- /dev/null
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.conf.urls.defaults import *
+
+
+urlpatterns = patterns('catalogue.views',
+    url(r'^$', 'main_page', name='main_page'),
+    url(r'^polki/(?P<shelf>[a-zA-Z0-9-]+)/formaty/$', 'shelf_book_formats', name='shelf_book_formats'),
+    url(r'^polki/(?P<shelf>[a-zA-Z0-9-]+)/(?P<book>[a-zA-Z0-9-0-]+)/usun$', 'remove_from_shelf', name='remove_from_shelf'),
+    url(r'^polki/$', 'user_shelves', name='user_shelves'),
+    url(r'^polki/(?P<slug>[a-zA-Z0-9-]+)/usun/$', 'delete_shelf', name='delete_shelf'),
+    url(r'^polki/(?P<slug>[a-zA-Z0-9-]+)\.zip$', 'download_shelf', name='download_shelf'),
+    url(r'^lektury/', 'book_list', name='book_list'),
+    url(r'^audiobooki/', 'audiobook_list', name='audiobook_list'),
+    url(r'^daisy/', 'daisy_list', name='daisy_list'),
+    url(r'^lektura/(?P<slug>[a-zA-Z0-9-]+)/polki/', 'book_sets', name='book_shelves'),
+    url(r'^polki/nowa/$', 'new_set', name='new_set'),
+    url(r'^tags/$', 'tags_starting_with', name='hint'),
+    url(r'^jtags/$', 'json_tags_starting_with', name='jhint'),
+    url(r'^szukaj/$', 'search', name='search'),
+
+    # tools
+    url(r'^zegar/$', 'clock', name='clock'),
+    url(r'^xmls.zip$', 'xmls', name='xmls'),
+    url(r'^epubs.tar$', 'epubs', name='epubs'),
+
+    # Public interface. Do not change this URLs.
+    url(r'^lektura/(?P<slug>[a-zA-Z0-9-]+)\.html$', 'book_text', name='book_text'),
+    url(r'^lektura/(?P<slug>[a-zA-Z0-9-]+)/$', 'book_detail', name='book_detail'),
+    url(r'^lektura/(?P<book_slug>[a-zA-Z0-9-]+)/motyw/(?P<theme_slug>[a-zA-Z0-9-]+)/$',
+        'book_fragments', name='book_fragments'),
+    url(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', 'tagged_object_list', name='tagged_object_list'),
+)
+
diff --git a/apps/pdcounter/views.py b/apps/pdcounter/views.py
new file mode 100644 (file)
index 0000000..fa32909
--- /dev/null
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+#from datetime import datetime
+
+from django.template import RequestContext
+from django.shortcuts import render_to_response, get_object_or_404
+from pdcounter import models
+from catalogue import forms
+
+
+def book_stub_detail(request, slug):
+    book = get_object_or_404(models.BookStub, slug=slug)
+    pd_counter = book.pd
+    form = forms.SearchForm()
+
+    return render_to_response('pdcounter/book_stub_detail.html', locals(),
+        context_instance=RequestContext(request))
+
+
+def author_detail(request, slug):
+    author = get_object_or_404(models.Author, slug=slug)
+    pd_counter = author.goes_to_pd()
+    form = forms.SearchForm()
+
+    return render_to_response('pdcounter/author_detail.html', locals(),
+        context_instance=RequestContext(request))
index 855d6bd..8f53bd5 100644 (file)
@@ -157,4 +157,4 @@ def migrate():
 def restart_webserver():
     "Restart the web server"
     print '>>> restart webserver'
-    run('touch %(path)s/releases/current/%(project_name)s/%(project_name)s.wsgi' % env)
+    run('touch %(path)s/%(project_name)s.wsgi' % env)
index dd7a759..5329a22 160000 (submodule)
@@ -1 +1 @@
-Subproject commit dd7a7591ae946e6526f7555672517563c994b3ee
+Subproject commit 5329a22cd6643da657dd24546b382ada9e048b68
index c146fa8..47c918e 100644 (file)
Binary files a/wolnelektury/locale/de/LC_MESSAGES/django.mo and b/wolnelektury/locale/de/LC_MESSAGES/django.mo differ
index 5eeebb8..d3af77e 100644 (file)
@@ -2,15 +2,16 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-25 10:23+0000\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-08-25 10:43\n"
 "Last-Translator: <radek.czajka@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -21,8 +22,13 @@ msgid "Page does not exist"
 msgstr "Die angeforderte Webseite existiert nicht"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
-msgstr "Die gesuchte Seite existiert leider nicht mehr. Überprüfen Sie bitte, ob Sie sich bei der Eingabe der URL in die Adresszeile des Browsers vertippt haben oder gehen Sie zur Startseite"
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
+msgstr ""
+"Die gesuchte Seite existiert leider nicht mehr. Überprüfen Sie bitte, ob Sie "
+"sich bei der Eingabe der URL in die Adresszeile des Browsers vertippt haben "
+"oder gehen Sie zur Startseite"
 
 #: templates/404.html:17
 msgid "main page"
@@ -33,8 +39,16 @@ msgid "Server error"
 msgstr "Serverfehler"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
-msgstr "<p> Wolnelektury.pl ist zurzeit nicht verfügbar. Besuchen Sie unsere Homepage <a href='http://nowoczesnapolska.org.pl'> Blog </ a>. </ P> Informieren Sie uns <a href = \"mailto: fundacja@nowoczesnapolska.org.pl\" > Administratoren </ a> über den Fehler. </ p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
+msgstr ""
+"<p> Wolnelektury.pl ist zurzeit nicht verfügbar. Besuchen Sie unsere "
+"Homepage <a href='http://nowoczesnapolska.org.pl'> Blog </ a>. </ P> "
+"Informieren Sie uns <a href = \"mailto: fundacja@nowoczesnapolska.org.pl\" > "
+"Administratoren </ a> über den Fehler. </ p>"
 
 #: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
@@ -44,90 +58,104 @@ 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/base.html:19
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Diese Seite kann nicht richtig im Internet Explorer angezeigt werden. Klicken Sie hier, um mehr zu lesen..."
+#: templates/base.html:20
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Diese Seite kann nicht richtig im Internet Explorer angezeigt werden. "
+"Klicken Sie hier, um mehr zu lesen..."
 
-#: templates/base.html:32
+#: templates/base.html:33
 msgid "Welcome"
 msgstr "Willkommen"
 
-#: templates/base.html:33
+#: templates/base.html:34
 msgid "Your shelves"
 msgstr "Deine Bücherregale"
 
-#: templates/base.html:35
+#: templates/base.html:36
 msgid "Administration"
 msgstr "Administration"
 
-#: templates/base.html:37 templates/base.html.py:41
+#: templates/base.html:38 templates/base.html.py:42
 msgid "Report a bug"
 msgstr ""
 
-#: templates/base.html:38
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Abmelden"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:92
-#: templates/base.html.py:96 templates/auth/login.html:4
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
 #: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Anmelden"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:96
-#: templates/base.html.py:100 templates/auth/login.html:7
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
 #: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Registrieren"
 
-#: templates/base.html:69
+#: templates/base.html:70
 msgid ""
 "\n"
-"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska.org.pl/\">Modern Poland Foundation</a>.\n"
-"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/\">The National Library</a>, based on TNL resources.\n"
+"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
+"org.pl/\">Modern Poland Foundation</a>.\n"
+"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/"
+"\">The National Library</a>, based on TNL resources.\n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tWolne Lektury ist ein Projekt, dass von <a href=\"http://nowoczesnapolska.org.pl/\">Stiftung Modernes Polen </a>.\n"
-"\t\t\t\tDigitale Reproduktion entwickelt von der <a href=\"http://www.bn.org.pl/\">Natonalbibliothek</a>, Exemplare aus dem Bücherbestand NB. \n"
+"\t\t\t\tWolne Lektury ist ein Projekt, dass von <a href=\"http://"
+"nowoczesnapolska.org.pl/\">Stiftung Modernes Polen </a>.\n"
+"\t\t\t\tDigitale Reproduktion entwickelt von der <a href=\"http://www.bn.org."
+"pl/\">Natonalbibliothek</a>, Exemplare aus dem Bücherbestand NB. \n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 
-#: templates/base.html:76
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\t Stiftung Modernes Polen, 00-514 Warsaw, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17\n"
-"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\n"
+"\t\t\t\t Stiftung Modernes Polen, 00-514 Warsaw, ul. Marszałkowska 84/92 "
+"lok. 125, tel/fax: (22) 621-30-17\n"
+"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 
-#: templates/base.html:85 templates/base.html.py:106 templates/base.html:112
-#: templates/catalogue/book_detail.html:146
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
 #: templates/catalogue/differentiate_tags.html:23
 #: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:155
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Schliessen"
 
-#: templates/base.html:108 templates/base.html.py:114
-#: templates/catalogue/book_detail.html:148
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
 #: templates/catalogue/differentiate_tags.html:25
 #: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:157
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Herunterladen"
 
@@ -150,32 +178,44 @@ msgstr "Registrieren"
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
 #: templates/catalogue/breadcrumbs.html:21
 #: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "Suchen"
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
-#: templates/catalogue/tagged_object_list.html:43 templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "oder"
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "Zur Startseite wechseln"
 
+#: templates/catalogue/audiobook_list.html:6
+#, fuzzy
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr "Werkverzeichnis unter WolneLektury.pl"
+
+#: templates/catalogue/audiobook_list.html:8
+#, fuzzy
+msgid "Listing of all audiobooks"
+msgstr "Werkverzeichnis"
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr "auf  WolneLektury.pl"
@@ -208,74 +248,55 @@ msgstr "PDF-Datei herunterladen"
 msgid "Download EPUB"
 msgstr "EPUB-Datei herunterladen"
 
-#: templates/catalogue/book_detail.html:53
-msgid "Download ODT"
-msgstr "ODT-Datei herunterladen"
-
-#: templates/catalogue/book_detail.html:56
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "TXT-Datei herunterladen"
 
-#: templates/catalogue/book_detail.html:61
-msgid "Artist"
-msgstr "Liest"
-
-#: templates/catalogue/book_detail.html:63
-msgid "Director"
-msgstr "Führt Regie"
-
-#: templates/catalogue/book_detail.html:67
-msgid "Download MP3"
-msgstr "MP3-Datei herunterladen"
-
-#: templates/catalogue/book_detail.html:68
-msgid "Download Ogg Vorbis"
-msgstr "Ogg Vorbis-Datei herunterladen"
-
-msgid "Download DAISY"
-msgstr "DAISY-Datei herunterladen"
-
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "Details"
 
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Autor"
 
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "Epoche"
 
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "Art"
 
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "Gattung"
 
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "Andere Ressourcen"
 
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Schullektüre auf  WikiProjekt"
 
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Buchquelle"
 
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Buchbeschreibung unter Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Buchbeschreibung auf Wikipedia"
 
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Werkmotive"
 
@@ -313,6 +334,15 @@ msgstr "Werkverzeichnis unter WolneLektury.pl"
 msgid "Listing of all works"
 msgstr "Werkverzeichnis"
 
+#: templates/catalogue/book_list.html:16
+#, fuzzy
+msgid "Table of Content"
+msgstr "Inhalt"
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr "Leg das Buch aufs Regal ab!"
@@ -324,7 +354,9 @@ msgstr "Neues Bücherregal erstellen"
 
 #: templates/catalogue/book_sets.html:10
 msgid "You do not have any shelves. You can create one below, if you want to."
-msgstr "Keine neue Bücherregale vorhanden. Wenn du willst, kannst du ein neues Bücherregal erstellen."
+msgstr ""
+"Keine neue Bücherregale vorhanden. Wenn du willst, kannst du ein neues "
+"Bücherregal erstellen."
 
 #: templates/catalogue/book_sets.html:15 templates/catalogue/book_short.html:4
 msgid "Put on the shelf!"
@@ -338,31 +370,29 @@ msgstr "Überspringen"
 msgid "Categories"
 msgstr "Kategorien"
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Dieses Werk ist zur öffentlichen Nutzung vorgesehen und wird bald in der Internetbibliothek Wolne Lektury veröffentlicht sein."
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Dieses Werk wird bald zur öffentlichen Nutzung freigestellt und kann in der Zukunft ohne weitere Einschränkungen veröffentlicht werden"
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Finde heraus, warum Internet-Bibliotheken die Werke dieses Autors nicht veröffentlichen dürfen."
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "Dieses Werk ist urheberrechtlich geschützt."
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Inhalt"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:146
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Motive"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
+#: templates/catalogue/daisy_list.html:6
+#, fuzzy
+msgid "Listing of all DAISY files on WolneLektury.pl"
+msgstr "Werkverzeichnis unter WolneLektury.pl"
+
+#: templates/catalogue/daisy_list.html:8
+#, fuzzy
+msgid "Listing of all DAISY files"
+msgstr "Werkverzeichnis"
+
 #: templates/catalogue/differentiate_tags.html:13
 msgid "The criteria are ambiguous. Please select one of the following options:"
 msgstr ""
@@ -372,15 +402,16 @@ msgid "Show full category"
 msgstr "Alle Kategorien anzeigen"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43 templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "mehr"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "weniger"
 
@@ -389,9 +420,11 @@ msgid "Shelves containing fragment"
 msgstr "Regale mit Buchauszügen"
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
-msgstr "Keine neue Bücherregale vorhanden. Wenn du willst, kannst du ein neues Bücherregal erstellen."
+msgstr ""
+"Keine neue Bücherregale vorhanden. Wenn du willst, kannst du ein neues "
+"Bücherregal erstellen."
 
 #: templates/catalogue/fragment_sets.html:9
 msgid "Save all shelves"
@@ -409,121 +442,202 @@ msgstr "Buchauszug zuklappen"
 msgid "See in a book"
 msgstr "Werk ansehen"
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
-msgstr "Siehe Bücherliste"
+#: templates/catalogue/main_page.html:14
+msgid "see"
+msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
-msgstr "in unserer Sammlung"
+#: templates/catalogue/main_page.html:16
+#, fuzzy
+msgid "all books"
+msgstr "Buch ablegen"
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Bücher nach ausgewählten Kategorien ansehen"
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "auf  WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Deine Bücherregale"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "löschen"
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Bücherregal erstellen"
 
-#: templates/catalogue/main_page.html:37
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Erstelle dein eigenes Bücherregal. Du kannst es später mal mit deinen Freunden teilen, indem du den Link an sie verschickst."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Erstelle dein eigenes Bücherregal. Du kannst es später mal mit deinen "
+"Freunden teilen, indem du den Link an sie verschickst."
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Um deine Bücherregale zu verwalten "
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "musst du angemeldet  sein"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "Bücherregale verwalten"
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Lehrmaterialien"
 
-#: templates/catalogue/main_page.html:42
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
-msgstr "Unterrichtsszenarien und andere Ideen für die Verwendung von Wolnelektury.pl für das Unterricht"
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+msgstr ""
+"Unterrichtsszenarien und andere Ideen für die Verwendung von Wolnelektury.pl "
+"für das Unterricht"
 
-#: templates/catalogue/main_page.html:47
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "sind professionelle Aufnahmen literarischer Texte aus unserer Sammlung, die unter freier Lizenz in folgenden Formaten verfügbar sind: MP3-und Ogg-Vorbis-Formate sowie im DAISY-System."
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"sind professionelle Aufnahmen literarischer Texte aus unserer Sammlung, die "
+"unter freier Lizenz in folgenden Formaten verfügbar sind: MP3-und Ogg-Vorbis-"
+"Formate sowie im DAISY-System."
 
-#: templates/catalogue/main_page.html:54
-#: templates/catalogue/tagged_object_list.html:128
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Autoren"
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Arten"
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:136
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Gattungen"
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:140
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Epochen"
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Motive und Themen"
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Motivketten"
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "News"
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Siehe unseren Blog"
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "Du kannst uns helfen!"
 
-#: templates/catalogue/main_page.html:268
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Wir sind stets bemüht, unseren Bibliothekbestand ständig um neue Werke zu erweitern. Dies ist nur dank der Hilfe unserer Volontäre möglich."
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Wir sind stets bemüht, unseren Bibliothekbestand ständig um neue Werke zu "
+"erweitern. Dies ist nur dank der Hilfe unserer Volontäre möglich."
 
-#: templates/catalogue/main_page.html:269
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Wir laden herzlich alle Personen ein, die sich an der Mitgestaltung unserer Internet-Schulbibliothek beteiligen wollen."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Wir laden herzlich alle Personen ein, die sich an der Mitgestaltung unserer "
+"Internet-Schulbibliothek beteiligen wollen."
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "Über das Projekt"
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"\t\t\tSchulbücher “Wolne Lektury”  in der Internetbibliothek(<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) ist ein Projekt, das von der Stiftung Modernes Polen gefördert wird. Die Stiftung ist seit 2007 tätig und hat bisher viele Schulbücher aus dem Bibliothekbestand zur öffentlichen Nutzung freigestellt. Die Schulbücher werden ausdrücklich vom Bildungsministerium empfohlen.\n"
+"\t\t\tSchulbücher “Wolne Lektury”  in der Internetbibliothek(<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) ist ein Projekt, das von "
+"der Stiftung Modernes Polen gefördert wird. Die Stiftung ist seit 2007 tätig "
+"und hat bisher viele Schulbücher aus dem Bibliothekbestand zur öffentlichen "
+"Nutzung freigestellt. Die Schulbücher werden ausdrücklich vom "
+"Bildungsministerium empfohlen.\n"
 "\t\t\t"
 
 #: templates/catalogue/search_multiple_hits.html:5
@@ -540,16 +654,18 @@ msgid "Search in WolneLektury.pl"
 msgstr "Suche unter WolneLektury.pl"
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
 msgstr "Sorry! Die Suche ergab leider keine Treffer."
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
 msgstr ""
-"Die Suche kann nach folgenden Kriterien eingegrenzt werden: Titel, Autor, Motiv/Thema, Epoche, Literaturgattung und Gattungsart. \n"
+"Die Suche kann nach folgenden Kriterien eingegrenzt werden: Titel, Autor, "
+"Motiv/Thema, Epoche, Literaturgattung und Gattungsart. \n"
 "\t\tDie Suche nach Text-Phrasen wird momentan nicht unterstützt."
 
 #: templates/catalogue/search_too_short.html:14
@@ -565,8 +681,12 @@ msgid "Your shelf is empty"
 msgstr "Dein Bücherregal ist leer"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Du kannst das Buch aufs Regal ablegen, indem du \" aufs Regal!\" - Button anklickst."
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Du kannst das Buch aufs Regal ablegen, indem du \" aufs Regal!\" - Button "
+"anklickst."
 
 #: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
@@ -577,6 +697,7 @@ msgid "Choose books' formats which you want to download:"
 msgstr "Wähle Buchformate aus, die du herunterladen möchtest:"
 
 #: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
 #: templates/catalogue/tagged_object_list.html:39
 #: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
@@ -586,6 +707,10 @@ msgstr "zum Lesen"
 msgid "and printing using"
 msgstr "drucken mit"
 
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
 #: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr "bearbeiten mit"
@@ -611,103 +736,94 @@ msgstr "Format öffnen"
 msgid "Xiph.org Foundation"
 msgstr "Xiph.org Stiftung"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr "Herunterladen"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr "Liste der Buchformate auf dem Regal aktualisieren"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr "löschen"
 
-#: templates/catalogue/tagged_object_list.html:48
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr "Teile dieses Bücherregal"
 
-#: templates/catalogue/tagged_object_list.html:50
-msgid "Copy this link and share it with other people to let them see your shelf."
-msgstr "Kopiere diesen Link und verschicke an Personen, mit denen du dein Bücherregal teilen willst."
+#: templates/catalogue/tagged_object_list.html:51
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
+msgstr ""
+"Kopiere diesen Link und verschicke an Personen, mit denen du dein "
+"Bücherregal teilen willst."
 
-#: templates/catalogue/tagged_object_list.html:60
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Lies Werkanalyse dieses Autors unter Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:62
+#: templates/catalogue/tagged_object_list.html:63
 #, fuzzy, python-format
 msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Lies Werkanalyse dieses Autors unter Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:64
+#: templates/catalogue/tagged_object_list.html:65
 #, fuzzy, python-format
 msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Lies Werkanalyse dieses Autors unter Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:66
+#: templates/catalogue/tagged_object_list.html:67
 #, fuzzy, python-format
 msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Lies Werkanalyse dieses Autors unter Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:68
+#: templates/catalogue/tagged_object_list.html:69
 #, fuzzy
 msgid "Read related study on Lektury.Gazeta.pl"
 msgstr "Lies Werkanalyse dieses Autors unter Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr "Lies den Beitrag über diesen Autor auf Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:78
+#: templates/catalogue/tagged_object_list.html:79
 #, fuzzy, python-format
 msgid "Read article about epoch %(last_tag)s on Wikipedia"
 msgstr "Lies den Beitrag über diesen Autor auf Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:80
+#: templates/catalogue/tagged_object_list.html:81
 #, fuzzy, python-format
 msgid "Read article about kind %(last_tag)s on Wikipedia"
 msgstr "Lies den Beitrag über diesen Autor auf Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:82
+#: templates/catalogue/tagged_object_list.html:83
 #, fuzzy, python-format
 msgid "Read article about genre %(last_tag)s on Wikipedia"
 msgstr "Lies den Beitrag über diesen Autor auf Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:84
+#: templates/catalogue/tagged_object_list.html:85
 #, fuzzy
 msgid "Read related article on Wikipedia"
 msgstr "Lies den Beitrag über diesen Autor auf Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:94
+#: templates/catalogue/tagged_object_list.html:95
 msgid "Delete"
 msgstr "Löschen"
 
-#: templates/catalogue/tagged_object_list.html:102
-msgid "This author's works are copyrighted."
-msgstr "Die Werke dieses Autors sind urheberrechtlich geschützt."
-
-#: templates/catalogue/tagged_object_list.html:105
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Dieses Werk ist zur öffentlichen Nutzung vorgesehen und wird bald in der Internetbibliothek Wolne Lektury veröffentlicht sein."
-
-#: templates/catalogue/tagged_object_list.html:109
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Die Werke dieses Autors werden bald zur öffentlichen Nutzung freigestellt und können in der Zukunft ohne weitere Einschränkungen veröffentlicht werden."
-
-#: templates/catalogue/tagged_object_list.html:111
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Finde heraus, warum Internet-Bibliotheken zu den Werken dieses Autors den Zugang verwähren."
-
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
 msgstr "löschen"
 
 #: templates/catalogue/user_shelves.html:10
 msgid "You do not own any shelves. You can create one below if you want to"
-msgstr "Keine neue Bücherregale vorhanden. Wenn du willst, kannst du ein neues Bücherregal erstellen."
+msgstr ""
+"Keine neue Bücherregale vorhanden. Wenn du willst, kannst du ein neues "
+"Bücherregal erstellen."
 
 #: templates/info/base.html:10
 msgid "return to the main page"
@@ -715,21 +831,31 @@ msgstr "zur Startseite wechseln"
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
-msgstr "Auf unserer Hompage Wolne Lektury wurden bereits etwa 1000 Werke veröffentlicht! Helfe uns bei der Mitgestaltung und Veröffentlichung neuer Schullektüren, indem du uns eine Spende in Höhe von 1% deiner Steuerabgaben übergibst."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
+msgstr ""
+"Auf unserer Hompage Wolne Lektury wurden bereits etwa 1200 Werke "
+"veröffentlicht! Helfe uns bei der Mitgestaltung und Veröffentlichung neuer "
+"Schullektüren, <a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">indem"
+"du uns eine Spende in Höhe von 1% deiner Steuerabgaben "
+"übergibst</a>."
 
-#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Mehr..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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 "Werde Redakteur/in bei  Wolne Lektury! Schau, ob wir gerade an der Veröffentlichung der Schullektüre arbeiten, die du ausgesucht hast. Um eigene Texte zu veröffentlichen, musst du vorher auf unserer redaktionellen Online-Plattform eingeloggt sein. "
+msgstr ""
+"Werde Redakteur/in bei  Wolne Lektury! Schau, ob wir gerade an der "
+"Veröffentlichung der Schullektüre arbeiten, die du ausgesucht hast. Um "
+"eigene Texte zu veröffentlichen, musst du vorher auf unserer redaktionellen "
+"Online-Plattform eingeloggt sein. "
 
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
@@ -754,6 +880,90 @@ msgstr "zurück"
 msgid "next"
 msgstr "vor"
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "Die Werke dieses Autors sind urheberrechtlich geschützt."
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Finde "
+"heraus</a>, warum Internet-Bibliotheken zu den Werken dieses Autors den "
+"Zugang verwähren."
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Dieses Werk ist zur öffentlichen Nutzung vorgesehen und wird bald in der "
+"Internetbibliothek Wolne Lektury veröffentlicht sein."
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Die Werke dieses Autors werden bald zur öffentlichen Nutzung freigestellt "
+"und können in der Zukunft ohne weitere Einschränkungen veröffentlicht werden."
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"Dieses Werk ist zur öffentlichen Nutzung vorgesehen und wird bald in der "
+"Internetbibliothek Wolne Lektury veröffentlicht sein."
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"Dieses Werk wird bald zur öffentlichen Nutzung freigestellt und kann in der "
+"Zukunft ohne weitere Einschränkungen veröffentlicht werden"
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Finde "
+"heraus</a>, warum Internet-Bibliotheken die Werke dieses Autors nicht "
+"veröffentlichen dürfen."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "Dieses Werk ist urheberrechtlich geschützt."
+
+#~ msgid "Download ODT"
+#~ msgstr "ODT-Datei herunterladen"
+
+#~ msgid "Artist"
+#~ msgstr "Liest"
+
+#~ msgid "Director"
+#~ msgstr "Führt Regie"
+
+#~ msgid "Download MP3"
+#~ msgstr "MP3-Datei herunterladen"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "Ogg Vorbis-Datei herunterladen"
+
+#~ msgid "Download DAISY"
+#~ msgstr "DAISY10-Datei herunterladen"
+
+#~ msgid "check list of books"
+#~ msgstr "Siehe Bücherliste"
+
+#~ msgid "in our repository"
+#~ msgstr "in unserer Sammlung"
+
 #~ msgid "Polish"
 #~ msgstr "Polnisch"
 
index bc4aa78..feec4ce 100644 (file)
Binary files a/wolnelektury/locale/en/LC_MESSAGES/django.mo and b/wolnelektury/locale/en/LC_MESSAGES/django.mo differ
index ac311e4..89554c7 100644 (file)
@@ -8,10 +8,11 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-25 10:23+0000\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -50,46 +51,46 @@ msgstr ""
 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
 msgstr ""
 
-#: templates/base.html:19
+#: templates/base.html:20
 msgid ""
 "Internet Explorer cannot display this site properly. Click here to read "
 "more..."
 msgstr ""
 
-#: templates/base.html:32
+#: templates/base.html:33
 msgid "Welcome"
 msgstr ""
 
-#: templates/base.html:33
+#: templates/base.html:34
 msgid "Your shelves"
 msgstr ""
 
-#: templates/base.html:35
+#: templates/base.html:36
 msgid "Administration"
 msgstr ""
 
-#: templates/base.html:37 templates/base.html.py:41
+#: templates/base.html:38 templates/base.html.py:42
 msgid "Report a bug"
 msgstr ""
 
-#: templates/base.html:38
+#: templates/base.html:39
 msgid "Logout"
 msgstr ""
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:92
-#: templates/base.html.py:96 templates/auth/login.html:4
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
 #: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr ""
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:96
-#: templates/base.html.py:100 templates/auth/login.html:7
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
 #: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr ""
 
-#: templates/base.html:69
+#: templates/base.html:70
 msgid ""
 "\n"
 "\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
@@ -100,7 +101,7 @@ msgid ""
 "\t\t\t\t"
 msgstr ""
 
-#: templates/base.html:76
+#: templates/base.html:77
 msgid ""
 "\n"
 "\t\t\t\tModern Poland Foundation, 00-514 Warsaw, ul. Marszałkowska 84/92 "
@@ -110,27 +111,29 @@ msgid ""
 "\t\t\t\t"
 msgstr ""
 
-#: templates/base.html:85 templates/base.html.py:106 templates/base.html:112
-#: templates/catalogue/book_detail.html:146
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
 #: templates/catalogue/differentiate_tags.html:23
 #: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:155
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr ""
 
-#: templates/base.html:108 templates/base.html.py:114
-#: templates/catalogue/book_detail.html:148
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
 #: templates/catalogue/differentiate_tags.html:25
 #: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:157
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr ""
 
@@ -153,32 +156,42 @@ msgstr ""
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
 #: templates/catalogue/breadcrumbs.html:21
 #: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr ""
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
-#: templates/catalogue/tagged_object_list.html:43 templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr ""
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr ""
 
+#: templates/catalogue/audiobook_list.html:6
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr ""
+
+#: templates/catalogue/audiobook_list.html:8
+msgid "Listing of all audiobooks"
+msgstr ""
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr ""
@@ -211,71 +224,55 @@ msgstr ""
 msgid "Download EPUB"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:53
-msgid "Download ODT"
-msgstr ""
-
-#: templates/catalogue/book_detail.html:56
-msgid "Download TXT"
-msgstr ""
-
 #: templates/catalogue/book_detail.html:61
-msgid "Artist"
-msgstr ""
-
-#: templates/catalogue/book_detail.html:63
-msgid "Director"
-msgstr ""
-
-#: templates/catalogue/book_detail.html:67
-msgid "Download MP3"
-msgstr ""
-
-#: templates/catalogue/book_detail.html:68
-msgid "Download Ogg Vorbis"
+msgid "Download TXT"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr ""
 
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr ""
 
@@ -313,6 +310,14 @@ msgstr ""
 msgid "Listing of all works"
 msgstr ""
 
+#: templates/catalogue/book_list.html:16
+msgid "Table of Content"
+msgstr ""
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr ""
@@ -338,33 +343,25 @@ msgstr ""
 msgid "Categories"
 msgstr ""
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid ""
-"This work is in public domain and will be published on Internet school "
-"library of Wolne Lektury soon."
-msgstr ""
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid ""
-"This work will become part of public domain and will be allowed to be "
-"published without restrictions in"
+#: templates/catalogue/book_text.html:17
+msgid "Table of contents"
 msgstr ""
 
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
+#: templates/catalogue/book_text.html:18
+#: templates/catalogue/tagged_object_list.html:130
+msgid "Themes"
 msgstr ""
 
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
 msgstr ""
 
-#: templates/catalogue/book_text.html:17
-msgid "Table of contents"
+#: templates/catalogue/daisy_list.html:6
+msgid "Listing of all DAISY files on WolneLektury.pl"
 msgstr ""
 
-#: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:146
-msgid "Themes"
+#: templates/catalogue/daisy_list.html:8
+msgid "Listing of all DAISY files"
 msgstr ""
 
 #: templates/catalogue/differentiate_tags.html:13
@@ -376,15 +373,16 @@ msgid "Show full category"
 msgstr ""
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43 templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr ""
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr ""
 
@@ -393,7 +391,7 @@ msgid "Shelves containing fragment"
 msgstr ""
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
 msgstr ""
 
@@ -413,123 +411,173 @@ msgstr ""
 msgid "See in a book"
 msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
+#: templates/catalogue/main_page.html:14
+msgid "see"
 msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
+#: templates/catalogue/main_page.html:16
+msgid "all books"
 msgstr ""
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr ""
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+msgid "Wolne Lektury Widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr ""
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr ""
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr ""
 
-#: templates/catalogue/main_page.html:37
+#: templates/catalogue/main_page.html:64
 msgid ""
 "Create your own book set. You can share it with friends by sending them link "
 "to your shelf."
 msgstr ""
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr ""
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr ""
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr ""
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr ""
 
-#: templates/catalogue/main_page.html:42
+#: templates/catalogue/main_page.html:69
 msgid ""
 "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
 msgstr ""
 
-#: templates/catalogue/main_page.html:47
+#: templates/catalogue/main_page.html:74
 msgid ""
 "are professional recordings of literary texts from our repository, available "
 "on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
 msgstr ""
 
-#: templates/catalogue/main_page.html:54
-#: templates/catalogue/tagged_object_list.html:128
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr ""
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr ""
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:136
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr ""
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:140
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr ""
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr ""
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr ""
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr ""
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr ""
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr ""
 
-#: templates/catalogue/main_page.html:268
+#: templates/catalogue/main_page.html:295
 msgid ""
 "We try our best to elaborate works appended to our library. It is possible "
 "only due to support of our volunteers."
 msgstr ""
 
-#: templates/catalogue/main_page.html:269
+#: templates/catalogue/main_page.html:296
 msgid ""
 "We invite people who want to take part in developing Internet school library "
 "Wolne Lektury."
 msgstr ""
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr ""
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
 "\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
@@ -554,7 +602,7 @@ msgid "Search in WolneLektury.pl"
 msgstr ""
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
 msgstr ""
 
@@ -592,6 +640,7 @@ msgid "Choose books' formats which you want to download:"
 msgstr ""
 
 #: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
 #: templates/catalogue/tagged_object_list.html:39
 #: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
@@ -601,6 +650,10 @@ msgstr ""
 msgid "and printing using"
 msgstr ""
 
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
 #: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr ""
@@ -626,99 +679,81 @@ msgstr ""
 msgid "Xiph.org Foundation"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:48
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:50
+#: templates/catalogue/tagged_object_list.html:51
 msgid ""
 "Copy this link and share it with other people to let them see your shelf."
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:60
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:62
+#: templates/catalogue/tagged_object_list.html:63
 #, python-format
 msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:64
+#: templates/catalogue/tagged_object_list.html:65
 #, python-format
 msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:66
+#: templates/catalogue/tagged_object_list.html:67
 #, python-format
 msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:68
+#: templates/catalogue/tagged_object_list.html:69
 msgid "Read related study on Lektury.Gazeta.pl"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:78
+#: templates/catalogue/tagged_object_list.html:79
 #, python-format
 msgid "Read article about epoch %(last_tag)s on Wikipedia"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:80
+#: templates/catalogue/tagged_object_list.html:81
 #, python-format
 msgid "Read article about kind %(last_tag)s on Wikipedia"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:82
+#: templates/catalogue/tagged_object_list.html:83
 #, python-format
 msgid "Read article about genre %(last_tag)s on Wikipedia"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:84
+#: templates/catalogue/tagged_object_list.html:85
 msgid "Read related article on Wikipedia"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:94
+#: templates/catalogue/tagged_object_list.html:95
 msgid "Delete"
 msgstr ""
 
-#: templates/catalogue/tagged_object_list.html:102
-msgid "This author's works are copyrighted."
-msgstr ""
-
-#: templates/catalogue/tagged_object_list.html:105
-msgid ""
-"This author's works are in public domain and will be published on Internet "
-"school library of Wolne Lektury soon."
-msgstr ""
-
-#: templates/catalogue/tagged_object_list.html:109
-msgid ""
-"This author's works will become part of public domain and will be allowed to "
-"be published without restrictions in"
-msgstr ""
-
-#: templates/catalogue/tagged_object_list.html:111
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr ""
-
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
 msgstr ""
@@ -732,18 +767,18 @@ msgid "return to the main page"
 msgstr ""
 
 #: templates/info/join_us.html:2
-#, python-format
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
 msgstr ""
 
-#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr ""
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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"
@@ -772,3 +807,49 @@ msgstr ""
 #: templates/pagination/pagination.html:23
 msgid "next"
 msgstr ""
+
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr ""
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr ""
index d9746c8..a4ecaa4 100644 (file)
Binary files a/wolnelektury/locale/es/LC_MESSAGES/django.mo and b/wolnelektury/locale/es/LC_MESSAGES/django.mo differ
index 007c700..b072859 100644 (file)
@@ -2,15 +2,16 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-25 10:24+0000\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-08-25 10:49\n"
 "Last-Translator: <radek.czajka@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -21,8 +22,12 @@ msgid "Page does not exist"
 msgstr "Página no existe"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
-msgstr "Lo sentimos, esta página no existe. Comprueba si la dirección es correcta o ve a la"
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
+msgstr ""
+"Lo sentimos, esta página no existe. Comprueba si la dirección es correcta o "
+"ve a la"
 
 #: templates/404.html:17
 msgid "main page"
@@ -33,8 +38,16 @@ msgid "Server error"
 msgstr "Error del servidor"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
-msgstr "<p>La página Wolnelektury.pl actualmente no está disponible. Mientras tanto visita nuestro <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Informa a nuestros <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administradores</a> sobre el error.</p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
+msgstr ""
+"<p>La página Wolnelektury.pl actualmente no está disponible. Mientras tanto "
+"visita nuestro <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> "
+"<p>Informa a nuestros <a href='mailto:fundacja@nowoczesnapolska.org."
+"pl'>administradores</a> sobre el error.</p>"
 
 #: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
@@ -44,90 +57,104 @@ 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/base.html:19
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Internet Explorer no puede mostrar esta página correctamente. Haz clic aquí para saber más..."
+#: templates/base.html:20
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Internet Explorer no puede mostrar esta página correctamente. Haz clic aquí "
+"para saber más..."
 
-#: templates/base.html:32
+#: templates/base.html:33
 msgid "Welcome"
 msgstr "Bienvenido(a)"
 
-#: templates/base.html:33
+#: templates/base.html:34
 msgid "Your shelves"
 msgstr "Tus estantes"
 
-#: templates/base.html:35
+#: templates/base.html:36
 msgid "Administration"
 msgstr "Administración"
 
-#: templates/base.html:37 templates/base.html.py:41
+#: templates/base.html:38 templates/base.html.py:42
 msgid "Report a bug"
 msgstr ""
 
-#: templates/base.html:38
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Cerrar sesión"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:92
-#: templates/base.html.py:96 templates/auth/login.html:4
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
 #: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Iniciar sesión"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:96
-#: templates/base.html.py:100 templates/auth/login.html:7
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
 #: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Registrarse"
 
-#: templates/base.html:69
+#: templates/base.html:70
 msgid ""
 "\n"
-"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska.org.pl/\">Modern Poland Foundation</a>.\n"
-"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/\">The National Library</a>, based on TNL resources.\n"
+"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
+"org.pl/\">Modern Poland Foundation</a>.\n"
+"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/"
+"\">The National Library</a>, based on TNL resources.\n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tWolne Lektury es un proyecto dirigido por <a href=\"http://nowoczesnapolska.org.pl/\"> la Fundación Polonia Moderna</a>.\n"
-"\t\t\t\tReproducciones digitales están preparadas por <a href=\"http://www.bn.org.pl/\">La Biblioteca Nacional</a>, en base de los recursos de la BN. \n"
+"\t\t\t\tWolne Lektury es un proyecto dirigido por <a href=\"http://"
+"nowoczesnapolska.org.pl/\"> la Fundación Polonia Moderna</a>.\n"
+"\t\t\t\tReproducciones digitales están preparadas por <a href=\"http://www."
+"bn.org.pl/\">La Biblioteca Nacional</a>, en base de los recursos de la BN. \n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t "
 
-#: templates/base.html:76
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tFundación Polonia Moderna, c/ Marszałkowska 84/92, lok. 125, 00-514 Varsovia, tel/fax: +48 (22) 621-30-17\n"
-"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\n"
+"\t\t\t\tFundación Polonia Moderna, c/ Marszałkowska 84/92, lok. 125, 00-514 "
+"Varsovia, tel/fax: +48 (22) 621-30-17\n"
+"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 
-#: templates/base.html:85 templates/base.html.py:106 templates/base.html:112
-#: templates/catalogue/book_detail.html:146
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
 #: templates/catalogue/differentiate_tags.html:23
 #: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:155
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Cerrar"
 
-#: templates/base.html:108 templates/base.html.py:114
-#: templates/catalogue/book_detail.html:148
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
 #: templates/catalogue/differentiate_tags.html:25
 #: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:157
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Cargando"
 
@@ -150,32 +177,44 @@ msgstr "Registrarse en"
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
 #: templates/catalogue/breadcrumbs.html:21
 #: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "Buscar"
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
-#: templates/catalogue/tagged_object_list.html:43 templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "o"
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "volver a la página principal"
 
+#: templates/catalogue/audiobook_list.html:6
+#, fuzzy
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr "Lista de las obras en WolneLektury.pl"
+
+#: templates/catalogue/audiobook_list.html:8
+#, fuzzy
+msgid "Listing of all audiobooks"
+msgstr "Lista de las obras"
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr "en WolneLektury.pl"
@@ -208,74 +247,55 @@ msgstr "Descargar PDF"
 msgid "Download EPUB"
 msgstr "Descargar EPUB"
 
-#: templates/catalogue/book_detail.html:53
-msgid "Download ODT"
-msgstr "Descargar ODT"
-
-#: templates/catalogue/book_detail.html:56
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "Descargar TXT"
 
-#: templates/catalogue/book_detail.html:61
-msgid "Artist"
-msgstr "Artista"
-
-#: templates/catalogue/book_detail.html:63
-msgid "Director"
-msgstr "Director"
-
-#: templates/catalogue/book_detail.html:67
-msgid "Download MP3"
-msgstr "Descargar MP3"
-
-#: templates/catalogue/book_detail.html:68
-msgid "Download Ogg Vorbis"
-msgstr "Descargar Ogg Vorbis"
-
-msgid "Download DAISY"
-msgstr "Descargar DAISY"
-
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "Detalles"
 
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Autor"
 
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "Época"
 
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "Género"
 
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "Subgénero"
 
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "Otros recursos"
 
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Libro en wiki del proyecto"
 
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Fuente del libro"
 
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Descripción del libro en Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Descripción del libro en Wikipedia"
 
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Temas de la obra"
 
@@ -313,6 +333,15 @@ msgstr "Lista de las obras en WolneLektury.pl"
 msgid "Listing of all works"
 msgstr "Lista de las obras"
 
+#: templates/catalogue/book_list.html:16
+#, fuzzy
+msgid "Table of Content"
+msgstr "Índice"
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr "¡Poner un libro en el estante!"
@@ -338,31 +367,29 @@ msgstr "Saltar a"
 msgid "Categories"
 msgstr "Categorías"
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Esta obra se encuentra en el dominio público y pronto será publicada en la biblioteca electrónica de Wolne Lektury."
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Esta obra entrará en los recursos del dominio público y podrá ser publicada sin restricciones en"
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Entérate por qué las bibliotecas  virtuales no pueden publicar esta obra."
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "Esta obra está protegida por los derechos de autor."
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Índice"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:146
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Temas"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
+#: templates/catalogue/daisy_list.html:6
+#, fuzzy
+msgid "Listing of all DAISY files on WolneLektury.pl"
+msgstr "Lista de las obras en WolneLektury.pl"
+
+#: templates/catalogue/daisy_list.html:8
+#, fuzzy
+msgid "Listing of all DAISY files"
+msgstr "Lista de las obras"
+
 #: templates/catalogue/differentiate_tags.html:13
 msgid "The criteria are ambiguous. Please select one of the following options:"
 msgstr ""
@@ -372,15 +399,16 @@ msgid "Show full category"
 msgstr "Mostrar toda la categoría"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43 templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "Ver más"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "Esconder"
 
@@ -389,7 +417,7 @@ msgid "Shelves containing fragment"
 msgstr "Estentes que contienen este fragmento"
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
 msgstr "No tienes ningún estante. Puedes crear uno abajo si quieres."
 
@@ -409,121 +437,200 @@ msgstr "Esconder este fragmento"
 msgid "See in a book"
 msgstr "Ver en el libro"
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
-msgstr "Verificar la lista de libros"
+#: templates/catalogue/main_page.html:14
+msgid "see"
+msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
-msgstr "en nuestra colección"
+#: templates/catalogue/main_page.html:16
+#, fuzzy
+msgid "all books"
+msgstr "¡Poner un libro"
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Mirar los libros según categoría"
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "en WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Tus estantes con libros"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "borrar"
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Crear un estante"
 
-#: templates/catalogue/main_page.html:37
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Crea tu propia colección de libros. Puedes compartirla con tus amigos enviándoles el enlace a tu estante."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Crea tu propia colección de libros. Puedes compartirla con tus amigos "
+"enviándoles el enlace a tu estante."
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Tienes que"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "iniciar la sesión"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "para organizar tus estantes."
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Materiales para los profesores"
 
-#: templates/catalogue/main_page.html:42
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
-msgstr "Esquemas de clases y otras ideas para usar WolneLektury.pl en la enseñanza."
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+msgstr ""
+"Esquemas de clases y otras ideas para usar WolneLektury.pl en la enseñanza."
 
-#: templates/catalogue/main_page.html:47
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "son grabaciones profesionales de textos literarios de nuestro depósito. Están disponibles gratis en formatos MP3, Ogg Vorbis y en el sistema DAISY. "
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"son grabaciones profesionales de textos literarios de nuestro depósito. "
+"Están disponibles gratis en formatos MP3, Ogg Vorbis y en el sistema DAISY. "
 
-#: templates/catalogue/main_page.html:54
-#: templates/catalogue/tagged_object_list.html:128
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Autores"
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Géneros"
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:136
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Subgéneros"
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:140
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Épocas"
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Temas y motivos"
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Grupos de temas"
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "Noticias"
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Ver nuestro blog"
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "¡Puedes ayudarnos!"
 
-#: templates/catalogue/main_page.html:268
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Hacemos todo lo posible para elaborar las obras de nuestra biblioteca con la mayor perfección. Esto es posible sólo gracias al apoyo de nuestros voluntarios."
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Hacemos todo lo posible para elaborar las obras de nuestra biblioteca con la "
+"mayor perfección. Esto es posible sólo gracias al apoyo de nuestros "
+"voluntarios."
 
-#: templates/catalogue/main_page.html:269
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Invitamos a todos quienes quieren formar parte en el desarrollo de la biblioteca virtual de Wolne Lektury."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Invitamos a todos quienes quieren formar parte en el desarrollo de la "
+"biblioteca virtual de Wolne Lektury."
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "Sobre nosotros"
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"\t\t\tLa biblioteca virtual con lecturas “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>)es un proyecto creado por la Fundación Polonia Moderna. Había comenzado su actividad en el año 2007 y está compartiendo las lecturas recomendadas por el Ministerio de la Educación Nacional y que son del dominio público.\n"
+"\t\t\tLa biblioteca virtual con lecturas “Wolne Lektury” (<a href=\"http://"
+"wolnelektury.pl\">www.wolnelektury.pl</a>)es un proyecto creado por la "
+"Fundación Polonia Moderna. Había comenzado su actividad en el año 2007 y "
+"está compartiendo las lecturas recomendadas por el Ministerio de la "
+"Educación Nacional y que son del dominio público.\n"
 "\t\t\t"
 
 #: templates/catalogue/search_multiple_hits.html:5
@@ -540,16 +647,20 @@ msgid "Search in WolneLektury.pl"
 msgstr "Buscar en WolneLektury.pl"
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
-msgstr "Lo sentimos, no hay resultados que corresponden con los criterios de la búsqueda."
+msgstr ""
+"Lo sentimos, no hay resultados que corresponden con los criterios de la "
+"búsqueda."
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
 msgstr ""
-"El buscador admite los criterios siguientes: título, autor, tema/motivo, época, género y subgénero.\n"
+"El buscador admite los criterios siguientes: título, autor, tema/motivo, "
+"época, género y subgénero.\n"
 "\t\tActualmente no admitimos la búsqueda de texto entero."
 
 #: templates/catalogue/search_too_short.html:14
@@ -565,8 +676,12 @@ msgid "Your shelf is empty"
 msgstr "Tu estante está vacío"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Puedes poner un libro en el estante entrando en la página de aquella lectura y haciendo clic en \"Poner en el estante\"."
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Puedes poner un libro en el estante entrando en la página de aquella lectura "
+"y haciendo clic en \"Poner en el estante\"."
 
 #: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
@@ -577,6 +692,7 @@ msgid "Choose books' formats which you want to download:"
 msgstr "Elige formatos de los libros que quieres descargar:"
 
 #: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
 #: templates/catalogue/tagged_object_list.html:39
 #: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
@@ -586,6 +702,10 @@ msgstr "para leer"
 msgid "and printing using"
 msgstr "e imprimir"
 
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
 #: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr "y editar"
@@ -611,96 +731,84 @@ msgstr "formato abierto"
 msgid "Xiph.org Foundation"
 msgstr "Fundación Xiph.org"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr "Descargar"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr "Actualizando la lista de formatos de los libros en el estante"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr "cancelar"
 
-#: templates/catalogue/tagged_object_list.html:48
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr "Compartir este estante"
 
-#: templates/catalogue/tagged_object_list.html:50
-msgid "Copy this link and share it with other people to let them see your shelf."
-msgstr "Copia este enlace y compártelo con otros para que puedan ver tu estante. "
+#: templates/catalogue/tagged_object_list.html:51
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
+msgstr ""
+"Copia este enlace y compártelo con otros para que puedan ver tu estante. "
 
-#: templates/catalogue/tagged_object_list.html:60
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Leer el estudio sobre las obras de este autor en Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:62
+#: templates/catalogue/tagged_object_list.html:63
 #, fuzzy, python-format
 msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Leer el estudio sobre las obras de este autor en Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:64
+#: templates/catalogue/tagged_object_list.html:65
 #, fuzzy, python-format
 msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Leer el estudio sobre las obras de este autor en Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:66
+#: templates/catalogue/tagged_object_list.html:67
 #, fuzzy, python-format
 msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Leer el estudio sobre las obras de este autor en Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:68
+#: templates/catalogue/tagged_object_list.html:69
 #, fuzzy
 msgid "Read related study on Lektury.Gazeta.pl"
 msgstr "Leer el estudio sobre las obras de este autor en Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr "Leer el artículo sobre este autor en Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:78
+#: templates/catalogue/tagged_object_list.html:79
 #, fuzzy, python-format
 msgid "Read article about epoch %(last_tag)s on Wikipedia"
 msgstr "Leer el artículo sobre este autor en Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:80
+#: templates/catalogue/tagged_object_list.html:81
 #, fuzzy, python-format
 msgid "Read article about kind %(last_tag)s on Wikipedia"
 msgstr "Leer el artículo sobre este autor en Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:82
+#: templates/catalogue/tagged_object_list.html:83
 #, fuzzy, python-format
 msgid "Read article about genre %(last_tag)s on Wikipedia"
 msgstr "Leer el artículo sobre este autor en Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:84
+#: templates/catalogue/tagged_object_list.html:85
 #, fuzzy
 msgid "Read related article on Wikipedia"
 msgstr "Leer el artículo sobre este autor en Wikipedia"
 
-#: templates/catalogue/tagged_object_list.html:94
+#: templates/catalogue/tagged_object_list.html:95
 msgid "Delete"
 msgstr "Borrar"
 
-#: templates/catalogue/tagged_object_list.html:102
-msgid "This author's works are copyrighted."
-msgstr "Las obras de este autor están protegidas por los derechos de autor."
-
-#: templates/catalogue/tagged_object_list.html:105
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Las obras de este autor se encuentran en el dominio público y pronto serán publicadas en la biblioteca virtual de Wolne Lektury."
-
-#: templates/catalogue/tagged_object_list.html:109
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Las obras de este autor entrarán en los recursos del dominio público y podrán ser publicadas sin restricciones en "
-
-#: templates/catalogue/tagged_object_list.html:111
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Entérate por qué las bibliotecas virtuales no pueden publicar las obras de este autor."
-
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
 msgstr "borrar"
@@ -715,19 +823,20 @@ msgstr "volver a la página principal"
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
 msgstr ""
-"¡Hay más que 1000 obras publicadas en Wolne Lektury!\n"
+"¡Hay más que 1200 obras publicadas en Wolne Lektury!\n"
 "Ayúdanos a desarrollar la biblioteca y publicar nuevas lecturas gratis\n"
-"haciendo una donación o transfiriendo 1% de tus impuestos."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">haciendo una donación o transfiriendo 1% de tus impuestos</a>."
 
-#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Más..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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"
@@ -760,6 +869,89 @@ msgstr "anterior"
 msgid "next"
 msgstr "siguiente"
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "Las obras de este autor están protegidas por los derechos de autor."
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Entérate</"
+"a> por qué las bibliotecas virtuales no pueden publicar las obras de este "
+"autor."
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Las obras de este autor se encuentran en el dominio público y pronto serán "
+"publicadas en la biblioteca virtual de Wolne Lektury."
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Las obras de este autor entrarán en los recursos del dominio público y "
+"podrán ser publicadas sin restricciones en "
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"Esta obra se encuentra en el dominio público y pronto será publicada en la "
+"biblioteca electrónica de Wolne Lektury."
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"Esta obra entrará en los recursos del dominio público y podrá ser publicada "
+"sin restricciones en"
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Entérate</"
+"a> por qué las bibliotecas  virtuales no pueden publicar esta obra."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "Esta obra está protegida por los derechos de autor."
+
+#~ msgid "Download ODT"
+#~ msgstr "Descargar ODT"
+
+#~ msgid "Artist"
+#~ msgstr "Artista"
+
+#~ msgid "Director"
+#~ msgstr "Director"
+
+#~ msgid "Download MP3"
+#~ msgstr "Descargar MP3"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "Descargar Ogg Vorbis"
+
+#~ msgid "Download DAISY"
+#~ msgstr "Descargar DAISY"
+
+#~ msgid "check list of books"
+#~ msgstr "Verificar la lista de libros"
+
+#~ msgid "in our repository"
+#~ msgstr "en nuestra colección"
+
 #~ msgid "Polish"
 #~ msgstr "polaco"
 
index 9827689..3622ffc 100644 (file)
Binary files a/wolnelektury/locale/fr/LC_MESSAGES/django.mo and b/wolnelektury/locale/fr/LC_MESSAGES/django.mo differ
index 5e07ee3..4f8f5b4 100644 (file)
@@ -7,80 +7,64 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-25 14:29+0200\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-08-07 20:23+0100\n"
 "Last-Translator: Natalia Kertyczak <natalczyk@o2.pl>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: settings.py:37
-msgid "Polish"
-msgstr "polonais"
-
-#: settings.py:38
-msgid "German"
-msgstr "allemand"
-
-#: settings.py:39
-msgid "English"
-msgstr "anglais"
-
-#: settings.py:40
-msgid "Lithuanian"
-msgstr "lituanien"
-
-#: settings.py:41
-msgid "French"
-msgstr "français"
-
-#: settings.py:42
-msgid "Russian"
-msgstr "russe"
-
-#: settings.py:43
-msgid "Spanish"
-msgstr "espagnol"
-
-#: settings.py:44
-msgid "Ukrainian"
-msgstr "ukrainien"
-
-#: templates/404.html:6
-#: templates/404.html.py:15
+#: templates/404.html:6 templates/404.html.py:15
 msgid "Page does not exist"
 msgstr "La page n'existe pas"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
-msgstr "Désolé, cette page n'existe pas. Vérifiez si vous avez introduit l'adresse correcte ou allez à"
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
+msgstr ""
+"Désolé, cette page n'existe pas. Vérifiez si vous avez introduit l'adresse "
+"correcte ou allez à"
 
 #: templates/404.html:17
 msgid "main page"
 msgstr "l'accueil"
 
-#: templates/500.html:6
-#: templates/500.html.py:54
+#: templates/500.html:6 templates/500.html.py:54
 msgid "Server error"
 msgstr "Erreur du serveur"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
-msgstr "<p> Le site Wolnelektury.pl est temporairement inaccessible. En attendant, visitez notre <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p> Informez nos  <a href='mailto:fundacja@nowoczesnapolska.org.pl'> administrateurs </a> de l'erreur.</p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
+msgstr ""
+"<p> Le site Wolnelektury.pl est temporairement inaccessible. En attendant, "
+"visitez notre <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p> "
+"Informez nos  <a href='mailto:fundacja@nowoczesnapolska.org.pl'> "
+"administrateurs </a> de l'erreur.</p>"
 
-#: templates/503.html:6
-#: templates/503.html.py:54
+#: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
 msgstr "Service inaccessible"
 
 #: templates/503.html:56
 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
-msgstr "Le site Wolnelektury.pl est temporairement inaccessible en raison d'opérations de maintenance."
+msgstr ""
+"Le site Wolnelektury.pl est temporairement inaccessible en raison "
+"d'opérations de maintenance."
 
 #: templates/base.html:20
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Internet Explorer ne peut pas afficher ce site correctement. Cliquer ici pour en savoir plus..."
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Internet Explorer ne peut pas afficher ce site correctement. Cliquer ici "
+"pour en savoir plus..."
 
 #: templates/base.html:33
 msgid "Welcome"
@@ -94,90 +78,89 @@ msgstr "Vos étagères"
 msgid "Administration"
 msgstr "Administration"
 
-#: templates/base.html:38
+#: templates/base.html:38 templates/base.html.py:42
+msgid "Report a bug"
+msgstr ""
+
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Déconnexion"
 
-#: templates/base.html:41
-#: templates/base.html.py:87
-#: templates/base.html:91
-#: templates/base.html.py:95
-#: templates/auth/login.html:4
-#: templates/auth/login.html.py:7
-#: templates/auth/login.html:12
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
+#: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Connexion"
 
-#: templates/base.html:41
-#: templates/base.html.py:87
-#: templates/base.html:95
-#: templates/base.html.py:99
-#: templates/auth/login.html:7
-#: templates/auth/login.html.py:21
-#: templates/auth/login.html:23
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
+#: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Créer un compte"
 
-#: templates/base.html:51
-msgid "Choose your interface language: "
-msgstr "Choisir la langue de l'interface"
-
-#: templates/base.html:56
-msgid "Choose language"
-msgstr "Choisir la langue"
-
-#: templates/base.html:68
+#: templates/base.html:70
+#, fuzzy
 msgid ""
 "\n"
-"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska.org.pl/\">Modern Poland Foundation</a>.\n"
-"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/\">The National Library</a>, based on TNL resources. \n"
+"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
+"org.pl/\">Modern Poland Foundation</a>.\n"
+"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/"
+"\">The National Library</a>, based on TNL resources.\n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tLectures libres et un projet réalisé par la <a href=\"http://nowoczesnapolska.org.pl/\">Fondation Pologne Moderne </a>.\n"
-"\t\t\t\tReproductions numériques faites par <a href=\"http://www.bn.org.pl/\">la Bibliothèque nationale</a>, basées sur ses ressources. \n"
+"\t\t\t\tLectures libres et un projet réalisé par la <a href=\"http://"
+"nowoczesnapolska.org.pl/\">Fondation Pologne Moderne </a>.\n"
+"\t\t\t\tReproductions numériques faites par <a href=\"http://www.bn.org.pl/"
+"\">la Bibliothèque nationale</a>, basées sur ses ressources. \n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 
-#: templates/base.html:75
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\t Fondation Pologne Moderne, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17\n"
-"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\n"
+"\t\t\t\t Fondation Pologne Moderne, 00-514 Warszawa, ul. Marszałkowska 84/92 "
+"lok. 125, tel/fax: (22) 621-30-17\n"
+"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 
-#: templates/base.html:84
-#: templates/base.html.py:105
-#: templates/catalogue/book_detail.html:129
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
-#: templates/catalogue/search_multiple_hits.html:23
+#: templates/catalogue/differentiate_tags.html:23
+#: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:141
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Fermer"
 
-#: templates/base.html:107
-#: templates/catalogue/book_detail.html:131
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
-#: templates/catalogue/search_multiple_hits.html:25
+#: templates/catalogue/differentiate_tags.html:25
+#: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:143
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Chargement en cours"
 
-#: templates/admin/base_site.html:4
-#: templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
 msgid "Site administration"
 msgstr "Site de l'administrateur"
 
@@ -193,141 +176,128 @@ msgstr "Importer le livre"
 msgid "Register on"
 msgstr "Régistrer sur"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/breadcrumbs.html:9
-#: templates/catalogue/main_page.html:13
-#: templates/info/base.html:10
+#: templates/catalogue/breadcrumbs.html:21
+#: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "Chercher"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
-#: templates/catalogue/tagged_object_list.html:41
-#: templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "ou"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "retour à l'accueil"
 
+#: templates/catalogue/audiobook_list.html:6
+#, fuzzy
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr "Liste alphabétique des oeuvres sur WolneLektury.pl"
+
+#: templates/catalogue/audiobook_list.html:8
+msgid "Listing of all audiobooks"
+msgstr ""
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr "sur WolneLektury.pl"
 
-#: templates/catalogue/book_detail.html:17
+#: templates/catalogue/book_detail.html:29
 msgid "Work is licensed under "
 msgstr "Oeuvre sous licence "
 
-#: templates/catalogue/book_detail.html:19
+#: templates/catalogue/book_detail.html:31
 msgid "Based on"
 msgstr "Basé sur"
 
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/tagged_object_list.html:27
-msgid "Hide description"
-msgstr "Cacher la description"
-
-#: templates/catalogue/book_detail.html:27
+#: templates/catalogue/book_detail.html:40
 msgid "Put a book"
 msgstr "Mettre le livre"
 
-#: templates/catalogue/book_detail.html:27
+#: templates/catalogue/book_detail.html:40
 msgid "on the shelf!"
 msgstr "sur l'étagère"
 
-#: templates/catalogue/book_detail.html:31
+#: templates/catalogue/book_detail.html:44
 msgid "Read online"
 msgstr "Lire en ligne"
 
-#: templates/catalogue/book_detail.html:34
+#: templates/catalogue/book_detail.html:47
 msgid "Download PDF"
 msgstr "Télécharger un fichier PDF"
 
-#: templates/catalogue/book_detail.html:37
-msgid "Download ODT"
-msgstr "Télécharger un fichier ODT"
+#: templates/catalogue/book_detail.html:50
+#, fuzzy
+msgid "Download EPUB"
+msgstr "Télécharger un fichier PDF"
 
-#: templates/catalogue/book_detail.html:40
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "Télécharger un fichier TXT"
 
-#: templates/catalogue/book_detail.html:45
-msgid "Artist"
-msgstr "Artiste"
-
-#: templates/catalogue/book_detail.html:47
-msgid "Director"
-msgstr "Metteur en scène"
-
-#: templates/catalogue/book_detail.html:51
-msgid "Download MP3"
-msgstr "Télécharger un fichier MP3"
-
-#: templates/catalogue/book_detail.html:52
-msgid "Download Ogg Vorbis"
-msgstr "Télécharger un fichier Ogg Vorbis"
-
-msgid "Download DAISY"
-msgstr "Télécharger un fichier DAISY"
-
-#: templates/catalogue/book_detail.html:79
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "Détails"
 
-#: templates/catalogue/book_detail.html:82
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Auteur"
 
-#: templates/catalogue/book_detail.html:88
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "Epoque"
 
-#: templates/catalogue/book_detail.html:94
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "Type"
 
-#: templates/catalogue/book_detail.html:100
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "Genre"
 
-#: templates/catalogue/book_detail.html:106
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "Autres ressources"
 
-#: templates/catalogue/book_detail.html:108
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Le livre sur le wiki du projet"
 
-#: templates/catalogue/book_detail.html:109
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Source du livre"
 
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Description du livre sur Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:114
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Description du livre sur Wikipédia"
 
-#: templates/catalogue/book_detail.html:119
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Les thèmes de l'oeuvre"
 
@@ -358,31 +328,43 @@ msgid "of the book "
 msgstr "du livre"
 
 #: templates/catalogue/book_list.html:7
-msgid "Alphabetical listing of works on WolneLektury.pl"
+#, fuzzy
+msgid "Listing of all works on WolneLektury.pl"
 msgstr "Liste alphabétique des oeuvres sur WolneLektury.pl"
 
 #: templates/catalogue/book_list.html:10
-msgid "Alphabetical listing of works"
+#, fuzzy
+msgid "Listing of all works"
 msgstr "Liste alphabétique des oeuvres"
 
+#: templates/catalogue/book_list.html:16
+#, fuzzy
+msgid "Table of Content"
+msgstr "Tables des matières"
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr "Mettre le livre sur l'étagère!"
 
-#: templates/catalogue/book_sets.html:4
+#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6
+#: templates/catalogue/fragment_sets.html:16
+msgid "Create new shelf"
+msgstr "Créer une étagère nouvelle"
+
+#: templates/catalogue/book_sets.html:10
 msgid "You do not have any shelves. You can create one below, if you want to."
-msgstr "Vous ne possédez aucune étagère. Vous pouvez en créer une au-dessous, si vous voulez."
+msgstr ""
+"Vous ne possédez aucune étagère. Vous pouvez en créer une au-dessous, si "
+"vous voulez."
 
-#: templates/catalogue/book_sets.html:9
-#: templates/catalogue/book_short.html:4
+#: templates/catalogue/book_sets.html:15 templates/catalogue/book_short.html:4
 msgid "Put on the shelf!"
 msgstr "Mettre sur l'étagère!"
 
-#: templates/catalogue/book_sets.html:16
-#: templates/catalogue/fragment_sets.html:16
-msgid "Create new shelf"
-msgstr "Créer une étagère nouvelle"
-
 #: templates/catalogue/book_short.html:14
 msgid "Jump to"
 msgstr "Aller à"
@@ -391,46 +373,47 @@ msgstr "Aller à"
 msgid "Categories"
 msgstr "Catégories"
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Cette oeuvre est dans le domaine public et va être prochainement publiée dans la bibliothèque en ligne Wolne Lektury"
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Cette oeuvre sera dans le domaine public et il sera possible de la publier sans restrictions en "
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Apprendre pourquoi les bibliothéques en ligne ne peuvent pas publier cette oeuvre."
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "Cette oeuvre est protégée par le droit d'auteur"
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Tables des matières"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Thèmes"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
+#: templates/catalogue/daisy_list.html:6
+#, fuzzy
+msgid "Listing of all DAISY files on WolneLektury.pl"
+msgstr "Liste alphabétique des oeuvres sur WolneLektury.pl"
+
+#: templates/catalogue/daisy_list.html:8
+msgid "Listing of all DAISY files"
+msgstr ""
+
+#: templates/catalogue/differentiate_tags.html:13
+msgid "The criteria are ambiguous. Please select one of the following options:"
+msgstr ""
+
 #: templates/catalogue/folded_tag_list.html:4
 msgid "Show full category"
 msgstr "Montrer la catégorie entière"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43
-#: templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "Voir plus"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "Cacher"
 
@@ -439,141 +422,222 @@ msgid "Shelves containing fragment"
 msgstr "Etagères qui contiennent l'extrait"
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
-msgstr "Vous ne possédez aucune étagère. Vous pouvez en créer une au-dessous, si vous voulez."
+msgstr ""
+"Vous ne possédez aucune étagère. Vous pouvez en créer une au-dessous, si "
+"vous voulez."
 
 #: templates/catalogue/fragment_sets.html:9
 msgid "Save all shelves"
 msgstr "Enregistrer toutes les étagères"
 
-#: templates/catalogue/fragment_short.html:6
+#: templates/catalogue/fragment_short.html:7
 msgid "Expand fragment"
 msgstr "Montrer l'extrait"
 
-#: templates/catalogue/fragment_short.html:12
+#: templates/catalogue/fragment_short.html:13
 msgid "Hide fragment"
 msgstr "Cacher l'extrait"
 
-#: templates/catalogue/fragment_short.html:17
+#: templates/catalogue/fragment_short.html:18
 msgid "See in a book"
 msgstr "Voir dans le livre"
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
-msgstr "consultation de la liste des livres"
+#: templates/catalogue/main_page.html:14
+msgid "see"
+msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
-msgstr "dans notre répertoire"
+#: templates/catalogue/main_page.html:16
+#, fuzzy
+msgid "all books"
+msgstr "Mettre le livre"
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Regarder les livres selon catégories"
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "sur WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Vos étagères avec les livres"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "supprimer"
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Créer une étagère"
 
-#: templates/catalogue/main_page.html:37
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Créer votre propre choix des livres. Vous pouvez les partager avec les amis en leur envoyant le lien à votre étagère."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Créer votre propre choix des livres. Vous pouvez les partager avec les amis "
+"en leur envoyant le lien à votre étagère."
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Vous devez "
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "vous connecter"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "pour gérer vos étagères."
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Fiches pour les enseignants"
 
-#: templates/catalogue/main_page.html:42
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
-msgstr "Plans des leçons et autres idées pour utiliser Wolnelektury.pl à enseigner."
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+msgstr ""
+"Plans des leçons et autres idées pour utiliser Wolnelektury.pl à enseigner."
 
-#: templates/catalogue/main_page.html:47
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "sont des enregistrements professionnels des textes littéraires de notre répertoire, accessibles gratuitment au format MP3 et Ogg Vorbis ainsi que dans le système DAISY."
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"sont des enregistrements professionnels des textes littéraires de notre "
+"répertoire, accessibles gratuitment au format MP3 et Ogg Vorbis ainsi que "
+"dans le système DAISY."
 
-#: templates/catalogue/main_page.html:54
-#: templates/catalogue/tagged_object_list.html:114
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Auteurs"
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:118
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Types"
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:122
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Genres"
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:126
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Epoques"
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Thèmes et sujets"
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Groupes des thèmes"
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "Actualités"
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Voir notre blog"
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "Vous pouvez nous aider"
 
-#: templates/catalogue/main_page.html:268
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Nous essayons de rédiger les oeuvres ajoutées à notre bibliothèque le mieux possible. C'est possible grâce à l'aide des nos bénévoles."
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Nous essayons de rédiger les oeuvres ajoutées à notre bibliothèque le mieux "
+"possible. C'est possible grâce à l'aide des nos bénévoles."
 
-#: templates/catalogue/main_page.html:269
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Nous invitons ceux qui veulent participer au développement du bibliothèque en ligne Lectures Libres."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Nous invitons ceux qui veulent participer au développement du bibliothèque "
+"en ligne Lectures Libres."
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "Qui sommes-nous?"
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"\t\t\tBibliothèque en ligne avec lectures scolaires “Wolne Lektury” (Lectures Libres) (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) est un projet de la Fondation Pologne Moderne. Il a été lancé en 2007 et il comprend des lectures scolaires recommendées par le Ministère de l'éducation nationale qui sont dans le domaine public.\n"
+"\t\t\tBibliothèque en ligne avec lectures scolaires “Wolne "
+"Lektury” (Lectures Libres) (<a href=\"http://wolnelektury.pl\">www."
+"wolnelektury.pl</a>) est un projet de la Fondation Pologne Moderne. Il a été "
+"lancé en 2007 et il comprend des lectures scolaires recommendées par le "
+"Ministère de l'éducation nationale qui sont dans le domaine public.\n"
 "\t\t\t"
 
 #: templates/catalogue/search_multiple_hits.html:5
@@ -590,21 +654,26 @@ msgid "Search in WolneLektury.pl"
 msgstr "Recherche dans WolneLektury.pl"
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:102
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
-msgstr "Nous sommes désolés, aucune ressource ne répond au critères de recherche."
+msgstr ""
+"Nous sommes désolés, aucune ressource ne répond au critères de recherche."
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
 msgstr ""
-"Le moteur de recherche permet de chercher selon le titre, auteur, sujet/thème, époque, type et genre.\n"
+"Le moteur de recherche permet de chercher selon le titre, auteur, sujet/"
+"thème, époque, type et genre.\n"
 "\t\tPour le moment nous n'assuront pas la recherche dans le texte entière."
 
 #: templates/catalogue/search_too_short.html:14
 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."
+msgstr ""
+"Nous sommes désolés, pour effectuer la recherche il faut entrer au moins "
+"deux caractères."
 
 #: templates/catalogue/tag_list.html:4
 msgid "See full category"
@@ -615,117 +684,139 @@ msgid "Your shelf is empty"
 msgstr "Votre étagère est vide"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Vous pouvez mettre un livre sur l'étagère en entrant sur sa page et cliquant \"Mettre sur l'étagère\"."
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Vous pouvez mettre un livre sur l'étagère en entrant sur sa page et cliquant "
+"\"Mettre sur l'étagère\"."
 
-#: templates/catalogue/tagged_object_list.html:31
+#: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
 msgstr "Télécharger tous les livres de cette étagère"
 
-#: templates/catalogue/tagged_object_list.html:35
+#: templates/catalogue/tagged_object_list.html:36
 msgid "Choose books' formats which you want to download:"
 msgstr "Choisir le format du livre à télécharger:"
 
-#: templates/catalogue/tagged_object_list.html:36
 #: templates/catalogue/tagged_object_list.html:37
 #: templates/catalogue/tagged_object_list.html:38
+#: templates/catalogue/tagged_object_list.html:39
+#: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
 msgstr "pour lire"
 
-#: templates/catalogue/tagged_object_list.html:36
+#: templates/catalogue/tagged_object_list.html:37
 msgid "and printing using"
 msgstr "et imprimer avec"
 
-#: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr "et rédiger avec"
 
-#: templates/catalogue/tagged_object_list.html:38
+#: templates/catalogue/tagged_object_list.html:40
 msgid "on small displays, for example mobile phones"
 msgstr "sur petits écrans, par exemple téléphones portables"
 
-#: templates/catalogue/tagged_object_list.html:39
-#: templates/catalogue/tagged_object_list.html:40
+#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:42
 msgid "for listening"
 msgstr "pour écouter"
 
-#: templates/catalogue/tagged_object_list.html:39
+#: templates/catalogue/tagged_object_list.html:41
 msgid "on favourite MP3 player"
 msgstr "sur baladeur MP3 préféré"
 
-#: templates/catalogue/tagged_object_list.html:40
+#: templates/catalogue/tagged_object_list.html:42
 msgid "open format"
 msgstr "format ouvert"
 
-#: templates/catalogue/tagged_object_list.html:40
+#: templates/catalogue/tagged_object_list.html:42
 msgid "Xiph.org Foundation"
 msgstr "Fondation Xiph.org "
 
-#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr "Télécharger"
 
-#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr "Mettre à jour la liste des formats des livres sur l'étagère"
 
-#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr "annuler"
 
-#: templates/catalogue/tagged_object_list.html:46
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr "Partager l'étagère"
 
-#: templates/catalogue/tagged_object_list.html:48
-msgid "Copy this link and share it with other people to let them see your shelf."
-msgstr "Copier le lien et partager avec les autres pour qu'ils puissent voir votre étagère"
+#: templates/catalogue/tagged_object_list.html:51
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
+msgstr ""
+"Copier le lien et partager avec les autres pour qu'ils puissent voir votre "
+"étagère"
 
-#: templates/catalogue/tagged_object_list.html:57
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Lire l'étude sur cet auteur sur Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:60
-msgid "Read study of epoch"
-msgstr "Lire l'étude de l'époque"
+#: templates/catalogue/tagged_object_list.html:63
+#, fuzzy, python-format
+msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Lire l'étude sur cet auteur sur Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:60
-msgid "on Lektury.Gazeta.pl"
-msgstr "sur Lektury.Gazeta.pl"
+#: templates/catalogue/tagged_object_list.html:65
+#, fuzzy, python-format
+msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Lire l'étude sur cet auteur sur Lektury.Gazeta.pl"
 
 #: templates/catalogue/tagged_object_list.html:67
+#, fuzzy, python-format
+msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Lire l'étude sur cet auteur sur Lektury.Gazeta.pl"
+
+#: templates/catalogue/tagged_object_list.html:69
+#, fuzzy
+msgid "Read related study on Lektury.Gazeta.pl"
+msgstr "Lire l'étude sur cet auteur sur Lektury.Gazeta.pl"
+
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr "Lire l'article sur cet auteur sur Wikipédia"
 
-#: templates/catalogue/tagged_object_list.html:70
-msgid "Read article about epoch"
-msgstr "Lire l'article sur cette époque"
-
-#: templates/catalogue/tagged_object_list.html:70
-msgid "on Wikipedia"
-msgstr "sur Wikipédia"
+#: templates/catalogue/tagged_object_list.html:79
+#, fuzzy, python-format
+msgid "Read article about epoch %(last_tag)s on Wikipedia"
+msgstr "Lire l'article sur cet auteur sur Wikipédia"
 
-#: templates/catalogue/tagged_object_list.html:80
-msgid "Delete"
-msgstr "Supprimer"
+#: templates/catalogue/tagged_object_list.html:81
+#, fuzzy, python-format
+msgid "Read article about kind %(last_tag)s on Wikipedia"
+msgstr "Lire l'article sur cet auteur sur Wikipédia"
 
-#: templates/catalogue/tagged_object_list.html:88
-msgid "This author's works are copyrighted."
-msgstr "Les oeuvres de cet auteurs sont protégées par le droit d'auteur"
+#: templates/catalogue/tagged_object_list.html:83
+#, fuzzy, python-format
+msgid "Read article about genre %(last_tag)s on Wikipedia"
+msgstr "Lire l'article sur cet auteur sur Wikipédia"
 
-#: templates/catalogue/tagged_object_list.html:91
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Les oeuvres de cet auteur sont dans le domaine public et vont être prochainement publiées dans la bibliothèque en ligne Wolne Lektury."
+#: templates/catalogue/tagged_object_list.html:85
+#, fuzzy
+msgid "Read related article on Wikipedia"
+msgstr "Lire l'article sur cet auteur sur Wikipédia"
 
 #: templates/catalogue/tagged_object_list.html:95
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Les oeuvres de cet auteur seront dans le domaine public et il sera possible de les publier sans restrictions en"
-
-#: templates/catalogue/tagged_object_list.html:97
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Lire  pourquoi les bibliothèques en ligne ne peuvent pas publier les oeuvres de cet auteur."
+msgid "Delete"
+msgstr "Supprimer"
 
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
@@ -733,7 +824,9 @@ msgstr "supprimer"
 
 #: templates/catalogue/user_shelves.html:10
 msgid "You do not own any shelves. You can create one below if you want to"
-msgstr "Vous ne possédez aucune étagère. Vous pouvez en créer une en-dessus, si vous voulez."
+msgstr ""
+"Vous ne possédez aucune étagère. Vous pouvez en créer une en-dessus, si vous "
+"voulez."
 
 #: templates/info/base.html:10
 msgid "return to the main page"
@@ -741,20 +834,21 @@ msgstr "retour à l'accueil"
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
 msgstr ""
-"Il y a plus de 1000 oeuvres publiées sur Lectures libres!\n"
-"Aidez-nous à développer la bibliothèque et mettre de textes nouveaux à disposition gratuite en\n"
-"faisant une donation ou en nous transmettant 1% de votre impôt sur le revenu."
+"Il y a plus de 1200 oeuvres publiées sur Lectures libres!\n"
+"Aidez-nous à développer la bibliothèque et mettre de textes nouveaux à "
+"disposition gratuite <a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">en\n"
+"faisant une donation ou en nous transmettant 1% de votre impôt sur le revenu</a>."
 
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Plus..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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"
@@ -787,3 +881,130 @@ msgstr "précédent"
 msgid "next"
 msgstr "suivant"
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "Les oeuvres de cet auteurs sont protégées par le droit d'auteur"
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Lire "
+"pourquoi</a> les bibliothèques en ligne ne peuvent pas publier les oeuvres "
+"de cet auteur."
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Les oeuvres de cet auteur sont dans le domaine public et vont être "
+"prochainement publiées dans la bibliothèque en ligne Wolne Lektury."
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Les oeuvres de cet auteur seront dans le domaine public et il sera possible "
+"de les publier sans restrictions en"
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"Cette oeuvre est dans le domaine public et va être prochainement publiée "
+"dans la bibliothèque en ligne Wolne Lektury"
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"Cette oeuvre sera dans le domaine public et il sera possible de la publier "
+"sans restrictions en "
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Apprendre "
+"pourquoi</a> les bibliothéques en ligne ne peuvent pas publier cette oeuvre."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "Cette oeuvre est protégée par le droit d'auteur"
+
+#~ msgid "Polish"
+#~ msgstr "polonais"
+
+#~ msgid "German"
+#~ msgstr "allemand"
+
+#~ msgid "English"
+#~ msgstr "anglais"
+
+#~ msgid "Lithuanian"
+#~ msgstr "lituanien"
+
+#~ msgid "French"
+#~ msgstr "français"
+
+#~ msgid "Russian"
+#~ msgstr "russe"
+
+#~ msgid "Spanish"
+#~ msgstr "espagnol"
+
+#~ msgid "Ukrainian"
+#~ msgstr "ukrainien"
+
+#~ msgid "Choose your interface language: "
+#~ msgstr "Choisir la langue de l'interface"
+
+#~ msgid "Choose language"
+#~ msgstr "Choisir la langue"
+
+#~ msgid "Hide description"
+#~ msgstr "Cacher la description"
+
+#~ msgid "Download ODT"
+#~ msgstr "Télécharger un fichier ODT"
+
+#~ msgid "Artist"
+#~ msgstr "Artiste"
+
+#~ msgid "Director"
+#~ msgstr "Metteur en scène"
+
+#~ msgid "Download MP3"
+#~ msgstr "Télécharger un fichier MP3"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "Télécharger un fichier Ogg Vorbis"
+
+#~ msgid "Download DAISY"
+#~ msgstr "Télécharger un fichier DAISY"
+
+#~ msgid "check list of books"
+#~ msgstr "consultation de la liste des livres"
+
+#~ msgid "in our repository"
+#~ msgstr "dans notre répertoire"
+
+#~ msgid "Read study of epoch"
+#~ msgstr "Lire l'étude de l'époque"
+
+#~ msgid "on Lektury.Gazeta.pl"
+#~ msgstr "sur Lektury.Gazeta.pl"
+
+#~ msgid "Read article about epoch"
+#~ msgstr "Lire l'article sur cette époque"
+
+#~ msgid "on Wikipedia"
+#~ msgstr "sur Wikipédia"
index 3bf4214..70a0143 100644 (file)
Binary files a/wolnelektury/locale/lt/LC_MESSAGES/django.mo and b/wolnelektury/locale/lt/LC_MESSAGES/django.mo differ
index 4426e59..e21ae78 100644 (file)
@@ -7,83 +7,63 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-25 14:29+0200\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-09-16 22:39+0100\n"
 "Last-Translator: Alicja Sinkiewicz <alicja.sinkiewicz@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Translated-Using: django-rosetta 0.5.3\n"
 
-#: settings.py:37
-msgid "Polish"
-msgstr "Lenkų"
-
-#: settings.py:38
-msgid "German"
-msgstr "Vokiečių"
-
-#: settings.py:39
-msgid "English"
-msgstr "Anglų "
-
-#: settings.py:40
-msgid "Lithuanian"
-msgstr "Lietuvių"
-
-#: settings.py:41
-msgid "French"
-msgstr "Prancūzų"
-
-#: settings.py:42
-msgid "Russian"
-msgstr "Rusų"
-
-#: settings.py:43
-msgid "Spanish"
-msgstr "Ispanų"
-
-#: settings.py:44
-msgid "Ukrainian"
-msgstr "Ukrainiečių"
-
-#: templates/404.html:6
-#: templates/404.html.py:15
+#: templates/404.html:6 templates/404.html.py:15
 msgid "Page does not exist"
 msgstr "Tinklapis neegzistuoja"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
 msgstr "Atsiprašom, bet svetainė neveike"
 
 #: templates/404.html:17
 msgid "main page"
 msgstr "pagrindinis puslapis"
 
-#: templates/500.html:6
-#: templates/500.html.py:54
+#: templates/500.html:6 templates/500.html.py:54
 msgid "Server error"
 msgstr "serverio klaida"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
 msgstr ""
-"<p>Servisas Laisvojiliteratura.lt yra laikinai neprieinamas. Aplankyk mūsų <a href='http://nowoczesnapolska.org.pl'>blogą</a></p>\n"
-"<p>Powiadom <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administratorów</a> o błędzie.</p>"
+"<p>Servisas Laisvojiliteratura.lt yra laikinai neprieinamas. Aplankyk mūsų "
+"<a href='http://nowoczesnapolska.org.pl'>blogą</a></p>\n"
+"<p>Powiadom <a href='mailto:fundacja@nowoczesnapolska.org."
+"pl'>administratorów</a> o błędzie.</p>"
 
-#: templates/503.html:6
-#: templates/503.html.py:54
+#: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
 msgstr "Servisas neprieinamas"
 
 #: templates/503.html:56
 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
-msgstr "Servisas Laisvojiliteratura.lt pastaruoju metu yra neprieinamas del konservavimo darbų"
+msgstr ""
+"Servisas Laisvojiliteratura.lt pastaruoju metu yra neprieinamas del "
+"konservavimo darbų"
 
 #: templates/base.html:20
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Internet Explorer nie sugeba teisingai parodyti šio tinklapio. Paspausti čia, kad sužinoti daugiau..."
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Internet Explorer nie sugeba teisingai parodyti šio tinklapio. Paspausti "
+"čia, kad sužinoti daugiau..."
 
 #: templates/base.html:33
 msgid "Welcome"
@@ -97,87 +77,90 @@ msgstr "Tavo lentynos"
 msgid "Administration"
 msgstr "Administracija "
 
-#: templates/base.html:38
+#: templates/base.html:38 templates/base.html.py:42
+msgid "Report a bug"
+msgstr ""
+
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Atsijungti"
 
-#: templates/base.html:41
-#: templates/base.html.py:87
-#: templates/base.html:91
-#: templates/base.html.py:95
-#: templates/auth/login.html:4
-#: templates/auth/login.html.py:7
-#: templates/auth/login.html:12
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
+#: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Prisijungti  "
 
-#: templates/base.html:41
-#: templates/base.html.py:87
-#: templates/base.html:95
-#: templates/base.html.py:99
-#: templates/auth/login.html:7
-#: templates/auth/login.html.py:21
-#: templates/auth/login.html:23
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
+#: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Registruotis "
 
-#: templates/base.html:51
-msgid "Choose your interface language: "
-msgstr "Pasirink sąsajos kalbą:"
-
-#: templates/base.html:56
-msgid "Choose language"
-msgstr "Pasirink kalbą"
-
-#: templates/base.html:68
+#: templates/base.html:70
+#, fuzzy
 msgid ""
 "\n"
-"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska.org.pl/\">Modern Poland Foundation</a>.\n"
-"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/\">The National Library</a>, based on TNL resources. \n"
+"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
+"org.pl/\">Modern Poland Foundation</a>.\n"
+"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/"
+"\">The National Library</a>, based on TNL resources.\n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"Projektą Laisvoji Literatura veda <a href=\"http://nowoczesnapolska.org.pl/\"> Šiuolaikines Lenkijos Fondas</a>. \n"
-"Skaitmenines reprodukcijas paruoše <a href=\"http://www.bn.org.pl/\">Lenkijos Tautinė Biblioteka</a> egzemplioriai paskolinti iš Lenkijos Tautinės Bibliotekos.\n"
+"Projektą Laisvoji Literatura veda <a href=\"http://nowoczesnapolska.org.pl/"
+"\"> Šiuolaikines Lenkijos Fondas</a>. \n"
+"Skaitmenines reprodukcijas paruoše <a href=\"http://www.bn.org.pl/"
+"\">Lenkijos Tautinė Biblioteka</a> egzemplioriai paskolinti iš Lenkijos "
+"Tautinės Bibliotekos.\n"
 "Hosting <a href=\"http://eo.pl/\">EO Networks</a>."
 
-#: templates/base.html:75
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tŠiuolaikines Lenkijos Fondas, 00-514 Varšuva, ul. Marszałkowska 84/92 butas 125, tel/fax: (22) 621-30-17, e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17, e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>"
-
-#: templates/base.html:84
-#: templates/base.html.py:105
-#: templates/catalogue/book_detail.html:129
+"\t\t\t\tŠiuolaikines Lenkijos Fondas, 00-514 Varšuva, ul. Marszałkowska "
+"84/92 butas 125, tel/fax: (22) 621-30-17, e-mail: <a href=\"mailto:"
+"fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</"
+"a>Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. "
+"125, tel/fax: (22) 621-30-17, e-mail: <a href=\"mailto:"
+"fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>"
+
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
-#: templates/catalogue/search_multiple_hits.html:23
+#: templates/catalogue/differentiate_tags.html:23
+#: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:141
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Uždaryk "
 
-#: templates/base.html:107
-#: templates/catalogue/book_detail.html:131
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
-#: templates/catalogue/search_multiple_hits.html:25
+#: templates/catalogue/differentiate_tags.html:25
+#: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:143
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Krovimas"
 
-#: templates/admin/base_site.html:4
-#: templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
 msgid "Site administration"
 msgstr "Tinklapio administracija"
 
@@ -193,144 +176,128 @@ msgstr "Importuok knygą"
 msgid "Register on"
 msgstr "Registruotis į"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/breadcrumbs.html:9
-#: templates/catalogue/main_page.html:13
-#: templates/info/base.html:10
+#: templates/catalogue/breadcrumbs.html:21
+#: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "ieškojimas"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
-#: templates/catalogue/tagged_object_list.html:41
-#: templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "arba"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "gryžk į pagrindinį puslapį"
 
+#: templates/catalogue/audiobook_list.html:6
+#, fuzzy
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr "Kūriniu sąrašas LaisvojiLiteratura.lt"
+
+#: templates/catalogue/audiobook_list.html:8
+#, fuzzy
+msgid "Listing of all audiobooks"
+msgstr "Kūriniu sąrašas"
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr "LaisvojiLiteratura.lt"
 
-#: templates/catalogue/book_detail.html:17
+#: templates/catalogue/book_detail.html:29
 msgid "Work is licensed under "
 msgstr "Kūrinys yra prieinamas su licencija "
 
-#: templates/catalogue/book_detail.html:19
+#: templates/catalogue/book_detail.html:31
 msgid "Based on"
 msgstr "Pagal motyvus"
 
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/tagged_object_list.html:27
-msgid "Hide description"
-msgstr "Suvyniok aprašymą "
-
-#: templates/catalogue/book_detail.html:27
+#: templates/catalogue/book_detail.html:40
 msgid "Put a book"
 msgstr "Prijung literatūrą"
 
-#: templates/catalogue/book_detail.html:27
+#: templates/catalogue/book_detail.html:40
 msgid "on the shelf!"
 msgstr "į lentyną!"
 
-#: templates/catalogue/book_detail.html:31
+#: templates/catalogue/book_detail.html:44
 msgid "Read online"
 msgstr "Skaityk online"
 
-#: templates/catalogue/book_detail.html:34
+#: templates/catalogue/book_detail.html:47
 msgid "Download PDF"
 msgstr "atsisiųsk PDF failą"
 
+#: templates/catalogue/book_detail.html:50
 msgid "Download EPUB"
 msgstr "atsisiųsk EPUB failą"
 
-#: templates/catalogue/book_detail.html:37
-msgid "Download ODT"
-msgstr "atsisiųsk ODT failą"
-
-#: templates/catalogue/book_detail.html:40
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "atsisiųsk TXT failą"
 
-#: templates/catalogue/book_detail.html:45
-msgid "Artist"
-msgstr "artistas"
-
-#: templates/catalogue/book_detail.html:47
-msgid "Director"
-msgstr "vadovas"
-
-#: templates/catalogue/book_detail.html:51
-msgid "Download MP3"
-msgstr "atsisiųsk MP3 failą"
-
-#: templates/catalogue/book_detail.html:52
-msgid "Download Ogg Vorbis"
-msgstr "atsisiųsk Ogg Vorbis failą"
-
-msgid "Download DAISY"
-msgstr "atsisiųsk DAISY failą"
-
-#: templates/catalogue/book_detail.html:79
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "detalės "
 
-#: templates/catalogue/book_detail.html:82
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Autorius"
 
-#: templates/catalogue/book_detail.html:88
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "Gadynė"
 
-#: templates/catalogue/book_detail.html:94
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "Rūšis  "
 
-#: templates/catalogue/book_detail.html:100
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "Padermė "
 
-#: templates/catalogue/book_detail.html:106
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "Kitose vietose"
 
-#: templates/catalogue/book_detail.html:108
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Sukurk straipsnį apie knygą vikiprojekte"
 
-#: templates/catalogue/book_detail.html:109
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Literaturos šaltinis"
 
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Literaturos aprašymas Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:114
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Literaturos aprašymas Vikipedijoje"
 
-#: templates/catalogue/book_detail.html:119
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Kūrinio motyvai"
 
@@ -361,31 +328,42 @@ msgid "of the book "
 msgstr "kūrinio"
 
 #: templates/catalogue/book_list.html:7
-msgid "Listing of works on WolneLektury.pl"
+#, fuzzy
+msgid "Listing of all works on WolneLektury.pl"
 msgstr "Kūriniu sąrašas LaisvojiLiteratura.lt"
 
 #: templates/catalogue/book_list.html:10
-msgid "Listing of works"
+#, fuzzy
+msgid "Listing of all works"
 msgstr "Kūriniu sąrašas"
 
+#: templates/catalogue/book_list.html:16
+#, fuzzy
+msgid "Table of Content"
+msgstr "Turinys"
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr "Įmesk knyga į lentyną!  "
 
-#: templates/catalogue/book_sets.html:4
+#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6
+#: templates/catalogue/fragment_sets.html:16
+msgid "Create new shelf"
+msgstr "Sukurk naują lentyną"
+
+#: templates/catalogue/book_sets.html:10
 msgid "You do not have any shelves. You can create one below, if you want to."
-msgstr "Neturi nei vienos lentynos. Jeigu nori gali žemiau sukurti naują lentyną."
+msgstr ""
+"Neturi nei vienos lentynos. Jeigu nori gali žemiau sukurti naują lentyną."
 
-#: templates/catalogue/book_sets.html:9
-#: templates/catalogue/book_short.html:4
+#: templates/catalogue/book_sets.html:15 templates/catalogue/book_short.html:4
 msgid "Put on the shelf!"
 msgstr "Įmesk į lentyną! "
 
-#: templates/catalogue/book_sets.html:16
-#: templates/catalogue/fragment_sets.html:16
-msgid "Create new shelf"
-msgstr "Sukurk naują lentyną"
-
 #: templates/catalogue/book_short.html:14
 msgid "Jump to"
 msgstr "Santrumpa"
@@ -394,46 +372,47 @@ msgstr "Santrumpa"
 msgid "Categories"
 msgstr "Kūrinio kategorija  "
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Šis kūrinys randasi viešojoje srityje bet  ne už ilgo bys paviešintas Laisvosios Literaturos internetinėje bibliotekoje. "
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Šis kūrinys atsiras viešiojoje sryty ir gales buti viešintas be jokiu apriboimu už"
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Sužinok kodėl internetines bibliotekos neprileidzia šio autoraus kūriniu."
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "Šis kūrinis apimtas autoriaus teisę."
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Turinys"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Motyai"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
+#: templates/catalogue/daisy_list.html:6
+#, fuzzy
+msgid "Listing of all DAISY files on WolneLektury.pl"
+msgstr "Kūriniu sąrašas LaisvojiLiteratura.lt"
+
+#: templates/catalogue/daisy_list.html:8
+msgid "Listing of all DAISY files"
+msgstr ""
+
+#: templates/catalogue/differentiate_tags.html:13
+msgid "The criteria are ambiguous. Please select one of the following options:"
+msgstr ""
+
 #: templates/catalogue/folded_tag_list.html:4
 msgid "Show full category"
 msgstr "Apžiūrek visą kategoriją"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43
-#: templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "Apžiūrėk daugiau"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "Suvyniok"
 
@@ -442,141 +421,221 @@ msgid "Shelves containing fragment"
 msgstr "Lentynos turinčios fragmentus "
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
-msgstr "Neturi nei vienos lentynos. Jeigu nori gali žemiau sukurti naują lentyną."
+msgstr ""
+"Neturi nei vienos lentynos. Jeigu nori gali žemiau sukurti naują lentyną."
 
 #: templates/catalogue/fragment_sets.html:9
 msgid "Save all shelves"
 msgstr "Užsirašyk lentyną "
 
-#: templates/catalogue/fragment_short.html:6
+#: templates/catalogue/fragment_short.html:7
 msgid "Expand fragment"
 msgstr "Išplėsk fragmentą"
 
-#: templates/catalogue/fragment_short.html:12
+#: templates/catalogue/fragment_short.html:13
 msgid "Hide fragment"
 msgstr "Suvyniok fragmentą"
 
-#: templates/catalogue/fragment_short.html:17
+#: templates/catalogue/fragment_short.html:18
 msgid "See in a book"
 msgstr "Surask knygoje"
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
-msgstr "patikrink knygų sąrašą"
+#: templates/catalogue/main_page.html:14
+msgid "see"
+msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
-msgstr "mūsų knygų rinkiny"
+#: templates/catalogue/main_page.html:16
+#, fuzzy
+msgid "all books"
+msgstr "Prijung literatūrą"
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Peržiurinek literaturą pagal išrinktą kategoriją"
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "LaisvojiLiteratura.lt"
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Tavo lentynos su literatura"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "pašalink"
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Sukurk lentyną"
 
-#: templates/catalogue/main_page.html:37
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Sukurk savo knygų rinkiny. Gali juo veliau pasidalinti su kitais, persiūsk jiems nuorodą i tavo lentyną."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Sukurk savo knygų rinkiny. Gali juo veliau pasidalinti su kitais, persiūsk "
+"jiems nuorodą i tavo lentyną."
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Gali"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "Prisijungti  "
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "Kad valdti savo lentynom."
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Pagalbinės medžiagos mokytojams"
 
-#: templates/catalogue/main_page.html:42
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
-msgstr "Pamokų scenarijai ir kiti sumanymai kaip panaudoti servisą LaisvojiLiteratura.lt mokslui."
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+msgstr ""
+"Pamokų scenarijai ir kiti sumanymai kaip panaudoti servisą "
+"LaisvojiLiteratura.lt mokslui."
 
-#: templates/catalogue/main_page.html:47
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "Tai profesjonalus literaturinių tekstų garso įrašai, mūsų rinkinių laisvai prieinami šiuose įrašymo formatouse: MP3, Ogg Vorbis ir sistema DAISY."
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"Tai profesjonalus literaturinių tekstų garso įrašai, mūsų rinkinių laisvai "
+"prieinami šiuose įrašymo formatouse: MP3, Ogg Vorbis ir sistema DAISY."
 
-#: templates/catalogue/main_page.html:54
-#: templates/catalogue/tagged_object_list.html:114
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Autoriai"
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:118
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Rušys"
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:122
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Padermės "
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:126
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Gadynės"
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Motyvai ir temos"
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Motyvų grupė"
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "žinios"
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Aplankyk mūsų blogą"
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "Gali mums padėti!"
 
-#: templates/catalogue/main_page.html:268
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Dėka savanorių apršymai kūriniu, kurie yra prijungemi i mūsų biblioteką yra kiekvieną kartą kruopščiai paruošti"
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Dėka savanorių apršymai kūriniu, kurie yra prijungemi i mūsų biblioteką yra "
+"kiekvieną kartą kruopščiai paruošti"
 
-#: templates/catalogue/main_page.html:269
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Kviečiame visus, kurie nori kartu su mumi kurti mokykline internetine biblioteką Laisvoji Literatura."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Kviečiame visus, kurie nori kartu su mumi kurti mokykline internetine "
+"biblioteką Laisvoji Literatura."
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "Apie projektą"
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"\t\t\tInternetine biblioteka \"Laisvoji Literatura\" (www.laisvojiliteratura.lt) siūlanti mokyklinę literaturą -          tai Šiuolaikines Lenkijos Fondasto projektas. Fondas veike nou 2007 metų ir savo rinkinuose turi mokyklinę literaturą,          kuri yra rekomenduojama per Švietimo ir Mokslo Ministeriją ir kuri jau     pateko į viešią Interneto svetainę.\n"
+"\t\t\tInternetine biblioteka \"Laisvoji Literatura\" (www.laisvojiliteratura."
+"lt) siūlanti mokyklinę literaturą -          tai Šiuolaikines Lenkijos "
+"Fondasto projektas. Fondas veike nou 2007 metų ir savo rinkinuose turi "
+"mokyklinę literaturą,          kuri yra rekomenduojama per Švietimo ir "
+"Mokslo Ministeriją ir kuri jau\tpateko į viešią Interneto svetainę.\n"
 "\t\t\t"
 
 #: templates/catalogue/search_multiple_hits.html:5
@@ -593,15 +652,19 @@ msgid "Search in WolneLektury.pl"
 msgstr "Ieškok šiame tinklapyje LasvojiLiteratura.lt "
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:102
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
 msgstr "Atsiprašom! Trūksta rezultatų atitinkančių užklausimui. "
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
-msgstr "Paieškos programa aptarnauja šiuos  kriterijusi: kūrinio pavadinimas, autorius,  motyvas/tema, gadynė, rušys ir padermė. Dabartiniu metu neaptarnaujame paieškos frazių kūrinio tekste. "
+msgstr ""
+"Paieškos programa aptarnauja šiuos  kriterijusi: kūrinio pavadinimas, "
+"autorius,  motyvas/tema, gadynė, rušys ir padermė. Dabartiniu metu "
+"neaptarnaujame paieškos frazių kūrinio tekste. "
 
 #: templates/catalogue/search_too_short.html:14
 msgid "Sorry! Search query must have at least two characters."
@@ -616,117 +679,139 @@ msgid "Your shelf is empty"
 msgstr "Tavo lentyna yra tuščia"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Gali įmesti knygą į lentyną,  įeik į knygos tinklapį ir išrink \"Į lentyną\".    "
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Gali įmesti knygą į lentyną,  įeik į knygos tinklapį ir išrink \"Į lentyną"
+"\".    "
 
-#: templates/catalogue/tagged_object_list.html:31
+#: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
 msgstr "Persisiųsk visas knygas iš šios lentynos"
 
-#: templates/catalogue/tagged_object_list.html:35
+#: templates/catalogue/tagged_object_list.html:36
 msgid "Choose books' formats which you want to download:"
 msgstr "Pasirink knygos persiuntimo formatą:"
 
-#: templates/catalogue/tagged_object_list.html:36
 #: templates/catalogue/tagged_object_list.html:37
 #: templates/catalogue/tagged_object_list.html:38
+#: templates/catalogue/tagged_object_list.html:39
+#: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
 msgstr "į skaitimą"
 
-#: templates/catalogue/tagged_object_list.html:36
+#: templates/catalogue/tagged_object_list.html:37
 msgid "and printing using"
 msgstr "ir spausdinti su pagalbą"
 
-#: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
+#: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr "ir edituoti su pagalbą "
 
-#: templates/catalogue/tagged_object_list.html:38
+#: templates/catalogue/tagged_object_list.html:40
 msgid "on small displays, for example mobile phones"
 msgstr "ant displėjaus, pvz. mobilaus telefono "
 
-#: templates/catalogue/tagged_object_list.html:39
-#: templates/catalogue/tagged_object_list.html:40
+#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:42
 msgid "for listening"
 msgstr "klausyti"
 
-#: templates/catalogue/tagged_object_list.html:39
+#: templates/catalogue/tagged_object_list.html:41
 msgid "on favourite MP3 player"
 msgstr "numylėtam MP3 grotuve"
 
-#: templates/catalogue/tagged_object_list.html:40
+#: templates/catalogue/tagged_object_list.html:42
 msgid "open format"
 msgstr "atviras formatas"
 
-#: templates/catalogue/tagged_object_list.html:40
+#: templates/catalogue/tagged_object_list.html:42
 msgid "Xiph.org Foundation"
 msgstr "Fondo Xiph.Org"
 
-#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr "Atsisiųsti"
 
-#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr "Atnaujinti knygų formatų sąrašą lentynose. "
 
-#: templates/catalogue/tagged_object_list.html:41
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr "anuliuoti"
 
-#: templates/catalogue/tagged_object_list.html:46
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr "Pasidalink šią lentyną."
 
-#: templates/catalogue/tagged_object_list.html:48
-msgid "Copy this link and share it with other people to let them see your shelf."
-msgstr "Sukopijuok šią nuorodą ir persiusk ją tiems, su kuriais noru pasidalinti savo lentyną."
+#: templates/catalogue/tagged_object_list.html:51
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
+msgstr ""
+"Sukopijuok šią nuorodą ir persiusk ją tiems, su kuriais noru pasidalinti "
+"savo lentyną."
 
-#: templates/catalogue/tagged_object_list.html:57
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Perskaityk šio autoriaus aprašymą tinklapį Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:60
-msgid "Read study of epoch"
-msgstr "Perskaityk gadynės aprašymą"
+#: templates/catalogue/tagged_object_list.html:63
+#, fuzzy, python-format
+msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Perskaityk šio autoriaus aprašymą tinklapį Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:60
-msgid "on Lektury.Gazeta.pl"
-msgstr "tinklapyje Lektury.Gazeta.pl"
+#: templates/catalogue/tagged_object_list.html:65
+#, fuzzy, python-format
+msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Perskaityk šio autoriaus aprašymą tinklapį Lektury.Gazeta.pl"
 
 #: templates/catalogue/tagged_object_list.html:67
+#, fuzzy, python-format
+msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Perskaityk šio autoriaus aprašymą tinklapį Lektury.Gazeta.pl"
+
+#: templates/catalogue/tagged_object_list.html:69
+#, fuzzy
+msgid "Read related study on Lektury.Gazeta.pl"
+msgstr "Perskaityk šio autoriaus aprašymą tinklapį Lektury.Gazeta.pl"
+
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr "Perskaityk straipsnį apie autorių Wikipedijoje"
 
-#: templates/catalogue/tagged_object_list.html:70
-msgid "Read article about epoch"
-msgstr "Perskaityk straipsnį apie gadynę "
-
-#: templates/catalogue/tagged_object_list.html:70
-msgid "on Wikipedia"
-msgstr "Vikipedijoje"
+#: templates/catalogue/tagged_object_list.html:79
+#, fuzzy, python-format
+msgid "Read article about epoch %(last_tag)s on Wikipedia"
+msgstr "Perskaityk straipsnį apie autorių Wikipedijoje"
 
-#: templates/catalogue/tagged_object_list.html:80
-msgid "Delete"
-msgstr "pašalinti "
+#: templates/catalogue/tagged_object_list.html:81
+#, fuzzy, python-format
+msgid "Read article about kind %(last_tag)s on Wikipedia"
+msgstr "Perskaityk straipsnį apie autorių Wikipedijoje"
 
-#: templates/catalogue/tagged_object_list.html:88
-msgid "This author's works are copyrighted."
-msgstr "Šio autoriaus  kūriniai yra saugomi nepažeidžiant autorių teisės"
+#: templates/catalogue/tagged_object_list.html:83
+#, fuzzy, python-format
+msgid "Read article about genre %(last_tag)s on Wikipedia"
+msgstr "Perskaityk straipsnį apie autorių Wikipedijoje"
 
-#: templates/catalogue/tagged_object_list.html:91
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Šio autoriaus kūrinys jau yra viešoje Interneto svetaineję ir neužilgo bus paplatintas internetine bibliotekoje  Laisvoji Literatura"
+#: templates/catalogue/tagged_object_list.html:85
+#, fuzzy
+msgid "Read related article on Wikipedia"
+msgstr "Perskaityk straipsnį apie autorių Wikipedijoje"
 
 #: templates/catalogue/tagged_object_list.html:95
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Šio autoriaus kūrinys  neužilgo atsiras viešoje Interneto svetaineję ir gales but paplatinti be jokiu ribų"
-
-#: templates/catalogue/tagged_object_list.html:97
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Sužinok kodel šio autoriaus kūriniai negali būti platinti internetineje bibliotekoje"
+msgid "Delete"
+msgstr "pašalinti "
 
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
@@ -734,7 +819,8 @@ msgstr "panaikinti"
 
 #: templates/catalogue/user_shelves.html:10
 msgid "You do not own any shelves. You can create one below if you want to"
-msgstr "Neturi nei vienos lentynos. Jeigu nori gali žemiau sukurti naują lentyną."
+msgstr ""
+"Neturi nei vienos lentynos. Jeigu nori gali žemiau sukurti naują lentyną."
 
 #: templates/info/base.html:10
 msgid "return to the main page"
@@ -742,22 +828,27 @@ msgstr "sugryžk į pagrindinį puslapį "
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
-msgstr "Tinklapyje Laisvoji Literatura rasi virš 1000 kūrinių! Padėk mums vystytis ir plėsti literaturą paskirk 1% pajamų mokesčio bibliotekai"
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
+msgstr ""
+"Tinklapyje Laisvoji Literatura rasi virš 1200 kūrinių! Padėk mums vystytis "
+"ir plėsti literaturą <a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">paskirk 1% pajamų</a> mokesčio bibliotekai"
 
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Daugiau..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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 "Gali likti redaktoriumi Laisvojos Literaturos! Patikrink, ar pastaruoju metu ruošama yra publikacija jūsų  ieškamos knygos ir savarankiškai  paruošk publikacija – prisijung prie Redakcines Platformos."
+msgstr ""
+"Gali likti redaktoriumi Laisvojos Literaturos! Patikrink, ar pastaruoju metu "
+"ruošama yra publikacija jūsų  ieškamos knygos ir savarankiškai  paruošk "
+"publikacija – prisijung prie Redakcines Platformos."
 
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
@@ -782,3 +873,130 @@ msgstr "ankstėsnis"
 msgid "next"
 msgstr "sekantis "
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "Šio autoriaus  kūriniai yra saugomi nepažeidžiant autorių teisės"
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Sužinok</"
+"a> kodel šio autoriaus kūriniai negali būti platinti internetineje "
+"bibliotekoje"
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Šio autoriaus kūrinys jau yra viešoje Interneto svetaineję ir neužilgo bus "
+"paplatintas internetine bibliotekoje  Laisvoji Literatura"
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Šio autoriaus kūrinys  neužilgo atsiras viešoje Interneto svetaineję ir "
+"gales but paplatinti be jokiu ribų"
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"Šis kūrinys randasi viešojoje srityje bet  ne už ilgo bys paviešintas "
+"Laisvosios Literaturos internetinėje bibliotekoje. "
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"Šis kūrinys atsiras viešiojoje sryty ir gales buti viešintas be jokiu "
+"apriboimu už"
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Sužinok</"
+"a> kodėl internetines bibliotekos neprileidzia šio autoraus kūriniu."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "Šis kūrinis apimtas autoriaus teisę."
+
+#~ msgid "Polish"
+#~ msgstr "Lenkų"
+
+#~ msgid "German"
+#~ msgstr "Vokiečių"
+
+#~ msgid "English"
+#~ msgstr "Anglų "
+
+#~ msgid "Lithuanian"
+#~ msgstr "Lietuvių"
+
+#~ msgid "French"
+#~ msgstr "Prancūzų"
+
+#~ msgid "Russian"
+#~ msgstr "Rusų"
+
+#~ msgid "Spanish"
+#~ msgstr "Ispanų"
+
+#~ msgid "Ukrainian"
+#~ msgstr "Ukrainiečių"
+
+#~ msgid "Choose your interface language: "
+#~ msgstr "Pasirink sąsajos kalbą:"
+
+#~ msgid "Choose language"
+#~ msgstr "Pasirink kalbą"
+
+#~ msgid "Hide description"
+#~ msgstr "Suvyniok aprašymą "
+
+#~ msgid "Download ODT"
+#~ msgstr "atsisiųsk ODT failą"
+
+#~ msgid "Artist"
+#~ msgstr "artistas"
+
+#~ msgid "Director"
+#~ msgstr "vadovas"
+
+#~ msgid "Download MP3"
+#~ msgstr "atsisiųsk MP3 failą"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "atsisiųsk Ogg Vorbis failą"
+
+#~ msgid "Download DAISY"
+#~ msgstr "atsisiųsk DAISY failą"
+
+#~ msgid "check list of books"
+#~ msgstr "patikrink knygų sąrašą"
+
+#~ msgid "in our repository"
+#~ msgstr "mūsų knygų rinkiny"
+
+#~ msgid "Read study of epoch"
+#~ msgstr "Perskaityk gadynės aprašymą"
+
+#~ msgid "on Lektury.Gazeta.pl"
+#~ msgstr "tinklapyje Lektury.Gazeta.pl"
+
+#~ msgid "Read article about epoch"
+#~ msgstr "Perskaityk straipsnį apie gadynę "
+
+#~ msgid "on Wikipedia"
+#~ msgstr "Vikipedijoje"
index bdd9727..a2554dd 100644 (file)
Binary files a/wolnelektury/locale/pl/LC_MESSAGES/django.mo and b/wolnelektury/locale/pl/LC_MESSAGES/django.mo differ
index 1b58375..63b2217 100644 (file)
@@ -7,146 +7,157 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-01 13:29+0000\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-10-01 15:33+0100\n"
 "Last-Translator: Radek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Translated-Using: django-rosetta 0.5.6\n"
 
-#: templates/404.html:6
-#: templates/404.html.py:15
+#: templates/404.html:6 templates/404.html.py:15
 msgid "Page does not exist"
 msgstr "Podana strona nie istnieje"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
-msgstr "Przepraszamy, ale ta strona nie istnieje. Sprawdź czy podałeś dobry adres, lub przejdź do"
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
+msgstr ""
+"Przepraszamy, ale ta strona nie istnieje. Sprawdź czy podałeś dobry adres, "
+"lub przejdź do"
 
 #: templates/404.html:17
 msgid "main page"
 msgstr "strony głównej"
 
-#: templates/500.html:6
-#: templates/500.html.py:54
+#: templates/500.html:6 templates/500.html.py:54
 msgid "Server error"
 msgstr "Błąd serwera"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
 msgstr ""
-"<p>Serwis Wolnelektury.pl jest chwilowo niedostępny. Odwiedź naszego <a href='http://nowoczesnapolska.org.pl'>bloga</a></p>\n"
-"<p>Powiadom <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administratorów</a> o błędzie.</p>"
+"<p>Serwis Wolnelektury.pl jest chwilowo niedostępny. Odwiedź naszego <a "
+"href='http://nowoczesnapolska.org.pl'>bloga</a></p>\n"
+"<p>Powiadom <a href='mailto:fundacja@nowoczesnapolska.org."
+"pl'>administratorów</a> o błędzie.</p>"
 
-#: templates/503.html:6
-#: templates/503.html.py:54
+#: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
 msgstr "Serwis niedostępny"
 
 #: templates/503.html:56
 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
-msgstr "Serwis Wolnelektury.pl jest obecnie niedostępny z powodu prac konserwacyjnych."
+msgstr ""
+"Serwis Wolnelektury.pl jest obecnie niedostępny z powodu prac "
+"konserwacyjnych."
 
-#: templates/base.html:19
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Internet Explorer nie potrafi poprawnie wyświetlić tej strony. Kliknij tutaj, aby dowiedzieć się więcej..."
+#: templates/base.html:20
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Internet Explorer nie potrafi poprawnie wyświetlić tej strony. Kliknij "
+"tutaj, aby dowiedzieć się więcej..."
 
-#: templates/base.html:32
+#: templates/base.html:33
 msgid "Welcome"
 msgstr "Witaj"
 
-#: templates/base.html:33
+#: templates/base.html:34
 msgid "Your shelves"
 msgstr "Twoje półki"
 
-#: templates/base.html:35
+#: templates/base.html:36
 msgid "Administration"
 msgstr "Administracja"
 
-#: templates/base.html:37
-#: templates/base.html.py:41
+#: templates/base.html:38 templates/base.html.py:42
 msgid "Report a bug"
 msgstr "Zgłoś błąd"
 
-#: templates/base.html:38
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Wyloguj"
 
-#: templates/base.html:42
-#: templates/base.html.py:88
-#: templates/base.html:92
-#: templates/base.html.py:96
-#: templates/auth/login.html:4
-#: templates/auth/login.html.py:7
-#: templates/auth/login.html:12
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
+#: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Zaloguj się"
 
-#: templates/base.html:42
-#: templates/base.html.py:88
-#: templates/base.html:96
-#: templates/base.html.py:100
-#: templates/auth/login.html:7
-#: templates/auth/login.html.py:21
-#: templates/auth/login.html:23
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
+#: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Załóż konto"
 
-#: templates/base.html:69
+#: templates/base.html:70
 msgid ""
 "\n"
-"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska.org.pl/\">Modern Poland Foundation</a>.\n"
-"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/\">The National Library</a>, based on TNL resources.\n"
+"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
+"org.pl/\">Modern Poland Foundation</a>.\n"
+"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/"
+"\">The National Library</a>, based on TNL resources.\n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"Wolne Lektury to projekt prowadzony przez <a href=\"http://nowoczesnapolska.org.pl/\">Fundację Nowoczesna Polska</a>. \n"
-"Reprodukcje cyfrowe wykonane przez <a href=\"http://www.bn.org.pl/\">Bibliotekę Narodową</a> z egzemplarzy pochodzących ze zbiorów BN.\n"
+"Wolne Lektury to projekt prowadzony przez <a href=\"http://nowoczesnapolska."
+"org.pl/\">Fundację Nowoczesna Polska</a>. \n"
+"Reprodukcje cyfrowe wykonane przez <a href=\"http://www.bn.org.pl/"
+"\">Bibliotekę Narodową</a> z egzemplarzy pochodzących ze zbiorów BN.\n"
 "Hosting <a href=\"http://eo.pl/\">EO Networks</a>. "
 
-#: templates/base.html:76
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17, e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>"
+"Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. "
+"125, tel/fax: (22) 621-30-17, e-mail: <a href=\"mailto:"
+"fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>"
 
-#: templates/base.html:85
-#: templates/base.html.py:106
-#: templates/base.html:112
-#: templates/catalogue/book_detail.html:147
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
 #: templates/catalogue/differentiate_tags.html:23
 #: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:156
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Zamknij"
 
-#: templates/base.html:108
-#: templates/base.html.py:114
-#: templates/catalogue/book_detail.html:149
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
 #: templates/catalogue/differentiate_tags.html:25
 #: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:158
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Ładowanie"
 
-#: templates/admin/base_site.html:4
-#: templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
 msgid "Site administration"
 msgstr "Administracja stroną"
 
@@ -162,37 +173,34 @@ msgstr "Importuj książkę"
 msgid "Register on"
 msgstr "Zarejestruj się w"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
 #: templates/catalogue/breadcrumbs.html:21
-#: templates/catalogue/main_page.html:13
-#: templates/info/base.html:10
+#: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "Szukaj"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:14
-#: templates/catalogue/tagged_object_list.html:44
-#: templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "lub"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "wróć do strony głównej"
 
@@ -236,75 +244,55 @@ msgstr "Pobierz plik PDF"
 msgid "Download EPUB"
 msgstr "Pobierz plik EPUB"
 
-#: templates/catalogue/book_detail.html:53
-msgid "Download ODT"
-msgstr "Pobierz plik ODT"
-
-#: templates/catalogue/book_detail.html:56
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "Pobierz plik TXT"
 
-#: templates/catalogue/book_detail.html:61
-msgid "Artist"
-msgstr "Czyta"
-
-#: templates/catalogue/book_detail.html:63
-msgid "Director"
-msgstr "Reżyseruje"
-
-#: templates/catalogue/book_detail.html:67
-msgid "Download MP3"
-msgstr "Pobierz plik MP3"
-
-#: templates/catalogue/book_detail.html:68
-msgid "Download Ogg Vorbis"
-msgstr "Pobierz plik Ogg Vorbis"
-
-#: templates/catalogue/book_detail.html:69
-msgid "Download DAISY"
-msgstr "Pobierz plik DAISY"
-
-#: templates/catalogue/book_detail.html:96
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "O utworze"
 
-#: templates/catalogue/book_detail.html:100
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Autor"
 
-#: templates/catalogue/book_detail.html:106
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "Epoka"
 
-#: templates/catalogue/book_detail.html:112
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "Rodzaj"
 
-#: templates/catalogue/book_detail.html:118
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "Gatunek"
 
-#: templates/catalogue/book_detail.html:124
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "W innych miejscach"
 
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Lektura na wiki projektu"
 
-#: templates/catalogue/book_detail.html:127
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Źródło lektury"
 
-#: templates/catalogue/book_detail.html:129
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Opis lektury w Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:132
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Opis lektury w Wikipedii"
 
-#: templates/catalogue/book_detail.html:137
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Motywy w utworze"
 
@@ -354,18 +342,18 @@ msgstr "↑ góra ↑"
 msgid "Put a book on the shelf!"
 msgstr "Wrzuć lekturę na półkę!"
 
-#: templates/catalogue/book_sets.html:3
-#: templates/catalogue/book_sets.html:6
+#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6
 #: templates/catalogue/fragment_sets.html:16
 msgid "Create new shelf"
 msgstr "Utwórz nową półkę"
 
 #: templates/catalogue/book_sets.html:10
 msgid "You do not have any shelves. You can create one below, if you want to."
-msgstr "Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć nową półkę poniżej."
+msgstr ""
+"Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć nową półkę "
+"poniżej."
 
-#: templates/catalogue/book_sets.html:15
-#: templates/catalogue/book_short.html:4
+#: templates/catalogue/book_sets.html:15 templates/catalogue/book_short.html:4
 msgid "Put on the shelf!"
 msgstr "Wrzuć na półkę"
 
@@ -377,31 +365,19 @@ msgstr "Na skróty"
 msgid "Categories"
 msgstr "Utwór w kategoriach"
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "To dzieło znajduje się w domenie publicznej i niedługo zostanie opublikowane w szkolnej bibliotece internetowej Wolne Lektury."
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "To dzieło przejdzie do zasobów domeny publicznej i będzie mogło być publikowane bez żadnych ograniczeń za"
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Dowiedz się, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego autora."
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "To dzieło objęte jest prawem autorskim."
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Spis treści"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:147
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Motywy"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
 #: templates/catalogue/daisy_list.html:6
 msgid "Listing of all DAISY files on WolneLektury.pl"
 msgstr "Spis wszystkich plików DAISY w WolneLektury.pl"
@@ -412,24 +388,25 @@ msgstr "Spis wszystkich plików DAISY"
 
 #: templates/catalogue/differentiate_tags.html:13
 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:"
+msgstr ""
+"Podane kryteria są niejednoznaczne. Proszę wybrać jedną z następujących "
+"możliwości:"
 
 #: templates/catalogue/folded_tag_list.html:4
 msgid "Show full category"
 msgstr "Zobacz całą kategorię"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:30
-#: templates/catalogue/main_page.html:55
-#: templates/catalogue/main_page.html:60
-#: templates/catalogue/main_page.html:99
-#: templates/catalogue/main_page.html:282
-#: templates/catalogue/main_page.html:291
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "Zobacz więcej"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:262
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "Zwiń"
 
@@ -438,9 +415,11 @@ msgid "Shelves containing fragment"
 msgstr "Półki zawierające fragment"
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:40
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
-msgstr "Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć nową półkę poniżej."
+msgstr ""
+"Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć nową półkę "
+"poniżej."
 
 #: templates/catalogue/fragment_sets.html:9
 msgid "Save all shelves"
@@ -462,141 +441,198 @@ msgstr "Zobacz w utworze"
 msgid "see"
 msgstr "zobacz"
 
-#: templates/catalogue/main_page.html:14
+#: templates/catalogue/main_page.html:16
 msgid "all books"
 msgstr "wszystkie utwory"
 
-#: templates/catalogue/main_page.html:14
+#: templates/catalogue/main_page.html:17
 msgid "audiobooks"
 msgstr "audiobooki"
 
-#: templates/catalogue/main_page.html:14
+#: templates/catalogue/main_page.html:18
 msgid "daisy"
 msgstr "daisy"
 
-#: templates/catalogue/main_page.html:18
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Przeglądaj lektury według wybranych kategorii"
 
-#: templates/catalogue/main_page.html:22
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
 msgid "Wolne Lektury Widget"
 msgstr "Widżet Wolne Lektury"
 
-#: templates/catalogue/main_page.html:23
-msgid "Place our widget - search engine for Wolne Lektury which gives access to free books and audiobooks - on your homepage! Just copy the HTML code below onto your page:"
-msgstr "Umieść widżet – wyszukiwarkę Wolnych Lektur umożliwiającą dostęp do darmowych lektur i audiobooków – na swojej stronie WWW! Po prostu skopiuj poniższy kod HTML na swoją stronę:"
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+"Umieść widżet – wyszukiwarkę Wolnych Lektur umożliwiającą dostęp do "
+"darmowych lektur i audiobooków – na swojej stronie WWW! Po prostu skopiuj "
+"poniższy kod HTML na swoją stronę:"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:39
 msgid "Insert this element in place where you want display the widget"
 msgstr "Umieść ten element w miejscu gdzie chcesz wyświetlić widżet"
 
-#: templates/catalogue/main_page.html:27
+#: templates/catalogue/main_page.html:42
 msgid "Place this element just before closing body tag: &lt;/body&gt;"
 msgstr "Umieść ten element tuż przed zamknięciem taga body: &lt;/body&gt;"
 
-#: templates/catalogue/main_page.html:31
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Twoje półki z lekturami"
 
-#: templates/catalogue/main_page.html:36
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "usuń"
 
-#: templates/catalogue/main_page.html:45
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Utwórz półkę"
 
-#: templates/catalogue/main_page.html:49
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Stwórz własny zestaw lektur. Możesz się nim później podzielić z innymi, przesyłając im link do Twojej półki."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Stwórz własny zestaw lektur. Możesz się nim później podzielić z innymi, "
+"przesyłając im link do Twojej półki."
 
-#: templates/catalogue/main_page.html:50
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Aby zarządzać swoimi półkami, musisz się"
 
-#: templates/catalogue/main_page.html:50
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "zalogować"
 
-#: templates/catalogue/main_page.html:50
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "."
 
-#: templates/catalogue/main_page.html:53
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Materiały pomocnicze dla nauczycieli"
 
-#: templates/catalogue/main_page.html:54
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
-msgstr "Scenariusze lekcji i inne pomysły na wykorzytanie serwisu WolneLektury.pl podczas nauczania."
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+msgstr ""
+"Scenariusze lekcji i inne pomysły na wykorzytanie serwisu WolneLektury.pl "
+"podczas nauczania."
 
-#: templates/catalogue/main_page.html:59
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "to profesjonalne nagrania tekstów literackich z naszego zbioru dostępne na wolnej licencji w formatach MP3, Ogg Vorbis oraz w systemie DAISY."
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"to profesjonalne nagrania tekstów literackich z naszego zbioru dostępne na "
+"wolnej licencji w formatach MP3, Ogg Vorbis oraz w systemie DAISY."
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:129
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Autorzy"
 
-#: templates/catalogue/main_page.html:70
-#: templates/catalogue/tagged_object_list.html:133
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Rodzaje"
 
-#: templates/catalogue/main_page.html:74
-#: templates/catalogue/tagged_object_list.html:137
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Gatunki"
 
-#: templates/catalogue/main_page.html:78
-#: templates/catalogue/tagged_object_list.html:141
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Epoki"
 
-#: templates/catalogue/main_page.html:84
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Motywy i tematy"
 
-#: templates/catalogue/main_page.html:87
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Rodziny motywów"
 
-#: templates/catalogue/main_page.html:272
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "Aktualności"
 
-#: templates/catalogue/main_page.html:276
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Zobacz nasz blog"
 
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "Możesz nam pomóc!"
 
-#: templates/catalogue/main_page.html:280
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Utwory włączane sukcesywnie do naszej biblioteki staramy się opracowywać jak najdokładniej. Jest to możliwe tylko dzięki współpracującym z nami wolontariuszom."
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Utwory włączane sukcesywnie do naszej biblioteki staramy się opracowywać jak "
+"najdokładniej. Jest to możliwe tylko dzięki współpracującym z nami "
+"wolontariuszom."
 
-#: templates/catalogue/main_page.html:281
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Zapraszamy wszystkie osoby, które chcą współtworzyć szkolną bibliotekę internetową Wolne Lektury."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Zapraszamy wszystkie osoby, które chcą współtworzyć szkolną bibliotekę "
+"internetową Wolne Lektury."
 
-#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "O projekcie"
 
-#: templates/catalogue/main_page.html:287
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"Biblioteka internetowa z lekturami szkolnymi „Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) to projekt realizowany przez Fundację Nowoczesna Polska. Działa od 2007 roku i udostępnia w swoich zbiorach lektury szkolne, które są zalecane do użytku przez Ministerstwo Edukacji Narodowej i które trafiły już do domeny publicznej."
+"Biblioteka internetowa z lekturami szkolnymi „Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) to projekt realizowany "
+"przez Fundację Nowoczesna Polska. Działa od 2007 roku i udostępnia w swoich "
+"zbiorach lektury szkolne, które są zalecane do użytku przez Ministerstwo "
+"Edukacji Narodowej i które trafiły już do domeny publicznej."
 
 #: templates/catalogue/search_multiple_hits.html:5
 #: templates/catalogue/search_too_short.html:5
@@ -612,15 +648,19 @@ msgid "Search in WolneLektury.pl"
 msgstr "Wyszukiwanie w WolneLektury.pl"
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:117
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
 msgstr "Przepraszamy! Brak wyników spełniających kryteria podane w zapytaniu."
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
-msgstr "Wyszukiwarka obsługuje takie kryteria jak tytuł, autor, motyw/temat, epoka, rodzaj i gatunek utworu. Obecnie nie obsługujemy wyszukiwania fraz w tekstach utworów."
+msgstr ""
+"Wyszukiwarka obsługuje takie kryteria jak tytuł, autor, motyw/temat, epoka, "
+"rodzaj i gatunek utworu. Obecnie nie obsługujemy wyszukiwania fraz w "
+"tekstach utworów."
 
 #: templates/catalogue/search_too_short.html:14
 msgid "Sorry! Search query must have at least two characters."
@@ -635,8 +675,12 @@ msgid "Your shelf is empty"
 msgstr "Twoja półka jest pusta"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Możesz wrzucić książkę na półkę, wchodząc na stronę danej lektury i klikając na przycisk „Na półkę!”."
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Możesz wrzucić książkę na półkę, wchodząc na stronę danej lektury i klikając "
+"na przycisk „Na półkę!”."
 
 #: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
@@ -705,10 +749,14 @@ msgid "Share this shelf"
 msgstr "Podziel się tą półką"
 
 #: templates/catalogue/tagged_object_list.html:51
-msgid "Copy this link and share it with other people to let them see your shelf."
-msgstr "Skopiuj ten link i przekaż go osobom, z którymi chcesz się podzielić tą półką."
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
+msgstr ""
+"Skopiuj ten link i przekaż go osobom, z którymi chcesz się podzielić tą "
+"półką."
 
 #: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Przeczytaj omówienia utworów autora w serwisie Lektury.Gazeta.pl"
 
@@ -720,18 +768,21 @@ msgstr "Przeczytaj omówienia z epoki %(last_tag)s w serwisie Lektury.Gazeta.pl"
 #: templates/catalogue/tagged_object_list.html:65
 #, python-format
 msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
-msgstr "Przeczytaj omówienia z rodzaju %(last_tag)s w serwisie Lektury.Gazeta.pl"
+msgstr ""
+"Przeczytaj omówienia z rodzaju %(last_tag)s w serwisie Lektury.Gazeta.pl"
 
 #: templates/catalogue/tagged_object_list.html:67
 #, python-format
 msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
-msgstr "Przeczytaj omówienia z gatunku %(last_tag)s w serwisie Lektury.Gazeta.pl"
+msgstr ""
+"Przeczytaj omówienia z gatunku %(last_tag)s w serwisie Lektury.Gazeta.pl"
 
 #: templates/catalogue/tagged_object_list.html:69
 msgid "Read related study on Lektury.Gazeta.pl"
 msgstr "Przeczytaj powiązane omówienia w serwisie Lektury.Gazeta.pl"
 
 #: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr "Przeczytaj artykuł o autorze w Wikipedii"
 
@@ -758,29 +809,14 @@ msgstr "Przeczytaj powiązany artykuł w Wikipedii"
 msgid "Delete"
 msgstr "Usuń"
 
-#: templates/catalogue/tagged_object_list.html:103
-msgid "This author's works are copyrighted."
-msgstr "Dzieła tego autora objęte są prawem autorskim."
-
-#: templates/catalogue/tagged_object_list.html:106
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Dzieła tego autora znajdują się w domenie publicznej i niedługo zostaną opublikowane w szkolnej bibliotece internetowej Wolne Lektury."
-
-#: templates/catalogue/tagged_object_list.html:110
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Dzieła tego autora przejdą do zasobów domeny publicznej i będą mogły być publikowane bez żadnych ograniczeń za"
-
-#: templates/catalogue/tagged_object_list.html:112
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Dowiedz się, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego autora."
-
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
 msgstr "usuń"
 
 #: templates/catalogue/user_shelves.html:10
 msgid "You do not own any shelves. You can create one below if you want to"
-msgstr "Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć półkę poniżej."
+msgstr ""
+"Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć półkę poniżej."
 
 #: templates/info/base.html:10
 msgid "return to the main page"
@@ -788,22 +824,28 @@ msgstr "wróć do strony głównej"
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
-msgstr "W serwisie Wolne Lektury już teraz opublikowanych jest ponad 1000 utworów! Pomóż w rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% podatku."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
+msgstr ""
+"W serwisie Wolne Lektury już teraz opublikowanych jest ponad 1200 utworów! "
+"Pomóż w rozwijaniu biblioteki i uwalnianiu nowych lektur <a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">przekazując nam "
+"darowiznę lub 1% podatku</a>."
 
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Więcej..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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 "Zostań redaktorem lub redaktorką Wolnych Lektur! Sprawdź, czy obecnie pracujemy nad publikacją wyszukiwanej przez ciebie lektury i samodzielnie przygotuj publikację logując się na Platformie Redakcyjnej."
+msgstr ""
+"Zostań redaktorem lub redaktorką Wolnych Lektur! Sprawdź, czy obecnie "
+"pracujemy nad publikacją wyszukiwanej przez ciebie lektury i samodzielnie "
+"przygotuj publikację logując się na Platformie Redakcyjnej."
 
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
@@ -828,30 +870,118 @@ msgstr "poprzedni"
 msgid "next"
 msgstr "następny"
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "Dzieła tego autora objęte są prawem autorskim."
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Dowiedz "
+"się</a>, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego "
+"autora."
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Dzieła tego autora znajdują się w domenie publicznej i niedługo zostaną "
+"opublikowane w szkolnej bibliotece internetowej Wolne Lektury."
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Dzieła tego autora przejdą do zasobów domeny publicznej i będą mogły być "
+"publikowane bez żadnych ograniczeń za"
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"To dzieło znajduje się w domenie publicznej i niedługo zostanie opublikowane "
+"w szkolnej bibliotece internetowej Wolne Lektury."
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"To dzieło przejdzie do zasobów domeny publicznej i będzie mogło być "
+"publikowane bez żadnych ograniczeń za"
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Dowiedz "
+"się</a>, dlaczego biblioteki internetowe nie mogą udostępniać tego dzieła."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "To dzieło objęte jest prawem autorskim."
+
+#~ msgid "Download ODT"
+#~ msgstr "Pobierz plik ODT"
+
+#~ msgid "Artist"
+#~ msgstr "Czyta"
+
+#~ msgid "Director"
+#~ msgstr "Reżyseruje"
+
+#~ msgid "Download MP3"
+#~ msgstr "Pobierz plik MP3"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "Pobierz plik Ogg Vorbis"
+
+#~ msgid "Download DAISY"
+#~ msgstr "Pobierz plik DAISY"
+
 #~ msgid "check list of books"
 #~ msgstr "zobacz spis utworów"
+
 #~ msgid "in our repository"
 #~ msgstr "w naszym zbiorze"
+
 #~ msgid "Polish"
 #~ msgstr "polski"
+
 #~ msgid "German"
 #~ msgstr "niemiecki"
+
 #~ msgid "English"
 #~ msgstr "angielski"
+
 #~ msgid "Lithuanian"
 #~ msgstr "litewski"
+
 #~ msgid "French"
 #~ msgstr "francuski"
+
 #~ msgid "Russian"
 #~ msgstr "rosyjski"
+
 #~ msgid "Spanish"
 #~ msgstr "hiszpański"
+
 #~ msgid "Ukrainian"
 #~ msgstr "ukraiński"
+
 #~ msgid "Choose your interface language: "
 #~ msgstr "Wybierz język interfejsu:"
+
 #~ msgid "Choose language"
 #~ msgstr "Wybierz język"
+
 #~ msgid "Hide description"
 #~ msgstr "Zwiń opis"
-
index c8642b8..441d0f7 100644 (file)
Binary files a/wolnelektury/locale/ru/LC_MESSAGES/django.mo and b/wolnelektury/locale/ru/LC_MESSAGES/django.mo differ
index f784b9f..09ee436 100644 (file)
@@ -2,15 +2,16 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-25 10:23+0000\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-08-25 11:05\n"
 "Last-Translator: <radek.czajka@gmail.com>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -21,8 +22,12 @@ msgid "Page does not exist"
 msgstr "Сайт не существует"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
-msgstr "Извините! Этот сайт не существует. Проверьте, пожалуйста, набрали ли вы хороший адрес или зайдите на"
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
+msgstr ""
+"Извините! Этот сайт не существует. Проверьте, пожалуйста, набрали ли вы "
+"хороший адрес или зайдите на"
 
 #: templates/404.html:17
 msgid "main page"
@@ -33,8 +38,16 @@ msgid "Server error"
 msgstr "Ошибка сервера"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
-msgstr "<p> The Wolnelektury.pl временно не работает. Тем времнем зайдите на <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
+msgstr ""
+"<p> The Wolnelektury.pl временно не работает. Тем времнем зайдите на <a "
+"href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
 
 #: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
@@ -42,92 +55,108 @@ msgstr "Сервис недоступен"
 
 #: templates/503.html:56
 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
-msgstr "По поводу технической поддрежки сайт The Wolnelektury.pl временно не работает."
+msgstr ""
+"По поводу технической поддрежки сайт The Wolnelektury.pl временно не "
+"работает."
 
-#: templates/base.html:19
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Internet Explorer не может хорошо показать сайта. Щелкните здесь, чтобы прочитать больше..."
+#: templates/base.html:20
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Internet Explorer не может хорошо показать сайта. Щелкните здесь, чтобы "
+"прочитать больше..."
 
-#: templates/base.html:32
+#: templates/base.html:33
 msgid "Welcome"
 msgstr "Добро пожаловать"
 
-#: templates/base.html:33
+#: templates/base.html:34
 msgid "Your shelves"
 msgstr "Ваши полки"
 
-#: templates/base.html:35
+#: templates/base.html:36
 msgid "Administration"
 msgstr "Администрация"
 
-#: templates/base.html:37 templates/base.html.py:41
+#: templates/base.html:38 templates/base.html.py:42
 msgid "Report a bug"
 msgstr ""
 
-#: templates/base.html:38
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Выход"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:92
-#: templates/base.html.py:96 templates/auth/login.html:4
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
 #: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Вход"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:96
-#: templates/base.html.py:100 templates/auth/login.html:7
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
 #: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Зарегистроваться"
 
-#: templates/base.html:69
+#: templates/base.html:70
 msgid ""
 "\n"
-"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska.org.pl/\">Modern Poland Foundation</a>.\n"
-"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/\">The National Library</a>, based on TNL resources.\n"
+"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
+"org.pl/\">Modern Poland Foundation</a>.\n"
+"\t\t\t\tDigital reproductions are made by <a href=\"http://www.bn.org.pl/"
+"\">The National Library</a>, based on TNL resources.\n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tWolne Lektury - это проект под управлением <a href=\"http://nowoczesnapolska.org.pl/\"> Фонда Молодой Польши </a>.\n"
-"\t\t\t\t Цифровые копии создаются <a href=\"http://www.bn.org.pl/\"> Народной бибиотеки </a>, основанной на ресурсах TNL. \n"
+"\t\t\t\tWolne Lektury - это проект под управлением <a href=\"http://"
+"nowoczesnapolska.org.pl/\"> Фонда Молодой Польши </a>.\n"
+"\t\t\t\t Цифровые копии создаются <a href=\"http://www.bn.org.pl/\"> "
+"Народной бибиотеки </a>, основанной на ресурсах TNL. \n"
 "\t\t\t\tHosting <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 
-#: templates/base.html:76
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tФонд Молодой Польши, 00-514 Варшава, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17\n"
-"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\n"
+"\t\t\t\tФонд Молодой Польши, 00-514 Варшава, ul. Marszałkowska 84/92 lok. "
+"125, tel/fax: (22) 621-30-17\n"
+"                e-mail: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 
-#: templates/base.html:85 templates/base.html.py:106 templates/base.html:112
-#: templates/catalogue/book_detail.html:146
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
 #: templates/catalogue/differentiate_tags.html:23
 #: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:155
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Закройте"
 
-#: templates/base.html:108 templates/base.html.py:114
-#: templates/catalogue/book_detail.html:148
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
 #: templates/catalogue/differentiate_tags.html:25
 #: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:157
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Погрузка"
 
@@ -150,32 +179,44 @@ msgstr "Регистрация на"
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
 #: templates/catalogue/breadcrumbs.html:21
 #: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "Поиск"
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
-#: templates/catalogue/tagged_object_list.html:43 templates/info/base.html:10
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "или"
 
 #: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "возврат на главную страницу"
 
+#: templates/catalogue/audiobook_list.html:6
+#, fuzzy
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr "Список работ на WolneLektury.pl"
+
+#: templates/catalogue/audiobook_list.html:8
+#, fuzzy
+msgid "Listing of all audiobooks"
+msgstr "Список работ"
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr "на WolneLektury.pl"
@@ -208,74 +249,55 @@ msgstr "Скачать PDF"
 msgid "Download EPUB"
 msgstr "Скачать EPUB"
 
-#: templates/catalogue/book_detail.html:53
-msgid "Download ODT"
-msgstr "Скачать ODT"
-
-#: templates/catalogue/book_detail.html:56
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "Скачать TXT"
 
-#: templates/catalogue/book_detail.html:61
-msgid "Artist"
-msgstr "Артист"
-
-#: templates/catalogue/book_detail.html:63
-msgid "Director"
-msgstr "режиссер"
-
-#: templates/catalogue/book_detail.html:67
-msgid "Download MP3"
-msgstr "скачать MP3"
-
-#: templates/catalogue/book_detail.html:68
-msgid "Download Ogg Vorbis"
-msgstr "Скачать Ogg Vorbis"
-
-msgid "Download DAISY"
-msgstr "Скачать DAISY"
-
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "Подробнее"
 
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Автор"
 
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "эпоха"
 
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "форма"
 
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "жанр"
 
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "другие ресурсы"
 
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Книга по проекту вики"
 
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Источник книги"
 
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Описание книги на Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Описание книги на Wikipedia"
 
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Темы труда"
 
@@ -313,6 +335,15 @@ msgstr "Список работ на WolneLektury.pl"
 msgid "Listing of all works"
 msgstr "Список работ"
 
+#: templates/catalogue/book_list.html:16
+#, fuzzy
+msgid "Table of Content"
+msgstr "Оглавление"
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr "Поставьте книгу на полку!"
@@ -338,31 +369,29 @@ msgstr "Перейдите на"
 msgid "Categories"
 msgstr "Категории"
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Этот труд находится в публичной области. Мыпоместим ее в школьной библиотеке Wolne Lektury скоро. ?"
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Этот труд будет частью публичной сферы. Ее издание будет разрешено без ограничения ... ?"
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Узнайте, почему интернет-библиотеки не могут издать этого труда."
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "На эту работу распространяется авторское право."
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Оглавление"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:146
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Мотивы"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
+#: templates/catalogue/daisy_list.html:6
+#, fuzzy
+msgid "Listing of all DAISY files on WolneLektury.pl"
+msgstr "Список работ на WolneLektury.pl"
+
+#: templates/catalogue/daisy_list.html:8
+#, fuzzy
+msgid "Listing of all DAISY files"
+msgstr "Список работ"
+
 #: templates/catalogue/differentiate_tags.html:13
 msgid "The criteria are ambiguous. Please select one of the following options:"
 msgstr ""
@@ -372,15 +401,16 @@ msgid "Show full category"
 msgstr "Показать всю категорию"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43 templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "Подробнее"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "Скрыть"
 
@@ -389,7 +419,7 @@ msgid "Shelves containing fragment"
 msgstr "Полки с фрагментом"
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
 msgstr "У вас нет никакой полки. Если вы хотите, вы можете создать одну ниже."
 
@@ -409,121 +439,200 @@ msgstr "Скрыть фрагмент"
 msgid "See in a book"
 msgstr "Посмотрите в книге"
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
-msgstr "проверить список книг"
+#: templates/catalogue/main_page.html:14
+msgid "see"
+msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
-msgstr "в нашем хранилище"
+#: templates/catalogue/main_page.html:16
+#, fuzzy
+msgid "all books"
+msgstr "Поставьте книгу"
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Просматривать книги по категориям"
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "на WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Ваши книжные полки"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "удалить"
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Создать полку"
 
-#: templates/catalogue/main_page.html:37
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Создать собственный набор книг. Вы можете делиться ими со своими друзьями, посылая ссылку на свою полку."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Создать собственный набор книг. Вы можете делиться ими со своими друзьями, "
+"посылая ссылку на свою полку."
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Вам необходимо"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "Войти в систему,"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "чтобы управлять своими полками"
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Хендауты для учителей"
 
-#: templates/catalogue/main_page.html:42
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
-msgstr "Конспекты уроков и другие идеи использования Wolnelektury.pl учителями."
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+msgstr ""
+"Конспекты уроков и другие идеи использования Wolnelektury.pl учителями."
 
-#: templates/catalogue/main_page.html:47
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "- это профессиональные записи литературных текстов из нашего хранилища. Они доступны по бесплатному разрешению ? в форматах MP3 и Ogg Vorbis, а также в системе DAISY."
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"- это профессиональные записи литературных текстов из нашего хранилища. Они "
+"доступны по бесплатному разрешению ? в форматах MP3 и Ogg Vorbis, а также в "
+"системе DAISY."
 
-#: templates/catalogue/main_page.html:54
-#: templates/catalogue/tagged_object_list.html:128
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Авторы"
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Формы"
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:136
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Жанры"
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:140
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Эпохи"
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Мотивы и темы"
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Тематические группы"
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "Новости"
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Посмотрите наш блог"
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "Вы можете нам помочь!"
 
-#: templates/catalogue/main_page.html:268
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Мы стремимся тщательно разрабатывать труды, прибавляемые в нашу библиотеку. Это является возможным только благодаря помощи наших волонтеров."
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Мы стремимся тщательно разрабатывать труды, прибавляемые в нашу библиотеку. "
+"Это является возможным только благодаря помощи наших волонтеров."
 
-#: templates/catalogue/main_page.html:269
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Мы приглашаем людей, которые хотят принять участие в развитии школьной библиотеки Интернета Wolne Lektury."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Мы приглашаем людей, которые хотят принять участие в развитии школьной "
+"библиотеки Интернета Wolne Lektury."
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "О нас"
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"\t\t\tИнтернет-библиотека со школьными чтениями “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) является проектом, созданным фондом Современной Польши. Действуя с 2007 г., библиотека делает доступными школьные чтения публичного домена, предлагаемые министром народного образования. \n"
+"\t\t\tИнтернет-библиотека со школьными чтениями “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) является проектом, "
+"созданным фондом Современной Польши. Действуя с 2007 г., библиотека делает "
+"доступными школьные чтения публичного домена, предлагаемые министром "
+"народного образования. \n"
 "\t\t\t"
 
 #: templates/catalogue/search_multiple_hits.html:5
@@ -540,21 +649,24 @@ msgid "Search in WolneLektury.pl"
 msgstr "Искать в WolneLektury.pl"
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:116
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
 msgstr "Извините! Критерий поиска не соответствует никаким ресурсам."
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
 msgstr ""
-"Искать поддержку двигателя используя критерии: заглавие, автор, тема/сюжет, эпоха, форма и жанр.\n"
+"Искать поддержку двигателя используя критерии: заглавие, автор, тема/сюжет, "
+"эпоха, форма и жанр.\n"
 "\t\tПока мы не поддерживаем поиска всего текста."
 
 #: templates/catalogue/search_too_short.html:14
 msgid "Sorry! Search query must have at least two characters."
-msgstr "Извините! У искаемого вопроса должны быть по крайней мере два свойства."
+msgstr ""
+"Извините! У искаемого вопроса должны быть по крайней мере два свойства."
 
 #: templates/catalogue/tag_list.html:4
 msgid "See full category"
@@ -565,8 +677,12 @@ msgid "Your shelf is empty"
 msgstr "У тебя пустая полка"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Вы можете поставить книгу на полку, заходя на сайт произведения или щелкнув 'Поставить на полку'."
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Вы можете поставить книгу на полку, заходя на сайт произведения или щелкнув "
+"'Поставить на полку'."
 
 #: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
@@ -577,6 +693,7 @@ msgid "Choose books' formats which you want to download:"
 msgstr "Выбрать формат книг, которые вы хотите скачать:"
 
 #: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
 #: templates/catalogue/tagged_object_list.html:39
 #: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
@@ -586,6 +703,10 @@ msgstr "для чтения"
 msgid "and printing using"
 msgstr "и для печатки"
 
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
 #: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr "и для редактирования"
@@ -611,96 +732,85 @@ msgstr "открытый формат"
 msgid "Xiph.org Foundation"
 msgstr "Фонд Xiph.org"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr "Скачать"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr "Обновить список форматов книг на полке"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr "Отменить"
 
-#: templates/catalogue/tagged_object_list.html:48
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr "Делить эту полку"
 
-#: templates/catalogue/tagged_object_list.html:50
-msgid "Copy this link and share it with other people to let them see your shelf."
-msgstr "Копировать эту ссылку и делить с другими пользователями, чтобы они могли увидеть вашу полку."
+#: templates/catalogue/tagged_object_list.html:51
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
+msgstr ""
+"Копировать эту ссылку и делить с другими пользователями, чтобы они могли "
+"увидеть вашу полку."
 
-#: templates/catalogue/tagged_object_list.html:60
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Читать очерк произведения данного автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:62
+#: templates/catalogue/tagged_object_list.html:63
 #, fuzzy, python-format
 msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Читать очерк произведения данного автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:64
+#: templates/catalogue/tagged_object_list.html:65
 #, fuzzy, python-format
 msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Читать очерк произведения данного автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:66
+#: templates/catalogue/tagged_object_list.html:67
 #, fuzzy, python-format
 msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
 msgstr "Читать очерк произведения данного автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:68
+#: templates/catalogue/tagged_object_list.html:69
 #, fuzzy
 msgid "Read related study on Lektury.Gazeta.pl"
 msgstr "Читать очерк произведения данного автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:76
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
 msgid "Read article about this author on Wikipedia"
 msgstr "Прочитайте статью об авторе в Википедии"
 
-#: templates/catalogue/tagged_object_list.html:78
+#: templates/catalogue/tagged_object_list.html:79
 #, fuzzy, python-format
 msgid "Read article about epoch %(last_tag)s on Wikipedia"
 msgstr "Прочитайте статью об авторе в Википедии"
 
-#: templates/catalogue/tagged_object_list.html:80
+#: templates/catalogue/tagged_object_list.html:81
 #, fuzzy, python-format
 msgid "Read article about kind %(last_tag)s on Wikipedia"
 msgstr "Прочитайте статью об авторе в Википедии"
 
-#: templates/catalogue/tagged_object_list.html:82
+#: templates/catalogue/tagged_object_list.html:83
 #, fuzzy, python-format
 msgid "Read article about genre %(last_tag)s on Wikipedia"
 msgstr "Прочитайте статью об авторе в Википедии"
 
-#: templates/catalogue/tagged_object_list.html:84
+#: templates/catalogue/tagged_object_list.html:85
 #, fuzzy
 msgid "Read related article on Wikipedia"
 msgstr "Прочитайте статью об авторе в Википедии"
 
-#: templates/catalogue/tagged_object_list.html:94
+#: templates/catalogue/tagged_object_list.html:95
 msgid "Delete"
 msgstr "Удалить"
 
-#: templates/catalogue/tagged_object_list.html:102
-msgid "This author's works are copyrighted."
-msgstr "На работы этого автора распространяется авторское право."
-
-#: templates/catalogue/tagged_object_list.html:105
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Работы данного автора находятся в публичной области и будут изданы в школьной библиотеке Интернета скоро."
-
-#: templates/catalogue/tagged_object_list.html:109
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Труды данного автора будут частью публичной области и возможным будет их издание без ограничений на"
-
-#: templates/catalogue/tagged_object_list.html:111
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Узнайте, почему интернет-библиотеки не могут издать работ этого автора."
-
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
 msgstr "убрать"
@@ -715,19 +825,20 @@ msgstr "возвратитесь на главную страницу"
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
 msgstr ""
-"У нас больше 1000 трудов в Wolne Lektury!\n"
+"У нас больше 1200 трудов в Wolne Lektury!\n"
 "Помогите нам распространить библиотеку и поместить новые бесплатные чтения\n"
-"при помощи денежного пожертвования или перевода 1% вашего подоходного налога."
+"при помощи <a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">денежного пожертвования или перевода 1% вашего подоходного налога</a>."
 
-#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Подробнее..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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"
@@ -760,6 +871,88 @@ msgstr "предыдущая"
 msgid "next"
 msgstr "следующая"
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "На работы этого автора распространяется авторское право."
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Узнайте</"
+"a>, почему интернет-библиотеки не могут издать работ этого автора."
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Работы данного автора находятся в публичной области и будут изданы в "
+"школьной библиотеке Интернета скоро."
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Труды данного автора будут частью публичной области и возможным будет их "
+"издание без ограничений на"
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"Этот труд находится в публичной области. Мыпоместим ее в школьной библиотеке "
+"Wolne Lektury скоро. ?"
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"Этот труд будет частью публичной сферы. Ее издание будет разрешено без "
+"ограничения ... ?"
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Узнайте</"
+"a>, почему интернет-библиотеки не могут издать этого труда."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "На эту работу распространяется авторское право."
+
+#~ msgid "Download ODT"
+#~ msgstr "Скачать ODT"
+
+#~ msgid "Artist"
+#~ msgstr "Артист"
+
+#~ msgid "Director"
+#~ msgstr "режиссер"
+
+#~ msgid "Download MP3"
+#~ msgstr "скачать MP3"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "Скачать Ogg Vorbis"
+
+#~ msgid "Download DAISY"
+#~ msgstr "Скачать DAISY"
+
+#~ msgid "check list of books"
+#~ msgstr "проверить список книг"
+
+#~ msgid "in our repository"
+#~ msgstr "в нашем хранилище"
+
 #~ msgid "Polish"
 #~ msgstr "польский"
 
index 0453c42..fb657a1 100644 (file)
Binary files a/wolnelektury/locale/uk/LC_MESSAGES/django.mo and b/wolnelektury/locale/uk/LC_MESSAGES/django.mo differ
index 09888f2..b07c613 100644 (file)
@@ -7,96 +7,98 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-25 10:23+0000\n"
+"POT-Creation-Date: 2010-12-29 20:40+0100\n"
 "PO-Revision-Date: 2010-08-26 14:09+0100\n"
 "Last-Translator: Natalia Kertyczak <natalczyk@o2.pl>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: templates/404.html:6
-#: templates/404.html.py:15
 #: templates/404.html:6 templates/404.html.py:15
 msgid "Page does not exist"
 msgstr "Сторінка не існує"
 
 #: templates/404.html:17
-msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to "
-msgstr "На жаль, ця сторінка не існує. Будь ласка, перевірте, чи ви ввели правильну адресу або перейдіть на"
+msgid ""
+"We are sorry, but this page does not exist. Please check if you entered "
+"correct address or go to "
+msgstr ""
+"На жаль, ця сторінка не існує. Будь ласка, перевірте, чи ви ввели правильну "
+"адресу або перейдіть на"
 
 #: templates/404.html:17
 msgid "main page"
 msgstr "головна сторінка"
 
-#: templates/500.html:6
-#: templates/500.html.py:54
+#: templates/500.html:6 templates/500.html.py:54
 msgid "Server error"
 msgstr "Помилка сервера"
 
 #: templates/500.html:55
-msgid "<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our <a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the error.</p>"
-msgstr "<p>Сторінка Wolnelektury.pl тимчасово недоступна. В міжчасі, увійдіть на наш <a href='http://nowoczesnapolska.org.pl'>блог</a>.</p> <p>Повідомте наших <a href='mailto:fundacja@nowoczesnapolska.org.pl'>адміністраторів</a> про помилку.</p>"
+msgid ""
+"<p>The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our "
+"<a href='http://nowoczesnapolska.org.pl'>blog</a>.</p> <p>Inform our <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>administrators</a> about the "
+"error.</p>"
+msgstr ""
+"<p>Сторінка Wolnelektury.pl тимчасово недоступна. В міжчасі, увійдіть на наш "
+"<a href='http://nowoczesnapolska.org.pl'>блог</a>.</p> <p>Повідомте наших <a "
+"href='mailto:fundacja@nowoczesnapolska.org.pl'>адміністраторів</a> про "
+"помилку.</p>"
 
-#: templates/503.html:6
-#: templates/503.html.py:54
+#: templates/503.html:6 templates/503.html.py:54
 msgid "Service unavailable"
 msgstr "Послуга недоступна"
 
 #: templates/503.html:56
 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance."
-msgstr "В зв'язку з технічними роботами сервіс Wolnelektury.pl тимчасово недоступний."
+msgstr ""
+"В зв'язку з технічними роботами сервіс Wolnelektury.pl тимчасово недоступний."
 
 #: templates/base.html:20
-msgid "Internet Explorer cannot display this site properly. Click here to read more..."
-msgstr "Інтернет Експолорер не може правильно відобразити цієї сторінки. Натисніть, щоб дізнатися більше..."
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Інтернет Експолорер не може правильно відобразити цієї сторінки. Натисніть, "
+"щоб дізнатися більше..."
 
-#: templates/base.html:32
+#: templates/base.html:33
 msgid "Welcome"
 msgstr "Ласкаво просимо"
 
-#: templates/base.html:33
+#: templates/base.html:34
 msgid "Your shelves"
 msgstr "Ваші полиці"
 
-#: templates/base.html:35
+#: templates/base.html:36
 msgid "Administration"
 msgstr "Адміністрація"
 
-#: templates/base.html:37 templates/base.html.py:41
+#: templates/base.html:38 templates/base.html.py:42
 msgid "Report a bug"
 msgstr ""
 
-#: templates/base.html:38
+#: templates/base.html:39
 msgid "Logout"
 msgstr "Вийти "
 
-#: templates/base.html:41
-#: templates/base.html.py:87
-#: templates/base.html:91
-#: templates/base.html.py:95
-#: templates/auth/login.html:4
-#: templates/auth/login.html.py:7
-#: templates/auth/login.html:12
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:93
+#: templates/base.html.py:97 templates/auth/login.html:4
+#: templates/auth/login.html.py:7 templates/auth/login.html:12
 #: templates/auth/login.html.py:15
 msgid "Sign in"
 msgstr "Увійти"
 
-#: templates/base.html:42 templates/base.html.py:88 templates/base.html:96
-#: templates/base.html.py:100 templates/auth/login.html:7
+#: templates/base.html:43 templates/base.html.py:89 templates/base.html:97
+#: templates/base.html.py:101 templates/auth/login.html:7
 #: templates/auth/login.html.py:21 templates/auth/login.html:23
 msgid "Register"
 msgstr "Зареєструватися"
 
-#: templates/base.html:51
-msgid "Choose your interface language: "
-msgstr "Вибрати мову інтерфейсу"
-
-#: templates/base.html:56
-msgid "Choose language"
-msgstr "Вибрати мову"
-
-#: templates/base.html:68
+#: templates/base.html:70
 msgid ""
 "\n"
 "\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
@@ -107,49 +109,56 @@ msgid ""
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tWolne Lektury це проект реалізований <a href=\"http://nowoczesnapolska.org.pl/\">Фондом Модерна Польща</a>.\n"
-"\t\t\t\tЦифрові репродукції виконані <a href=\"http://www.bn.org.pl/\">Національною Бібліотекою</a>, на основі її засобів. \n"
+"\t\t\t\tWolne Lektury це проект реалізований <a href=\"http://"
+"nowoczesnapolska.org.pl/\">Фондом Модерна Польща</a>.\n"
+"\t\t\t\tЦифрові репродукції виконані <a href=\"http://www.bn.org.pl/"
+"\">Національною Бібліотекою</a>, на основі її засобів. \n"
 "\t\t\t\tГостинг <a href=\"http://eo.pl/\">EO Networks</a>.\n"
 "\t\t\t\t"
 
-#: templates/base.html:76
+#: templates/base.html:77
 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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\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: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl"
+"\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 msgstr ""
 "\n"
-"\t\t\t\tФонд Модерна Польща, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, тел/факс: (22) 621-30-17\n"
-"                eлектронна пошта: <a href=\"mailto:fundacja@nowoczesnapolska.org.pl\">fundacja@nowoczesnapolska.org.pl</a>\n"
+"\t\t\t\tФонд Модерна Польща, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. "
+"125, тел/факс: (22) 621-30-17\n"
+"                eлектронна пошта: <a href=\"mailto:fundacja@nowoczesnapolska."
+"org.pl\">fundacja@nowoczesnapolska.org.pl</a>\n"
 "\t\t\t\t"
 
-#: templates/base.html:85 templates/base.html.py:106 templates/base.html:112
-#: templates/catalogue/book_detail.html:146
+#: templates/base.html:86 templates/base.html.py:107 templates/base.html:113
+#: templates/catalogue/book_detail.html:168
 #: templates/catalogue/book_fragments.html:33
-#: templates/catalogue/book_stub_detail.html:31
 #: templates/catalogue/differentiate_tags.html:23
 #: templates/catalogue/search_multiple_hits.html:29
 #: templates/catalogue/search_no_hits.html:22
 #: templates/catalogue/search_too_short.html:19
-#: templates/catalogue/tagged_object_list.html:155
+#: templates/catalogue/tagged_object_list.html:139
+#: templates/pdcounter/author_detail.html:52
+#: templates/pdcounter/book_stub_detail.html:31
 msgid "Close"
 msgstr "Зачинити"
 
-#: templates/base.html:108 templates/base.html.py:114
-#: templates/catalogue/book_detail.html:148
+#: templates/base.html:109 templates/base.html.py:115
+#: templates/catalogue/book_detail.html:170
 #: templates/catalogue/book_fragments.html:35
-#: templates/catalogue/book_stub_detail.html:33
 #: templates/catalogue/differentiate_tags.html:25
 #: templates/catalogue/search_multiple_hits.html:31
 #: templates/catalogue/search_no_hits.html:24
 #: templates/catalogue/search_too_short.html:21
-#: templates/catalogue/tagged_object_list.html:157
+#: templates/catalogue/tagged_object_list.html:141
+#: templates/pdcounter/author_detail.html:54
+#: templates/pdcounter/book_stub_detail.html:33
 msgid "Loading"
 msgstr "Завантажується"
 
-#: templates/admin/base_site.html:4
-#: templates/admin/base_site.html.py:7
+#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7
 msgid "Site administration"
 msgstr "Сайт адміністрації"
 
@@ -165,38 +174,46 @@ msgstr "Імпортувати книжку"
 msgid "Register on"
 msgstr "Реєстрація на"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-
 #: templates/catalogue/breadcrumbs.html:21
 #: templates/catalogue/main_page.html:13 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "Search"
 msgstr "Пошук"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_fragments.html:12
-#: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/catalogue/main_page.html:13
+#: templates/catalogue/book_list.html:12 templates/catalogue/main_page.html:14
+#: templates/catalogue/tagged_object_list.html:44 templates/info/base.html:10
 #: templates/lessons/document_detail.html:9
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "or"
 msgstr "або"
 
-#: templates/auth/login.html:9
-#: templates/catalogue/book_detail.html:12
+#: templates/auth/login.html:9 templates/catalogue/book_detail.html:12
 #: templates/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
-#: templates/lessons/document_list.html:51
+#: templates/lessons/document_list.html:53
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
 msgid "return to main page"
 msgstr "повернення на головну сторінку"
 
+#: templates/catalogue/audiobook_list.html:6
+#, fuzzy
+msgid "Listing of all audiobooks on WolneLektury.pl"
+msgstr "Алфавітний список творів на WolneLektury.pl"
+
+#: templates/catalogue/audiobook_list.html:8
+msgid "Listing of all audiobooks"
+msgstr ""
+
 #: templates/catalogue/book_detail.html:5
 msgid "on WolneLektury.pl"
 msgstr "на WolneLektury.pl"
@@ -209,10 +226,6 @@ msgstr "Твір на ліцензії"
 msgid "Based on"
 msgstr "На основі"
 
-#: templates/catalogue/book_detail.html:24
-#: templates/catalogue/tagged_object_list.html:27
-msgid "Hide description"
-msgstr "Сховати опис"
 #: templates/catalogue/book_detail.html:40
 msgid "Put a book"
 msgstr "Покласти книжку"
@@ -229,86 +242,59 @@ msgstr "Читати онлайн"
 msgid "Download PDF"
 msgstr "Завантажити PDF"
 
-#: templates/catalogue/book_detail.html:37
 #: templates/catalogue/book_detail.html:50
 msgid "Download EPUB"
 msgstr "Завантажити EPUB"
 
-#: templates/catalogue/book_detail.html:53
-msgid "Download ODT"
-msgstr "Завантажити ODT"
-
-#: templates/catalogue/book_detail.html:40
-#: templates/catalogue/book_detail.html:56
+#: templates/catalogue/book_detail.html:61
 msgid "Download TXT"
 msgstr "Завантажити TXT"
 
-#: templates/catalogue/book_detail.html:45
-msgid "Artist"
-msgstr "Артист"
-
-#: templates/catalogue/book_detail.html:63
-msgid "Director"
-msgstr "Режисер"
-
-#: templates/catalogue/book_detail.html:51
-msgid "Download MP3"
-msgstr "Завантажити MP3"
-
-#: templates/catalogue/book_detail.html:52
-msgid "Download Ogg Vorbis"
-msgstr "Завантажити Ogg Vorbis"
-
-msgid "Download DAISY"
-msgstr "Завантажити DAISY"
-
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:114
 msgid "Details"
 msgstr "Подробиці"
 
-
-#: templates/catalogue/book_detail.html:82
+#: templates/catalogue/book_detail.html:118
 msgid "Author"
 msgstr "Автор"
 
-#: templates/catalogue/book_detail.html:88
+#: templates/catalogue/book_detail.html:124
 msgid "Epoch"
 msgstr "Епоха"
 
-#: templates/catalogue/book_detail.html:94
+#: templates/catalogue/book_detail.html:130
 msgid "Kind"
 msgstr "Рід"
 
-#: templates/catalogue/book_detail.html:100
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:136
 msgid "Genre"
 msgstr "Жанр"
 
-#: templates/catalogue/book_detail.html:106
-
+#: templates/catalogue/book_detail.html:142
 msgid "Other resources"
 msgstr "Інші засоби"
 
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:144
 msgid "Book on project's wiki"
 msgstr "Книжка на вікі проекту"
 
-
-#: templates/catalogue/book_detail.html:109
-
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:146
 msgid "Source of the book"
 msgstr "Джерело книжки"
 
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:149
 msgid "Book description on Lektury.Gazeta.pl"
 msgstr "Опис книжки на Lektury.Gazeta.pl"
 
-#: templates/catalogue/book_detail.html:114
+#: templates/catalogue/book_detail.html:152
 msgid "Book description on Wikipedia"
 msgstr "Опис книжки на Вікіпедії"
 
-#: templates/catalogue/book_detail.html:119
+#: templates/catalogue/book_detail.html:155
+msgid "View XML source"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:158
 msgid "Work's themes "
 msgstr "Теми твору"
 
@@ -339,12 +325,6 @@ msgid "of the book "
 msgstr "книжки"
 
 #: templates/catalogue/book_list.html:7
-msgid "Alphabetical listing of works on WolneLektury.pl"
-msgstr "Алфавітний список творів на WolneLektury.pl"
-
-#: templates/catalogue/book_list.html:10
-msgid "Alphabetical listing of works"
-msgstr "Алфавітний список творів"
 msgid "Listing of all works on WolneLektury.pl"
 msgstr ""
 
@@ -352,24 +332,33 @@ msgstr ""
 msgid "Listing of all works"
 msgstr ""
 
+#: templates/catalogue/book_list.html:16
+#, fuzzy
+msgid "Table of Content"
+msgstr "Зміст"
+
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr ""
+
 #: templates/catalogue/book_sets.html:2
 msgid "Put a book on the shelf!"
 msgstr "Покласти книжку на полицю!"
 
-#: templates/catalogue/book_sets.html:4
+#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6
+#: templates/catalogue/fragment_sets.html:16
+msgid "Create new shelf"
+msgstr "Створити нову полицю"
+
+#: templates/catalogue/book_sets.html:10
 msgid "You do not have any shelves. You can create one below, if you want to."
-msgstr "В вас немає жодних полиць. Ви можете створити полицю нижче, якщо бажаєте."
+msgstr ""
+"В вас немає жодних полиць. Ви можете створити полицю нижче, якщо бажаєте."
 
-#: templates/catalogue/book_sets.html:9
-#: templates/catalogue/book_short.html:4
+#: templates/catalogue/book_sets.html:15 templates/catalogue/book_short.html:4
 msgid "Put on the shelf!"
 msgstr "Покласти на полицю!"
 
-#: templates/catalogue/book_sets.html:16
-#: templates/catalogue/fragment_sets.html:16
-msgid "Create new shelf"
-msgstr "Створити нову полицю"
-
 #: templates/catalogue/book_short.html:14
 msgid "Jump to"
 msgstr "Перейти до"
@@ -378,31 +367,28 @@ msgstr "Перейти до"
 msgid "Categories"
 msgstr "Категорії"
 
-#: templates/catalogue/book_stub_detail.html:17
-msgid "This work is in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Цей твір є частиною суспільного надбання і скоро буде опублікований на Wolne Lektury"
-
-#: templates/catalogue/book_stub_detail.html:20
-msgid "This work will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Цей твір стане частиною суспільного надбання і можна буде його публікувати без обмежень у"
-
-#: templates/catalogue/book_stub_detail.html:22
-msgid "Find out why Internet libraries can't publish this work."
-msgstr "Дізнатися, чому інтернет-бібліотеки не можуть опублікувати цього твору"
-
-#: templates/catalogue/book_stub_detail.html:24
-msgid "This work is copyrighted."
-msgstr "Цей твір охороняється авторстким правом"
-
 #: templates/catalogue/book_text.html:17
 msgid "Table of contents"
 msgstr "Зміст"
 
 #: templates/catalogue/book_text.html:18
-#: templates/catalogue/tagged_object_list.html:146
+#: templates/catalogue/tagged_object_list.html:130
 msgid "Themes"
 msgstr "Теми"
 
+#: templates/catalogue/book_text.html:19
+msgid "Edit. note"
+msgstr ""
+
+#: templates/catalogue/daisy_list.html:6
+#, fuzzy
+msgid "Listing of all DAISY files on WolneLektury.pl"
+msgstr "Алфавітний список творів на WolneLektury.pl"
+
+#: templates/catalogue/daisy_list.html:8
+msgid "Listing of all DAISY files"
+msgstr ""
+
 #: templates/catalogue/differentiate_tags.html:13
 msgid "The criteria are ambiguous. Please select one of the following options:"
 msgstr ""
@@ -412,16 +398,16 @@ msgid "Show full category"
 msgstr "Показати всю категорію"
 
 #: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:43
-#: templates/catalogue/main_page.html:48
-#: templates/catalogue/main_page.html:87
-#: templates/catalogue/main_page.html:270
-#: templates/catalogue/main_page.html:279
+#: templates/catalogue/main_page.html:45 templates/catalogue/main_page.html:70
+#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:114
+#: templates/catalogue/main_page.html:297
+#: templates/catalogue/main_page.html:306
 msgid "See more"
 msgstr "Більше"
 
 #: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:277
 msgid "Hide"
 msgstr "Сховати"
 
@@ -430,9 +416,10 @@ msgid "Shelves containing fragment"
 msgstr "Полиці, які містять фрагмент"
 
 #: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:55
 msgid "You do not own any shelves. You can create one below, if you want to."
-msgstr "В вас немає жодних полиць. В можете створити полицю нижче, якщо бажаєте."
+msgstr ""
+"В вас немає жодних полиць. В можете створити полицю нижче, якщо бажаєте."
 
 #: templates/catalogue/fragment_sets.html:9
 msgid "Save all shelves"
@@ -450,125 +437,198 @@ msgstr "Сховати фрагмент"
 msgid "See in a book"
 msgstr "Дивитись у книжці"
 
-#: templates/catalogue/main_page.html:13
-msgid "check list of books"
-msgstr "перевірити список книжок"
+#: templates/catalogue/main_page.html:14
+msgid "see"
+msgstr ""
 
-#: templates/catalogue/main_page.html:13
-msgid "in our repository"
-msgstr "в нашій базі"
+#: templates/catalogue/main_page.html:16
+#, fuzzy
+msgid "all books"
+msgstr "Покласти книжку"
 
 #: templates/catalogue/main_page.html:17
+msgid "audiobooks"
+msgstr ""
+
+#: templates/catalogue/main_page.html:18
+msgid "daisy"
+msgstr ""
+
+#: templates/catalogue/main_page.html:23
 msgid "Browse books by categories"
 msgstr "Переглядати книжки за категоріями"
 
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:26
+msgid "Books for every school level"
+msgstr ""
+
+#: templates/catalogue/main_page.html:28
+msgid "primary school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:29
+msgid "gymnasium"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "high school"
+msgstr ""
+
+#: templates/catalogue/main_page.html:35
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:37 templates/catalogue/main_page.html:45
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "на WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:38
+msgid ""
+"Place our widget - search engine for Wolne Lektury which gives access to "
+"free books and audiobooks - on your homepage! Just copy the HTML code below "
+"onto your page:"
+msgstr ""
+
+#: templates/catalogue/main_page.html:39
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:42
+msgid "Place this element just before closing body tag: &lt;/body&gt;"
+msgstr ""
+
+#: templates/catalogue/main_page.html:46
 #: templates/catalogue/user_shelves.html:2
 msgid "Your shelves with books"
 msgstr "Ваші полиці з книжками"
 
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:51
 msgid "delete"
 msgstr "видалити"
 
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:60
 #: templates/catalogue/user_shelves.html:15
 msgid "Create shelf"
 msgstr "Створити полицю"
 
-#: templates/catalogue/main_page.html:37
-msgid "Create your own book set. You can share it with friends by sending them link to your shelf."
-msgstr "Створити свій вибір книжок. Ви можете поділитися ним з друзями висилаючи їм посилання на вашу полицю."
+#: templates/catalogue/main_page.html:64
+msgid ""
+"Create your own book set. You can share it with friends by sending them link "
+"to your shelf."
+msgstr ""
+"Створити свій вибір книжок. Ви можете поділитися ним з друзями висилаючи їм "
+"посилання на вашу полицю."
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "You need to "
 msgstr "Вам треба"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "sign in"
 msgstr "увійти в акаунт"
 
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:65
 msgid "to manage your shelves."
 msgstr "щоб управляти своїми полицями"
 
-#: templates/catalogue/main_page.html:41
-#: templates/lessons/document_list.html:49
+#: templates/catalogue/main_page.html:68 templates/catalogue/main_page.html:70
+#: templates/lessons/document_list.html:51
 msgid "Hand-outs for teachers"
 msgstr "Матеріали для вчителів"
 
-#: templates/catalogue/main_page.html:42
-msgid "Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
+#: templates/catalogue/main_page.html:69
+msgid ""
+"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
 msgstr "Плани уроків та інші ідеї як користуватися Wolnelektury.pl в навчанні"
 
-#: templates/catalogue/main_page.html:47
-msgid "are professional recordings of literary texts from our repository, available on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
-msgstr "це професійні записи текстів літератури з нашої бази, доступні на вільній ліцензії у форматах MP3 та Ogg Vorbis, а також в системі DAISY."
-
-#: templates/catalogue/main_page.html:54
-
-#: templates/catalogue/tagged_object_list.html:128
+#: templates/catalogue/main_page.html:74
+msgid ""
+"are professional recordings of literary texts from our repository, available "
+"on free license in MP3 and Ogg Vorbis formats as well as in DAISY system."
+msgstr ""
+"це професійні записи текстів літератури з нашої бази, доступні на вільній "
+"ліцензії у форматах MP3 та Ogg Vorbis, а також в системі DAISY."
 
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:112
 msgid "Authors"
 msgstr "Автори"
 
-#: templates/catalogue/main_page.html:58
-#: templates/catalogue/tagged_object_list.html:132
-
+#: templates/catalogue/main_page.html:85
+#: templates/catalogue/tagged_object_list.html:116
 msgid "Kinds"
 msgstr "Роди"
 
-#: templates/catalogue/main_page.html:62
-#: templates/catalogue/tagged_object_list.html:136
-
+#: templates/catalogue/main_page.html:89
+#: templates/catalogue/tagged_object_list.html:120
 msgid "Genres"
 msgstr "Жанри"
 
-#: templates/catalogue/main_page.html:66
-#: templates/catalogue/tagged_object_list.html:140
+#: templates/catalogue/main_page.html:93
+#: templates/catalogue/tagged_object_list.html:124
 msgid "Epochs"
 msgstr "Епохи"
 
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:99
+#: templates/catalogue/main_page.html:114
 msgid "Themes and topics"
 msgstr "Теми та мотиви"
 
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:102
 msgid "Themes groups"
 msgstr "Групи мотивів"
 
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:287
 msgid "News"
 msgstr "Новості"
 
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:291
 msgid "See our blog"
 msgstr "Дивитись наш блог"
 
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:294
+#: templates/catalogue/main_page.html:297
 msgid "You can help us!"
 msgstr "Можете нам допомогти!"
 
-#: templates/catalogue/main_page.html:268
-msgid "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers."
-msgstr "Ми намагаємося якомога краще підготувати твори, які додаються до нашої бібліотеки. Це можливо тільки завдяки нашим волонтерам."
+#: templates/catalogue/main_page.html:295
+msgid ""
+"We try our best to elaborate works appended to our library. It is possible "
+"only due to support of our volunteers."
+msgstr ""
+"Ми намагаємося якомога краще підготувати твори, які додаються до нашої "
+"бібліотеки. Це можливо тільки завдяки нашим волонтерам."
 
-#: templates/catalogue/main_page.html:269
-msgid "We invite people who want to take part in developing Internet school library Wolne Lektury."
-msgstr "Запрошуємо всіх, хто хоче брати участь у творенні шкільної  інтернет-бібліотеки Wolne Lektury."
+#: templates/catalogue/main_page.html:296
+msgid ""
+"We invite people who want to take part in developing Internet school library "
+"Wolne Lektury."
+msgstr ""
+"Запрошуємо всіх, хто хоче брати участь у творенні шкільної  інтернет-"
+"бібліотеки Wolne Lektury."
 
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:300
+#: templates/catalogue/main_page.html:306
 msgid "About us"
 msgstr "Про нас"
 
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:302
 msgid ""
 "\n"
-"\t\t\tInternet library with school readings “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by Modern Poland Foundation. It started in 2007 and shares school readings, which are recommended by Ministry of National Education and are in public domain.\n"
+"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) is a project made by "
+"Modern Poland Foundation. It started in 2007 and shares school readings, "
+"which are recommended by Ministry of National Education and are in public "
+"domain.\n"
 "\t\t\t"
 msgstr ""
 "\n"
-"\t\t\tІнтернет-бібліотека шкільної літератури “Wolne Lektury” (<a href=\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) це проект реалізований Фондом Модерна Польща. Проект стартував у 2007 році та надає доступ до літератури, рекомендованої Міністерством національної освіти, яка є частиною суспільного надбання.\n"
+"\t\t\tІнтернет-бібліотека шкільної літератури “Wolne Lektury” (<a href="
+"\"http://wolnelektury.pl\">www.wolnelektury.pl</a>) це проект реалізований "
+"Фондом Модерна Польща. Проект стартував у 2007 році та надає доступ до "
+"літератури, рекомендованої Міністерством національної освіти, яка є частиною "
+"суспільного надбання.\n"
 "\t\t\t"
 
 #: templates/catalogue/search_multiple_hits.html:5
@@ -585,16 +645,18 @@ msgid "Search in WolneLektury.pl"
 msgstr "Пошук в WolneLektury.pl"
 
 #: templates/catalogue/search_no_hits.html:14
-#: templates/catalogue/tagged_object_list.html:102
+#: templates/catalogue/tagged_object_list.html:101
 msgid "Sorry! Search cirteria did not match any resources."
 msgstr "На жаль, критеріям пошуку не відповідає жоден результат."
 
 #: templates/catalogue/search_no_hits.html:16
 msgid ""
-"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n"
+"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."
 msgstr ""
-"В пошуковій системі можливий пошук за критеріями: автор, тема/мотив, епоха, рід та жанр.\n"
+"В пошуковій системі можливий пошук за критеріями: автор, тема/мотив, епоха, "
+"рід та жанр.\n"
 "\t\tНаразі неможливий пошук в цілому тексті."
 
 #: templates/catalogue/search_too_short.html:14
@@ -610,8 +672,12 @@ msgid "Your shelf is empty"
 msgstr "Ваша полиця порожня"
 
 #: templates/catalogue/tagged_object_list.html:16
-msgid "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'."
-msgstr "Щоб покласти книжку на полицю, увійдіть на сторінку книжки та натисніть \"Покласти на полицю\"."
+msgid ""
+"You can put a book on a shelf by entering page of the reading and clicking "
+"'Put on the shelf'."
+msgstr ""
+"Щоб покласти книжку на полицю, увійдіть на сторінку книжки та натисніть "
+"\"Покласти на полицю\"."
 
 #: templates/catalogue/tagged_object_list.html:32
 msgid "Download all books from this shelf"
@@ -622,6 +688,7 @@ msgid "Choose books' formats which you want to download:"
 msgstr "Вибрати формат, в якому хочете завантажити книжку:"
 
 #: templates/catalogue/tagged_object_list.html:37
+#: templates/catalogue/tagged_object_list.html:38
 #: templates/catalogue/tagged_object_list.html:39
 #: templates/catalogue/tagged_object_list.html:40
 msgid "for reading"
@@ -631,6 +698,10 @@ msgstr "для читання"
 msgid "and printing using"
 msgstr "та друку з використанням"
 
+#: templates/catalogue/tagged_object_list.html:38
+msgid "on mobile devices"
+msgstr ""
+
 #: templates/catalogue/tagged_object_list.html:39
 msgid "and editing using"
 msgstr "та едиції з використанням"
@@ -656,72 +727,82 @@ msgstr "відкритий формат"
 msgid "Xiph.org Foundation"
 msgstr "Фонд Xiph.org"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 #: templates/lessons/ajax_document_detail.html:3
 #: templates/lessons/document_detail.html:13
 msgid "Download"
 msgstr "Завантажити"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "Updating list of books' formats on the shelf"
 msgstr "Оновити список форматів книжок, які на полиці"
 
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
 msgid "cancel"
 msgstr "відхилити"
 
-#: templates/catalogue/tagged_object_list.html:48
+#: templates/catalogue/tagged_object_list.html:49
 msgid "Share this shelf"
 msgstr "Поділитися цією полицею"
 
-#: templates/catalogue/tagged_object_list.html:48
-msgid "Copy this link and share it with other people to let them see your shelf."
+#: templates/catalogue/tagged_object_list.html:51
+msgid ""
+"Copy this link and share it with other people to let them see your shelf."
 msgstr "Копіювати це посилання, щоб вислати іншим, та поділитися полицею."
 
-#: templates/catalogue/tagged_object_list.html:57
+#: templates/catalogue/tagged_object_list.html:61
+#: templates/pdcounter/author_detail.html:25
 msgid "Read work's study of this author on Lektury.Gazeta.pl"
 msgstr "Прочитати обговорення цього автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:60
-msgid "Read study of epoch"
-msgstr "Прочитати обговорення епохи"
+#: templates/catalogue/tagged_object_list.html:63
+#, fuzzy, python-format
+msgid "Read study of epoch %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Прочитати обговорення цього автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:60
-msgid "on Lektury.Gazeta.pl"
-msgstr "на Lektury.Gazeta.pl"
+#: templates/catalogue/tagged_object_list.html:65
+#, fuzzy, python-format
+msgid "Read study of kind %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Прочитати обговорення цього автора на Lektury.Gazeta.pl"
 
 #: templates/catalogue/tagged_object_list.html:67
-msgid "Read article about this author on Wikipedia"
-msgstr "Прочитати статтю про цього автора на Вікіпедії"
+#, fuzzy, python-format
+msgid "Read study of genre %(last_tag)s on Lektury.Gazeta.pl"
+msgstr "Прочитати обговорення цього автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:70
-msgid "Read article about epoch"
-msgstr "Прочитати статтю про цю епоху"
+#: templates/catalogue/tagged_object_list.html:69
+#, fuzzy
+msgid "Read related study on Lektury.Gazeta.pl"
+msgstr "Прочитати обговорення цього автора на Lektury.Gazeta.pl"
 
-#: templates/catalogue/tagged_object_list.html:70
-msgid "on Wikipedia"
-msgstr "на Вікіпедії"
+#: templates/catalogue/tagged_object_list.html:77
+#: templates/pdcounter/author_detail.html:30
+msgid "Read article about this author on Wikipedia"
+msgstr "Прочитати статтю про цього автора на Вікіпедії"
 
-#: templates/catalogue/tagged_object_list.html:80
+#: templates/catalogue/tagged_object_list.html:79
+#, fuzzy, python-format
+msgid "Read article about epoch %(last_tag)s on Wikipedia"
+msgstr "Прочитати статтю про цього автора на Вікіпедії"
 
-msgid "Delete"
-msgstr "Видалити"
+#: templates/catalogue/tagged_object_list.html:81
+#, fuzzy, python-format
+msgid "Read article about kind %(last_tag)s on Wikipedia"
+msgstr "Прочитати статтю про цього автора на Вікіпедії"
 
-#: templates/catalogue/tagged_object_list.html:102
-msgid "This author's works are copyrighted."
-msgstr "Твори цього автора охороняються авторським правом"
+#: templates/catalogue/tagged_object_list.html:83
+#, fuzzy, python-format
+msgid "Read article about genre %(last_tag)s on Wikipedia"
+msgstr "Прочитати статтю про цього автора на Вікіпедії"
 
-#: templates/catalogue/tagged_object_list.html:91
-msgid "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon."
-msgstr "Твори цього автора є частиною суспільного надбання і скоро будуть опубліковані на  Wolne Lektury."
+#: templates/catalogue/tagged_object_list.html:85
+#, fuzzy
+msgid "Read related article on Wikipedia"
+msgstr "Прочитати статтю про цього автора на Вікіпедії"
 
 #: templates/catalogue/tagged_object_list.html:95
-msgid "This author's works will become part of public domain and will be allowed to be published without restrictions in"
-msgstr "Твори цього автора стануть частиною суспільного надбання і можна буде їх публікувати без обмежень в"
-
-#: templates/catalogue/tagged_object_list.html:111
-msgid "Find out why Internet libraries can't publish this author's works."
-msgstr "Дізнатися чому інтернет-бібліотеки не можуть опубілкувати творів цього автора."
+msgid "Delete"
+msgstr "Видалити"
 
 #: templates/catalogue/user_shelves.html:6
 msgid "remove"
@@ -737,20 +818,20 @@ msgstr "повернення на головну"
 
 #: templates/info/join_us.html:2
 msgid ""
-"We have over 1000 works published in Wolne Lektury!\n"
+"We have over 1200 works published in Wolne Lektury!\n"
 "Help us expand the library and set new readings free by\n"
-"making a donation or transferring 1% of your income tax."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">making a donation\n"
+"or transferring 1% of your income tax</a>."
 msgstr ""
-"На сайті Wolne Lektury опубліковано більше 1000 творів!\n"
+"На сайті Wolne Lektury опубліковано більше 1200 творів!\n"
 "Допоможіть нам розвивати бібліотеку і надавати доступ до нових творів - \n"
-"передайте нам внесок або 1 відсоток вашого податку на прибуток."
+"<a href=\"http://nowoczesnapolska.org.pl/wesprzyj_nas/\">передайте нам внесок або 1 відсоток вашого податку на прибуток</a>."
 
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:6 templates/info/join_us.html.py:11
 msgid "More..."
 msgstr "Більше..."
 
-#: templates/info/join_us.html:7
+#: templates/info/join_us.html:8
 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"
@@ -783,3 +864,108 @@ msgstr "попередня"
 msgid "next"
 msgstr "наступна"
 
+#: templates/pdcounter/author_detail.html:35
+msgid "This author's works are copyrighted."
+msgstr "Твори цього автора охороняються авторським правом"
+
+#: templates/pdcounter/author_detail.html:36
+#: templates/pdcounter/author_detail.html:44
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this author's works."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Дізнатися</"
+"a> чому інтернет-бібліотеки не можуть опубілкувати творів цього автора."
+
+#: templates/pdcounter/author_detail.html:39
+msgid ""
+"This author's works are in public domain and will be published on Internet "
+"school library of Wolne Lektury soon."
+msgstr ""
+"Твори цього автора є частиною суспільного надбання і скоро будуть "
+"опубліковані на  Wolne Lektury."
+
+#: templates/pdcounter/author_detail.html:42
+msgid ""
+"This author's works will become part of public domain and will be allowed to "
+"be published without restrictions in"
+msgstr ""
+"Твори цього автора стануть частиною суспільного надбання і можна буде їх "
+"публікувати без обмежень в"
+
+#: templates/pdcounter/book_stub_detail.html:16
+msgid ""
+"This work is in public domain and will be published on Internet school "
+"library of Wolne Lektury soon."
+msgstr ""
+"Цей твір є частиною суспільного надбання і скоро буде опублікований на Wolne "
+"Lektury"
+
+#: templates/pdcounter/book_stub_detail.html:19
+msgid ""
+"This work will become part of public domain and will be allowed to be "
+"published without restrictions in"
+msgstr ""
+"Цей твір стане частиною суспільного надбання і можна буде його публікувати "
+"без обмежень у"
+
+#: templates/pdcounter/book_stub_detail.html:21
+#: templates/pdcounter/book_stub_detail.html:24
+msgid ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</"
+"a> why Internet libraries can't publish this work."
+msgstr ""
+"<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Дізнатися</"
+"a>, чому інтернет-бібліотеки не можуть опублікувати цього твору"
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "Цей твір охороняється авторстким правом"
+
+#~ msgid "Choose your interface language: "
+#~ msgstr "Вибрати мову інтерфейсу"
+
+#~ msgid "Choose language"
+#~ msgstr "Вибрати мову"
+
+#~ msgid "Hide description"
+#~ msgstr "Сховати опис"
+
+#~ msgid "Download ODT"
+#~ msgstr "Завантажити ODT"
+
+#~ msgid "Artist"
+#~ msgstr "Артист"
+
+#~ msgid "Director"
+#~ msgstr "Режисер"
+
+#~ msgid "Download MP3"
+#~ msgstr "Завантажити MP3"
+
+#~ msgid "Download Ogg Vorbis"
+#~ msgstr "Завантажити Ogg Vorbis"
+
+#~ msgid "Download DAISY"
+#~ msgstr "Завантажити DAISY"
+
+#~ msgid "Alphabetical listing of works"
+#~ msgstr "Алфавітний список творів"
+
+#~ msgid "check list of books"
+#~ msgstr "перевірити список книжок"
+
+#~ msgid "in our repository"
+#~ msgstr "в нашій базі"
+
+#~ msgid "Read study of epoch"
+#~ msgstr "Прочитати обговорення епохи"
+
+#~ msgid "on Lektury.Gazeta.pl"
+#~ msgstr "на Lektury.Gazeta.pl"
+
+#~ msgid "Read article about epoch"
+#~ msgstr "Прочитати статтю про цю епоху"
+
+#~ msgid "on Wikipedia"
+#~ msgstr "на Вікіпедії"
index be86f16..186f4b6 100644 (file)
@@ -30,7 +30,7 @@ DATABASES = {
 # although not all choices may be available on all operating systems.
 # If running in a Windows environment this must be set to the same as your
 # system time zone.
-TIME_ZONE = 'Europe/Warsaw Poland'
+TIME_ZONE = 'Europe/Warsaw'
 
 # Language code for this installation. All choices can be found here:
 # http://www.i18nguy.com/unicode/language-identifiers.html
@@ -138,6 +138,7 @@ INSTALLED_APPS = [
     'suggest',
     'lesmianator',
     'opds',
+    'pdcounter',
 ]
 
 CACHE_BACKEND = 'locmem:///?max_entries=3000'
diff --git a/wolnelektury/templates/catalogue/book_stub_detail.html b/wolnelektury/templates/catalogue/book_stub_detail.html
deleted file mode 100644 (file)
index e35d1d8..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-{% load catalogue_tags pagination_tags %}
-
-{% block title %}{{ book.title }} w WolneLektury.pl{% endblock %}
-
-{% block bodyid %}book-stub-detail{% endblock %}
-
-{% block body %}
-    <h1>{{ book.title }}, {{ book.author }}</h1>
-    <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
-        <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
-    </form>
-
-    <div id="books-list">
-    {% if book.in_pd %}
-               {% trans "This work is in public domain and will be published on Internet school library of Wolne Lektury soon." %}
-       {% else %}
-           {% if book.pd %}
-                       {% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}
-                   {% include "catalogue/pd_counter.html" %}
-                       {% trans "Find out why Internet libraries can't publish this work." %}
-               {% else %}
-                   {% trans "This work is copyrighted." %}
-               {% endif %}
-       {% endif %}
-    {% include "info/join_us.html" %}
-    </div>
-
-    <div id="set-window">
-        <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
-        <div class="target">
-            <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
-        </div>
-    </div>
-{% endblock %}
\ No newline at end of file
diff --git a/wolnelektury/templates/catalogue/pd_counter.html b/wolnelektury/templates/catalogue/pd_counter.html
deleted file mode 100644 (file)
index 79c0ada..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-<div id='countdown'></div>
-<script>
-$.countdown.setDefaults($.countdown.regional['{{ LANGUAGE_CODE }}']);
-d = new Date({{ pd_counter }}, 1, 1);
-$('#countdown').countdown({until: d, format: 'ydHMS', serverSync: serverTime});
-</script>
index 2a1a64f..59ba5e5 100644 (file)
             {% endfor %}
             </ol>
         {% else %}
-                       {% if only_author %}
-                   {% if last_tag.alive %}
-                                       {% trans "This author's works are copyrighted." %}
-                               {% else %}{% comment %} Is dead {% endcomment %}
-                   {% if last_tag.in_pd %}
-                                               <p>{% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
-                       {% else %}
-                                               {% comment %} Is dead, but not yet in public domain {% endcomment %}
-                       <div>
-                               <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in" %}</p>
-                                                       {% include "catalogue/pd_counter.html" %}
-                            <p>{% trans "Find out why Internet libraries can't publish this author's works." %}</p>
-                                               </div>
-                       {% endif %}
-                {% endif %}
-                       {% else %}
-                           {% trans "Sorry! Search cirteria did not match any resources." %}
-                       {% endif %}
+            {% trans "Sorry! Search cirteria did not match any resources." %}
             {% include "info/join_us.html" %}
         {% endif %}
         {% endwith %}
index fd4ea7d..a837d51 100644 (file)
@@ -1,7 +1,8 @@
 {% load i18n %}
-<p>{% blocktrans %}We have over 1000 works published in Wolne Lektury!
+<p>{% blocktrans %}We have over 1200 works published in Wolne Lektury!
 Help us expand the library and set new readings free by
-making a donation or transferring 1% of your income tax.{% endblocktrans %}
+<a href="http://nowoczesnapolska.org.pl/wesprzyj_nas/">making a donation
+or transferring 1% of your income tax</a>.{% endblocktrans %}
 {% comment %}<a href='{}'>{% trans "More..." %}</a>{% endcomment %}</p>
 
 <p>{% blocktrans %}Become an editor of Wolne Lektury! Find out if
diff --git a/wolnelektury/templates/pdcounter/author_detail.html b/wolnelektury/templates/pdcounter/author_detail.html
new file mode 100644 (file)
index 0000000..e126835
--- /dev/null
@@ -0,0 +1,57 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block title %}{{ author.name }} w WolneLektury.pl{% endblock %}
+
+{% block bodyid %}author-detail{% endblock %}
+
+{% block body %}
+    <h1>{{ author.name }}</h1>
+    <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
+        <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
+    </form>
+
+    <div id="books-list">
+        {% if author.has_description %}
+            <div id="description">
+                <div id='description-long'>{{ author.description|safe }}</div>
+                <div id='description-short'>{{ author.description|safe|truncatewords_html:30 }}</div>
+            </div>
+            <div class="clearboth"></div>
+            <div id="toggle-description"><p></p></div>
+        {% endif %}
+        {% if author.gazeta_link %}
+        <p><a href="{{ author.gazeta_link }}">
+            {% trans "Read work's study of this author on Lektury.Gazeta.pl" %}
+        </a></p>
+        {% endif %}
+        {% if author.wiki_link %}
+        <p><a href="{{ author.wiki_link }}">
+            {% trans "Read article about this author on Wikipedia" %}
+        </a></p>
+        {% endif %}
+
+        {% if author.alive %}
+            <p>{% trans "This author's works are copyrighted." %}
+            {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this author's works." %}</p>
+        {% else %}
+            {% if author.in_pd %}
+                <p>{% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
+            {% else %}
+                <div>
+                    <p>{% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in" %}</p>
+                    {% include "pdcounter/pd_counter.html" %}
+                    <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this author's works." %}</p>
+                </div>
+            {% endif %}
+        {% endif %}
+        {% include "info/join_us.html" %}
+    </div>
+
+    <div id="set-window">
+        <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
+        <div class="target">
+            <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
+        </div>
+    </div>
+{% endblock %}
\ No newline at end of file
diff --git a/wolnelektury/templates/pdcounter/book_stub_detail.html b/wolnelektury/templates/pdcounter/book_stub_detail.html
new file mode 100644 (file)
index 0000000..2537087
--- /dev/null
@@ -0,0 +1,36 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block title %}{{ book.title }} w WolneLektury.pl{% endblock %}
+
+{% block bodyid %}book-stub-detail{% endblock %}
+
+{% block body %}
+    <h1>{{ book.author }}, {{ book.title }}</h1>
+    <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
+        <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
+    </form>
+
+    <div id="books-list">
+    {% if book.in_pd %}
+               <p>{% trans "This work is in public domain and will be published on Internet school library of Wolne Lektury soon." %}</p>
+       {% else %}
+           {% if book.pd %}
+                       <p>{% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}</p>
+                   {% include "pdcounter/pd_counter.html" %}
+                       <p>{% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
+               {% else %}
+                   <p>{% trans "This work is copyrighted." %}
+                   {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}</p>
+               {% endif %}
+       {% endif %}
+    {% include "info/join_us.html" %}
+    </div>
+
+    <div id="set-window">
+        <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
+        <div class="target">
+            <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
+        </div>
+    </div>
+{% endblock %}
\ No newline at end of file
diff --git a/wolnelektury/templates/pdcounter/pd_counter.html b/wolnelektury/templates/pdcounter/pd_counter.html
new file mode 100644 (file)
index 0000000..fd157ad
--- /dev/null
@@ -0,0 +1,12 @@
+<div id='countdown'></div>
+<script>
+{% if LANGUAGE_CODE != 'en' %}
+    $.countdown.setDefaults($.countdown.regional['{{ LANGUAGE_CODE }}']);
+{% else %}
+    $.countdown.setDefaults($.countdown.regional['']);
+{% endif %}
+d = new Date({{ pd_counter }}, 0, 1);
+function re() {location.reload()};
+$('#countdown').countdown({until: d, format: 'ydHMS', serverSync: serverTime,
+onExpiry: re, alwaysExpire: true});
+</script>