From: Lukasz Date: Tue, 18 May 2010 08:30:32 +0000 (+0200) Subject: Merge branch 'master' of http://github.com/fnp/wolnelektury X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/735368cfb54c8954518179993dcd3bc55e3878e7?hp=f5ad229ebb7d746137b50d6c8cd957e7dc9b4c0a Merge branch 'master' of github.com/fnp/wolnelektury Conflicts: wolnelektury/settings.py wolnelektury/templates/catalogue/book_stub_detail.html wolnelektury/templates/catalogue/search_no_hits.html wolnelektury/templates/catalogue/tagged_object_list.html --- diff --git a/README.md b/README.md index 3b3f03322..c6590b600 100644 --- a/README.md +++ b/README.md @@ -40,13 +40,22 @@ How to deploy (development version) ./wolnelektury/manage.py syncdb ./wolnelektury/manage.py migrate - -5. Import some books which are availble on http://www.wolnelektury.pl or on bitbucket mirror: http://bitbucket.org/lqc/wlbooks/ -6. Run the server +5. Run the server ./wolnelektury/manage.py runserver + +6. Import some books which are available on http://www.wolnelektury.pl or on bitbucket mirror: http://bitbucket.org/lqc/wlbooks/ + If you use Bitbucket, you also need Mercurial to fetch books (you can install it using: pip install mercurial). + After downloading books, log into administration, go to Books and choose 'Browse' to select book file, + then fire 'Import book' to upload it. Some books have invalid XML, so you can get an error + (just ignore it and look for other books). + +7. We provide localization of the software in following languages: Polish, Russian, German, English, Spanish, French and Lithuanian. + Translation strings are based on gettext and can be found under 'locale' dir. + There are also JavaScript files for jQuery countdown plugin (static/js/jquery.countdown-*.js). + Full list of used open-source software ====================================== @@ -131,4 +140,4 @@ Authors ======= * Marek Stępniowski - * Łukasz Rekucki \ No newline at end of file + * Łukasz Rekucki diff --git a/apps/catalogue/fields.py b/apps/catalogue/fields.py index 160167ef2..654dbfb21 100644 --- a/apps/catalogue/fields.py +++ b/apps/catalogue/fields.py @@ -42,7 +42,7 @@ class JSONFormField(forms.CharField): loads(value) return value except ValueError, e: - raise forms.ValidationError('Enter a valid JSON value. Error: %s' % e) + raise forms.ValidationError(_('Enter a valid JSON value. Error: %s') % e) class JSONField(models.TextField): diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py index b040ef911..076282bf4 100644 --- a/apps/catalogue/forms.py +++ b/apps/catalogue/forms.py @@ -3,6 +3,7 @@ # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from django import forms +from django.utils.translation import ugettext_lazy as _ from slughifi import slughifi from catalogue.models import Tag, Book @@ -24,7 +25,7 @@ class SearchForm(forms.Form): def __init__(self, *args, **kwargs): tags = kwargs.pop('tags', []) super(SearchForm, self).__init__(*args, **kwargs) - self.fields['q'].widget.attrs['title'] = u'tytuł, autor, motyw/temat, epoka, rodzaj, gatunek' + self.fields['q'].widget.attrs['title'] = _('title, author, theme/topic, epoch, kind, genre') self.fields['tags'].initial = '/'.join(tag.slug for tag in Tag.get_tag_list(tags)) @@ -40,7 +41,7 @@ class ObjectSetsForm(forms.Form): def __init__(self, obj, user, *args, **kwargs): super(ObjectSetsForm, self).__init__(*args, **kwargs) self.fields['set_ids'] = forms.MultipleChoiceField( - label=u'Półki', + label=_('Shelves'), required=False, choices=[(tag.id, "%s (%s)" % (tag.name, tag.book_count)) for tag in Tag.objects.filter(category='set', user=user)], initial=[tag.id for tag in obj.tags.filter(category='set', user=user)], @@ -53,7 +54,7 @@ class NewSetForm(forms.Form): def __init__(self, *args, **kwargs): super(NewSetForm, self).__init__(*args, **kwargs) - self.fields['name'].widget.attrs['title'] = u'nazwa nowej półki' + self.fields['name'].widget.attrs['title'] = _('Name of the new shelf') def save(self, user, commit=True): name = self.cleaned_data['name'] diff --git a/apps/catalogue/models.py b/apps/catalogue/models.py index b760eccc2..59011fd9b 100644 --- a/apps/catalogue/models.py +++ b/apps/catalogue/models.py @@ -138,7 +138,7 @@ class Book(models.Model): formats = [] if self.html_file: - formats.append(u'Czytaj online' % reverse('book_text', kwargs={'slug': self.slug})) + formats.append(u'%s' % (reverse('book_text', kwargs={'slug': self.slug}), _('Read online'))) if self.pdf_file: formats.append(u'PDF' % self.pdf_file.url) if self.odt_file: @@ -218,7 +218,7 @@ class Book(models.Model): book_shelves = [] else: if not overwrite: - raise Book.AlreadyExists('Book %s already exists' % book_slug) + raise Book.AlreadyExists(_('Book %s already exists') % book_slug) # Save shelves for this book book_shelves = list(book.tags.filter(category='set')) @@ -261,7 +261,7 @@ class Book(models.Model): child_book.parent_number = n child_book.save() except Book.DoesNotExist, e: - raise Book.DoesNotExist(u'Book with slug = "%s" does not exist.' % slug) + raise Book.DoesNotExist(_('Book with slug = "%s" does not exist.') % slug) book_descendants = list(book.children.all()) while len(book_descendants) > 0: @@ -383,5 +383,4 @@ class BookStub(models.Model): class Meta: ordering = ('title',) verbose_name = _('book stub') - verbose_name_plural = _('book stubs') - + verbose_name_plural = _('book stubs') \ No newline at end of file diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index b32a310b5..07fb7d349 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -25,6 +25,7 @@ from django.utils.functional import Promise from django.utils.encoding import force_unicode from django.utils.http import urlquote_plus from django.views.decorators import cache +from django.utils.translation import ugettext as _ from catalogue import models from catalogue import forms @@ -304,7 +305,7 @@ def book_sets(request, slug): book_sets = book.tags.filter(category='set', user=request.user) if not request.user.is_authenticated(): - return HttpResponse('

