from django.contrib import admin
from newtagging.admin import TaggableModelAdmin
-from catalogue.models import Tag, Book, Fragment, BookStub
+from catalogue.models import Tag, Book, Fragment
class TagAdmin(admin.ModelAdmin):
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',)}
-
-
-admin.site.register(BookStub, BookStubAdmin)
admin.site.register(Tag, TagAdmin)
admin.site.register(Book, BookAdmin)
admin.site.register(Fragment, FragmentAdmin)
--- /dev/null
+# 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']
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 newtagging.models import TagBase, tags_updated
from newtagging import managers
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)
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 """
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)
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
staff_required = user_passes_test(lambda user: user.is_staff)
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)
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:
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(
'categories': categories,
'only_shelf': only_shelf,
'only_author': only_author,
- 'pd_counter': pd_counter,
'only_my_shelf': only_my_shelf,
'formats_form': forms.DownloadFormatsForm(),
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')))
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():
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)))
else:
tags = tags.filter(~Q(category='book') & ~Q(category='set'))
- return list(books) + list(tags) + list(book_stubs)
+ return list(books) + list(tags) + 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()
- 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])}
)
+ 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
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,
--- /dev/null
+# -*- 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)
--- /dev/null
+# 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"
+
--- /dev/null
+# 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"
+
--- /dev/null
+# 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"
+
--- /dev/null
+# 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"
+
--- /dev/null
+# 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"
+
--- /dev/null
+# 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"
+
--- /dev/null
+# 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 "анонсы книги"
+
--- /dev/null
+# 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 "заготовки книжок"
+
--- /dev/null
+# 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']
--- /dev/null
+# -*- 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
+
--- /dev/null
+# 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 ""
--- /dev/null
+# -*- 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'),
+)
+
--- /dev/null
+# -*- 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))
-Subproject commit cf3ac93f45c18f1e385c1f1bbc02bfc3dfa7bdf7
+Subproject commit 5329a22cd6643da657dd24546b382ada9e048b68
# 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 16:33+0000\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"
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"
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"
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..."
+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
msgid "Welcome"
#: templates/base.html:69
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
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/catalogue/book_detail.html:149
#: 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/catalogue/book_detail.html:151
#: 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"
#: 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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr "Zur Startseite wechseln"
msgid "Download Ogg Vorbis"
msgstr "Ogg Vorbis-Datei herunterladen"
+#: templates/catalogue/book_detail.html:69
msgid "Download DAISY"
-msgstr "DAISY-Datei herunterladen"
+msgstr "DAISY10-Datei herunterladen"
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "Details"
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Autor"
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "Epoche"
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "Art"
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "Gattung"
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "Andere Ressourcen"
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr "Schullektüre auf WikiProjekt"
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr "Buchquelle"
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:131
msgid "Book description on Lektury.Gazeta.pl"
msgstr "Buchbeschreibung unter Lektury.Gazeta.pl"
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:134
msgid "Book description on Wikipedia"
msgstr "Buchbeschreibung auf Wikipedia"
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
msgstr "Werkmotive"
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!"
#: 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!"
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"
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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
msgid "See more"
msgstr "mehr"
#: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:265
msgid "Hide"
msgstr "weniger"
msgstr "Regale mit Buchauszügen"
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
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"
msgid "Browse books by categories"
msgstr "Bücher nach ausgewählten Kategorien ansehen"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "auf WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: 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:39
msgid "delete"
msgstr "löschen"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: 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:52
+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:53
msgid "You need to "
msgstr "Um deine Bücherregale zu verwalten "
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "musst du angemeldet sein"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "Bücherregale verwalten"
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
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:57
+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:62
+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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Epochen"
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Motive und Themen"
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Motivketten"
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "News"
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Siehe unseren Blog"
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
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:283
+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:284
+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:288
msgid "About us"
msgstr "Über das Projekt"
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
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
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
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"
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"
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"
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"
#: 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."
+msgstr ""
+"Auf unserer Hompage Wolne Lektury wurden bereits etwa 1200 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."
#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
msgid "More..."
"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
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."
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Werkverzeichnis unter WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks"
+#~ msgstr "Werkverzeichnis"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Werkverzeichnis unter WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files"
+#~ msgstr "Werkverzeichnis"
+
+#, fuzzy
+#~ msgid "all books"
+#~ msgstr "Buch ablegen"
+
#~ msgid "Polish"
#~ msgstr "Polnisch"
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 16:33+0000\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"
msgstr ""
#: templates/base.html:85 templates/base.html.py:106 templates/base.html:112
-#: templates/catalogue/book_detail.html:146
+#: templates/catalogue/book_detail.html:149
#: 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/catalogue/book_detail.html:151
#: 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/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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr ""
msgid "Download Ogg Vorbis"
msgstr ""
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:69
+msgid "Download DAISY"
+msgstr ""
+
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr ""
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr ""
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr ""
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr ""
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr ""
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr ""
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr ""
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr ""
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:131
msgid "Book description on Lektury.Gazeta.pl"
msgstr ""
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:134
msgid "Book description on Wikipedia"
msgstr ""
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
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 ""
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"
-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 ""
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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
msgid "See more"
msgstr ""
#: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:265
msgid "Hide"
msgstr ""
msgstr ""
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
msgid "You do not own any shelves. You can create one below, if you want to."
msgstr ""
msgid "Browse books by categories"
msgstr ""
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+msgid "Wolne Lektury Widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: templates/catalogue/user_shelves.html:2
msgid "Your shelves with books"
msgstr ""
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:39
msgid "delete"
msgstr ""
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: templates/catalogue/user_shelves.html:15
msgid "Create shelf"
msgstr ""
-#: templates/catalogue/main_page.html:37
+#: templates/catalogue/main_page.html:52
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:53
msgid "You need to "
msgstr ""
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr ""
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr ""
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
msgid "Hand-outs for teachers"
msgstr ""
-#: templates/catalogue/main_page.html:42
+#: templates/catalogue/main_page.html:57
msgid ""
"Lessons' prospects and other ideas for using Wolnelektury.pl for teaching."
msgstr ""
-#: templates/catalogue/main_page.html:47
+#: templates/catalogue/main_page.html:62
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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr ""
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr ""
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr ""
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr ""
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr ""
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
msgid "You can help us!"
msgstr ""
-#: templates/catalogue/main_page.html:268
+#: templates/catalogue/main_page.html:283
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:284
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:288
msgid "About us"
msgstr ""
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
msgid ""
"\n"
"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
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 ""
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"
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 ""
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 ""
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."
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 ""
# 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 16:33+0000\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"
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"
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"
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..."
+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
msgid "Welcome"
#: templates/base.html:69
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
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/catalogue/book_detail.html:149
#: 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/catalogue/book_detail.html:151
#: 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"
#: 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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr "volver a la página principal"
msgid "Download Ogg Vorbis"
msgstr "Descargar Ogg Vorbis"
+#: templates/catalogue/book_detail.html:69
msgid "Download DAISY"
msgstr "Descargar DAISY"
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "Detalles"
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Autor"
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "Época"
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "Género"
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "Subgénero"
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "Otros recursos"
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr "Libro en wiki del proyecto"
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr "Fuente del libro"
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:131
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:134
msgid "Book description on Wikipedia"
msgstr "Descripción del libro en Wikipedia"
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
msgstr "Temas de la obra"
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!"
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"
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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
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:265
msgid "Hide"
msgstr "Esconder"
msgstr "Estentes que contienen este fragmento"
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
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."
msgid "Browse books by categories"
msgstr "Mirar los libros según categoría"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "en WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: 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:39
msgid "delete"
msgstr "borrar"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: 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:52
+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:53
msgid "You need to "
msgstr "Tienes que"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "iniciar la sesión"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "para organizar tus estantes."
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
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:57
+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:62
+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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Épocas"
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Temas y motivos"
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Grupos de temas"
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "Noticias"
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Ver nuestro blog"
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
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:283
+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:284
+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:288
msgid "About us"
msgstr "Sobre nosotros"
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
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
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
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"
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"
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"
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"
#: 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 ""
-"¡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."
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."
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Lista de las obras en WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks"
+#~ msgstr "Lista de las obras"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Lista de las obras en WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files"
+#~ msgstr "Lista de las obras"
+
+#, fuzzy
+#~ msgid "all books"
+#~ msgstr "¡Poner un libro"
+
#~ msgid "Polish"
#~ msgstr "polaco"
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 16:33+0000\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..."
+#: templates/base.html:19
+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
+#: templates/base.html:32
msgid "Welcome"
msgstr "Bienvenue"
-#: templates/base.html:34
+#: templates/base.html:33
msgid "Your shelves"
msgstr "Vos étagères"
-#: templates/base.html:36
+#: templates/base.html:35
msgid "Administration"
msgstr "Administration"
+#: templates/base.html:37 templates/base.html.py:41
+msgid "Report a bug"
+msgstr ""
+
#: templates/base.html:38
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: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/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: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
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:69
+#, 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:76
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:85 templates/base.html.py:106 templates/base.html:112
+#: templates/catalogue/book_detail.html:149
#: 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:108 templates/base.html.py:114
+#: templates/catalogue/book_detail.html:151
#: 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"
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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr "retour à l'accueil"
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
+#: templates/catalogue/book_detail.html:50
+#, fuzzy
+msgid "Download EPUB"
+msgstr "Télécharger un fichier PDF"
+
+#: templates/catalogue/book_detail.html:53
msgid "Download ODT"
msgstr "Télécharger un fichier ODT"
-#: templates/catalogue/book_detail.html:40
+#: templates/catalogue/book_detail.html:56
msgid "Download TXT"
msgstr "Télécharger un fichier TXT"
-#: templates/catalogue/book_detail.html:45
+#: templates/catalogue/book_detail.html:61
msgid "Artist"
msgstr "Artiste"
-#: templates/catalogue/book_detail.html:47
+#: templates/catalogue/book_detail.html:63
msgid "Director"
msgstr "Metteur en scène"
-#: templates/catalogue/book_detail.html:51
+#: templates/catalogue/book_detail.html:67
msgid "Download MP3"
msgstr "Télécharger un fichier MP3"
-#: templates/catalogue/book_detail.html:52
+#: templates/catalogue/book_detail.html:68
msgid "Download Ogg Vorbis"
msgstr "Télécharger un fichier Ogg Vorbis"
+#: templates/catalogue/book_detail.html:69
msgid "Download DAISY"
msgstr "Télécharger un fichier DAISY"
-#: templates/catalogue/book_detail.html:79
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "Détails"
-#: templates/catalogue/book_detail.html:82
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Auteur"
-#: templates/catalogue/book_detail.html:88
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "Epoque"
-#: templates/catalogue/book_detail.html:94
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "Type"
-#: templates/catalogue/book_detail.html:100
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "Genre"
-#: templates/catalogue/book_detail.html:106
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "Autres ressources"
-#: templates/catalogue/book_detail.html:108
+#: templates/catalogue/book_detail.html:126
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:128
msgid "Source of the book"
msgstr "Source du livre"
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:131
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:134
msgid "Book description on Wikipedia"
msgstr "Description du livre sur Wikipédia"
-#: templates/catalogue/book_detail.html:119
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
msgstr "Les thèmes de l'oeuvre"
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 à"
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/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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
msgid "See more"
msgstr "Voir plus"
#: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:265
msgid "Hide"
msgstr "Cacher"
msgstr "Etagères qui contiennent l'extrait"
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
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"
msgid "Browse books by categories"
msgstr "Regarder les livres selon catégories"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "sur WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: 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:39
msgid "delete"
msgstr "supprimer"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: 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:52
+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:53
msgid "You need to "
msgstr "Vous devez "
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "vous connecter"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "pour gérer vos étagères."
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
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:57
+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:62
+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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Epoques"
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Thèmes et sujets"
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Groupes des thèmes"
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "Actualités"
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Voir notre blog"
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
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:283
+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:284
+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:288
msgid "About us"
msgstr "Qui sommes-nous?"
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
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
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"
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"
#: 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"
#: 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 ""
-"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"
+"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 en\n"
"faisant une donation ou en nous transmettant 1% de votre impôt sur le revenu."
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
msgid "More..."
msgstr "Plus..."
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"
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Liste alphabétique des oeuvres sur WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Liste alphabétique des oeuvres sur WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "all books"
+#~ msgstr "Mettre le livre"
+
+#~ 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 "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"
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 16:33+0000\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..."
+#: templates/base.html:19
+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
+#: templates/base.html:32
msgid "Welcome"
msgstr "Sveikiname"
-#: templates/base.html:34
+#: templates/base.html:33
msgid "Your shelves"
msgstr "Tavo lentynos"
-#: templates/base.html:36
+#: templates/base.html:35
msgid "Administration"
msgstr "Administracija "
+#: templates/base.html:37 templates/base.html.py:41
+msgid "Report a bug"
+msgstr ""
+
#: templates/base.html:38
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: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/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: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
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:69
+#, 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:76
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:85 templates/base.html.py:106 templates/base.html:112
+#: templates/catalogue/book_detail.html:149
#: 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:108 templates/base.html.py:114
+#: templates/catalogue/book_detail.html:151
#: 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"
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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr "gryžk į pagrindinį puslapį"
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
+#: templates/catalogue/book_detail.html:53
msgid "Download ODT"
msgstr "atsisiųsk ODT failą"
-#: templates/catalogue/book_detail.html:40
+#: templates/catalogue/book_detail.html:56
msgid "Download TXT"
msgstr "atsisiųsk TXT failą"
-#: templates/catalogue/book_detail.html:45
+#: templates/catalogue/book_detail.html:61
msgid "Artist"
msgstr "artistas"
-#: templates/catalogue/book_detail.html:47
+#: templates/catalogue/book_detail.html:63
msgid "Director"
msgstr "vadovas"
-#: templates/catalogue/book_detail.html:51
+#: templates/catalogue/book_detail.html:67
msgid "Download MP3"
msgstr "atsisiųsk MP3 failą"
-#: templates/catalogue/book_detail.html:52
+#: templates/catalogue/book_detail.html:68
msgid "Download Ogg Vorbis"
msgstr "atsisiųsk Ogg Vorbis failą"
+#: templates/catalogue/book_detail.html:69
msgid "Download DAISY"
msgstr "atsisiųsk DAISY failą"
-#: templates/catalogue/book_detail.html:79
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "detalės "
-#: templates/catalogue/book_detail.html:82
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Autorius"
-#: templates/catalogue/book_detail.html:88
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "Gadynė"
-#: templates/catalogue/book_detail.html:94
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "Rūšis "
-#: templates/catalogue/book_detail.html:100
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "Padermė "
-#: templates/catalogue/book_detail.html:106
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "Kitose vietose"
-#: templates/catalogue/book_detail.html:108
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr "Sukurk straipsnį apie knygą vikiprojekte"
-#: templates/catalogue/book_detail.html:109
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr "Literaturos šaltinis"
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:131
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:134
msgid "Book description on Wikipedia"
msgstr "Literaturos aprašymas Vikipedijoje"
-#: templates/catalogue/book_detail.html:119
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
msgstr "Kūrinio motyvai"
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"
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/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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
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:265
msgid "Hide"
msgstr "Suvyniok"
msgstr "Lentynos turinčios fragmentus "
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
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"
msgid "Browse books by categories"
msgstr "Peržiurinek literaturą pagal išrinktą kategoriją"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "LaisvojiLiteratura.lt"
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: 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:39
msgid "delete"
msgstr "pašalink"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: 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:52
+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:53
msgid "You need to "
msgstr "Gali"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "Prisijungti "
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "Kad valdti savo lentynom."
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
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:57
+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:62
+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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Gadynės"
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Motyvai ir temos"
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Motyvų grupė"
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "žinios"
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Aplankyk mūsų blogą"
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
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:283
+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:284
+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:288
msgid "About us"
msgstr "Apie projektą"
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
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
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."
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"
#: 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"
#: 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"
+msgstr ""
+"Tinklapyje Laisvoji Literatura rasi virš 1200 kūrinių! Padėk mums vystytis "
+"ir plėsti literaturą paskirk 1% pajamų mokesčio bibliotekai"
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
msgid "More..."
msgstr "Daugiau..."
"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
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ę."
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Kūriniu sąrašas LaisvojiLiteratura.lt"
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks"
+#~ msgstr "Kūriniu sąrašas"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Kūriniu sąrašas LaisvojiLiteratura.lt"
+
+#, fuzzy
+#~ msgid "all books"
+#~ msgstr "Prijung literatūrą"
+
+#~ 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 "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"
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-02 13:01+0000\n"
-"PO-Revision-Date: 2010-08-25 10:59\n"
-"Last-Translator: <radek.czajka@gmail.com>\n"
+"POT-Creation-Date: 2010-12-29 16:33+0000\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"
"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:146
+#: templates/catalogue/book_detail.html:149
#: 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 "Zamknij"
#: templates/base.html:108 templates/base.html.py:114
-#: templates/catalogue/book_detail.html:148
+#: templates/catalogue/book_detail.html:151
#: 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 "Ładowanie"
#: 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/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/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:13
+#: 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/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/catalogue/book_list.html:12
-#: templates/catalogue/book_stub_detail.html:12
#: templates/lessons/document_list.html:51
+#: templates/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr "wróć do strony głównej"
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:95
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "O utworze"
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Autor"
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "Epoka"
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "Rodzaj"
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "Gatunek"
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "W innych miejscach"
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr "Lektura na wiki projektu"
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr "Źródło lektury"
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:131
msgid "Book description on Lektury.Gazeta.pl"
msgstr "Opis lektury w Lektury.Gazeta.pl"
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:134
msgid "Book description on Wikipedia"
msgstr "Opis lektury w Wikipedii"
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
msgstr "Motywy w utworze"
msgid "Listing of all works"
msgstr "Spis wszystkich utworów"
-#: templates/catalogue/book_list.html:15
-#, fuzzy
+#: templates/catalogue/book_list.html:16
msgid "Table of Content"
msgstr "Spis treści"
+#: templates/catalogue/book_list.html:41
+msgid "↑ top ↑"
+msgstr "↑ góra ↑"
+
#: templates/catalogue/book_sets.html:2
msgid "Put a book on the shelf!"
msgstr "Wrzuć lekturę na półkę!"
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:146
+#: templates/catalogue/tagged_object_list.html:130
msgid "Themes"
msgstr "Motywy"
msgstr "Zobacz całą kategorię"
#: templates/catalogue/folded_tag_list.html:13
-#: templates/catalogue/main_page.html:27 templates/catalogue/main_page.html:52
-#: templates/catalogue/main_page.html:57 templates/catalogue/main_page.html:96
-#: templates/catalogue/main_page.html:279
-#: templates/catalogue/main_page.html:288
+#: templates/catalogue/main_page.html:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
msgid "See more"
msgstr "Zobacz więcej"
#: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:259
+#: templates/catalogue/main_page.html:265
msgid "Hide"
msgstr "Zwiń"
msgstr "Półki zawierające fragment"
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:37
+#: templates/catalogue/main_page.html:43
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ę "
msgid "Browse books by categories"
msgstr "Przeglądaj lektury według wybranych kategorii"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
msgid "Wolne Lektury Widget"
msgstr "Widżet Wolne Lektury"
-#: templates/catalogue/main_page.html:20
+#: templates/catalogue/main_page.html:26
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 "
"darmowych lektur i audiobooków – na swojej stronie WWW! Po prostu skopiuj "
"poniższy kod HTML na swoją stronę:"
-#: templates/catalogue/main_page.html:21
+#: templates/catalogue/main_page.html:27
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:24
-msgid "Place this element just before closing body tag: </body>"
-msgstr "Umieść ten element tuż przed zamknięciem taga body: </body>"
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr "Umieść ten element tuż przed zamknięciem taga body: </body>"
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:34
#: templates/catalogue/user_shelves.html:2
msgid "Your shelves with books"
msgstr "Twoje półki z lekturami"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:39
msgid "delete"
msgstr "usuń"
-#: templates/catalogue/main_page.html:42
+#: templates/catalogue/main_page.html:48
#: templates/catalogue/user_shelves.html:15
msgid "Create shelf"
msgstr "Utwórz półkę"
-#: templates/catalogue/main_page.html:46
+#: templates/catalogue/main_page.html:52
msgid ""
"Create your own book set. You can share it with friends by sending them link "
"to your shelf."
"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:47
+#: templates/catalogue/main_page.html:53
msgid "You need to "
msgstr "Aby zarządzać swoimi półkami, musisz się"
-#: templates/catalogue/main_page.html:47
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "zalogować"
-#: templates/catalogue/main_page.html:47
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "."
-#: templates/catalogue/main_page.html:50
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
msgid "Hand-outs for teachers"
msgstr "Materiały pomocnicze dla nauczycieli"
-#: templates/catalogue/main_page.html:51
+#: templates/catalogue/main_page.html:57
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:56
+#: templates/catalogue/main_page.html:62
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."
"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:63
-#: templates/catalogue/tagged_object_list.html:128
+#: templates/catalogue/main_page.html:69
+#: templates/catalogue/tagged_object_list.html:112
msgid "Authors"
msgstr "Autorzy"
-#: templates/catalogue/main_page.html:67
-#: templates/catalogue/tagged_object_list.html:132
+#: templates/catalogue/main_page.html:73
+#: templates/catalogue/tagged_object_list.html:116
msgid "Kinds"
msgstr "Rodzaje"
-#: templates/catalogue/main_page.html:71
-#: templates/catalogue/tagged_object_list.html:136
+#: templates/catalogue/main_page.html:77
+#: templates/catalogue/tagged_object_list.html:120
msgid "Genres"
msgstr "Gatunki"
-#: templates/catalogue/main_page.html:75
-#: templates/catalogue/tagged_object_list.html:140
+#: templates/catalogue/main_page.html:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Epoki"
-#: templates/catalogue/main_page.html:81
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Motywy i tematy"
-#: templates/catalogue/main_page.html:84
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Rodziny motywów"
-#: templates/catalogue/main_page.html:269
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "Aktualności"
-#: templates/catalogue/main_page.html:273
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Zobacz nasz blog"
-#: templates/catalogue/main_page.html:276
+#: templates/catalogue/main_page.html:282
msgid "You can help us!"
msgstr "Możesz nam pomóc!"
-#: templates/catalogue/main_page.html:277
+#: templates/catalogue/main_page.html:283
msgid ""
"We try our best to elaborate works appended to our library. It is possible "
"only due to support of our volunteers."
"najdokładniej. Jest to możliwe tylko dzięki współpracującym z nami "
"wolontariuszom."
-#: templates/catalogue/main_page.html:278
+#: templates/catalogue/main_page.html:284
msgid ""
"We invite people who want to take part in developing Internet school library "
"Wolne Lektury."
"Zapraszamy wszystkie osoby, które chcą współtworzyć szkolną bibliotekę "
"internetową Wolne Lektury."
-#: templates/catalogue/main_page.html:282
+#: templates/catalogue/main_page.html:288
msgid "About us"
msgstr "O projekcie"
-#: templates/catalogue/main_page.html:284
+#: templates/catalogue/main_page.html:290
msgid ""
"\n"
"\t\t\tInternet library with school readings “Wolne Lektury” (<a href="
msgstr "Wyszukiwanie w 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 "Przepraszamy! Brak wyników spełniających kryteria podane w zapytaniu."
msgid "Xiph.org Foundation"
msgstr "Fundacji 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 "Pobierz"
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
msgid "Updating list of books' formats on the shelf"
msgstr "Uaktualnianie listy formatów książek na półce."
-#: templates/catalogue/tagged_object_list.html:43
+#: templates/catalogue/tagged_object_list.html:44
msgid "cancel"
msgstr "anuluj"
-#: templates/catalogue/tagged_object_list.html:48
+#: templates/catalogue/tagged_object_list.html:49
msgid "Share this shelf"
msgstr "Podziel się tą półką"
-#: 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 ""
"Skopiuj ten link i przekaż go osobom, z którymi chcesz się podzielić tą "
"półką."
-#: 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 "Przeczytaj omówienia utworów autora w serwisie Lektury.Gazeta.pl"
-#: 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 "Przeczytaj omówienia z epoki %(last_tag)s w serwisie Lektury.Gazeta.pl"
-#: 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 ""
"Przeczytaj omówienia z rodzaju %(last_tag)s w serwisie Lektury.Gazeta.pl"
-#: 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 ""
"Przeczytaj omówienia z gatunku %(last_tag)s w serwisie Lektury.Gazeta.pl"
-#: templates/catalogue/tagged_object_list.html:68
+#: 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:76
+#: 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"
-#: 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 "Przeczytaj artykuł o epoce %(last_tag)s w Wikipedii"
-#: 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 "Przeczytaj artykuł o rodzaju %(last_tag)s w Wikipedii"
-#: 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 "Przeczytaj artykuł o gatunku %(last_tag)s w Wikipedii"
-#: templates/catalogue/tagged_object_list.html:84
+#: templates/catalogue/tagged_object_list.html:85
msgid "Read related article on Wikipedia"
msgstr "Przeczytaj powiązany artykuł w Wikipedii"
-#: templates/catalogue/tagged_object_list.html:94
+#: templates/catalogue/tagged_object_list.html:95
msgid "Delete"
msgstr "Usuń"
-#: templates/catalogue/tagged_object_list.html:102
-msgid "This author's works are copyrighted."
-msgstr "Dzieła tego autora objęte są prawem autorskim."
-
-#: 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 ""
-"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:109
-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:111
-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/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! "
+"W serwisie Wolne Lektury już teraz opublikowanych jest ponad 1200 utworów! "
"Pomóż w rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam "
"darowiznę lub 1% podatku."
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ć dzieł tego "
+"autora."
+
+#: templates/pdcounter/book_stub_detail.html:23
+msgid "This work is copyrighted."
+msgstr "To dzieło objęte jest prawem autorskim."
+
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Spis wszystkich audiobooków w WolneLektury.pl"
+
+#~ msgid "Listing of all audiobooks"
+#~ msgstr "Spis wszystkich audiobooków"
+
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Spis wszystkich plików DAISY w WolneLektury.pl"
+
+#~ msgid "Listing of all DAISY files"
+#~ msgstr "Spis wszystkich plików DAISY"
+
+#~ msgid "see"
+#~ msgstr "zobacz"
+
+#~ msgid "all books"
+#~ msgstr "wszystkie utwory"
+
+#~ msgid "audiobooks"
+#~ msgstr "audiobooki"
+
+#~ msgid "daisy"
+#~ msgstr "daisy"
+
#~ msgid "Polish"
#~ msgstr "polski"
# 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 16:33+0000\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"
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: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"
#: 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 не может хорошо показать сайта. Щелкните здесь, чтобы прочитать больше..."
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Internet Explorer не может хорошо показать сайта. Щелкните здесь, чтобы "
+"прочитать больше..."
#: templates/base.html:32
msgid "Welcome"
#: templates/base.html:69
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
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/catalogue/book_detail.html:149
#: 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/catalogue/book_detail.html:151
#: 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/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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
msgstr "возврат на главную страницу"
msgid "Download Ogg Vorbis"
msgstr "Скачать Ogg Vorbis"
+#: templates/catalogue/book_detail.html:69
msgid "Download DAISY"
msgstr "Скачать DAISY"
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "Подробнее"
-#: templates/catalogue/book_detail.html:99
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Автор"
-#: templates/catalogue/book_detail.html:105
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "эпоха"
-#: templates/catalogue/book_detail.html:111
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "форма"
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "жанр"
-#: templates/catalogue/book_detail.html:123
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "другие ресурсы"
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr "Книга по проекту вики"
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr "Источник книги"
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:131
msgid "Book description on Lektury.Gazeta.pl"
msgstr "Описание книги на Lektury.Gazeta.pl"
-#: templates/catalogue/book_detail.html:131
+#: templates/catalogue/book_detail.html:134
msgid "Book description on Wikipedia"
msgstr "Описание книги на Wikipedia"
-#: templates/catalogue/book_detail.html:136
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
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 "Поставьте книгу на полку!"
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 "Мотивы"
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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
msgid "See more"
msgstr "Подробнее"
#: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:265
msgid "Hide"
msgstr "Скрыть"
msgstr "Полки с фрагментом"
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
msgid "You do not own any shelves. You can create one below, if you want to."
msgstr "У вас нет никакой полки. Если вы хотите, вы можете создать одну ниже."
msgid "Browse books by categories"
msgstr "Просматривать книги по категориям"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "на WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: templates/catalogue/user_shelves.html:2
msgid "Your shelves with books"
msgstr "Ваши книжные полки"
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:39
msgid "delete"
msgstr "удалить"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: 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:52
+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:53
msgid "You need to "
msgstr "Вам необходимо"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "Войти в систему,"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "чтобы управлять своими полками"
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
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:57
+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:62
+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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Эпохи"
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Мотивы и темы"
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Тематические группы"
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "Новости"
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Посмотрите наш блог"
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
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:283
+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:284
+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:288
msgid "About us"
msgstr "О нас"
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
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
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"
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"
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"
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 "и для редактирования"
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 "убрать"
#: 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 ""
-"У нас больше 1000 трудов в Wolne Lektury!\n"
+"У нас больше 1200 трудов в Wolne Lektury!\n"
"Помогите нам распространить библиотеку и поместить новые бесплатные чтения\n"
"при помощи денежного пожертвования или перевода 1% вашего подоходного налога."
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 "На эту работу распространяется авторское право."
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Список работ на WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks"
+#~ msgstr "Список работ"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Список работ на WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files"
+#~ msgstr "Список работ"
+
+#, fuzzy
+#~ msgid "all books"
+#~ msgstr "Поставьте книгу"
+
#~ msgid "Polish"
#~ msgstr "польский"
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 16:33+0000\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 "Інтернет Експолорер не може правильно відобразити цієї сторінки. Натисніть, щоб дізнатися більше..."
+#: templates/base.html:19
+msgid ""
+"Internet Explorer cannot display this site properly. Click here to read "
+"more..."
+msgstr ""
+"Інтернет Експолорер не може правильно відобразити цієї сторінки. Натисніть, "
+"щоб дізнатися більше..."
#: templates/base.html:32
msgid "Welcome"
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: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/auth/login.html.py:15
msgid "Sign in"
msgstr "Увійти"
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:69
msgid ""
"\n"
"\t\t\t\tWolne Lektury is a project lead by <a href=\"http://nowoczesnapolska."
"\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
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/catalogue/book_detail.html:149
#: 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/catalogue/book_detail.html:151
#: 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 "Сайт адміністрації"
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/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:13
+#: 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/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/pdcounter/author_detail.html:11
+#: templates/pdcounter/book_stub_detail.html:11
msgid "return to main page"
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 "Покласти книжку"
msgid "Download PDF"
msgstr "Завантажити PDF"
-#: templates/catalogue/book_detail.html:37
#: templates/catalogue/book_detail.html:50
msgid "Download EPUB"
msgstr "Завантажити EPUB"
msgid "Download ODT"
msgstr "Завантажити ODT"
-#: templates/catalogue/book_detail.html:40
#: templates/catalogue/book_detail.html:56
msgid "Download TXT"
msgstr "Завантажити TXT"
-#: templates/catalogue/book_detail.html:45
+#: templates/catalogue/book_detail.html:61
msgid "Artist"
msgstr "Артист"
msgid "Director"
msgstr "Режисер"
-#: templates/catalogue/book_detail.html:51
+#: templates/catalogue/book_detail.html:67
msgid "Download MP3"
msgstr "Завантажити MP3"
-#: templates/catalogue/book_detail.html:52
+#: templates/catalogue/book_detail.html:68
msgid "Download Ogg Vorbis"
msgstr "Завантажити Ogg Vorbis"
+#: templates/catalogue/book_detail.html:69
msgid "Download DAISY"
msgstr "Завантажити DAISY"
-#: templates/catalogue/book_detail.html:95
+#: templates/catalogue/book_detail.html:96
msgid "Details"
msgstr "Подробиці"
-
-#: templates/catalogue/book_detail.html:82
+#: templates/catalogue/book_detail.html:100
msgid "Author"
msgstr "Автор"
-#: templates/catalogue/book_detail.html:88
+#: templates/catalogue/book_detail.html:106
msgid "Epoch"
msgstr "Епоха"
-#: templates/catalogue/book_detail.html:94
+#: templates/catalogue/book_detail.html:112
msgid "Kind"
msgstr "Рід"
-#: templates/catalogue/book_detail.html:100
-#: templates/catalogue/book_detail.html:117
+#: templates/catalogue/book_detail.html:118
msgid "Genre"
msgstr "Жанр"
-#: templates/catalogue/book_detail.html:106
-
+#: templates/catalogue/book_detail.html:124
msgid "Other resources"
msgstr "Інші засоби"
-#: templates/catalogue/book_detail.html:125
+#: templates/catalogue/book_detail.html:126
msgid "Book on project's wiki"
msgstr "Книжка на вікі проекту"
-
-#: templates/catalogue/book_detail.html:109
-
-#: templates/catalogue/book_detail.html:126
+#: templates/catalogue/book_detail.html:128
msgid "Source of the book"
msgstr "Джерело книжки"
-#: templates/catalogue/book_detail.html:128
+#: templates/catalogue/book_detail.html:131
msgid "Book description on Lektury.Gazeta.pl"
msgstr "Опис книжки на Lektury.Gazeta.pl"
-#: templates/catalogue/book_detail.html:114
+#: templates/catalogue/book_detail.html:134
msgid "Book description on Wikipedia"
msgstr "Опис книжки на Вікіпедії"
-#: templates/catalogue/book_detail.html:119
+#: templates/catalogue/book_detail.html:139
msgid "Work's themes "
msgstr "Теми твору"
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 ""
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 "Перейти до"
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 "Теми"
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:33 templates/catalogue/main_page.html:58
+#: templates/catalogue/main_page.html:63
+#: templates/catalogue/main_page.html:102
+#: templates/catalogue/main_page.html:285
+#: templates/catalogue/main_page.html:294
msgid "See more"
msgstr "Більше"
#: templates/catalogue/folded_tag_list.html:22
-#: templates/catalogue/main_page.html:250
+#: templates/catalogue/main_page.html:265
msgid "Hide"
msgstr "Сховати"
msgstr "Полиці, які містять фрагмент"
#: templates/catalogue/fragment_sets.html:4
-#: templates/catalogue/main_page.html:28
+#: templates/catalogue/main_page.html:43
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"
msgid "Browse books by categories"
msgstr "Переглядати книжки за категоріями"
-#: templates/catalogue/main_page.html:19
+#: templates/catalogue/main_page.html:23
+msgid "Twórzże się!"
+msgstr ""
+
+#: templates/catalogue/main_page.html:25
+#, fuzzy
+msgid "Wolne Lektury Widget"
+msgstr "на WolneLektury.pl"
+
+#: templates/catalogue/main_page.html:26
+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:27
+msgid "Insert this element in place where you want display the widget"
+msgstr ""
+
+#: templates/catalogue/main_page.html:30
+msgid "Place this element just before closing body tag: </body>"
+msgstr ""
+
+#: templates/catalogue/main_page.html:34
#: templates/catalogue/user_shelves.html:2
msgid "Your shelves with books"
msgstr "Ваші полиці з книжками"
-#: templates/catalogue/main_page.html:24
+#: templates/catalogue/main_page.html:39
msgid "delete"
msgstr "видалити"
-#: templates/catalogue/main_page.html:33
+#: templates/catalogue/main_page.html:48
#: 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:52
+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:53
msgid "You need to "
msgstr "Вам треба"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "sign in"
msgstr "увійти в акаунт"
-#: templates/catalogue/main_page.html:38
+#: templates/catalogue/main_page.html:53
msgid "to manage your shelves."
msgstr "щоб управляти своїми полицями"
-#: templates/catalogue/main_page.html:41
+#: templates/catalogue/main_page.html:56
#: templates/lessons/document_list.html:49
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:57
+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:62
+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:69
+#: 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:73
+#: 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:77
+#: 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:81
+#: templates/catalogue/tagged_object_list.html:124
msgid "Epochs"
msgstr "Епохи"
-#: templates/catalogue/main_page.html:72
+#: templates/catalogue/main_page.html:87
msgid "Themes and topics"
msgstr "Теми та мотиви"
-#: templates/catalogue/main_page.html:75
+#: templates/catalogue/main_page.html:90
msgid "Themes groups"
msgstr "Групи мотивів"
-#: templates/catalogue/main_page.html:260
+#: templates/catalogue/main_page.html:275
msgid "News"
msgstr "Новості"
-#: templates/catalogue/main_page.html:264
+#: templates/catalogue/main_page.html:279
msgid "See our blog"
msgstr "Дивитись наш блог"
-#: templates/catalogue/main_page.html:267
+#: templates/catalogue/main_page.html:282
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:283
+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:284
+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:288
msgid "About us"
msgstr "Про нас"
-#: templates/catalogue/main_page.html:275
+#: templates/catalogue/main_page.html:290
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
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
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"
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"
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 "та едиції з використанням"
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"
#: 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 ""
-"На сайті Wolne Lektury опубліковано більше 1000 творів!\n"
+"На сайті Wolne Lektury опубліковано більше 1200 творів!\n"
"Допоможіть нам розвивати бібліотеку і надавати доступ до нових творів - \n"
"передайте нам внесок або 1 відсоток вашого податку на прибуток."
-#: templates/info/join_us.html:5
-#: templates/info/join_us.html.py:10
+#: templates/info/join_us.html:5 templates/info/join_us.html.py:10
msgid "More..."
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 "Цей твір охороняється авторстким правом"
+
+#, fuzzy
+#~ msgid "Listing of all audiobooks on WolneLektury.pl"
+#~ msgstr "Алфавітний список творів на WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "Listing of all DAISY files on WolneLektury.pl"
+#~ msgstr "Алфавітний список творів на WolneLektury.pl"
+
+#, fuzzy
+#~ msgid "all books"
+#~ msgstr "Покласти книжку"
+
+#~ msgid "Choose your interface language: "
+#~ msgstr "Вибрати мову інтерфейсу"
+
+#~ msgid "Choose language"
+#~ msgstr "Вибрати мову"
+
+#~ msgid "Hide description"
+#~ msgstr "Сховати опис"
+
+#~ msgid "Alphabetical listing of works"
+#~ 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 "на Вікіпедії"
'suggest',
'lesmianator',
'opds',
+ 'pdcounter',
]
CACHE_BACKEND = 'locmem:///?max_entries=3000'
+++ /dev/null
-{% 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
+++ /dev/null
-<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>
{% 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 %}
{% 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 %}
{% comment %}<a href='{}'>{% trans "More..." %}</a>{% endcomment %}</p>
--- /dev/null
+{% 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
--- /dev/null
+{% 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
--- /dev/null
+<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 }}, 1, 1);
+$('#countdown').countdown({until: d, format: 'ydHMS', serverSync: serverTime});
+</script>