Aby zarządzać swoimi półkami, musisz się zalogować.

') + return HttpResponse(_('

To maintain your shelves you need to be logged in.

')) if request.method == 'POST': form = forms.ObjectSetsForm(book, request.user, request.POST) @@ -322,7 +323,7 @@ def book_sets(request, slug): book.tags = new_shelves + list(book.tags.filter(~Q(category='set') | ~Q(user=request.user))) if request.is_ajax(): - return HttpResponse('

Półki zostały zapisane.

') + return HttpResponse(_('

Shelves were sucessfully saved.

')) else: return HttpResponseRedirect('/') else: @@ -346,9 +347,9 @@ def remove_from_shelf(request, shelf, book): shelf.book_count -= 1 shelf.save() - return HttpResponse('Usunięto') + return HttpResponse(_('Book was successfully removed from the shelf')) else: - return HttpResponse('Książki nie ma na półce') + return HttpResponse(_('This book is not on the shelf')) def collect_books(books): @@ -381,7 +382,7 @@ def download_shelf(request, slug): formats = ['pdf', 'odt', 'txt', 'mp3', 'ogg'] # Create a ZIP archive - temp = temp = tempfile.TemporaryFile() + temp = tempfile.TemporaryFile() archive = zipfile.ZipFile(temp, 'w') for book in collect_books(models.Book.tagged.with_all(shelf)): @@ -444,7 +445,7 @@ def new_set(request): new_set = new_set_form.save(request.user) if request.is_ajax(): - return HttpResponse(u'

Półka %s została utworzona

' % new_set) + return HttpResponse(_('

Shelf %s was successfully created

') % new_set) else: return HttpResponseRedirect('/') @@ -459,7 +460,7 @@ def delete_shelf(request, slug): user_set.delete() if request.is_ajax(): - return HttpResponse(u'

Półka %s została usunięta

' % user_set.name) + return HttpResponse(_('

Shelf %s was successfully removed

') % user_set.name) else: return HttpResponseRedirect('/') @@ -518,10 +519,10 @@ def import_book(request): info = sys.exc_info() exception = pprint.pformat(info[1]) tb = '\n'.join(traceback.format_tb(info[2])) - return HttpResponse("An error occurred: %s\n\n%s" % (exception, tb), mimetype='text/plain') - return HttpResponse("Book imported successfully") + return HttpResponse(_("An error occurred: %s\n\n%s") % (exception, tb), mimetype='text/plain') + return HttpResponse(_("Book imported successfully")) else: - return HttpResponse("Error importing file: %r" % book_import_form.errors) + return HttpResponse(_("Error importing file: %r") % book_import_form.errors) @@ -530,4 +531,4 @@ def clock(request): in a format suitable for Date.parse() """ from datetime import datetime - return HttpResponse(datetime.now().strftime('%Y/%m/%d %H:%M:%S')) + return HttpResponse(datetime.now().strftime('%Y/%m/%d %H:%M:%S')) \ No newline at end of file diff --git a/apps/lessons/models.py b/apps/lessons/models.py index b3c79d71c..dc113ed16 100644 --- a/apps/lessons/models.py +++ b/apps/lessons/models.py @@ -8,7 +8,7 @@ from django.utils.translation import ugettext_lazy as _ from os import path class Document(models.Model): - """Dokument - materiał pomocniczy dla nauczycieli.""" + """Document - hand-out for teachers""" title = models.CharField(_('title'), max_length=120) slug = models.SlugField(_('slug')) file = models.FileField(_('file'), upload_to='lessons/document') diff --git a/wolnelektury/locale/de/LC_MESSAGES/django.po b/wolnelektury/locale/de/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/de/LC_MESSAGES/django.po +++ b/wolnelektury/locale/de/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/locale/en/LC_MESSAGES/django.po b/wolnelektury/locale/en/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/en/LC_MESSAGES/django.po +++ b/wolnelektury/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/locale/es/LC_MESSAGES/django.po b/wolnelektury/locale/es/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/es/LC_MESSAGES/django.po +++ b/wolnelektury/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/locale/fr/LC_MESSAGES/django.po b/wolnelektury/locale/fr/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/fr/LC_MESSAGES/django.po +++ b/wolnelektury/locale/fr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/locale/lt/LC_MESSAGES/django.po b/wolnelektury/locale/lt/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/lt/LC_MESSAGES/django.po +++ b/wolnelektury/locale/lt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/locale/pl/LC_MESSAGES/django.po b/wolnelektury/locale/pl/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/pl/LC_MESSAGES/django.po +++ b/wolnelektury/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/locale/ru/LC_MESSAGES/django.po b/wolnelektury/locale/ru/LC_MESSAGES/django.po index 018768517..fb21482e0 100644 --- a/wolnelektury/locale/ru/LC_MESSAGES/django.po +++ b/wolnelektury/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-04 14:30+0200\n" +"POT-Creation-Date: 2010-05-11 15:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,13 +16,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: templates/404.html:6 templates/404.html.py:15 +msgid "Site does not exist" +msgstr "" + +#: templates/404.html:17 +msgid "" +"We are sorry, but this site does not exist. Please check if you entered " +"correct address or go to " +msgstr "" + +#: templates/404.html:17 templates/500.html:17 +msgid "main page" +msgstr "" + +#: templates/500.html:6 templates/500.html.py:15 +msgid "Server error" +msgstr "" + +#: templates/500.html:17 +msgid "" +"We are sorry for your inconvenience, but server error occured. We are " +"working on fixing it as soon as possible. Meanwhile, please go to " +msgstr "" + #: templates/base.html:19 msgid "" "Internet Explorer cannot display this site properly. Click here to read " "more..." msgstr "" -#: templates/base.html:27 +#: templates/base.html:27 templates/catalogue/folded_tag_list.html:13 +#: templates/catalogue/main_page.html:48 templates/catalogue/main_page.html:87 +#: templates/catalogue/main_page.html:270 +#: templates/catalogue/main_page.html:279 msgid "See more" msgstr "" @@ -31,7 +58,7 @@ msgid "Welcome" msgstr "" #: templates/base.html:37 -msgid "Your shelf" +msgid "Your shelves" msgstr "" #: templates/base.html:39 @@ -42,19 +69,589 @@ msgstr "" msgid "Logout" msgstr "" -#: templates/base.html:44 templates/base.html.py:76 templates/base.html:80 -#: templates/base.html.py:84 +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:84 +#: templates/base.html.py:88 templates/auth/login.html:4 +#: templates/auth/login.html.py:7 templates/auth/login.html:12 +#: templates/auth/login.html.py:15 msgid "Sign in" msgstr "" -#: templates/base.html:73 templates/base.html.py:94 -msgid "Close" +#: templates/base.html:44 templates/base.html.py:80 templates/base.html:88 +#: templates/base.html.py:92 templates/auth/login.html:7 +#: templates/auth/login.html.py:21 templates/auth/login.html:23 +msgid "Register" msgstr "" -#: templates/base.html:76 templates/base.html.py:84 templates/base.html:88 -msgid "Register" +#: templates/base.html:61 +msgid "" +"\n" +"\t\t\t\tWolne Lektury is a project lead by Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, based on TNL resources. \n" +"\t\t\t\tHosting EO Networks.\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:68 +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: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t" +msgstr "" + +#: templates/base.html:77 templates/base.html.py:98 +#: templates/catalogue/book_detail.html:129 +#: templates/catalogue/book_fragments.html:33 +#: templates/catalogue/book_stub_detail.html:30 +#: templates/catalogue/search_no_hits.html:19 +#: templates/catalogue/tagged_object_list.html:131 +msgid "Close" msgstr "" -#: templates/base.html:96 +#: templates/base.html:100 templates/catalogue/book_detail.html:131 +#: templates/catalogue/book_fragments.html:35 +#: templates/catalogue/book_stub_detail.html:32 +#: templates/catalogue/search_no_hits.html:21 +#: templates/catalogue/tagged_object_list.html:133 msgid "Loading" msgstr "" + +#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +msgid "Site administration" +msgstr "" + +#: templates/admin/catalogue/book/change_list.html:6 +msgid "Import book" +msgstr "" + +#: templates/auth/login.html:4 +msgid "Register on" +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:9 +#: templates/catalogue/main_page.html:13 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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:41 +#: templates/lessons/document_detail.html:9 +#: templates/lessons/document_list.html:51 +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 +msgid "return to main page" +msgstr "" + +#: templates/catalogue/book_detail.html:5 +msgid "on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:17 +msgid "Work is licensed under " +msgstr "" + +#: templates/catalogue/book_detail.html:19 +msgid "Based on" +msgstr "" + +#: templates/catalogue/book_detail.html:24 +#: templates/catalogue/tagged_object_list.html:27 +msgid "Toggle description" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "Put a book" +msgstr "" + +#: templates/catalogue/book_detail.html:27 +msgid "on the shelf!" +msgstr "" + +#: templates/catalogue/book_detail.html:31 +msgid "Read online" +msgstr "" + +#: templates/catalogue/book_detail.html:34 +msgid "Download PDF" +msgstr "" + +#: templates/catalogue/book_detail.html:37 +msgid "Download ODT" +msgstr "" + +#: templates/catalogue/book_detail.html:40 +msgid "Download TXT" +msgstr "" + +#: templates/catalogue/book_detail.html:45 +msgid "Artist" +msgstr "" + +#: templates/catalogue/book_detail.html:47 +msgid "Director" +msgstr "" + +#: templates/catalogue/book_detail.html:51 +msgid "Download MP3" +msgstr "" + +#: templates/catalogue/book_detail.html:52 +msgid "Download Ogg Vorbis" +msgstr "" + +#: templates/catalogue/book_detail.html:79 +msgid "Details" +msgstr "" + +#: templates/catalogue/book_detail.html:82 +msgid "Author" +msgstr "" + +#: templates/catalogue/book_detail.html:88 +msgid "Epoch" +msgstr "" + +#: templates/catalogue/book_detail.html:94 +msgid "Kind" +msgstr "" + +#: templates/catalogue/book_detail.html:100 +msgid "Genre" +msgstr "" + +#: templates/catalogue/book_detail.html:106 +msgid "Other resources" +msgstr "" + +#: templates/catalogue/book_detail.html:108 +msgid "Book on project's wiki" +msgstr "" + +#: templates/catalogue/book_detail.html:109 +msgid "Book in CBN Polona" +msgstr "" + +#: templates/catalogue/book_detail.html:111 +msgid "Book description on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/book_detail.html:114 +msgid "Book description on Wikipedia" +msgstr "" + +#: templates/catalogue/book_detail.html:119 +msgid "Work's themes " +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "Theme" +msgstr "" + +#: templates/catalogue/book_fragments.html:5 +#: templates/catalogue/book_fragments.html:10 +msgid "in work " +msgstr "" + +#: templates/catalogue/book_fragments.html:12 +msgid "return to book's page" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "See description" +msgstr "" + +#: templates/catalogue/book_fragments.html:26 +msgid "of the book " +msgstr "" + +#: templates/catalogue/book_list.html:7 +msgid "Alphabetical listing of works on WolneLektury.pl" +msgstr "" + +#: templates/catalogue/book_list.html:10 +msgid "Alphabetical listing of works" +msgstr "" + +#: templates/catalogue/book_sets.html:2 +msgid "Put a book on the shelf!" +msgstr "" + +#: templates/catalogue/book_sets.html:4 +msgid "You do not have any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/book_sets.html:9 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 "" + +#: templates/catalogue/book_short.html:16 +msgid "Categories" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:17 +#: templates/catalogue/tagged_object_list.html:83 +msgid "" +"This author's works are in public domain and will be published on Internet " +"school library of Wolne Lektury soon." +msgstr "" + +#: templates/catalogue/book_stub_detail.html:20 +#: templates/catalogue/tagged_object_list.html:86 +msgid "" +"This author's works will become part of public domain and will be allowed to " +"be published without restrictions in:" +msgstr "" + +#: templates/catalogue/book_stub_detail.html:23 +#: templates/catalogue/tagged_object_list.html:80 +msgid "This author's works are 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:122 +msgid "Themes" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:4 +msgid "Show full category" +msgstr "" + +#: templates/catalogue/folded_tag_list.html:22 +#: templates/catalogue/main_page.html:250 +msgid "Hide" +msgstr "" + +#: templates/catalogue/fragment_sets.html:2 +msgid "Shelves containing fragment" +msgstr "" + +#: templates/catalogue/fragment_sets.html:4 +#: templates/catalogue/main_page.html:28 +msgid "You do not own any shelves. You can create one below, if you want to." +msgstr "" + +#: templates/catalogue/fragment_sets.html:9 +msgid "Save all shelves" +msgstr "" + +#: templates/catalogue/fragment_short.html:6 +msgid "Expand fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:12 +msgid "Hide fragment" +msgstr "" + +#: templates/catalogue/fragment_short.html:17 +msgid "See in a book" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "check list of books" +msgstr "" + +#: templates/catalogue/main_page.html:13 +msgid "in our repository" +msgstr "" + +#: templates/catalogue/main_page.html:17 +msgid "Browse books by categories" +msgstr "" + +#: templates/catalogue/main_page.html:19 +#: templates/catalogue/user_shelves.html:2 +msgid "Your shelves with books" +msgstr "" + +#: templates/catalogue/main_page.html:24 +msgid "delete" +msgstr "" + +#: templates/catalogue/main_page.html:33 +#: 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:38 +msgid "You need to " +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "sign in" +msgstr "" + +#: templates/catalogue/main_page.html:38 +msgid "to manage your shelves." +msgstr "" + +#: templates/catalogue/main_page.html:41 +#: 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 "" + +#: templates/catalogue/main_page.html:43 +msgid " See more" +msgstr "" + +#: 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 "" + +#: templates/catalogue/main_page.html:54 +#: templates/catalogue/tagged_object_list.html:104 +msgid "Authors" +msgstr "" + +#: templates/catalogue/main_page.html:58 +#: templates/catalogue/tagged_object_list.html:108 +msgid "Kinds" +msgstr "" + +#: templates/catalogue/main_page.html:62 +#: templates/catalogue/tagged_object_list.html:112 +msgid "Genres" +msgstr "" + +#: templates/catalogue/main_page.html:66 +#: templates/catalogue/tagged_object_list.html:116 +msgid "Epochs" +msgstr "" + +#: templates/catalogue/main_page.html:72 +msgid "Themes and topics" +msgstr "" + +#: templates/catalogue/main_page.html:75 +msgid "Themes groups" +msgstr "" + +#: templates/catalogue/main_page.html:260 +msgid "News" +msgstr "" + +#: templates/catalogue/main_page.html:264 +msgid "See our blog" +msgstr "" + +#: templates/catalogue/main_page.html:267 +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:269 +msgid "" +"We invite people who want to take part in developing Internet school library " +"Wolne Lektury." +msgstr "" + +#: templates/catalogue/main_page.html:273 +msgid "About us" +msgstr "" + +#: templates/catalogue/main_page.html:275 +msgid "" +"\n" +"\t\t\tInternet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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 "" + +#: templates/catalogue/search_no_hits.html:5 +msgid "Search in WolneLektury.pl" +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "Search of " +msgstr "" + +#: templates/catalogue/search_no_hits.html:14 +msgid "did not match any resources." +msgstr "" + +#: templates/catalogue/tag_list.html:4 +msgid "See full category" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:15 +msgid "Your shelf is empty" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:16 +msgid "" +"You can put a book on a shelf by entering page of the reading and clicking " +"'Put on the shelf'." +msgstr "" + +#: templates/catalogue/tagged_object_list.html:31 +msgid "Download all books from this shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:35 +msgid "Choose books' which you want to download:" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +#: templates/catalogue/tagged_object_list.html:37 +#: templates/catalogue/tagged_object_list.html:38 +msgid "for reading" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:36 +msgid "and printing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:37 +msgid "and editing using" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:38 +msgid "on small displays, for example mobile phones" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +#: templates/catalogue/tagged_object_list.html:40 +msgid "for listening" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:39 +msgid "on favourite MP3 player" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "open format" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:40 +msgid "Xiph.org Foundation" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "Download" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "Updating list of books' formats on the shelf" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:41 +msgid "cancel" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:49 +msgid "Read work's study of this author on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "Read study of epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:52 +msgid "on Lektury.Gazeta.pl" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:59 +msgid "Read article about this author on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "Read article about epoch" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:62 +msgid "on Wikipedia" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:72 +msgid "Delete" +msgstr "" + +#: templates/catalogue/tagged_object_list.html:92 +msgid "No works of this author found." +msgstr "" + +#: templates/catalogue/user_shelves.html:6 +msgid "remove" +msgstr "" + +#: templates/catalogue/user_shelves.html:10 +msgid "You do not own any shelves. You can create one below if you want to" +msgstr "" + +#: templates/lessons/ajax_document_detail.html:3 +#: templates/lessons/document_detail.html:13 +msgid "author" +msgstr "" + +#: templates/lessons/document_detail.html:9 +msgid "return to list of materials" +msgstr "" + +#: templates/lessons/document_list.html:7 +msgid "Hand-outs for teachers on " +msgstr "" + +#: templates/pagination/pagination.html:5 +#: templates/pagination/pagination.html:7 +msgid "previous" +msgstr "" + +#: templates/pagination/pagination.html:21 +#: templates/pagination/pagination.html:23 +msgid "next" +msgstr "" diff --git a/wolnelektury/settings.py b/wolnelektury/settings.py index 33c219843..888ea34e4 100644 --- a/wolnelektury/settings.py +++ b/wolnelektury/settings.py @@ -132,8 +132,11 @@ COMPRESS_JS = { 'output_filename': 'js/jquery.min.js', }, 'all': { - 'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', - 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js', + 'source_filenames': ('js/jquery.autocomplete.js', 'js/jquery.form.js', + 'js/jquery.countdown.js', 'js/jquery.countdown-pl.js', + 'js/jquery.countdown-en.js', 'js/jquery.countdown-de.js', + 'js/jquery.countdown-es.js', 'js/jquery.countdown-lt.js', + 'js/jquery.countdown-ru.js', 'js/jquery.countdown-fr.js', 'js/jquery.jqmodal.js', 'js/jquery.labelify.js', 'js/catalogue.js', 'js/jquery.cookie.js',), 'output_filename': 'js/all?.min.js', diff --git a/wolnelektury/static/js/catalogue.js b/wolnelektury/static/js/catalogue.js index 66bebcf2f..d57f74339 100644 --- a/wolnelektury/static/js/catalogue.js +++ b/wolnelektury/static/js/catalogue.js @@ -1,3 +1,47 @@ +var LOCALE_TEXTS = { + "pl": { + "DELETE_SHELF": "Czy na pewno usunąć półkę", + "HIDE_DESCRIPTION": "Zwiń opis", + "EXPAND DESCRIPTION": "Rozwiń opis", + "LOADING": "Ładowanie", + }, + "fr": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND DESCRIPTION": "Translate me!", + "LOADING": "Translate me!", + }, + "ru": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND DESCRIPTION": "Translate me!", + "LOADING": "Translate me!", + }, + "en": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND DESCRIPTION": "Translate me!", + "LOADING": "Translate me!", + }, + "ru": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND DESCRIPTION": "Translate me!", + "LOADING": "Translate me!", + }, + "es": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND DESCRIPTION": "Translate me!", + "LOADING": "Translate me!", + }, + "lt":{ + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND DESCRIPTION": "Translate me!", + "LOADING": "Translate me!", + } +} var BANNER_TEXTS = [ 'Przekaż 1% żeby ukryć ten baner.', 'Jak dobrze wydać 1% swojego podatku? Poradnik dla opornych.', @@ -173,7 +217,7 @@ function serverTime() { $('.delete-shelf').click(function() { var link = $(this); var shelf_name = $('.visit-shelf', link.parent()).text(); - if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) { + if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+ ' '+ shelf_name + '?')) { $.post(link.attr('href'), function(data, textStatus) { link.parent().remove(); }); @@ -211,7 +255,7 @@ function serverTime() { $('.delete-shelf').click(function() { var link = $(this); var shelf_name = $('.visit-shelf', link.parent()).text(); - if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) { + if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF'] + ' ' + shelf_name + '?')) { $.post(link.attr('href'), function(data, textStatus) { link.parent().remove(); }); @@ -235,11 +279,11 @@ function serverTime() { if ($('#description').hasClass('hidden')) { $('#description').slideDown('fast').removeClass('hidden'); $.cookie('description-state', 'opened', {path: '/', expires: 30}); - $('p', this).html('Zwiń opis ▲'); + $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▲'); } else { $('#description').slideUp('fast').addClass('hidden'); $.cookie('description-state', 'closed', {path: '/', expires: 30}); - $('p', this).html('Rozwiń opis ▼'); + $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▼'); } }); @@ -252,7 +296,7 @@ function serverTime() { trigger: 'a.jqm-trigger', onShow: function(hash) { var offset = $(hash.t).offset(); - target.html('

Ładowanie

'); + target.html('

'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'

'); hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() }, onLoad: function(hash) { $('form', hash.w).ajaxForm({ @@ -272,7 +316,7 @@ function serverTime() { if ($.cookie('description-state') == 'closed') { $('#description').hide().addClass('hidden'); - $('#toggle-description p').html('Rozwiń opis ▼'); + $('#toggle-description p').html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_SHELF']+' ▼'); } $('#user-info').show(); @@ -284,7 +328,7 @@ function serverTime() { $('#download-shelf-menu').slideDown('fast'); if (!formatsDownloaded) { - // Pobierz dane o formatach + // Get info about the formats formatsDownloaded = true; $.ajax({ url: $('#download-formats-form').attr('data-formats-feed'), diff --git a/wolnelektury/static/js/jquery.countdown-pl.js b/wolnelektury/static/js/jquery.countdown-pl.js index 4d6d1d44c..81d5f077d 100644 --- a/wolnelektury/static/js/jquery.countdown-pl.js +++ b/wolnelektury/static/js/jquery.countdown-pl.js @@ -18,5 +18,5 @@ n == 1 ? 1 : 0; } }; - $.countdown.setDefaults($.countdown.regional['pl']); -})(jQuery); + //$.countdown.setDefaults($.countdown.regional['pl']); +})(jQuery); \ No newline at end of file diff --git a/wolnelektury/templates/404.html b/wolnelektury/templates/404.html index b761b4866..ebf7d155b 100644 --- a/wolnelektury/templates/404.html +++ b/wolnelektury/templates/404.html @@ -14,7 +14,7 @@

{% trans "Site does not exist" %}

-{% trans "We are sorry, but this site does not exist. Please check if you entered correct address or go to "%} {% trans "homepage" %}. +{% trans "We are sorry, but this site does not exist. Please check if you entered correct address or go to "%} {% trans "main page" %}.

{% compressed_js "jquery" %} {% compressed_js "all" %} {% block extrahead %} @@ -49,6 +50,16 @@ +
+
+ {% trans "Choose your interface language: " %} + +
+
@@ -58,13 +69,17 @@
+
\ No newline at end of file diff --git a/wolnelektury/templates/catalogue/book_stub_detail.html b/wolnelektury/templates/catalogue/book_stub_detail.html index 387e123e9..c03db372a 100644 --- a/wolnelektury/templates/catalogue/book_stub_detail.html +++ b/wolnelektury/templates/catalogue/book_stub_detail.html @@ -1,37 +1,35 @@ {% extends "base.html" %} +{% load i18n %} {% load catalogue_tags pagination_tags %} -{% block title %}Lektura {{ book.title }} w WolneLektury.pl{% endblock %} +{% block title %}{{ book.title }} w WolneLektury.pl{% endblock %} {% block bodyid %}book-stub-detail{% endblock %} {% block body %}

{{ book.title }}, {{ book.author }}

-

{{ form.q }} lub wróć do strony głównej

+

{{ form.q }} {% trans "or" %} {% trans "return to main page" %}

{% if book.in_pd %} - To dzieło znajduje się w domenie publicznej i niedługo zostanie - opublikowane w szkolnej bibliotece internetowej Wolne Lektury. + {% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %} {% else %} {% if book.pd %} - To dzieło przejdzie - do zasobów domeny publicznej i będzie mogło być publikowane bez - żadnych ograniczeń za: + {% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in:" %} {% include "catalogue/pd_counter.html" %} {% else %} - To dzieło objęte jest prawem autorskim. + {% trans "This author's works are copyrighted." %} {% endif %} {% endif %} {% include "info/join_us.html" %}
- +
-

* Ładowanie

+

* {% trans "Loading" %}

{% endblock %} \ No newline at end of file diff --git a/wolnelektury/templates/catalogue/book_text.html b/wolnelektury/templates/catalogue/book_text.html index 2b800f5b9..d8282650a 100644 --- a/wolnelektury/templates/catalogue/book_text.html +++ b/wolnelektury/templates/catalogue/book_text.html @@ -14,7 +14,7 @@ diff --git a/wolnelektury/templates/catalogue/fragment_short.html b/wolnelektury/templates/catalogue/fragment_short.html index 24eeef336..ccca721de 100644 --- a/wolnelektury/templates/catalogue/fragment_short.html +++ b/wolnelektury/templates/catalogue/fragment_short.html @@ -1,8 +1,5 @@ {% load i18n %}
- {#
#} - {# Półki #} - {#
#} {% if fragment.short_text %}
{{ fragment.short_text|safe }} diff --git a/wolnelektury/templates/catalogue/main_page.html b/wolnelektury/templates/catalogue/main_page.html index defa62a6f..292d004b7 100644 --- a/wolnelektury/templates/catalogue/main_page.html +++ b/wolnelektury/templates/catalogue/main_page.html @@ -265,15 +265,18 @@

{% trans "You can help us!" %}

-

{% trans "Works appended constantly to " %}Utwory włączane sukcesywnie do naszej biblioteki staramy się opracowywać jak najdokładniej. Jest to możliwe tylko dzięki współpracującym z nami wolontariuszom.

-

Zapraszamy wszystkie osoby, które chcą współtworzyć szkolną bibliotekę internetową Wolne Lektury.

-

Zobacz więcej ⇒

+

{% trans "We try our best to elaborate works appended to our library. It is possible only due to support of our volunteers." %}

+

{% trans "We invite people who want to take part in developing Internet school library Wolne Lektury." %}

+

{% trans "See more" %} ⇒

-

O projekcie

-

Biblioteka internetowa z lekturami szkolnymi „Wolne Lektury” (www.wolnelektury.pl) to projekt realizowany przez Fundację Nowoczesna Polska. Działa od 2007 roku i udostępnia w swoich zbiorach lektury szkolne, które są zalecane do użytku przez Ministerstwo Edukacji Narodowej i które trafiły już do domeny publicznej. +

{% trans "About us" %}

+

+ {% blocktrans %} + Internet library with school readings „Wolne Lektury” (www.wolnelektury.pl) 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. + {% endblocktrans %}

-

Zobacz więcej ⇒

+

{% trans "See more" %} ⇒

-{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/wolnelektury/templates/catalogue/search_no_hits.html b/wolnelektury/templates/catalogue/search_no_hits.html index 940a1b035..f91b9c854 100644 --- a/wolnelektury/templates/catalogue/search_no_hits.html +++ b/wolnelektury/templates/catalogue/search_no_hits.html @@ -1,7 +1,8 @@ {% extends "base.html" %} +{% load i18n %} {% load catalogue_tags pagination_tags %} -{% block title %}Wyszukiwanie w WolneLektury.pl{% endblock %} +{% block title %}{% trans "Search in WolneLektury.pl" %}{% endblock %} {% block bodyid %}tagged-object-list{% endblock %} @@ -10,18 +11,17 @@ {% breadcrumbs tags %}
-

Przepraszamy! Brak wyników spełniających kryteria podane w zapytaniu.

- -

Wyszukiwarka obsługuje takie kryteria jak tytuł, autor, motyw/temat, epoka, rodzaj i gatunek utworu. - Obecnie nie obsługujemy wyszukiwania fraz w tekstach utworów.

- +

{% trans "Search of " %}{{ query }} {% trans "did not match any resources." %}

+ +

{% transblock %}Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre. + As for now we do not support full text search.{% endtransblock %}

{% include "info/join_us.html" %}
- +
-

* Ładowanie

+

* {% trans "Loading" %}

{% endblock %} \ No newline at end of file diff --git a/wolnelektury/templates/catalogue/tag_list.html b/wolnelektury/templates/catalogue/tag_list.html index aa273c860..e96320e90 100644 --- a/wolnelektury/templates/catalogue/tag_list.html +++ b/wolnelektury/templates/catalogue/tag_list.html @@ -1,7 +1,7 @@ {% load i18n %} {% load catalogue_tags %} {% if one_tag %} -

Zobacz całą kategorię {{ one_tag }}

+

{% trans "See full category" %} {{ one_tag }}

{% else %}
    {% for tag in tags %} diff --git a/wolnelektury/templates/catalogue/tagged_object_list.html b/wolnelektury/templates/catalogue/tagged_object_list.html index 91824ed32..3f9c5ba67 100644 --- a/wolnelektury/templates/catalogue/tagged_object_list.html +++ b/wolnelektury/templates/catalogue/tagged_object_list.html @@ -12,8 +12,8 @@ {% if shelf_is_set and not object_list %}
    -

    Twoja półka jest pusta

    -

    Możesz wrzucić książkę na półkę, wchodząc na stronę danej lektury i klikając na przycisk „Na półkę!”.

    +

    {% trans "Your shelf is empty" %}

    +

    {% trans "You can put a book on a shelf by entering page of the reading and clicking 'Put on the shelf'." %}

    {% else %} {% autopaginate object_list 10 %} @@ -24,35 +24,43 @@ {{ last_tag.description|safe }}
    -

    Zwiń opis ▲

    +

    {% trans "Toggle description" %} ▲

    {% endif %} {% if shelf_is_set %} - Pobierz wszystkie książki z tej półki + {% trans "Download all books from this shelf" %} {% endif %} {% if last_tag.gazeta_link %}

    - {% ifequal last_tag.category "author" %}Przeczytaj omówienia utworów autora w serwisie Lektury.Gazeta.pl{% endifequal %} - {% ifequal last_tag.category "epoch" %}Przeczytaj omówienia z epoki {{ last_tag }} w serwisie Lektury.Gazeta.pl{% endifequal %} + {% ifequal last_tag.category "author" %} + {% trans "Read work's study of this author on Lektury.Gazeta.pl" %} + {% endifequal %} + {% ifequal last_tag.category "epoch" %} + {% trans "Read study of epoch" %} {{ last_tag }} {% trans "on Lektury.Gazeta.pl" %} + {% endifequal %}

    {% endif %} {% if last_tag.wiki_link %}

    - {% ifequal last_tag.category "author" %}Przeczytaj artykuł o autorze w Wikipedii{% endifequal %} - {% ifequal last_tag.category "epoch" %}Przeczytaj artykuł o epoce {{ last_tag }} w Wikipedii{% endifequal %} + {% ifequal last_tag.category "author" %} + {% trans "Read article about this author on Wikipedia" %} + {% endifequal %} + {% ifequal last_tag.category "epoch" %} + {% trans "Read article about epoch" %} {{ last_tag }} {% trans "on Wikipedia" %} + {% endifequal %}

    {% endif %} @@ -61,7 +69,7 @@ {% for book in object_list %}
  • {% if user_is_owner %} - Usuń + {% trans "Delete" %} {% endif %} {{ book.short_html }}
  • {% endfor %} @@ -69,19 +77,14 @@ {% else %} {% if only_author %} {% if last_tag.alive %} -

    Dzieła tego autora objęte są prawem autorskim.

    -

    Dowiedz się, dlaczego biblioteki internetowe - nie mogą udostępniać dzieł tego autora.

    - {% else %}{% comment %} Nie żyje {% endcomment %} + {% trans "This author's works are copyrighted." %} + {% else %}{% comment %} Is dead {% endcomment %} {% if last_tag.in_pd %} -

    Dzieła tego autora znajdują się w domenie publicznej - i niedługo zostaną opublikowane w szkolnej bibliotece - internetowej Wolne Lektury.

    - {% else %}{% comment %} Nie żyje, ale jeszcze nie w PD {% endcomment %} +

    {% trans "This author's works are in public domain and will be published on Internet school library of Wolne Lektury soon." %}

    + {% else %} + {% comment %} Is dead, but not yet in public domain {% endcomment %}
    -

    Dzieła tego autora przejdą do zasobów domeny - publicznej i będą mogły być publikowane bez - żadnych ograniczeń za:

    +

    {% trans "This author's works will become part of public domain and will be allowed to be published without restrictions in:" %}

    {% include "catalogue/pd_counter.html" %}

    Dowiedz się, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego autora.

    @@ -89,7 +92,7 @@ {% endif %} {% endif %} {% else %} - Nie znaleziono żadnych utworów. + {% trans "No works of this author found." %} {% endif %} {% include "info/join_us.html" %} {% endif %} @@ -97,29 +100,29 @@ {% paginate %}
    {% if object_list %} - {% comment %} Jeśli nic nie znaleźliśmy, to i po prawej stronie nic nie będzie {% endcomment %} + {% comment %} If we didn't find anything there will be nothing on the right side as well {% endcomment %}
    {% if categories.author %} -

    Autorzy

    +

    {% trans "Authors" %}

    {% tag_list categories.author tags %} {% endif %} {% if categories.kind %} -

    Rodzaje

    +

    {% trans "Kinds" %}

    {% tag_list categories.kind tags %} {% endif %} {% if categories.genre %} -

    Gatunki literackie

    +

    {% trans "Genres" %}

    {% tag_list categories.genre tags %} {% endif %} {% if categories.epoch %} -

    Epoki

    +

    {% trans "Epochs" %}

    {% tag_list categories.epoch tags %} {% endif %}
    {% if categories.theme %} -

    Motywy

    +

    {% trans "Themes" %}

    {% tag_list categories.theme tags %} {% endif %}
    @@ -128,9 +131,9 @@ {% endif %} {% endif %}
    - +
    -

    * Ładowanie

    +

    * {% trans "Loading" %}

    {% endblock %} \ No newline at end of file diff --git a/wolnelektury/templates/catalogue/user_shelves.html b/wolnelektury/templates/catalogue/user_shelves.html index cd5b86196..28c122295 100644 --- a/wolnelektury/templates/catalogue/user_shelves.html +++ b/wolnelektury/templates/catalogue/user_shelves.html @@ -1,17 +1,17 @@ {% load i18n %} -

    Twoje półki z lekturami

    +

    {% trans "Your shelves with books" %}

    {% if shelves %} {% else %} -

    Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć półkę poniżej.

    +

    {% trans "You do not own any shelves. You can create one below if you want to" %}.

    {% endif %}
      -
    1. {{ new_set_form.name }}
    2. +
    3. {{ new_set_form.name }}
    \ No newline at end of file diff --git a/wolnelektury/templates/lessons/document_detail.html b/wolnelektury/templates/lessons/document_detail.html index 7c6406c19..afc3d69db 100644 --- a/wolnelektury/templates/lessons/document_detail.html +++ b/wolnelektury/templates/lessons/document_detail.html @@ -6,7 +6,7 @@ {% block body %}

    {{ object.title }}

    -

    {{ form.q }} {% trans "or" %} {% trans "return to list of materials" %}

    +

    {{ form.q }} {% trans "or" %} {% trans "return to list of materials" %}

    diff --git a/wolnelektury/templates/lessons/document_list.html b/wolnelektury/templates/lessons/document_list.html index 84dee5352..79ba80d5c 100644 --- a/wolnelektury/templates/lessons/document_list.html +++ b/wolnelektury/templates/lessons/document_list.html @@ -48,7 +48,7 @@ {% block body %}

    {% trans "Hand-outs for teachers" %}

    -

    {{ form.q }} {% trans "or" %} {% trans "return to homepage" %}

    +

    {{ form.q }} {% trans "or" %} {% trans "return to main page" %}

    diff --git a/wolnelektury/urls.py b/wolnelektury/urls.py index 4f9d4ed73..3a0b2ac09 100644 --- a/wolnelektury/urls.py +++ b/wolnelektury/urls.py @@ -48,4 +48,5 @@ urlpatterns = patterns('', url(r'^%s(?P.*)$' % settings.STATIC_URL[1:], 'django.views.static.serve', {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), url(r'^$', 'django.views.generic.simple.redirect_to', {'url': 'katalog/'}), + url(r'^i18n/', include('django.conf.urls.i18n')), )