From: Radek Czajka Date: Wed, 10 Apr 2013 08:00:34 +0000 (+0200) Subject: Merge branch 'master' into funding X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/6d7b11e4a01b2314c0527d94d91f3159c0bd34ce?hp=c9f85a25896062833551550a6da8d4e83cd03d39 Merge branch 'master' into funding Conflicts: requirements.txt --- diff --git a/apps/ajaxable/utils.py b/apps/ajaxable/utils.py index 4ae6e869e..2f03309f1 100755 --- a/apps/ajaxable/utils.py +++ b/apps/ajaxable/utils.py @@ -7,13 +7,13 @@ from django.template import RequestContext from django.utils.encoding import force_unicode from django.utils.functional import Promise from django.utils.http import urlquote_plus -from django.utils import simplejson +import json from django.utils.translation import ugettext_lazy as _ from django.views.decorators.vary import vary_on_headers from honeypot.decorators import verify_honeypot_value -class LazyEncoder(simplejson.JSONEncoder): +class LazyEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, Promise): return force_unicode(obj) @@ -24,7 +24,7 @@ class JSONResponse(HttpResponse): def __init__(self, data={}, callback=None, **kwargs): # get rid of mimetype kwargs.pop('mimetype', None) - data = simplejson.dumps(data) + data = json.dumps(data) if callback: data = callback + "(" + data + ");" super(JSONResponse, self).__init__(data, mimetype="application/json", **kwargs) diff --git a/apps/api/templates/api/main.html b/apps/api/templates/api/main.html index 5dd8229f8..1a79320da 100755 --- a/apps/api/templates/api/main.html +++ b/apps/api/templates/api/main.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% load i18n %} {% load common_tags %} diff --git a/apps/api/tests.py b/apps/api/tests.py index fe8e70f62..518a3e2c0 100644 --- a/apps/api/tests.py +++ b/apps/api/tests.py @@ -5,7 +5,7 @@ from os import path from django.core.files.uploadedfile import SimpleUploadedFile from django.test import TestCase from django.test.utils import override_settings -from django.utils import simplejson as json +import json from catalogue.models import Book, Tag from picture.forms import PictureImportForm diff --git a/apps/catalogue/fields.py b/apps/catalogue/fields.py index 68aaa4025..bb9f26efe 100644 --- a/apps/catalogue/fields.py +++ b/apps/catalogue/fields.py @@ -126,7 +126,7 @@ class BuildEpub(BuildEbook): class BuildHtml(BuildEbook): def build(self, fieldfile): from django.core.files.base import ContentFile - from slughifi import slughifi + from fnpdjango.utils.text.slughifi import slughifi from sortify import sortify from librarian import html from catalogue.models import Fragment, Tag diff --git a/apps/catalogue/locale/de/LC_MESSAGES/django.mo b/apps/catalogue/locale/de/LC_MESSAGES/django.mo index 2d8a8df68..447c16a5b 100644 Binary files a/apps/catalogue/locale/de/LC_MESSAGES/django.mo and b/apps/catalogue/locale/de/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/de/LC_MESSAGES/django.po b/apps/catalogue/locale/de/LC_MESSAGES/django.po index 53f73f8cb..ef64ad18d 100644 --- a/apps/catalogue/locale/de/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/de/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:39+0200\n" -"PO-Revision-Date: 2012-04-11 22:55+0100\n" -"Last-Translator: Kamil \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:38+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -37,202 +37,227 @@ msgstr "Zeige die Motive nicht " msgid "Don't use our custom font" msgstr "Benutze voreingestellte Schrift nicht" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Zeilenabstand" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Normaler Zeilenabstand" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "Zeilenabstand 1,5" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Doppelter Zeilenabstand" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Schriftgröße" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Voreingestellt" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Groß" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "Autor" - -#: models.py:34 -msgid "epoch" -msgstr "Epoche" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Ein Fehler ist aufgetreten: %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "Art" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Buch wurde erfolgreich importiert" -#: models.py:36 -msgid "genre" -msgstr "Genre" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Fehler beim Importieren der Datei: %r" -#: models.py:37 -msgid "theme" -msgstr "Motiv" +#: views.py:562 +msgid "Download custom PDF" +msgstr "PDF-Datei herunterladen" -#: models.py:38 -msgid "set" -msgstr "Buchregal" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Herunterladen" -#: models.py:39 models.py:368 -msgid "book" -msgstr "Buch" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "Titel" -#: models.py:60 models.py:230 -msgid "name" -msgstr "Name" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "Sortierschlüssel" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "Slug" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "Sortierschlüssel" - -#: models.py:63 -msgid "category" -msgstr "Kategorie" +#: models/book.py:33 +msgid "language code" +msgstr "Sprachenkode" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "Beschreibung" -#: models.py:68 -msgid "book count" -msgstr "Anzahl der Bücher" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "Erstellungsdatum" -#: models.py:90 -msgid "tag" -msgstr "Tag" - -#: models.py:91 -msgid "tags" -msgstr "Tags" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "%s XML-Datei" - -#: models.py:229 -msgid "type" -msgstr "Typ" - -#: models.py:231 -#, fuzzy -msgid "file" -msgstr "XML-Datei" +#: models/book.py:38 +msgid "parent number" +msgstr "Elternnummer" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr "zusätzliche Informationen" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "book media" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "Titel" - -#: models.py:336 -msgid "language code" -msgstr "Sprachenkode" - -#: models.py:341 -msgid "parent number" -msgstr "Elternnummer" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "Umschlag" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "Buch" + +#: models/book.py:67 msgid "books" msgstr "Bücher" -#: models.py:620 +#: models/book.py:243 #, python-format msgid "Book \"%s\" does not exist." msgstr "Buch mit dem Slug = \"%s\" ist nicht vorhanden." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Buch %s ist bereits vorhanden" -#: models.py:935 -msgid "fragment" -msgstr "Auszug" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "%s XML-Datei" -#: models.py:936 -msgid "fragments" -msgstr "Auszüge" +#: models/bookmedia.py:25 +msgid "type" +msgstr "Typ" -#: models.py:977 +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "Name" + +#: models/bookmedia.py:27 +#, fuzzy +msgid "file" +msgstr "XML-Datei" + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "book media" + +#: models/collection.py:16 msgid "book slugs" msgstr "Büchervorschau" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "Sammlung" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "Sammlungen" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Ein Fehler ist aufgetreten: %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "Auszug" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Buch wurde erfolgreich importiert" +#: models/fragment.py:33 +msgid "fragments" +msgstr "Auszüge" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Fehler beim Importieren der Datei: %r" +#: models/tag.py:14 +msgid "author" +msgstr "Autor" -#: views.py:535 -msgid "Download custom PDF" -msgstr "PDF-Datei herunterladen" +#: models/tag.py:15 +msgid "epoch" +msgstr "Epoche" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Herunterladen" +#: models/tag.py:16 +msgid "kind" +msgstr "Art" + +#: models/tag.py:17 +msgid "genre" +msgstr "Genre" + +#: models/tag.py:18 +msgid "theme" +msgstr "Motiv" + +#: models/tag.py:19 +msgid "set" +msgstr "Buchregal" + +#: models/tag.py:32 +msgid "category" +msgstr "Kategorie" + +#: models/tag.py:37 +msgid "book count" +msgstr "Anzahl der Bücher" + +#: models/tag.py:59 +msgid "tag" +msgstr "Tag" + +#: models/tag.py:60 +msgid "tags" +msgstr "Tags" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 @@ -255,8 +280,7 @@ msgid "" msgstr "" "Audiothek der Schullektüren, die der Stiftung Nowoczesna Polska gehört. \n" "Sie können sie kostenlos und ohne Beschränkungen benutzen. \n" -"Audiobücher nehmen bekannte Schauspieler und Schauspielerinnen, darunter " -"Danuta Stenka und Jan Peszek." +"Audiobücher nehmen bekannte Schauspieler und Schauspielerinnen, darunter Danuta Stenka und Jan Peszek." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 @@ -266,7 +290,6 @@ msgstr "Siehe auch" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:11 -#, fuzzy msgid "Theme" msgstr "Motiv" @@ -280,23 +303,15 @@ msgid "This work is licensed under:" msgstr "Dieses Werk steht unter Lizenz" #: templates/catalogue/book_info.html:9 -#, fuzzy msgid "" "This work isn't covered by copyright and is part of the\n" " public domain, which means it can be freely used, published and\n" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." -msgstr "" -"Dieses Werk wird durch das Urheberrecht nicht geschützt. \n" -" Es bedeutet, es kann frei benutzt, veröffentlicht und verbreitet " -"werden. \n" -" Wenn es dabei zusätzliche Materialien (Notizen, Motive etc.) gibt, " -"unterliegen sie der Lizenz Creative Commons Attribution-ShareAlike 3.0\n" +msgstr "Dieses Werk ist nicht urheberrechtlich geschützt, dass sie frei benutzt werden kann, vervielfältigt und veröffentlicht. Wenn es irgendwelche zusätzlichen ürheberrechtlich geschützten Materialien an diesem Werk gibt (Anmerkungen, Motive), sind sie unter der Lizenz http://creativecommons.org/licenses/by-sa/3.0/ verfügbar." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" @@ -310,7 +325,8 @@ msgstr "Redigiert und kommentiert von:" msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" msgstr "Auflistung von allen Werken" @@ -318,25 +334,23 @@ msgstr "Auflistung von allen Werken" msgid "Table of Content" msgstr "Inhaltsverzeichnis" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" msgstr "↑ top ↑" #: templates/catalogue/book_sets.html:2 -#, fuzzy msgid "Put a book on the shelf!" -msgstr "Das Buch ist nicht im Regal" +msgstr "Leg das Buch aufs Regal ab!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 msgid "Create new shelf" msgstr "Neues Bücherregal erstellen" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" -"Sie haben kein Bücherregal. Sie können eins unten erschaffen, wenn Sie " -"wollen." +msgstr "Sie haben kein Bücherregal. Sie können eins unten erschaffen, wenn Sie wollen." #: templates/catalogue/book_sets.html:15 msgid "Put on the shelf!" @@ -344,7 +358,6 @@ msgstr "Aufs Bücherregal legen!" #: templates/catalogue/book_short.html:59 #: templates/catalogue/picture_detail.html:54 -#, fuzzy msgid "Epoch" msgstr "Epoche" @@ -354,16 +367,15 @@ msgid "Kind" msgstr "Sorte" #: templates/catalogue/book_short.html:73 -#, fuzzy msgid "Genre" -msgstr "Genre" +msgstr "Gattung" #: templates/catalogue/book_short.html:88 msgid "Read online" msgstr "Online lesen" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" msgstr "Drucken" @@ -372,54 +384,58 @@ msgid "for an e-book reader" msgstr "Für ein E-Book-Reader" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" msgstr "für Kindle" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" msgstr "für fortgeschrittene Benutzung" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" msgstr "Hören" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" msgstr "Inhaltsverzeichnis" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 -#, fuzzy +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" -msgstr "Motiv" +msgstr "Motive" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" msgstr "Editieren. Notiz" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" msgstr "Infobox" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" msgstr "Bücherseite" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" msgstr "für ein E-Book-Reader" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" msgstr "Lade alle Audiobücher von diesem Buch herunter" @@ -429,9 +445,8 @@ msgid "Motifs and themes" msgstr "Motive und Themen" #: templates/catalogue/book_wide.html:44 -#, fuzzy msgid "See" -msgstr "Bücherregale" +msgstr "Siehe" #: templates/catalogue/book_wide.html:47 msgid "Source" @@ -446,9 +461,8 @@ msgid "Source XML file" msgstr "XML-Ursprungsdatei" #: templates/catalogue/book_wide.html:51 -#, fuzzy msgid "Book on" -msgstr "Anzahl der Bücher" +msgstr "Buch über" #: templates/catalogue/book_wide.html:51 msgid "Editor's Platform" @@ -466,7 +480,8 @@ msgstr "Buchbeschreibung in Wikipedia" msgid "Mix this book" msgstr "Passe dieses Buch zusammen" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" msgstr "Katalog" @@ -474,37 +489,44 @@ msgstr "Katalog" msgid "Download the catalogue in PDF format." msgstr "Laden Sie den Katalog als PDF-Datei" -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 -#, fuzzy +#: templatetags/catalogue_tags.py:415 msgid "Authors" -msgstr "Autor" +msgstr "Autoren" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" msgstr "Sorten" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 -#, fuzzy +#: templatetags/catalogue_tags.py:416 msgid "Genres" -msgstr "Genre" +msgstr "Gattungen" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 -#, fuzzy +#: templatetags/catalogue_tags.py:418 msgid "Epochs" -msgstr "Epoche" +msgstr "Epochen" #: templates/catalogue/catalogue.html:31 msgid "Themes and topics" msgstr "Themen und Motive" +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "Sammlungen" + #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" @@ -518,12 +540,10 @@ msgstr "Neueste DAISY-Audiobücher" msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" "DAISY-System ist ein weltweit anerkanntes Buchformatr, \n" -"das an Bedürfnisse der Sehbehinderten, der Blinden und anderen Menschen mit " -"Leseschwierigkeiten. \n" +"das an Bedürfnisse der Sehbehinderten, der Blinden und anderen Menschen mit Leseschwierigkeiten. \n" "Sie können es kostenlos und ohne Beschränkungen benutzen." #: templates/catalogue/differentiate_tags.html:12 @@ -536,9 +556,7 @@ msgstr "Auschnitt aus dem Inhalt der Bücherregale" #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" -"Sie besitzen kein Bücherregal. Sie können eins unten erschaffen, wenn Sie " -"wollen." +msgstr "Sie besitzen kein Bücherregal. Sie können eins unten erschaffen, wenn Sie wollen." #: templates/catalogue/fragment_sets.html:9 msgid "Save all shelves" @@ -557,18 +575,22 @@ msgstr "Den Auszug verstecken" msgid "See full category" msgstr "volle Kategorie sehen" -#: templates/catalogue/menu.html:32 +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" msgstr "Alle Bücher" -#: templates/catalogue/menu.html:36 +#: templates/catalogue/menu.html:28 msgid "Audiobooks" msgstr "Audioücher" -#: templates/catalogue/menu.html:40 -#, fuzzy +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "DAISY-Datei" +msgstr "DAISY" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " @@ -583,7 +605,6 @@ msgid "Details" msgstr "Details" #: templates/catalogue/picture_detail.html:48 -#, fuzzy msgid "Author" msgstr "Autor" @@ -635,11 +656,8 @@ msgstr "%(cs)s, gestiftet von %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" -"Audiobücher wurden als Teil des Projektes %(cs)s vorbereitet, gestiftet von " -"%(fb)s." +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Audiobücher wurden als Teil des Projektes %(cs)s vorbereitet, gestiftet von %(fb)s." #: templates/catalogue/player.html:127 #, python-format @@ -659,19 +677,24 @@ msgstr "Suchen" msgid "Did you mean" msgstr "Haben Sie gemeint" -#: templates/catalogue/search_multiple_hits.html:54 +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Ergebnisse nach Titeln" + +#: templates/catalogue/search_multiple_hits.html:67 msgid "Results by authors" msgstr "Ergebnisse nach Autoren" -#: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "Ergebnisse nach Titeln" +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "Ergebnisse nach Autoren" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" msgstr "Ergebnisse im Text" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" msgstr "Andere Ergebnisse" @@ -682,12 +705,10 @@ msgstr "Sorry! Suchkriterien haben keine Ressourcen erwiesen" #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" -"Suchmaschine fördert die folgenden Kriterien: Titel, Autor, Thema/Motiv, " -"Epoche, Art und Genre. \n" +"Suchmaschine fördert die folgenden Kriterien: Titel, Autor, Thema/Motiv, Epoche, Art und Genre. \n" "Die Volltextsuche ist noch nicht möglich." #: templates/catalogue/search_too_short.html:13 @@ -714,9 +735,7 @@ msgstr "Entfernen" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" -"Sie haben noch keine Bücherregale. Sie können eins unten erschaffen, wenn " -"Sie wollen." +msgstr "Sie haben noch keine Bücherregale. Sie können eins unten erschaffen, wenn Sie wollen." #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" diff --git a/apps/catalogue/locale/en/LC_MESSAGES/django.mo b/apps/catalogue/locale/en/LC_MESSAGES/django.mo index 269613059..0a414055e 100644 Binary files a/apps/catalogue/locale/en/LC_MESSAGES/django.mo and b/apps/catalogue/locale/en/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/en/LC_MESSAGES/django.po b/apps/catalogue/locale/en/LC_MESSAGES/django.po index 50f285f73..68bb96cac 100644 --- a/apps/catalogue/locale/en/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/en/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-03-04 20:05+0100\n" -"Last-Translator: xxx \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:38+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -37,214 +37,239 @@ msgstr "Don't display themes" msgid "Don't use our custom font" msgstr "Don't use our custom font" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Leading" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Normal leading" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "One and a half leading" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Double leading" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Font size" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Default" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Big" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "author" - -#: models.py:34 -msgid "epoch" -msgstr "period" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "form" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Book imported succesfully" -#: models.py:36 -msgid "genre" -msgstr "genre" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "An error occured while importing file: %r" -#: models.py:37 -msgid "theme" -msgstr "motif" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Download custom PDF" -#: models.py:38 -msgid "set" -msgstr "set" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Download" -#: models.py:39 models.py:368 -msgid "book" -msgstr "book" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "Title" -#: models.py:60 models.py:230 -msgid "name" -msgstr "name" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "Sort key" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "Slug" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "Sort key" - -#: models.py:63 -msgid "category" -msgstr "Category" +#: models/book.py:33 +msgid "language code" +msgstr "language code" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "Description" -#: models.py:68 -msgid "book count" -msgstr "Number of books" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "creation date" -#: models.py:90 -msgid "tag" -msgstr "tag" - -#: models.py:91 -msgid "tags" -msgstr "tags" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "%s file" - -#: models.py:229 -msgid "type" -msgstr "type" - -#: models.py:231 -msgid "file" -msgstr "XML file" +#: models/book.py:38 +msgid "parent number" +msgstr "Parent number" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr "Additional information" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "book media" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "Title" - -#: models.py:336 -msgid "language code" -msgstr "language code" - -#: models.py:341 -msgid "parent number" -msgstr "Parent number" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "cover" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "book" + +#: models/book.py:67 msgid "books" msgstr "Books" -#: models.py:620 +#: models/book.py:243 #, python-format msgid "Book \"%s\" does not exist." msgstr "Book with stub = \"%s\" does not exist." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Book %s already exists" -#: models.py:935 -msgid "fragment" -msgstr "Fragment" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "%s file" -#: models.py:936 -msgid "fragments" -msgstr "Fragments" +#: models/bookmedia.py:25 +msgid "type" +msgstr "type" + +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "name" + +#: models/bookmedia.py:27 +msgid "file" +msgstr "XML file" + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "book media" -#: models.py:977 +#: models/collection.py:16 msgid "book slugs" msgstr "Book stubs" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "collection" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "collections" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "Fragment" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Book imported succesfully" +#: models/fragment.py:33 +msgid "fragments" +msgstr "Fragments" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "An error occured while importing file: %r" +#: models/tag.py:14 +msgid "author" +msgstr "author" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Download custom PDF" +#: models/tag.py:15 +msgid "epoch" +msgstr "period" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Download" +#: models/tag.py:16 +msgid "kind" +msgstr "form" + +#: models/tag.py:17 +msgid "genre" +msgstr "genre" + +#: models/tag.py:18 +msgid "theme" +msgstr "motif" + +#: models/tag.py:19 +msgid "set" +msgstr "set" + +#: models/tag.py:32 +msgid "category" +msgstr "Category" + +#: models/tag.py:37 +msgid "book count" +msgstr "Number of books" + +#: models/tag.py:59 +msgid "tag" +msgstr "tag" + +#: models/tag.py:60 +msgid "tags" +msgstr "tags" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 msgid "Listing of all audiobooks" -msgstr "" +msgstr "List of the audiobooks" #: templates/catalogue/audiobook_list.html:12 msgid "Latest MP3 audiobooks" -msgstr "" +msgstr "Latest MP3 audiobooks" #: templates/catalogue/audiobook_list.html:13 msgid "Latest Ogg Vorbis audiobooks" -msgstr "" +msgstr "Latest Ogg Vorbis audiobooks" #: templates/catalogue/audiobook_list.html:19 msgid "" @@ -252,27 +277,29 @@ msgid "" "Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" "Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." msgstr "" +"Audio library of required readings of Modern Poland Foundation.\n" +"It is free of charge and you can use it without any limits. \n" +"Audiobooks are recorded with the participation of famous Polish actors like Danuta Stenka or Jan Peszek." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 #: templates/catalogue/tagged_object_list.html:104 msgid "See also" -msgstr "" +msgstr "See also" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:11 -#, fuzzy msgid "Theme" -msgstr "motif" +msgstr "Theme" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:13 msgid "in work " -msgstr "" +msgstr "in work " #: templates/catalogue/book_info.html:6 msgid "This work is licensed under:" -msgstr "" +msgstr "This work is licensed under:" #: templates/catalogue/book_info.html:9 msgid "" @@ -281,359 +308,367 @@ msgid "" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" +"This work is not covered by copyright and is a part of the\n" +" public domain, which means that it can be used, published and\n" +" distributed. If there are any additional copyrighted materials\n" +" provided with this work (such as annotations, motifs etc.), those\n" +" materials are licensed under the \n" +" Creative Commons Attribution-ShareAlike 3.0\n" +" license." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" -msgstr "" +msgstr "Text based on:" #: templates/catalogue/book_info.html:28 msgid "Edited and annotated by:" -msgstr "" +msgstr "Edited and annotated by:" #: templates/catalogue/book_info.html:33 msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" -msgstr "" +msgstr "List of all works" #: templates/catalogue/book_list.html:21 msgid "Table of Content" -msgstr "" +msgstr "Table of Contents" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" -msgstr "" +msgstr "↑ top ↑" #: templates/catalogue/book_sets.html:2 -#, fuzzy msgid "Put a book on the shelf!" -msgstr "This book is not on the shelf" +msgstr "Put this book on the shelf!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 -#, fuzzy msgid "Create new shelf" -msgstr "Name of the new shelf" +msgstr "Create new shelf" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" +msgstr "You do not have any shelves. You can create one below, if you want to." #: templates/catalogue/book_sets.html:15 -#, fuzzy msgid "Put on the shelf!" -msgstr "Name of the new shelf" +msgstr "Put on the shelf!" #: templates/catalogue/book_short.html:59 #: templates/catalogue/picture_detail.html:54 -#, fuzzy msgid "Epoch" -msgstr "period" +msgstr "Period" #: templates/catalogue/book_short.html:66 #: templates/catalogue/picture_detail.html:60 msgid "Kind" -msgstr "" +msgstr "Form" #: templates/catalogue/book_short.html:73 -#, fuzzy msgid "Genre" -msgstr "genre" +msgstr "Genre" #: templates/catalogue/book_short.html:88 msgid "Read online" msgstr "Read online" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" -msgstr "" +msgstr "to print" #: templates/catalogue/book_short.html:98 msgid "for an e-book reader" -msgstr "" +msgstr "for an e-book reader" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" -msgstr "" +msgstr "for Kindle" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" msgstr "" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" -msgstr "" +msgstr "Listen" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" -msgstr "" +msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" -msgstr "" +msgstr "Table of contents" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 -#, fuzzy +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" -msgstr "motif" +msgstr "Themes" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" -msgstr "" +msgstr "Edit. note" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" -msgstr "" +msgstr "Infobox" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" -msgstr "" +msgstr "Book's page" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" -msgstr "" +msgstr "for a reader" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" -msgstr "" +msgstr "Download all audiobooks for this book" #: templates/catalogue/book_wide.html:22 #: templates/catalogue/tagged_object_list.html:60 -#, fuzzy msgid "Motifs and themes" -msgstr "Don't display themes" +msgstr "Motifs and themes" #: templates/catalogue/book_wide.html:44 -#, fuzzy msgid "See" -msgstr "Shelves" +msgstr "See" #: templates/catalogue/book_wide.html:47 msgid "Source" -msgstr "" +msgstr "Source" #: templates/catalogue/book_wide.html:47 msgid "of the book" -msgstr "" +msgstr "of the book" #: templates/catalogue/book_wide.html:49 msgid "Source XML file" -msgstr "" +msgstr "Source XML file" #: templates/catalogue/book_wide.html:51 -#, fuzzy msgid "Book on" -msgstr "Number of books" +msgstr "Book on" #: templates/catalogue/book_wide.html:51 msgid "Editor's Platform" -msgstr "" +msgstr "Editor's Platform" #: templates/catalogue/book_wide.html:54 msgid "Book description on Lektury.Gazeta.pl" -msgstr "" +msgstr "Book description on Lektury.Gazeta.pl" #: templates/catalogue/book_wide.html:57 msgid "Book description on Wikipedia" -msgstr "" +msgstr "Book description on Wikipedia" #: templates/catalogue/book_wide.html:59 msgid "Mix this book" -msgstr "" +msgstr "Mix this book" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" -msgstr "" +msgstr "Catalogue" #: templates/catalogue/catalogue.html:16 msgid "Download the catalogue in PDF format." -msgstr "" +msgstr "Download the catalogue in PDF format." -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 -#, fuzzy +#: templatetags/catalogue_tags.py:415 msgid "Authors" -msgstr "author" +msgstr "Authors" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" -msgstr "" +msgstr "Forms" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 -#, fuzzy +#: templatetags/catalogue_tags.py:416 msgid "Genres" -msgstr "genre" +msgstr "Genres" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 -#, fuzzy +#: templatetags/catalogue_tags.py:418 msgid "Epochs" -msgstr "period" +msgstr "Periods" #: templates/catalogue/catalogue.html:31 msgid "Themes and topics" -msgstr "" +msgstr "Motifs and themes" + +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "collections" #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" -msgstr "" +msgstr "List of all DAISY files" #: templates/catalogue/daisy_list.html:9 msgid "Latest DAISY audiobooks" -msgstr "" +msgstr "Latest DAISY audiobooks" #: templates/catalogue/daisy_list.html:15 msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" +"The internationally recognized DAISY book format \n" +"provides the best possible standardized access to books for people who are \n" +"partially sighted, blind or are dyslexic. It is free of charge and you can use it without any limits." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" +msgstr "The criteria are ambiguous. Please select one of the following options:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" -msgstr "" +msgstr "Shelves containing fragment" #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" +msgstr "You do not own any shelves. You can create one below, if you want to." #: templates/catalogue/fragment_sets.html:9 -#, fuzzy msgid "Save all shelves" -msgstr "Shelves" +msgstr "Save all shelves" #: templates/catalogue/fragment_short.html:12 -#, fuzzy msgid "Expand fragment" -msgstr "Fragment" +msgstr "Expand fragment" #: templates/catalogue/fragment_short.html:22 -#, fuzzy msgid "Hide fragment" -msgstr "Fragment" +msgstr "Hide fragment" #: templates/catalogue/inline_tag_list.html:4 #: templates/catalogue/tag_list.html:4 -#, fuzzy msgid "See full category" -msgstr "Category" +msgstr "See full category" -#: templates/catalogue/menu.html:32 -#, fuzzy +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" -msgstr "Books" +msgstr "All books" -#: templates/catalogue/menu.html:36 -#, fuzzy +#: templates/catalogue/menu.html:28 msgid "Audiobooks" -msgstr "Books" +msgstr "Audiobooks" -#: templates/catalogue/menu.html:40 -#, fuzzy +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "DAISY file" +msgstr "DAISY" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " -msgstr "" +msgstr "Work is licensed under " #: templates/catalogue/picture_detail.html:31 msgid "Based on" -msgstr "" +msgstr "Based on" #: templates/catalogue/picture_detail.html:45 msgid "Details" -msgstr "" +msgstr "Details" #: templates/catalogue/picture_detail.html:48 -#, fuzzy msgid "Author" -msgstr "author" +msgstr "Author" #: templates/catalogue/picture_detail.html:66 msgid "Other resources" -msgstr "" +msgstr "Other sources" #: templates/catalogue/picture_detail.html:69 msgid "Source of the image" -msgstr "" +msgstr "Source of the image" #: templates/catalogue/picture_detail.html:72 msgid "Image on the Editor's Platform" -msgstr "" +msgstr "Image on the Editor's Platform" #: templates/catalogue/picture_detail.html:83 msgid "View XML source" -msgstr "" +msgstr "View XML source" #: templates/catalogue/picture_detail.html:86 -#, fuzzy msgid "Work's themes " -msgstr "Don't display themes" +msgstr "Work's themes " #: templates/catalogue/picture_list.html:8 #: templates/catalogue/picture_list.html:10 msgid "Listing of all pictures" -msgstr "" +msgstr "List of all pictures" #: templates/catalogue/player.html:35 -#, fuzzy msgid "Download as" -msgstr "Download" +msgstr "Download as" #: templates/catalogue/player.html:88 msgid "Artist" -msgstr "" +msgstr "Reader" #: templates/catalogue/player.html:89 msgid "Director" -msgstr "" +msgstr "Director" #: templates/catalogue/player.html:108 msgid "Audiobooks were prepared as a part of the projects:" -msgstr "" +msgstr "Audiobooks were prepared as a part of the following projects:" #: templates/catalogue/player.html:113 #, python-format msgid "%(cs)s, funded by %(fb)s" -msgstr "" +msgstr "%(cs)s, funded by %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." #: templates/catalogue/player.html:127 #, python-format msgid "Audiobooks were prepared as a part of the %(cs)s project." -msgstr "" +msgstr "Audiobooks were prepared as a part of the %(cs)s project." #: templates/catalogue/search_multiple_hits.html:5 #: templates/catalogue/search_no_hits.html:5 @@ -641,58 +676,64 @@ msgstr "" #: templates/catalogue/search_too_short.html:5 #: templates/catalogue/search_too_short.html:10 msgid "Search" -msgstr "" +msgstr "Search" #: templates/catalogue/search_multiple_hits.html:11 #: templates/catalogue/search_no_hits.html:16 msgid "Did you mean" -msgstr "" +msgstr "Did you mean" -#: templates/catalogue/search_multiple_hits.html:54 -msgid "Results by authors" -msgstr "" +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Results by title" #: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "" +msgid "Results by authors" +msgstr "Results by authors" + +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "Translator" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" -msgstr "" +msgstr "Results in text" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" -msgstr "" +msgstr "Other results" #: templates/catalogue/search_no_hits.html:19 #: templates/catalogue/tagged_object_list.html:146 msgid "Sorry! Search cirteria did not match any resources." -msgstr "" +msgstr "Sorry! Search cirteria did not match any resources." #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" +"Search engine supports following criteria: title, author, theme/topic, period, form and genre.\n" +"\t\tAs for now we do not support full text search." #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" +msgstr "Sorry! Search query must have at least two characters." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 msgid "in Lektury.Gazeta.pl" -msgstr "" +msgstr "in Lektury.Gazeta.pl" #: templates/catalogue/tagged_object_list.html:83 #: templates/catalogue/tagged_object_list.html:113 msgid "in Wikipedia" -msgstr "" +msgstr "in Wikipedia" #: templates/catalogue/user_shelves.html:2 msgid "Your shelves with books" -msgstr "" +msgstr "Your shelves with books" #: templates/catalogue/user_shelves.html:6 msgid "remove" @@ -700,16 +741,15 @@ msgstr "" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" +msgstr "You do not own any shelves. You can create one below if you want to" #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" -msgstr "" +msgstr "Create shelf" #: templates/catalogue/snippets/custom_pdf_link_li.html:6 -#, fuzzy msgid "Download a custom PDF" -msgstr "Download custom PDF" +msgstr "Download a custom PDF" #: templates/catalogue/snippets/license_icon.html:6 #: templates/catalogue/snippets/license_icon.html:8 @@ -770,9 +810,6 @@ msgstr "" #~ msgid "goes to public domain" #~ msgstr "Goes to public domain" -#~ msgid "translator" -#~ msgstr "Translator" - #~ msgid "year of translator's death" #~ msgstr "Year of translator's death" diff --git a/apps/catalogue/locale/es/LC_MESSAGES/django.mo b/apps/catalogue/locale/es/LC_MESSAGES/django.mo index 36fdaaaa2..5207daca7 100644 Binary files a/apps/catalogue/locale/es/LC_MESSAGES/django.mo and b/apps/catalogue/locale/es/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/es/LC_MESSAGES/django.po b/apps/catalogue/locale/es/LC_MESSAGES/django.po index 1add6333a..89a3032fd 100644 --- a/apps/catalogue/locale/es/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/es/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:39+0200\n" -"PO-Revision-Date: 2012-06-04 13:06+0100\n" -"Last-Translator: x \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:39+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -37,204 +37,229 @@ msgstr "No mostres temas" msgid "Don't use our custom font" msgstr "No uses nuestro tipo de la fuente de personalización " -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Interlineado" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Interlineado normal" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "Interlineado uno y medio" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Interlineado doble" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Tamaño de la fuente" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Valor por defecto" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Grande" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "autor" - -#: models.py:34 -msgid "epoch" -msgstr "época" +# msgid "Today is %(month)s, %(day)s." +# msgstr "Hoy es el %(día)s de %(mes)es" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Ha ocurrido un error: %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "tipo" +#: views.py:528 +msgid "Book imported successfully" +msgstr "El libro ha sido importado con éxito" -#: models.py:36 -msgid "genre" -msgstr "género" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Ha ocurrido un error al cargar el archivo: %r" -#: models.py:37 -msgid "theme" -msgstr "tema" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Descarga PDF personalizado" -#: models.py:38 -msgid "set" -msgstr "colección" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Descargar" -#: models.py:39 models.py:368 -msgid "book" -msgstr "libro" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "título" -#: models.py:60 models.py:230 -msgid "name" -msgstr "nombre" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "clave de clasificación" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "slug" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "clave de clasificación" - -#: models.py:63 -msgid "category" -msgstr "categoría" +#: models/book.py:33 +msgid "language code" +msgstr "código de idioma" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "descripción" -#: models.py:68 -msgid "book count" -msgstr "número de libros" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "fecha de creación" -#: models.py:90 -msgid "tag" -msgstr "tag" - -#: models.py:91 -msgid "tags" -msgstr "tags" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "%s archivo" - -#: models.py:229 -msgid "type" -msgstr "tipo" - -#: models.py:231 -msgid "file" -msgstr "archivo" +#: models/book.py:38 +msgid "parent number" +msgstr "cifra matriz" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr "información adicional" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "los medios de el libro" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "título" - -#: models.py:336 -msgid "language code" -msgstr "código de idioma" - -#: models.py:341 -msgid "parent number" -msgstr "cifra matriz" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "tapa" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "libro" + +#: models/book.py:67 msgid "books" msgstr "libros" -#: models.py:620 +#: models/book.py:243 #, fuzzy, python-format msgid "Book \"%s\" does not exist." msgstr "Libro con slug = \"%s\" no existe." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Libro %s ya existe" -#: models.py:935 -msgid "fragment" -msgstr "fragmento" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "%s archivo" -#: models.py:936 -msgid "fragments" -msgstr "fragmentos" +#: models/bookmedia.py:25 +msgid "type" +msgstr "tipo" + +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "nombre" + +#: models/bookmedia.py:27 +msgid "file" +msgstr "archivo" + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "los medios de el libro" -#: models.py:977 +#: models/collection.py:16 #, fuzzy msgid "book slugs" msgstr "vista previa de libros" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "colección" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "colecciones" -# msgid "Today is %(month)s, %(day)s." -# msgstr "Hoy es el %(día)s de %(mes)es" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Ha ocurrido un error: %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "fragmento" -#: views.py:501 -msgid "Book imported successfully" -msgstr "El libro ha sido importado con éxito" +#: models/fragment.py:33 +msgid "fragments" +msgstr "fragmentos" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Ha ocurrido un error al cargar el archivo: %r" +#: models/tag.py:14 +msgid "author" +msgstr "autor" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Descarga PDF personalizado" +#: models/tag.py:15 +msgid "epoch" +msgstr "época" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Descargar" +#: models/tag.py:16 +msgid "kind" +msgstr "tipo" + +#: models/tag.py:17 +msgid "genre" +msgstr "género" + +#: models/tag.py:18 +msgid "theme" +msgstr "tema" + +#: models/tag.py:19 +msgid "set" +msgstr "colección" + +#: models/tag.py:32 +msgid "category" +msgstr "categoría" + +#: models/tag.py:37 +msgid "book count" +msgstr "número de libros" + +#: models/tag.py:59 +msgid "tag" +msgstr "tag" + +#: models/tag.py:60 +msgid "tags" +msgstr "tags" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 @@ -255,11 +280,9 @@ msgid "" "Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" "Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." msgstr "" -"Colección de grabaciones de libros de lectura obligatoria de la Fundación " -"Polonia Moderna.\n" +"Colección de grabaciones de libros de lectura obligatoria de la Fundación Polonia Moderna.\n" "Podéis disfrutar de ella gratuitamente y sin límites.\n" -"Los audiolibros están grabados por actores conocidos, como Danuta Stenka y " -"Jan Peszek." +"Los audiolibros están grabados por actores conocidos, como Danuta Stenka y Jan Peszek." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 @@ -282,26 +305,18 @@ msgid "This work is licensed under:" msgstr "Esta obra está autorizada bajo:" #: templates/catalogue/book_info.html:9 -#, fuzzy msgid "" "This work isn't covered by copyright and is part of the\n" " public domain, which means it can be freely used, published and\n" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" -"Esta obra es libre de los derechos del autor y forma parte de\n" -"dominio público, por tanto se la puede usar, publicar y\n" -"distribuir libremente. Si hay unos materiales adicionales con todos los " -"derechos de autor reservados\n" -"adjuntos a la obra (como anotaciones, motivos etc.) estos materiales\n" -"están autorizados bajo licencia\n" -"Creative Commons " -"Attribution-ShareAlike 3.0\n" -"\n" +"Esta obra está libre de derechos de autor y es de dominio público, por ende se puede usar,publicar y difundir libremente. Si esta obra tiene materiales adicionales (como notas a pie de pá gina, temas lutrarios, etc.), que no esten libres de derechos de autor, dichos materiales están publicados bajo la \n" +"Creative Commons Attribution-ShareAlike 3.0\n" +" licencia." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" @@ -315,7 +330,8 @@ msgstr "Editado y anotado por:" msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" msgstr "Lista de todas las obras" @@ -323,7 +339,7 @@ msgstr "Lista de todas las obras" msgid "Table of Content" msgstr "Tabla de contenido" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" msgstr "↑volver arriba↑" @@ -331,7 +347,8 @@ msgstr "↑volver arriba↑" msgid "Put a book on the shelf!" msgstr "¡Ponlo en el estante!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 msgid "Create new shelf" msgstr "Crear estante nuevo" @@ -363,7 +380,7 @@ msgid "Read online" msgstr "Leer en línea" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" msgstr "imprimir" @@ -372,54 +389,59 @@ msgid "for an e-book reader" msgstr "para el lector de audiolibro " #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" msgstr "para Kindle" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" msgstr "para uso avanzado" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" msgstr "Escuchar" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" msgstr "Tabla de contenido" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" msgstr "Temas" # ! także: N.de la R. -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" msgstr "Nota de la redacción" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" msgstr "Infobox" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" msgstr "Página del libro" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" msgstr "para el lector" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" msgstr "Descarga todos los audiolibros para este libro" @@ -468,7 +490,8 @@ msgstr "Descripción del libro en Wikipedia" msgid "Mix this book" msgstr "Mezcla este libro" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" msgstr "Catálogo" @@ -476,27 +499,31 @@ msgstr "Catálogo" msgid "Download the catalogue in PDF format." msgstr "Descarga el catálogo en formato PDF" -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 +#: templatetags/catalogue_tags.py:415 msgid "Authors" msgstr "Autor" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" msgstr "Géneros" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 +#: templatetags/catalogue_tags.py:416 msgid "Genres" msgstr "Subgénero" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 +#: templatetags/catalogue_tags.py:418 msgid "Epochs" msgstr "Épocas" @@ -504,6 +531,12 @@ msgstr "Épocas" msgid "Themes and topics" msgstr "Temas" +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "colecciones" + #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" @@ -517,21 +550,15 @@ msgstr "Los últimos audiolibros en formato DAISY" msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" -"El sistema DAISY es un formato, reconocido en todo el mundo, que facilita el " -"acceso a los libros \n" -"y está adaptado a las necesidades de personas con baja visión, invidentes o " -"las que \n" -"tienen problemas de lectura. Los podéis disfrutar de manera gratuita y sin " -"límites." +"El sistema DAISY es un formato, reconocido en todo el mundo, que facilita el acceso a los libros \n" +"y está adaptado a las necesidades de personas con baja visión, invidentes o las que \n" +"tienen problemas de lectura. Los podéis disfrutar de manera gratuita y sin límites." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" -"Los criterios son ambiguos. Por favor, seleccione una de las siguientes " -"opciones:" +msgstr "Los criterios son ambiguos. Por favor, seleccione una de las siguientes opciones:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" @@ -558,18 +585,22 @@ msgstr "Ocultar fragmento" msgid "See full category" msgstr "Ver la categoría completa" -#: templates/catalogue/menu.html:32 +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" msgstr "Todos los libros" -#: templates/catalogue/menu.html:36 +#: templates/catalogue/menu.html:28 msgid "Audiobooks" msgstr "Audiolibros" -#: templates/catalogue/menu.html:40 -#, fuzzy +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "archivo DAISY" +msgstr "DAISY" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " @@ -638,8 +669,7 @@ msgstr "%(cs)s,financiado por %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." msgstr "Audiolibros forman parte del proyecto %(cs)s financiado por %(fb)s." #: templates/catalogue/player.html:127 @@ -660,43 +690,43 @@ msgstr "Buscar" msgid "Did you mean" msgstr "¿Te has referido a...?" -#: templates/catalogue/search_multiple_hits.html:54 +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Resultados por título" + +#: templates/catalogue/search_multiple_hits.html:67 msgid "Results by authors" msgstr "Resultados por autor" -#: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "Resultados por título" +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "Resultados por autor" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" msgstr "Resultados en el texto" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" msgstr "Otros resultados" #: templates/catalogue/search_no_hits.html:19 #: templates/catalogue/tagged_object_list.html:146 msgid "Sorry! Search cirteria did not match any resources." -msgstr "" -"¡Lo siento! El criterio de la búsqueda no corresponde a ningún recurso." +msgstr "¡Lo siento! El criterio de la búsqueda no corresponde a ningún recurso." #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" -"El buscador admite los siguientes criterios: título, autor, tema, época, " -"género y subgénero.\n" +"El buscador admite los siguientes criterios: título, autor, tema, época, género y subgénero.\n" "\t\tHasta ahora no se admite la búsqueda de texto completo. " #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" -"¡Lo siento! La consulta de búsqueda tiene que consistir de dos caracteres " -"como mínimo." +msgstr "¡Lo siento! La consulta de búsqueda tiene que consistir de dos caracteres como mínimo." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 @@ -725,9 +755,8 @@ msgid "Create shelf" msgstr "Crear estante" #: templates/catalogue/snippets/custom_pdf_link_li.html:6 -#, fuzzy msgid "Download a custom PDF" -msgstr "Descarga PDF personalizado" +msgstr "Descarga un PDF personalisado" #: templates/catalogue/snippets/license_icon.html:6 #: templates/catalogue/snippets/license_icon.html:8 diff --git a/apps/catalogue/locale/fr/LC_MESSAGES/django.mo b/apps/catalogue/locale/fr/LC_MESSAGES/django.mo index d54e24e48..f939a57b8 100644 Binary files a/apps/catalogue/locale/fr/LC_MESSAGES/django.mo and b/apps/catalogue/locale/fr/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/fr/LC_MESSAGES/django.po b/apps/catalogue/locale/fr/LC_MESSAGES/django.po index 8aa3888f5..7c332924e 100644 --- a/apps/catalogue/locale/fr/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/fr/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:39+0200\n" -"PO-Revision-Date: 2012-02-23 17:16+0100\n" -"Last-Translator: Ela Janota \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:38+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -36,217 +36,242 @@ msgstr "N'affiche pas de thèmes" msgid "Don't use our custom font" msgstr "N'utilise pas notre caractère usuel" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Interligne" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Interligne normal" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "Interligne et demi" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Interligne double" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Taille des caractères" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Implicite" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Grand(e)(s)" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "auteur" - -#: models.py:34 -msgid "epoch" -msgstr "époque" +# msgid "Today is %(month)s, %(day)s." +# msgstr "Aujourd'hui nous sommes le" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Un erreur a eu lieu : %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "type" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Livre importé avec succès" -#: models.py:36 -msgid "genre" -msgstr "genre" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Erreur pendant l'importation du fichier: %r" -#: models.py:37 -msgid "theme" -msgstr "thème" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Téléchargez un PDF personnalisé" -#: models.py:38 -msgid "set" -msgstr "série" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Téléchargez" -#: models.py:39 models.py:368 -msgid "book" -msgstr "livre" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "titre" -#: models.py:60 models.py:230 -msgid "name" -msgstr "nom" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "critère de tri" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "ébauche" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "critère de tri" - -#: models.py:63 -msgid "category" -msgstr "catégorie" +#: models/book.py:33 +msgid "language code" +msgstr "code de langue" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "description" -#: models.py:68 -msgid "book count" -msgstr "nombre des livres" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "date de création" -#: models.py:90 -msgid "tag" -msgstr "tag" - -#: models.py:91 -msgid "tags" -msgstr "tags" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "fichier %s" - -#: models.py:229 -msgid "type" -msgstr "type" - -#: models.py:231 -msgid "file" -msgstr "fichier" +#: models/book.py:38 +msgid "parent number" +msgstr "nombre de parent" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr "information supplémentaire" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "book media" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "titre" - -#: models.py:336 -msgid "language code" -msgstr "code de langue" - -#: models.py:341 -msgid "parent number" -msgstr "nombre de parent" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "couverture" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "livre" + +#: models/book.py:67 msgid "books" msgstr "livres" -#: models.py:620 +#: models/book.py:243 #, python-format msgid "Book \"%s\" does not exist." msgstr "Livre \"%s\" n'existe pas." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Livre %s existe déjà" -#: models.py:935 -msgid "fragment" -msgstr "extrait" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "fichier %s" -#: models.py:936 -msgid "fragments" -msgstr "extraits" +#: models/bookmedia.py:25 +msgid "type" +msgstr "type" + +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "nom" -#: models.py:977 +#: models/bookmedia.py:27 +msgid "file" +msgstr "fichier" + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "book media" + +#: models/collection.py:16 #, fuzzy msgid "book slugs" msgstr "ébauches des livres" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "collection" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "collections" -# msgid "Today is %(month)s, %(day)s." -# msgstr "Aujourd'hui nous sommes le" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Un erreur a eu lieu : %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "extrait" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Livre importé avec succès" +#: models/fragment.py:33 +msgid "fragments" +msgstr "extraits" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Erreur pendant l'importation du fichier: %r" +#: models/tag.py:14 +msgid "author" +msgstr "auteur" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Téléchargez un PDF personnalisé" +#: models/tag.py:15 +msgid "epoch" +msgstr "époque" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Téléchargez" +#: models/tag.py:16 +msgid "kind" +msgstr "type" + +#: models/tag.py:17 +msgid "genre" +msgstr "genre" + +#: models/tag.py:18 +msgid "theme" +msgstr "thème" + +#: models/tag.py:19 +msgid "set" +msgstr "série" + +#: models/tag.py:32 +msgid "category" +msgstr "catégorie" + +#: models/tag.py:37 +msgid "book count" +msgstr "nombre des livres" + +#: models/tag.py:59 +msgid "tag" +msgstr "tag" + +#: models/tag.py:60 +msgid "tags" +msgstr "tags" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 msgid "Listing of all audiobooks" -msgstr "" +msgstr "Liste des tous les livres audio" #: templates/catalogue/audiobook_list.html:12 msgid "Latest MP3 audiobooks" -msgstr "" +msgstr "Les plus nouveaux livres audio MP3" #: templates/catalogue/audiobook_list.html:13 msgid "Latest Ogg Vorbis audiobooks" -msgstr "" +msgstr "Les plus nouveaux livres audio Ogg Vorbis" #: templates/catalogue/audiobook_list.html:19 msgid "" @@ -254,27 +279,29 @@ msgid "" "Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" "Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." msgstr "" +"Audiothèque des lectures scolaires de la Fondation Pologne Moderne.\n" +"Vous pouvez l'utiliser gratuitement et sans limites. \n" +"Les livres audio sont lus par les acteurs connus, comme par exemple: Danuta Stenka et Jan Peszek." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 #: templates/catalogue/tagged_object_list.html:104 msgid "See also" -msgstr "" +msgstr "Voir aussi" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:11 -#, fuzzy msgid "Theme" -msgstr "thème" +msgstr "Thème" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:13 msgid "in work " -msgstr "" +msgstr "dans l'oeuvre" #: templates/catalogue/book_info.html:6 msgid "This work is licensed under:" -msgstr "" +msgstr "Cet oeuvre est publié sous la licence" #: templates/catalogue/book_info.html:9 msgid "" @@ -283,359 +310,365 @@ msgid "" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" +"Cet ouvrage n'est pas protégé par le droit d'auteur et appartiennent au\n" +"domaine public; c'est-à-dire qu'il peut être publié et divulgué librement.\n" +"Si l'ouvrage est accompagné des matériaux supplémentaires (annotations, motifs littéraires, etc.),\n" +"ces derniers sont donc distribués sous la licence:\n" +"Paternité - Partage à l'Identique 3.0 non transposé." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" -msgstr "" +msgstr "Préparation du texte basée sur:" #: templates/catalogue/book_info.html:28 msgid "Edited and annotated by:" -msgstr "" +msgstr "Les éditions et annotations par:" #: templates/catalogue/book_info.html:33 msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" -msgstr "" +msgstr "Liste des tous les ouvrages" #: templates/catalogue/book_list.html:21 msgid "Table of Content" -msgstr "" +msgstr "Table des matières" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" -msgstr "" +msgstr "↑ top ↑" #: templates/catalogue/book_sets.html:2 -#, fuzzy msgid "Put a book on the shelf!" -msgstr "Le livre n'est pas sur l'étagère" +msgstr "Mettre un livre sur l'étagère!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 -#, fuzzy msgid "Create new shelf" -msgstr "Nom de l'étagère nouvelle" +msgstr "Créez une nouvelle étagère" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" +msgstr "Vous ne possédez aucune étagère. Vous pouvez en créer une au-dessous, si vous voulez." #: templates/catalogue/book_sets.html:15 -#, fuzzy msgid "Put on the shelf!" -msgstr "Nom de l'étagère nouvelle" +msgstr "Mettre sur l'étagère!" #: templates/catalogue/book_short.html:59 #: templates/catalogue/picture_detail.html:54 -#, fuzzy msgid "Epoch" -msgstr "époque" +msgstr "Époque" #: templates/catalogue/book_short.html:66 #: templates/catalogue/picture_detail.html:60 msgid "Kind" -msgstr "" +msgstr "Type" #: templates/catalogue/book_short.html:73 -#, fuzzy msgid "Genre" -msgstr "genre" +msgstr "Genre" #: templates/catalogue/book_short.html:88 msgid "Read online" msgstr "Lire en ligne" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" -msgstr "" +msgstr "pour imprimer" #: templates/catalogue/book_short.html:98 msgid "for an e-book reader" -msgstr "" +msgstr "pour un lecteur des livres numeriques" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" -msgstr "" +msgstr "pour Kindle" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" -msgstr "" +msgstr "pour l’utilisation avancée" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" -msgstr "" +msgstr "Écoutez" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" -msgstr "" +msgstr "Wolne Lektury (Lectures Libres)" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" -msgstr "" +msgstr "Table des matières" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 -#, fuzzy +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" -msgstr "thème" +msgstr "Thèmes" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" -msgstr "" +msgstr "Note d'éditeur" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" -msgstr "" +msgstr "Infobox" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" -msgstr "" +msgstr "Site du livre" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" -msgstr "" +msgstr "pour un lecteur" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" -msgstr "" +msgstr "Téléchargez tous les livres audio pour ce livre" #: templates/catalogue/book_wide.html:22 #: templates/catalogue/tagged_object_list.html:60 -#, fuzzy msgid "Motifs and themes" -msgstr "N'affiche pas de thèmes" +msgstr "Motifs et thèmes" #: templates/catalogue/book_wide.html:44 -#, fuzzy msgid "See" -msgstr "Etagères" +msgstr "Voir" #: templates/catalogue/book_wide.html:47 msgid "Source" -msgstr "" +msgstr "Source" #: templates/catalogue/book_wide.html:47 msgid "of the book" -msgstr "" +msgstr "du livre" #: templates/catalogue/book_wide.html:49 msgid "Source XML file" -msgstr "" +msgstr "Fichier source XML" #: templates/catalogue/book_wide.html:51 -#, fuzzy msgid "Book on" -msgstr "nombre des livres" +msgstr "Livre sur" #: templates/catalogue/book_wide.html:51 msgid "Editor's Platform" -msgstr "" +msgstr "Plateforme d'éditeur" #: templates/catalogue/book_wide.html:54 msgid "Book description on Lektury.Gazeta.pl" -msgstr "" +msgstr "Description du livre sur Lektury.Gazeta.pl" #: templates/catalogue/book_wide.html:57 msgid "Book description on Wikipedia" -msgstr "" +msgstr "Description du livre sur Wikipédia" #: templates/catalogue/book_wide.html:59 msgid "Mix this book" -msgstr "" +msgstr "Mixez ce livre" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" -msgstr "" +msgstr "Catalogue" #: templates/catalogue/catalogue.html:16 msgid "Download the catalogue in PDF format." -msgstr "" +msgstr "Téléchargez le catalogue au format PDF" -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 -#, fuzzy +#: templatetags/catalogue_tags.py:415 msgid "Authors" -msgstr "auteur" +msgstr "Auteurs" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" -msgstr "" +msgstr "Types" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 -#, fuzzy +#: templatetags/catalogue_tags.py:416 msgid "Genres" -msgstr "genre" +msgstr "Genres" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 -#, fuzzy +#: templatetags/catalogue_tags.py:418 msgid "Epochs" -msgstr "époque" +msgstr "Époques" #: templates/catalogue/catalogue.html:31 msgid "Themes and topics" -msgstr "" +msgstr "Thèmes et sujets" + +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "collections" #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" -msgstr "" +msgstr "Liste des tous les livres audio DAISY" #: templates/catalogue/daisy_list.html:9 msgid "Latest DAISY audiobooks" -msgstr "" +msgstr "Le plus nouveaux livres audio DAISY" #: templates/catalogue/daisy_list.html:15 msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" +"DAISY est un système pour rendre les livres accessibles, apprécié autour du monde, \n" +"approprié à des non voyants et à des malvoyants et à des personnes \n" +"qui ont des difficultés à lire. Vous pouvez l'utiliser gratuitement et sans limites." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" +msgstr "Les critères sont ambigus. Choisissez parmi les options ci-dessous:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" -msgstr "" +msgstr "Étagères qui contiennent l'extrait" #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" +msgstr "Vous ne possédez aucune étagère. Vous pouvez en créer une au-dessous, si vous voulez." #: templates/catalogue/fragment_sets.html:9 -#, fuzzy msgid "Save all shelves" -msgstr "Etagères" +msgstr "Enregistrer toutes les étagères" #: templates/catalogue/fragment_short.html:12 -#, fuzzy msgid "Expand fragment" -msgstr "extrait" +msgstr "Montrer l'extrait" #: templates/catalogue/fragment_short.html:22 -#, fuzzy msgid "Hide fragment" -msgstr "extrait" +msgstr "Cacher l'extrait" #: templates/catalogue/inline_tag_list.html:4 #: templates/catalogue/tag_list.html:4 -#, fuzzy msgid "See full category" -msgstr "catégorie" +msgstr "Voir catégorie entière" -#: templates/catalogue/menu.html:32 -#, fuzzy +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" -msgstr "livres" +msgstr "Tous les livres" -#: templates/catalogue/menu.html:36 -#, fuzzy +#: templates/catalogue/menu.html:28 msgid "Audiobooks" -msgstr "livres" +msgstr "Livres audio" -#: templates/catalogue/menu.html:40 -#, fuzzy +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "fichier DAISY" +msgstr "DAISY" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " -msgstr "" +msgstr "Ouvrage sous la licence" #: templates/catalogue/picture_detail.html:31 msgid "Based on" -msgstr "" +msgstr "Basé sur" #: templates/catalogue/picture_detail.html:45 msgid "Details" -msgstr "" +msgstr "Détails" #: templates/catalogue/picture_detail.html:48 -#, fuzzy msgid "Author" -msgstr "auteur" +msgstr "Auteur" #: templates/catalogue/picture_detail.html:66 msgid "Other resources" -msgstr "" +msgstr "Autres ressources" #: templates/catalogue/picture_detail.html:69 msgid "Source of the image" -msgstr "" +msgstr "Source d'image" #: templates/catalogue/picture_detail.html:72 msgid "Image on the Editor's Platform" -msgstr "" +msgstr "L'image sur la Plateforme d'éditeur" #: templates/catalogue/picture_detail.html:83 msgid "View XML source" -msgstr "" +msgstr "Voir source XML" #: templates/catalogue/picture_detail.html:86 -#, fuzzy msgid "Work's themes " -msgstr "N'affiche pas de thèmes" +msgstr "Les thèmes de l'oeuvre" #: templates/catalogue/picture_list.html:8 #: templates/catalogue/picture_list.html:10 msgid "Listing of all pictures" -msgstr "" +msgstr "Liste de tous les images" #: templates/catalogue/player.html:35 -#, fuzzy msgid "Download as" -msgstr "Téléchargez" +msgstr "Téléchargez comme" #: templates/catalogue/player.html:88 msgid "Artist" -msgstr "" +msgstr "Artiste" #: templates/catalogue/player.html:89 msgid "Director" -msgstr "" +msgstr "Metteur en scène" #: templates/catalogue/player.html:108 msgid "Audiobooks were prepared as a part of the projects:" -msgstr "" +msgstr "Livres audios ont été préparés comme une part des projets:" #: templates/catalogue/player.html:113 #, python-format msgid "%(cs)s, funded by %(fb)s" -msgstr "" +msgstr "%(cs)s, sponsorisé par %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Livres audios ont été préparés comme une part du projet %(cs)s sponsorisé par %(fb)s." #: templates/catalogue/player.html:127 #, python-format msgid "Audiobooks were prepared as a part of the %(cs)s project." -msgstr "" +msgstr "Livres audios ont été préparés comme une part du projet %(cs)s." #: templates/catalogue/search_multiple_hits.html:5 #: templates/catalogue/search_no_hits.html:5 @@ -643,58 +676,64 @@ msgstr "" #: templates/catalogue/search_too_short.html:5 #: templates/catalogue/search_too_short.html:10 msgid "Search" -msgstr "" +msgstr "Rechercher" #: templates/catalogue/search_multiple_hits.html:11 #: templates/catalogue/search_no_hits.html:16 msgid "Did you mean" -msgstr "" +msgstr "Est-ce que vous cherchez" -#: templates/catalogue/search_multiple_hits.html:54 -msgid "Results by authors" -msgstr "" +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Résultats par le titre" #: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "" +msgid "Results by authors" +msgstr "Résultats par l'auteur" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "traducteur" + +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" -msgstr "" +msgstr "Résultats dans le texte" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" -msgstr "" +msgstr "Autres résultats" #: templates/catalogue/search_no_hits.html:19 #: templates/catalogue/tagged_object_list.html:146 msgid "Sorry! Search cirteria did not match any resources." -msgstr "" +msgstr "Nous sommes désolés, aucune ressource ne répond aux critères de recherche." #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" +"Le moteur de recherche permet de chercher selon le titre, auteur, sujet/thème, époque, type et genre.\n" +"\t\tPour le moment nous n'assurons pas la recherche en plein texte." #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" +msgstr "Nous sommes désolés, pour effectuer la recherche il faut entrer au moins deux caractères." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 msgid "in Lektury.Gazeta.pl" -msgstr "" +msgstr "sur Lektury.Gazeta.pl" #: templates/catalogue/tagged_object_list.html:83 #: templates/catalogue/tagged_object_list.html:113 msgid "in Wikipedia" -msgstr "" +msgstr "sur Wikipédia" #: templates/catalogue/user_shelves.html:2 msgid "Your shelves with books" -msgstr "" +msgstr "Vos étagères avec les livres" #: templates/catalogue/user_shelves.html:6 msgid "remove" @@ -702,16 +741,15 @@ msgstr "" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" +msgstr "Vous ne possédez aucune étagère. Vous pouvez en créer une en-dessus, si vous voulez." #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" -msgstr "" +msgstr "Créez une étagère" #: templates/catalogue/snippets/custom_pdf_link_li.html:6 -#, fuzzy msgid "Download a custom PDF" -msgstr "Téléchargez un PDF personnalisé" +msgstr "Téléchargez un PDF pérsonnalisé" #: templates/catalogue/snippets/license_icon.html:6 #: templates/catalogue/snippets/license_icon.html:8 @@ -769,9 +807,6 @@ msgstr "" #~ msgid "goes to public domain" #~ msgstr "entre dans le domaine public" -#~ msgid "translator" -#~ msgstr "traducteur" - #~ msgid "year of translator's death" #~ msgstr "année de la mort du traducteur" diff --git a/apps/catalogue/locale/it/LC_MESSAGES/django.mo b/apps/catalogue/locale/it/LC_MESSAGES/django.mo index 101e7863f..5bf265ab9 100644 Binary files a/apps/catalogue/locale/it/LC_MESSAGES/django.mo and b/apps/catalogue/locale/it/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/it/LC_MESSAGES/django.po b/apps/catalogue/locale/it/LC_MESSAGES/django.po index cefaddb4c..44776fe21 100644 --- a/apps/catalogue/locale/it/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/it/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:39+0200\n" -"PO-Revision-Date: 2012-04-04 13:43+0200\n" -"Last-Translator: xxx\n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:39+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -37,214 +37,239 @@ msgstr "Non visualizzare i temi" msgid "Don't use our custom font" msgstr "Non utilizzare il nostro font personalizzato" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Interlinea" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Interlinea normale" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr " Interlinea 1,5" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Interlinea doppia" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Grandezza del carattere" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Predefinito" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Grande" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "autore" - -#: models.py:34 -msgid "epoch" -msgstr "epoca" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Si e verificato un errore: %(exception)s \n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "categoria" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Libro scaricato con successo" -#: models.py:36 -msgid "genre" -msgstr "genere" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Errore dell'importazione del file: %r" -#: models.py:37 -msgid "theme" -msgstr "tema" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Scarica PDF personalizzato" -#: models.py:38 -msgid "set" -msgstr "raccolta" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Scarica" -#: models.py:39 models.py:368 -msgid "book" -msgstr "libro" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "titolo" -#: models.py:60 models.py:230 -msgid "name" -msgstr "nome" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "chiave di ordinamento" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "slug" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "chiave di ordinamento" - -#: models.py:63 -msgid "category" -msgstr "categoria" +#: models/book.py:33 +msgid "language code" +msgstr "codice della lingua" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "descrizione" -#: models.py:68 -msgid "book count" -msgstr "conteggio dei libri" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "data di creazione" -#: models.py:90 -msgid "tag" -msgstr "tag" - -#: models.py:91 -msgid "tags" -msgstr "i tag" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "i %s di file" - -#: models.py:229 -msgid "type" -msgstr "tipo" - -#: models.py:231 -msgid "file" -msgstr "file" +#: models/book.py:38 +msgid "parent number" +msgstr "numero del genitore" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr " ulteriori informazioni" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "book media" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "titolo" - -#: models.py:336 -msgid "language code" -msgstr "codice della lingua" - -#: models.py:341 -msgid "parent number" -msgstr "numero del genitore" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "copertina" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "libro" + +#: models/book.py:67 msgid "books" msgstr "Libri" -#: models.py:620 +#: models/book.py:243 #, python-format msgid "Book \"%s\" does not exist." msgstr "Il libro \"%s\" non esiste." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Il libro %s esiste già" -#: models.py:935 -msgid "fragment" -msgstr "Frammento" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "i %s di file" -#: models.py:936 -msgid "fragments" -msgstr "Frammenti" +#: models/bookmedia.py:25 +msgid "type" +msgstr "tipo" + +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "nome" -#: models.py:977 +#: models/bookmedia.py:27 +msgid "file" +msgstr "file" + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "book media" + +#: models/collection.py:16 msgid "book slugs" msgstr " slug del libro " -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "raccolta" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr " raccolte" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Si e verificato un errore: %(exception)s \n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "Frammento" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Libro scaricato con successo" +#: models/fragment.py:33 +msgid "fragments" +msgstr "Frammenti" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Errore dell'importazione del file: %r" +#: models/tag.py:14 +msgid "author" +msgstr "autore" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Scarica PDF personalizzato" +#: models/tag.py:15 +msgid "epoch" +msgstr "epoca" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Scarica" +#: models/tag.py:16 +msgid "kind" +msgstr "categoria" + +#: models/tag.py:17 +msgid "genre" +msgstr "genere" + +#: models/tag.py:18 +msgid "theme" +msgstr "tema" + +#: models/tag.py:19 +msgid "set" +msgstr "raccolta" + +#: models/tag.py:32 +msgid "category" +msgstr "categoria" + +#: models/tag.py:37 +msgid "book count" +msgstr "conteggio dei libri" + +#: models/tag.py:59 +msgid "tag" +msgstr "tag" + +#: models/tag.py:60 +msgid "tags" +msgstr "i tag" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 msgid "Listing of all audiobooks" -msgstr "" +msgstr "Elenco di tutti gli audiolibri " #: templates/catalogue/audiobook_list.html:12 msgid "Latest MP3 audiobooks" -msgstr "" +msgstr "Ultimi audiolibri MP3" #: templates/catalogue/audiobook_list.html:13 msgid "Latest Ogg Vorbis audiobooks" -msgstr "" +msgstr "Ultimi audiolibri Ogg Vorbis" #: templates/catalogue/audiobook_list.html:19 msgid "" @@ -257,22 +282,21 @@ msgstr "" #: templates/catalogue/tagged_object_list.html:74 #: templates/catalogue/tagged_object_list.html:104 msgid "See also" -msgstr "" +msgstr "Vedi anche" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:11 -#, fuzzy msgid "Theme" msgstr "tema" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:13 msgid "in work " -msgstr "" +msgstr "in corso" #: templates/catalogue/book_info.html:6 msgid "This work is licensed under:" -msgstr "" +msgstr "Questa opera è pubblicata su licenza:" #: templates/catalogue/book_info.html:9 msgid "" @@ -281,74 +305,80 @@ msgid "" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" +"Questa opera non è sotto il diritto d'autore e fa parte del\n" +"pubblico dominio, il che significa che è possibile pubblicarla \n" +"e distribuirla liberamente. Se un'opera è completata con i materiali aggiuntivi \n" +"(le annotazioni, i motivi letterari ecc.) che sono protette dal diritto d'autore, quei\n" +"materiali aggiuntivi sono disponibili secondo la \n" +" Creative Commons Attribution-ShareAlike 3.0\n" +"licenza." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" -msgstr "" +msgstr "Il testo preparato e basato su:" #: templates/catalogue/book_info.html:28 msgid "Edited and annotated by:" -msgstr "" +msgstr "Curato ed elaborato da:" #: templates/catalogue/book_info.html:33 msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" -msgstr "" +msgstr "Elenco di tutte le opere" #: templates/catalogue/book_list.html:21 msgid "Table of Content" -msgstr "" +msgstr "Indice" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" msgstr "" #: templates/catalogue/book_sets.html:2 msgid "Put a book on the shelf!" -msgstr "" +msgstr "Metti il libro sullo scaffale" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 msgid "Create new shelf" -msgstr "" +msgstr "Crea un nuovo scaffale" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" +msgstr "Non hai nessuno scaffale. se vuoi puoi crearne uno, qui sotto." #: templates/catalogue/book_sets.html:15 msgid "Put on the shelf!" -msgstr "" +msgstr "Metti sullo scaffale!" #: templates/catalogue/book_short.html:59 #: templates/catalogue/picture_detail.html:54 -#, fuzzy msgid "Epoch" -msgstr "epoca" +msgstr "Epoca" #: templates/catalogue/book_short.html:66 #: templates/catalogue/picture_detail.html:60 msgid "Kind" -msgstr "" +msgstr "Categoria" #: templates/catalogue/book_short.html:73 -#, fuzzy msgid "Genre" -msgstr "genere" +msgstr "Genere" #: templates/catalogue/book_short.html:88 msgid "Read online" -msgstr "" +msgstr "Leggi online" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" msgstr "" @@ -357,277 +387,282 @@ msgid "for an e-book reader" msgstr "" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" msgstr "" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" msgstr "" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" -msgstr "" +msgstr "Ascolta" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" -msgstr "" +msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" -msgstr "" +msgstr "Indice" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 -#, fuzzy +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" -msgstr "tema" +msgstr "Temi" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" -msgstr "" +msgstr "Modifica. nota" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" -msgstr "" +msgstr "Infobox" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" -msgstr "" +msgstr "Pagina del libro" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" msgstr "" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" -msgstr "" +msgstr "Scarica tutti gli audiolibri per questo libro." #: templates/catalogue/book_wide.html:22 #: templates/catalogue/tagged_object_list.html:60 -#, fuzzy msgid "Motifs and themes" -msgstr "Non visualizzare i temi" +msgstr "Motivi e temi" #: templates/catalogue/book_wide.html:44 msgid "See" -msgstr "" +msgstr "Vedi" #: templates/catalogue/book_wide.html:47 msgid "Source" -msgstr "" +msgstr "Fonte" #: templates/catalogue/book_wide.html:47 msgid "of the book" -msgstr "" +msgstr "del libro" #: templates/catalogue/book_wide.html:49 msgid "Source XML file" -msgstr "" +msgstr "File di fonte XML" #: templates/catalogue/book_wide.html:51 -#, fuzzy msgid "Book on" -msgstr "conteggio dei libri" +msgstr "Libro su" #: templates/catalogue/book_wide.html:51 msgid "Editor's Platform" -msgstr "" +msgstr " Piattaforma del editore" #: templates/catalogue/book_wide.html:54 msgid "Book description on Lektury.Gazeta.pl" -msgstr "" +msgstr "Descrizione del libro su Lektury.Gazeta.pl" #: templates/catalogue/book_wide.html:57 msgid "Book description on Wikipedia" -msgstr "" +msgstr "Descrizione del libro su Wikipedia" #: templates/catalogue/book_wide.html:59 msgid "Mix this book" -msgstr "" +msgstr "Combina questo libro" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" -msgstr "" +msgstr "Catalogo" #: templates/catalogue/catalogue.html:16 msgid "Download the catalogue in PDF format." -msgstr "" +msgstr "Scarica il catalogo nel formato PDF." -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 -#, fuzzy +#: templatetags/catalogue_tags.py:415 msgid "Authors" -msgstr "autore" +msgstr "Autori" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" -msgstr "" +msgstr "Categorie" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 -#, fuzzy +#: templatetags/catalogue_tags.py:416 msgid "Genres" -msgstr "genere" +msgstr "Generi" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 -#, fuzzy +#: templatetags/catalogue_tags.py:418 msgid "Epochs" -msgstr "epoca" +msgstr "Epoche" #: templates/catalogue/catalogue.html:31 msgid "Themes and topics" -msgstr "" +msgstr "temi e argomenti" + +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr " raccolte" #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" -msgstr "" +msgstr "Elenco di tutti i file DAISY " #: templates/catalogue/daisy_list.html:9 msgid "Latest DAISY audiobooks" -msgstr "" +msgstr "Ultimi audiolibri DAISY" #: templates/catalogue/daisy_list.html:15 msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" +msgstr "Questi criteri sono ambigui. Si prega di selezionare una delle seguenti opzioni:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" -msgstr "" +msgstr "Gli scaffali che contengono il frammento" #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" +msgstr "Non hai nessuno scaffale. Se vuoi puoi crearne uno, qui sotto." #: templates/catalogue/fragment_sets.html:9 msgid "Save all shelves" -msgstr "" +msgstr "Salva tutti gli scaffali" #: templates/catalogue/fragment_short.html:12 -#, fuzzy msgid "Expand fragment" -msgstr "Frammento" +msgstr "Espandi il frammento" #: templates/catalogue/fragment_short.html:22 -#, fuzzy msgid "Hide fragment" -msgstr "Frammento" +msgstr "Nascondi il frammento" #: templates/catalogue/inline_tag_list.html:4 #: templates/catalogue/tag_list.html:4 -#, fuzzy msgid "See full category" -msgstr "categoria" +msgstr "Vedi tutta la categoria" -#: templates/catalogue/menu.html:32 -#, fuzzy +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" -msgstr "Libri" +msgstr "Tutti i libri" -#: templates/catalogue/menu.html:36 -#, fuzzy +#: templates/catalogue/menu.html:28 msgid "Audiobooks" -msgstr "Libri" +msgstr "Audiolibri" -#: templates/catalogue/menu.html:40 +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "" +msgstr "DAISY" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " -msgstr "" +msgstr "L'opera è su licenza di" #: templates/catalogue/picture_detail.html:31 msgid "Based on" -msgstr "" +msgstr "Basato su" #: templates/catalogue/picture_detail.html:45 msgid "Details" -msgstr "" +msgstr "Dettagli" #: templates/catalogue/picture_detail.html:48 -#, fuzzy msgid "Author" -msgstr "autore" +msgstr "Autore" #: templates/catalogue/picture_detail.html:66 msgid "Other resources" -msgstr "" +msgstr "Altre fonti" #: templates/catalogue/picture_detail.html:69 msgid "Source of the image" -msgstr "" +msgstr "Fonte dell'immagine" #: templates/catalogue/picture_detail.html:72 msgid "Image on the Editor's Platform" -msgstr "" +msgstr "Immagine sulla piattaforma del editore" #: templates/catalogue/picture_detail.html:83 msgid "View XML source" -msgstr "" +msgstr "Visualizza la fonte XML" #: templates/catalogue/picture_detail.html:86 -#, fuzzy msgid "Work's themes " -msgstr "Non visualizzare i temi" +msgstr "Temi dell'opera" #: templates/catalogue/picture_list.html:8 #: templates/catalogue/picture_list.html:10 msgid "Listing of all pictures" -msgstr "" +msgstr "Elenco di tutte le immagini" #: templates/catalogue/player.html:35 -#, fuzzy msgid "Download as" -msgstr "Scarica" +msgstr "Scarica come" #: templates/catalogue/player.html:88 msgid "Artist" -msgstr "" +msgstr "Artista" #: templates/catalogue/player.html:89 msgid "Director" -msgstr "" +msgstr "Direttore" #: templates/catalogue/player.html:108 msgid "Audiobooks were prepared as a part of the projects:" -msgstr "" +msgstr "Gli audilobri sono stati preparati come parte dei seguenti progetti:" #: templates/catalogue/player.html:113 #, python-format msgid "%(cs)s, funded by %(fb)s" -msgstr "" +msgstr "%(cs)s, creato da %(fb)s // %(cs)s, finanziato da %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Gli audiollibri sono stati preparati come parte del progetto %(cs)s, finanziato da %(fb)s" #: templates/catalogue/player.html:127 #, python-format msgid "Audiobooks were prepared as a part of the %(cs)s project." -msgstr "" +msgstr "Gli audiolibri sono stati preparati come parte di progetto %(cs)s." #: templates/catalogue/search_multiple_hits.html:5 #: templates/catalogue/search_no_hits.html:5 @@ -635,58 +670,63 @@ msgstr "" #: templates/catalogue/search_too_short.html:5 #: templates/catalogue/search_too_short.html:10 msgid "Search" -msgstr "" +msgstr "Cerca" #: templates/catalogue/search_multiple_hits.html:11 #: templates/catalogue/search_no_hits.html:16 msgid "Did you mean" -msgstr "" +msgstr "Volevi dire" -#: templates/catalogue/search_multiple_hits.html:54 -msgid "Results by authors" -msgstr "" +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Risultati per titolo" #: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" +msgid "Results by authors" +msgstr "Risultati per autore" + +#: templates/catalogue/search_multiple_hits.html:80 +msgid "Results by translators" msgstr "" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" -msgstr "" +msgstr "Risultati nel testo" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" -msgstr "" +msgstr "Altri risultati" #: templates/catalogue/search_no_hits.html:19 #: templates/catalogue/tagged_object_list.html:146 msgid "Sorry! Search cirteria did not match any resources." -msgstr "" +msgstr "Siamo spiacenti!I criteri di ricerca non corrispondono alle risorse." #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" +"Il motore di ricerca supporta i seguenti criteri: titolo, autore, tema, epoca, genere.\n" +"\t\t Per il momento non supportiamo i criteri del testo intero." #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" +msgstr "Siamo spiacenti! La ricerca viene effettuata su parole con almeno due caratteri." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 msgid "in Lektury.Gazeta.pl" -msgstr "" +msgstr "su Lektury.Gazeta.pl" #: templates/catalogue/tagged_object_list.html:83 #: templates/catalogue/tagged_object_list.html:113 msgid "in Wikipedia" -msgstr "" +msgstr "su Wikipedia" #: templates/catalogue/user_shelves.html:2 msgid "Your shelves with books" -msgstr "" +msgstr "I tuoi scaffali con i libri" #: templates/catalogue/user_shelves.html:6 msgid "remove" @@ -694,16 +734,15 @@ msgstr "" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" +msgstr "Non hai nessuno scaffale. se vuoi puoi crearne uno, qui sotto." #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" -msgstr "" +msgstr "Crea uno scaffale" #: templates/catalogue/snippets/custom_pdf_link_li.html:6 -#, fuzzy msgid "Download a custom PDF" -msgstr "Scarica PDF personalizzato" +msgstr " Scarica un PDF personalizzato" #: templates/catalogue/snippets/license_icon.html:6 #: templates/catalogue/snippets/license_icon.html:8 diff --git a/apps/catalogue/locale/lt/LC_MESSAGES/django.mo b/apps/catalogue/locale/lt/LC_MESSAGES/django.mo index c70541e44..c4d20805f 100644 Binary files a/apps/catalogue/locale/lt/LC_MESSAGES/django.mo and b/apps/catalogue/locale/lt/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/lt/LC_MESSAGES/django.po b/apps/catalogue/locale/lt/LC_MESSAGES/django.po index d8e923b2f..ab710b9e7 100644 --- a/apps/catalogue/locale/lt/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/lt/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:39+0200\n" -"PO-Revision-Date: 2012-04-03 17:54+0100\n" -"Last-Translator: Karolina Zuber \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:40+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -37,202 +37,227 @@ msgstr "Nerodyti motyvų" msgid "Don't use our custom font" msgstr "Nenaudoti derinčių Å¡riftų" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "eilučių intervalas" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Normalus intervalas" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "Pusantro intervalo" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Dvigubasis intervalas" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Å rifto dydis" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Numatytasis " -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Didelis" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "autorius" - -#: models.py:34 -msgid "epoch" -msgstr "epocha" - -#: models.py:35 -msgid "kind" -msgstr "rÅ«Å¡is" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Ä®vyko klaida: %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:36 -msgid "genre" -msgstr "žanras" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Knyga buvo sėkmingai importuota" -#: models.py:37 -msgid "theme" -msgstr "motyvas" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Importuojant failą įvyko klaida: %r" -#: models.py:38 -msgid "set" -msgstr "rinkinys" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Sukurti ir atsisiųsti PDF failą" -#: models.py:39 models.py:368 -msgid "book" -msgstr "knyga" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Atsisiųsti" -#: models.py:60 models.py:230 -msgid "name" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" msgstr "pavadinimas" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 -msgid "slug" -msgstr "slug" - -#: models.py:62 models.py:332 +#: models/book.py:29 +#: models/tag.py:31 msgid "sort key" msgstr "rikiavimo raktas" -#: models.py:63 -msgid "category" -msgstr "kategorija " +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 +msgid "slug" +msgstr "slug" + +#: models/book.py:33 +msgid "language code" +msgstr "kalbos kodas" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "apraÅ¡ymas" -#: models.py:68 -msgid "book count" -msgstr "knygų skaičius" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "sukÅ«rimo data" -#: models.py:90 -msgid "tag" -msgstr "žymė" - -#: models.py:91 -msgid "tags" -msgstr "žymės" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "%s failas " - -#: models.py:229 -msgid "type" -msgstr "tipas" - -#: models.py:231 -msgid "file" -msgstr "failas " - -#: models.py:233 models.py:342 -msgid "extra information" -msgstr "papildomos informacijos" - -#: models.py:242 models.py:243 -msgid "book media" -msgstr "book media" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "pavadinimas" - -#: models.py:336 -msgid "language code" -msgstr "kalbos kodas" - # sprawdz -#: models.py:341 +#: models/book.py:38 msgid "parent number" msgstr "pirminis numeris" -#: models.py:347 +#: models/book.py:39 +#: models/bookmedia.py:29 +msgid "extra information" +msgstr "papildomos informacijos" + +#: models/book.py:44 msgid "cover" msgstr "virÅ¡elis" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "knyga" + +#: models/book.py:67 msgid "books" msgstr "knygos" -#: models.py:620 +#: models/book.py:243 #, python-format msgid "Book \"%s\" does not exist." msgstr "Knyga \"%s\" neegzistuoja." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Knyga %s jau egzistuoja" -#: models.py:935 -msgid "fragment" -msgstr "fragmentas" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "%s failas " -#: models.py:936 -msgid "fragments" -msgstr "fragmentai" +#: models/bookmedia.py:25 +msgid "type" +msgstr "tipas" + +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "pavadinimas" + +#: models/bookmedia.py:27 +msgid "file" +msgstr "failas " + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "book media" -#: models.py:977 +#: models/collection.py:16 msgid "book slugs" msgstr "book slugs" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "kolekcija" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "kolekcijos" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Ä®vyko klaida: %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "fragmentas" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Knyga buvo sėkmingai importuota" +#: models/fragment.py:33 +msgid "fragments" +msgstr "fragmentai" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Importuojant failą įvyko klaida: %r" +#: models/tag.py:14 +msgid "author" +msgstr "autorius" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Sukurti ir atsisiųsti PDF failą" +#: models/tag.py:15 +msgid "epoch" +msgstr "epocha" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Atsisiųsti" +#: models/tag.py:16 +msgid "kind" +msgstr "rÅ«Å¡is" + +#: models/tag.py:17 +msgid "genre" +msgstr "žanras" + +#: models/tag.py:18 +msgid "theme" +msgstr "motyvas" + +#: models/tag.py:19 +msgid "set" +msgstr "rinkinys" + +#: models/tag.py:32 +msgid "category" +msgstr "kategorija " + +#: models/tag.py:37 +msgid "book count" +msgstr "knygų skaičius" + +#: models/tag.py:59 +msgid "tag" +msgstr "žymė" + +#: models/tag.py:60 +msgid "tags" +msgstr "žymės" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 @@ -255,8 +280,7 @@ msgid "" msgstr "" "Fondo Å iuolaikinė Lenkija privalomos literatÅ«ros audio knygų rinkinys.\n" "Galite juo naudotis nemokamai ir be apribojimų.\n" -"Audio knygos yra garsių aktorių įraÅ¡omos, tokių kaip Danuta Stenka ir Jan " -"Peszek." +"Audio knygos yra garsių aktorių įraÅ¡omos, tokių kaip Danuta Stenka ir Jan Peszek." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 @@ -285,18 +309,15 @@ msgid "" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" "Å io visuomenės srities kÅ«rinio autorių teisė neapima,\n" "tai reiÅ¡kia, kad gali bÅ«ti laisvai naudojamas bei\n" "platinamas. Jei su Å¡iuo kÅ«riniu yra pateikiamos bet kokios\n" -"papildomos autorinių teisių saugomos medžiagos (kaip pastabos, motyvai ir t." -"t.), Å¡ios\n" +"papildomos autorinių teisių saugomos medžiagos (kaip pastabos, motyvai ir t.t.), Å¡ios\n" "medžiagos yra licencijuotos pagal\n" -"Creative Commons " -"Attribution-ShareAlike 3.0\n" +"Creative Commons Attribution-ShareAlike 3.0\n" "licenciją." #: templates/catalogue/book_info.html:20 @@ -311,7 +332,8 @@ msgstr "Redagavimas ir pastabos:" msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" msgstr "Visų kÅ«rinių sąraÅ¡as" @@ -319,7 +341,7 @@ msgstr "Visų kÅ«rinių sąraÅ¡as" msgid "Table of Content" msgstr "Turinys" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" msgstr "↑į viršų↑" @@ -327,16 +349,15 @@ msgstr "↑į viršų↑" msgid "Put a book on the shelf!" msgstr "Padėkite knygą į lentyną!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 msgid "Create new shelf" msgstr "Sukurti naują lentyną" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" -"Neturite nei vienos lentynos. Jei norite, galite sukurti naują lentyną " -"žemiau." +msgstr "Neturite nei vienos lentynos. Jei norite, galite sukurti naują lentyną žemiau." #: templates/catalogue/book_sets.html:15 msgid "Put on the shelf!" @@ -361,7 +382,7 @@ msgid "Read online" msgstr "Skaityti online" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" msgstr "Spausdinti" @@ -370,53 +391,58 @@ msgid "for an e-book reader" msgstr "e-knygos skaitytojui" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" msgstr "skaityklei Kindle" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" msgstr " iÅ¡plėstiniam naudojimui" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" msgstr "Klausytis" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" msgstr "Turinys" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" msgstr "Motyvai" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" msgstr "Redaguoti pastabą" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" msgstr "Infobox" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" msgstr "Knygos puslapis" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" msgstr "skaitytojui" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" msgstr "Atsisiųsti visas Å¡ios knygos audio knygas" @@ -461,7 +487,8 @@ msgstr "Knygos apraÅ¡ymas Vikipedijoje" msgid "Mix this book" msgstr "MaiÅ¡yti Å¡ią knygą" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" msgstr "Katalogas" @@ -469,27 +496,31 @@ msgstr "Katalogas" msgid "Download the catalogue in PDF format." msgstr "Atsisiųsti katalogą PDF formatu." -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 +#: templatetags/catalogue_tags.py:415 msgid "Authors" msgstr "Autoriai" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" msgstr "RÅ«Å¡ys" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 +#: templatetags/catalogue_tags.py:416 msgid "Genres" msgstr "Žanrai" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 +#: templatetags/catalogue_tags.py:418 msgid "Epochs" msgstr "Epochos" @@ -497,6 +528,12 @@ msgstr "Epochos" msgid "Themes and topics" msgstr "Motyvai ir temos" +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "kolekcijos" + #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" @@ -510,19 +547,15 @@ msgstr "Naujosios DAISY audio knygos" msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" "DAISY sistema yra visame pasaulyje pripažintas knygų bendrinimo formatas\n" "pritaikytas silpnesnio regėjimo žmonėms, akliesiems bei kitiems\n" -"skaitymo problemų turintiems žmonėms.Galite jomis naudotis nemokamai ir be " -"apribojimų." +"skaitymo problemų turintiems žmonėms.Galite jomis naudotis nemokamai ir be apribojimų." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" -"PaieÅ¡kos kriterijai nėra tikslÅ«s. PraÅ¡ome iÅ¡rinkti vieną iÅ¡ žemiau nurodytų " -"galimybių:" +msgstr "PaieÅ¡kos kriterijai nėra tikslÅ«s. PraÅ¡ome iÅ¡rinkti vieną iÅ¡ žemiau nurodytų galimybių:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" @@ -530,9 +563,7 @@ msgstr "Lentynos turinčios fragmentus " #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" -"Neturite nei vienos lentynos. Jei norite, galite sukurti naują lentyną " -"žemiau." +msgstr "Neturite nei vienos lentynos. Jei norite, galite sukurti naują lentyną žemiau." #: templates/catalogue/fragment_sets.html:9 msgid "Save all shelves" @@ -551,15 +582,20 @@ msgstr "Slėpti fragmentą" msgid "See full category" msgstr "ŽiÅ«rėti visą kategoriją" -#: templates/catalogue/menu.html:32 +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" msgstr "Visos knygos" -#: templates/catalogue/menu.html:36 +#: templates/catalogue/menu.html:28 msgid "Audiobooks" msgstr "Audio knygos" -#: templates/catalogue/menu.html:40 +#: templates/catalogue/menu.html:32 msgid "DAISY" msgstr "DAISY " @@ -627,10 +663,8 @@ msgstr "\"%(cs)s, %(fb)s finansuotų" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" -"Audio knygos buvo paruoÅ¡tos kaip dalis %(fb)s. finansuoto %(cs)s projekto." +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Audio knygos buvo paruoÅ¡tos kaip dalis %(fb)s. finansuoto %(cs)s projekto." #: templates/catalogue/player.html:127 #, python-format @@ -650,19 +684,24 @@ msgstr "IeÅ¡koti" msgid "Did you mean" msgstr "Gal turėjote omenyje" -#: templates/catalogue/search_multiple_hits.html:54 +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Rezultatai pagal pavadinimą" + +#: templates/catalogue/search_multiple_hits.html:67 msgid "Results by authors" msgstr "Rezultatai pagal autorius" -#: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "Rezultatai pagal pavadinimą" +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "Rezultatai pagal autorius" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" msgstr "Rezultatai tekste" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" msgstr "Kiti rezultatai" @@ -673,18 +712,15 @@ msgstr "AtsipraÅ¡ome! Rezultatų, atitinkančių paieÅ¡kos kriterijus nėra." #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" -"PaieÅ¡kos sistema palaiko nurodytus kriterijus: pavadinimas, autorius, tema, " -"epocha, rÅ«Å¡is ir žanras.\n" +"PaieÅ¡kos sistema palaiko nurodytus kriterijus: pavadinimas, autorius, tema, epocha, rÅ«Å¡is ir žanras.\n" "\t\t Kol kas negalima atlikti viso teksto paieÅ¡kos." #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" -"AtsipraÅ¡ome! PaieÅ¡kos užklausa turi susidėti mažiausiai iÅ¡ dviejų simbolių." +msgstr "AtsipraÅ¡ome! PaieÅ¡kos užklausa turi susidėti mažiausiai iÅ¡ dviejų simbolių." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 @@ -706,9 +742,7 @@ msgstr "paÅ¡alinti" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" -"Neturite nei vienos lentynos. Jei norite, galite sukurti naują lentyną " -"žemiau." +msgstr "Neturite nei vienos lentynos. Jei norite, galite sukurti naują lentyną žemiau." #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" diff --git a/apps/catalogue/locale/pl/LC_MESSAGES/django.mo b/apps/catalogue/locale/pl/LC_MESSAGES/django.mo index a04bce574..f5779475c 100644 Binary files a/apps/catalogue/locale/pl/LC_MESSAGES/django.mo and b/apps/catalogue/locale/pl/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/pl/LC_MESSAGES/django.po b/apps/catalogue/locale/pl/LC_MESSAGES/django.po index 46e15242b..df25b292b 100644 --- a/apps/catalogue/locale/pl/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/pl/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-12 14:09+0100\n" -"PO-Revision-Date: 2012-12-12 14:09+0100\n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:37+0100\n" "Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -19,7 +19,7 @@ msgstr "" #: constants.py:10 msgid "Creative Commons Attribution-ShareAlike 3.0 Unported" -msgstr "" +msgstr "Creative Commons Uznanie autorstwa – Na tych samych warunkach 3.0 Unported" #: forms.py:27 msgid "Please supply an XML." @@ -71,9 +71,9 @@ msgstr "Duży" #: forms.py:82 msgid "Queue is full. Please try again later." -msgstr "" +msgstr "Kolejka jest pełna. Proszę spróbować ponownie później." -#: views.py:528 +#: views.py:527 #, python-format msgid "" "An error occurred: %(exception)s\n" @@ -84,22 +84,22 @@ msgstr "" "\n" "%(tb)s" -#: views.py:529 +#: views.py:528 msgid "Book imported successfully" msgstr "Książka zaimportowana" -#: views.py:531 +#: views.py:530 #, python-format msgid "Error importing file: %r" msgstr "Błąd podczas importowania pliku: %r" -#: views.py:563 +#: views.py:562 msgid "Download custom PDF" msgstr "Stwórz własny PDF" -#: views.py:564 +#: views.py:563 #: templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 +#: templates/catalogue/book_text.html:29 #: templates/catalogue/book_wide.html:63 msgid "Download" msgstr "Pobierz" @@ -261,15 +261,15 @@ msgstr "tagi" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 msgid "Listing of all audiobooks" -msgstr "" +msgstr "Spis wszystkich audiobooków" #: templates/catalogue/audiobook_list.html:12 msgid "Latest MP3 audiobooks" -msgstr "" +msgstr "Ostatnio dodane audiobooki w formacie MP3" #: templates/catalogue/audiobook_list.html:13 msgid "Latest Ogg Vorbis audiobooks" -msgstr "" +msgstr "Ostatnio dodane audiobooki w formacie Ogg Vorbis" #: templates/catalogue/audiobook_list.html:19 msgid "" @@ -277,27 +277,29 @@ msgid "" "Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" "Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." msgstr "" +"Audioteka lektur szkolnych fundacji Nowoczesna Polska.\n" +"Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" +"Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 #: templates/catalogue/tagged_object_list.html:104 msgid "See also" -msgstr "" +msgstr "Zobacz też" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:11 -#, fuzzy msgid "Theme" -msgstr "motyw" +msgstr "Motyw" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:13 msgid "in work " -msgstr "" +msgstr "w utworze" #: templates/catalogue/book_info.html:6 msgid "This work is licensed under:" -msgstr "" +msgstr "Utwór jest udostępniony na licencji:" #: templates/catalogue/book_info.html:9 msgid "" @@ -308,242 +310,229 @@ msgid "" " materials are licensed under the \n" " Creative Commons Attribution-ShareAlike 3.0\n" " license." -msgstr "" +msgstr "Ten utwór nie jest chroniony prawem autorskim i znajduje się w domenie publicznej, co oznacza że możesz go swobodnie wykorzystywać, publikować i rozpowszechniać. Jeśli utwór opatrzony jest dodatkowymi materiałami (przypisy, motywy literackie etc.), które podlegają prawu autorskiemu, to te dodatkowe materiały udostępnione są na licencji Uznanie autorstwa-Na tych samych warunkach 3.0." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" -msgstr "" +msgstr "Tekst opracowany na podstawie:" #: templates/catalogue/book_info.html:28 msgid "Edited and annotated by:" -msgstr "" +msgstr "Opracowanie redakcyjne i przypisy:" #: templates/catalogue/book_info.html:33 msgid "Cover image by:" -msgstr "" +msgstr "Ilustracja na okładce:" #: templates/catalogue/book_list.html:7 #: templates/catalogue/book_list.html:10 msgid "Listing of all works" -msgstr "" +msgstr "Spis wszystkich utworów" #: templates/catalogue/book_list.html:21 msgid "Table of Content" -msgstr "" +msgstr "Spis treści" #: templates/catalogue/book_list.html:30 msgid "↑ top ↑" -msgstr "" +msgstr "↑ góra ↑" #: templates/catalogue/book_sets.html:2 -#, fuzzy msgid "Put a book on the shelf!" -msgstr "Książki nie ma na półce" +msgstr "Wrzuć lekturę na półkę!" #: templates/catalogue/book_sets.html:3 #: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 -#, fuzzy msgid "Create new shelf" -msgstr "nazwa nowej półki" +msgstr "Utwórz nową półkę" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" +msgstr "Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć nową półkę poniżej." #: templates/catalogue/book_sets.html:15 -#, fuzzy msgid "Put on the shelf!" -msgstr "nazwa nowej półki" +msgstr "Wrzuć na półkę" #: templates/catalogue/book_short.html:59 #: templates/catalogue/picture_detail.html:54 -#, fuzzy msgid "Epoch" -msgstr "epoka" +msgstr "Epoka" #: templates/catalogue/book_short.html:66 #: templates/catalogue/picture_detail.html:60 msgid "Kind" -msgstr "" +msgstr "Rodzaj" #: templates/catalogue/book_short.html:73 -#, fuzzy msgid "Genre" -msgstr "gatunek" +msgstr "Gatunek" #: templates/catalogue/book_short.html:88 msgid "Read online" msgstr "Czytaj online" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" -msgstr "" +msgstr "do druku" #: templates/catalogue/book_short.html:98 msgid "for an e-book reader" -msgstr "" +msgstr "na czytnik e-booków" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" -msgstr "" +msgstr "na Kindle" #: templates/catalogue/book_short.html:104 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" -msgstr "" +msgstr "FictionBook" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:53 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" -msgstr "" +msgstr "do zadań specjalnych" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" -msgstr "" +msgstr "Słuchaj" #: templates/catalogue/book_text.html:10 #: templates/catalogue/player.html:11 msgid "Wolne Lektury" -msgstr "" +msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" -msgstr "" +msgstr "Spis treści" -#: templates/catalogue/book_text.html:24 -#: templatetags/catalogue_tags.py:416 -#, fuzzy +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" -msgstr "motyw" +msgstr "Motywy" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" -msgstr "" +msgstr "Nota red." -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" -msgstr "" +msgstr "Informacje" -#: templates/catalogue/book_text.html:27 +#: templates/catalogue/book_text.html:28 #: templates/catalogue/player.html:34 msgid "Book's page" -msgstr "" +msgstr "Strona utworu" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" -msgstr "" +msgstr "na czytnik" -#: templates/catalogue/book_text.html:57 +#: templates/catalogue/book_text.html:58 #: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" -msgstr "" +msgstr "Pobierz wszystkie audiobooki tego utworu" #: templates/catalogue/book_wide.html:22 #: templates/catalogue/tagged_object_list.html:60 -#, fuzzy msgid "Motifs and themes" -msgstr "Bez motywów" +msgstr "Motywy i tematy" #: templates/catalogue/book_wide.html:44 -#, fuzzy msgid "See" -msgstr "Półki" +msgstr "Zobacz" #: templates/catalogue/book_wide.html:47 msgid "Source" -msgstr "" +msgstr "Źródło" #: templates/catalogue/book_wide.html:47 msgid "of the book" -msgstr "" +msgstr "utworu" #: templates/catalogue/book_wide.html:49 -#, fuzzy msgid "Source XML file" -msgstr "Plik XML" +msgstr "Źródłowy plik XML" #: templates/catalogue/book_wide.html:51 -#, fuzzy msgid "Book on" -msgstr "liczba książek" +msgstr "Utwór na" #: templates/catalogue/book_wide.html:51 msgid "Editor's Platform" -msgstr "" +msgstr "Platformie Redakcyjnej" #: templates/catalogue/book_wide.html:54 msgid "Book description on Lektury.Gazeta.pl" -msgstr "" +msgstr "Opis lektury w Lektury.Gazeta.pl" #: templates/catalogue/book_wide.html:57 msgid "Book description on Wikipedia" -msgstr "" +msgstr "Opis lektury w Wikipedii" #: templates/catalogue/book_wide.html:59 msgid "Mix this book" -msgstr "" +msgstr "Miksuj treść utworu" #: templates/catalogue/catalogue.html:6 #: templates/catalogue/catalogue.html:11 msgid "Catalogue" -msgstr "" +msgstr "Katalog" #: templates/catalogue/catalogue.html:16 msgid "Download the catalogue in PDF format." -msgstr "" +msgstr "Pobierz katalog w formacie PDF." #: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 -#: templatetags/catalogue_tags.py:412 -#, fuzzy +#: templatetags/catalogue_tags.py:415 msgid "Authors" -msgstr "autor" +msgstr "Autorzy" #: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 -#: templatetags/catalogue_tags.py:414 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" -msgstr "" +msgstr "Rodzaje" #: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 -#: templatetags/catalogue_tags.py:413 -#, fuzzy +#: templatetags/catalogue_tags.py:416 msgid "Genres" -msgstr "gatunek" +msgstr "Gatunki" #: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 -#: templatetags/catalogue_tags.py:415 -#, fuzzy +#: templatetags/catalogue_tags.py:418 msgid "Epochs" -msgstr "epoka" +msgstr "Epoki" #: templates/catalogue/catalogue.html:31 msgid "Themes and topics" -msgstr "" +msgstr "Motywy i tematy" #: templates/catalogue/catalogue.html:34 -#: templates/catalogue/menu.html:29 +#: templates/catalogue/menu.html:16 msgid "Collections" msgstr "Kolekcje" #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" -msgstr "" +msgstr "Spis wszystkich plików DAISY" #: templates/catalogue/daisy_list.html:9 msgid "Latest DAISY audiobooks" -msgstr "" +msgstr "Ostatnio dodane audiobooki w formacie DAISY" #: templates/catalogue/daisy_list.html:15 msgid "" @@ -551,134 +540,127 @@ msgid "" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" "mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" +"System DAISY to uznany na całym świecie format udostępniania książek\n" +"dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" +msgstr "Podane kryteria są niejednoznaczne. Proszę wybrać jedną z następujących możliwości:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" -msgstr "" +msgstr "Półki zawierające fragment" #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" +msgstr "Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć nową półkę poniżej." #: templates/catalogue/fragment_sets.html:9 -#, fuzzy msgid "Save all shelves" -msgstr "Półki" +msgstr "Zapisz półki" #: templates/catalogue/fragment_short.html:12 -#, fuzzy msgid "Expand fragment" -msgstr "fragment" +msgstr "Rozwiń fragment" #: templates/catalogue/fragment_short.html:22 -#, fuzzy msgid "Hide fragment" -msgstr "fragment" +msgstr "Zwiń fragment" #: templates/catalogue/inline_tag_list.html:4 #: templates/catalogue/tag_list.html:4 -#, fuzzy msgid "See full category" -msgstr "kategoria" +msgstr "Zobacz całą kategorię" #: templates/catalogue/menu.html:9 -#: templates/catalogue/menu.html.py:31 +#: templates/catalogue/menu.html.py:18 msgid "Please wait…" -msgstr "" +msgstr "Proszę czekać…" -#: templates/catalogue/menu.html:16 -#, fuzzy +#: templates/catalogue/menu.html:24 msgid "All books" -msgstr "książki" +msgstr "Wszystkie utwory" -#: templates/catalogue/menu.html:20 -#, fuzzy +#: templates/catalogue/menu.html:28 msgid "Audiobooks" -msgstr "książki" +msgstr "Audiobooki" -#: templates/catalogue/menu.html:24 -#, fuzzy +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "Plik DAISY" +msgstr "DAISY" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " -msgstr "" +msgstr "Utwór jest udostępniony na licencji" #: templates/catalogue/picture_detail.html:31 msgid "Based on" -msgstr "" +msgstr "Na podstawie" #: templates/catalogue/picture_detail.html:45 msgid "Details" -msgstr "" +msgstr "O utworze" #: templates/catalogue/picture_detail.html:48 -#, fuzzy msgid "Author" -msgstr "autor" +msgstr "Autor" #: templates/catalogue/picture_detail.html:66 msgid "Other resources" -msgstr "" +msgstr "W innych miejscach" #: templates/catalogue/picture_detail.html:69 msgid "Source of the image" -msgstr "" +msgstr "Źródło obrazu" #: templates/catalogue/picture_detail.html:72 msgid "Image on the Editor's Platform" -msgstr "" +msgstr "Obraz na Platformie Redakcyjnej" #: templates/catalogue/picture_detail.html:83 msgid "View XML source" -msgstr "" +msgstr "Źródłowy plik XML" #: templates/catalogue/picture_detail.html:86 -#, fuzzy msgid "Work's themes " -msgstr "Bez motywów" +msgstr "Motywy w utworze" #: templates/catalogue/picture_list.html:8 #: templates/catalogue/picture_list.html:10 msgid "Listing of all pictures" -msgstr "" +msgstr "Spis wszystkich obrazów" #: templates/catalogue/player.html:35 -#, fuzzy msgid "Download as" -msgstr "Pobierz" +msgstr "Pobierz jako" #: templates/catalogue/player.html:88 msgid "Artist" -msgstr "" +msgstr "Czyta" #: templates/catalogue/player.html:89 msgid "Director" -msgstr "" +msgstr "Reżyseruje" #: templates/catalogue/player.html:108 msgid "Audiobooks were prepared as a part of the projects:" -msgstr "" +msgstr "Audiobooki przygotowane w ramach projektów:" #: templates/catalogue/player.html:113 #, python-format msgid "%(cs)s, funded by %(fb)s" -msgstr "" +msgstr "%(cs)s, finansowanego przez %(fb)s" #: templates/catalogue/player.html:125 #, python-format msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" +msgstr "Audiobooki przygotowane w ramach projektu %(cs)s finansowanego przez %(fb)s." #: templates/catalogue/player.html:127 #, python-format msgid "Audiobooks were prepared as a part of the %(cs)s project." -msgstr "" +msgstr "Audiobooki przygotowane w ramach projektu %(cs)s." #: templates/catalogue/search_multiple_hits.html:5 #: templates/catalogue/search_no_hits.html:5 @@ -686,20 +668,20 @@ msgstr "" #: templates/catalogue/search_too_short.html:5 #: templates/catalogue/search_too_short.html:10 msgid "Search" -msgstr "" +msgstr "Szukaj" #: templates/catalogue/search_multiple_hits.html:11 #: templates/catalogue/search_no_hits.html:16 msgid "Did you mean" -msgstr "" +msgstr "Czy chodziło Ci o" #: templates/catalogue/search_multiple_hits.html:52 msgid "Results by title" -msgstr "" +msgstr "Znalezione w tytułach" #: templates/catalogue/search_multiple_hits.html:67 msgid "Results by authors" -msgstr "" +msgstr "Znalezieni autorzy" #: templates/catalogue/search_multiple_hits.html:80 msgid "Results by translators" @@ -707,62 +689,61 @@ msgstr "Znalezieni tłumacze" #: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" -msgstr "" +msgstr "Znalezione w treści" #: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" -msgstr "" +msgstr "Inne wyniki" #: templates/catalogue/search_no_hits.html:19 #: templates/catalogue/tagged_object_list.html:146 msgid "Sorry! Search cirteria did not match any resources." -msgstr "" +msgstr "Przepraszamy! Brak wyników spełniających kryteria podane w zapytaniu." #: templates/catalogue/search_no_hits.html:21 msgid "" "Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." -msgstr "" +msgstr "Wyszukiwarka obsługuje takie kryteria jak tytuł, autor, motyw/temat, epoka, rodzaj i gatunek utworu. Obecnie nie obsługujemy wyszukiwania fraz w tekstach utworów." #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" +msgstr "Przepraszamy! Zapytanie musi zawierać co najmniej dwa znaki." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 msgid "in Lektury.Gazeta.pl" -msgstr "" +msgstr "w serwisie Lektury.Gazeta.pl" #: templates/catalogue/tagged_object_list.html:83 #: templates/catalogue/tagged_object_list.html:113 msgid "in Wikipedia" -msgstr "" +msgstr "w Wikipedii" #: templates/catalogue/user_shelves.html:2 msgid "Your shelves with books" -msgstr "" +msgstr "Twoje półki z lekturami" #: templates/catalogue/user_shelves.html:6 msgid "remove" -msgstr "" +msgstr "usuń" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" +msgstr "Nie posiadasz żadnych półek. Jeśli chcesz, możesz utworzyć półkę poniżej." #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" -msgstr "" +msgstr "Utwórz półkę" #: templates/catalogue/snippets/custom_pdf_link_li.html:6 -#, fuzzy msgid "Download a custom PDF" -msgstr "Stwórz własny PDF" +msgstr "Stwórz własny plik PDF" #: templates/catalogue/snippets/license_icon.html:6 #: templates/catalogue/snippets/license_icon.html:8 msgid "Free license" -msgstr "" +msgstr "Wolna licencja" #~ msgid "Enter a valid JSON value. Error: %s" #~ msgstr "Wprowadź prawidłową wartość JSON. Błąd: %s" diff --git a/apps/catalogue/locale/ru/LC_MESSAGES/django.mo b/apps/catalogue/locale/ru/LC_MESSAGES/django.mo index 923c8a1ee..7b932367b 100644 Binary files a/apps/catalogue/locale/ru/LC_MESSAGES/django.mo and b/apps/catalogue/locale/ru/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/ru/LC_MESSAGES/django.po b/apps/catalogue/locale/ru/LC_MESSAGES/django.po index 7af3ea9e4..b84077443 100644 --- a/apps/catalogue/locale/ru/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/ru/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:39+0200\n" -"PO-Revision-Date: 2012-03-04 22:10+0100\n" -"Last-Translator: xxx \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:40+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -37,216 +37,241 @@ msgstr "Не показывать темы" msgid "Don't use our custom font" msgstr "Не используйте наш специальный шрифт" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Ведение" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Нормальное ведение" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "1,5 ведения" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Двойное ведение" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Размер шрифта" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "Умолчание" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Большой" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "автор" - -#: models.py:34 -msgid "epoch" -msgstr "эпоха" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Появилась ошибка: %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "форма" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Вы удачно заимпортировали книгу" -#: models.py:36 -msgid "genre" -msgstr "жанр" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Ошибка импорта файла: %r" -#: models.py:37 -msgid "theme" -msgstr "мотив" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Скачать PDF пользователя" -#: models.py:38 -msgid "set" -msgstr "набор" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Загрузить" -#: models.py:39 models.py:368 -msgid "book" -msgstr "книга" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "заглавие" -#: models.py:60 models.py:230 -msgid "name" -msgstr "название" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "ключ сортировки " -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "slug" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "ключ сортировки " - -#: models.py:63 -msgid "category" -msgstr "категория" +#: models/book.py:33 +msgid "language code" +msgstr "код языка" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "описание" -#: models.py:68 -msgid "book count" -msgstr "число книг" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "дата создания" -#: models.py:90 -msgid "tag" -msgstr "таг" - -#: models.py:91 -msgid "tags" -msgstr "таги" - -#: models.py:226 models.py:915 -#, fuzzy, python-format -msgid "%s file" -msgstr "XML файл" - -#: models.py:229 -msgid "type" -msgstr "тип" - -#: models.py:231 -#, fuzzy -msgid "file" -msgstr "XML файл" +#: models/book.py:38 +msgid "parent number" +msgstr "номер родителя" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr "дополнительная информация" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "аудиокнига" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "заглавие" - -#: models.py:336 -msgid "language code" -msgstr "код языка" - -#: models.py:341 -msgid "parent number" -msgstr "номер родителя" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "обложка" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "книга" + +#: models/book.py:67 msgid "books" msgstr "книги" -#: models.py:620 +#: models/book.py:243 #, fuzzy, python-format msgid "Book \"%s\" does not exist." msgstr "Книга со slug = \"%s\" не существует." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Книга %s уже существует" -#: models.py:935 -msgid "fragment" -msgstr "фрагмент" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, fuzzy, python-format +msgid "%s file" +msgstr "XML файл" -#: models.py:936 -msgid "fragments" -msgstr "фрагменты" +#: models/bookmedia.py:25 +msgid "type" +msgstr "тип" + +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "название" + +#: models/bookmedia.py:27 +#, fuzzy +msgid "file" +msgstr "XML файл" -#: models.py:977 +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "аудиокнига" + +#: models/collection.py:16 #, fuzzy msgid "book slugs" msgstr "анонсы книги" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "сбор" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "сборы" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Появилась ошибка: %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "фрагмент" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Вы удачно заимпортировали книгу" +#: models/fragment.py:33 +msgid "fragments" +msgstr "фрагменты" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Ошибка импорта файла: %r" +#: models/tag.py:14 +msgid "author" +msgstr "автор" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Скачать PDF пользователя" +#: models/tag.py:15 +msgid "epoch" +msgstr "эпоха" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Загрузить" +#: models/tag.py:16 +msgid "kind" +msgstr "форма" + +#: models/tag.py:17 +msgid "genre" +msgstr "жанр" + +#: models/tag.py:18 +msgid "theme" +msgstr "мотив" + +#: models/tag.py:19 +msgid "set" +msgstr "набор" + +#: models/tag.py:32 +msgid "category" +msgstr "категория" + +#: models/tag.py:37 +msgid "book count" +msgstr "число книг" + +#: models/tag.py:59 +msgid "tag" +msgstr "таг" + +#: models/tag.py:60 +msgid "tags" +msgstr "таги" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 msgid "Listing of all audiobooks" -msgstr "" +msgstr "Список работ" #: templates/catalogue/audiobook_list.html:12 msgid "Latest MP3 audiobooks" -msgstr "" +msgstr "Последние MP3 аудиокниги" #: templates/catalogue/audiobook_list.html:13 msgid "Latest Ogg Vorbis audiobooks" -msgstr "" +msgstr "Последние Ogg Vorbis аудиокниги" #: templates/catalogue/audiobook_list.html:19 msgid "" @@ -254,27 +279,29 @@ msgid "" "Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" "Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." msgstr "" +"Аудиотека школьных чтений Фонда Nowoczesna Polska.\n" +". Можете использовать ее бесплатно и без ограничений. \n" +"Аудиокниги записывают известные актеры, в том числе Данута Стенка и Ян Пешек." #: templates/catalogue/book_detail.html:20 #: templates/catalogue/tagged_object_list.html:74 #: templates/catalogue/tagged_object_list.html:104 msgid "See also" -msgstr "" +msgstr "Подробнее" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:11 -#, fuzzy msgid "Theme" -msgstr "мотив" +msgstr "Мотив" #: templates/catalogue/book_fragments.html:5 #: templates/catalogue/book_fragments.html:13 msgid "in work " -msgstr "" +msgstr "в труде" #: templates/catalogue/book_info.html:6 msgid "This work is licensed under:" -msgstr "" +msgstr "Разрешение на работу со стороны" #: templates/catalogue/book_info.html:9 msgid "" @@ -283,68 +310,70 @@ msgid "" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" +"Этот труд не защищен авторским правом и является частью \n" +"         общественного домена, что обозначает, нем можно свободно спользоваться, публиковать и \n" +"         распространять. Если есть какие-либо дополнительные материалы, защищенные авторскими правами \n" +"         предоставленные с этой работой (например, аннотации, мотивы и т.д.), эти \n" +"         материалы доступны по лицензией \n" +"         Creative Commons Attribution-ShareAlike 3.0 " #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" -msgstr "" +msgstr "Текст подготовлен на основе:" #: templates/catalogue/book_info.html:28 msgid "Edited and annotated by:" -msgstr "" +msgstr "Под редакцией и с комментариями:" #: templates/catalogue/book_info.html:33 msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" -msgstr "" +msgstr "Список работ" #: templates/catalogue/book_list.html:21 msgid "Table of Content" -msgstr "" +msgstr "Оглавление" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" -msgstr "" +msgstr "↑ топ ↑" #: templates/catalogue/book_sets.html:2 -#, fuzzy msgid "Put a book on the shelf!" -msgstr "Эта книга не находится на полке" +msgstr "Поставьте книгу на полку!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 -#, fuzzy msgid "Create new shelf" -msgstr "Название новой полки" +msgstr "Создать новую полку" #: templates/catalogue/book_sets.html:10 msgid "You do not have any shelves. You can create one below, if you want to." -msgstr "" +msgstr "У вас нет никаких полок. Если вы хотите, вы можете создать одну ниже." #: templates/catalogue/book_sets.html:15 -#, fuzzy msgid "Put on the shelf!" -msgstr "Название новой полки" +msgstr "Поставьте на полку!" #: templates/catalogue/book_short.html:59 #: templates/catalogue/picture_detail.html:54 -#, fuzzy msgid "Epoch" msgstr "эпоха" #: templates/catalogue/book_short.html:66 #: templates/catalogue/picture_detail.html:60 msgid "Kind" -msgstr "" +msgstr "форма" #: templates/catalogue/book_short.html:73 -#, fuzzy msgid "Genre" msgstr "жанр" @@ -353,289 +382,294 @@ msgid "Read online" msgstr "Читать онлайн" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" -msgstr "" +msgstr "печатать" #: templates/catalogue/book_short.html:98 msgid "for an e-book reader" -msgstr "" +msgstr "для читателя электронной книги" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" -msgstr "" +msgstr "для Киндле" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" -msgstr "" +msgstr "продвинутое использование" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" -msgstr "" +msgstr "Послушайте" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" -msgstr "" +msgstr "на WolneLektury.pl" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" -msgstr "" +msgstr "Оглавление" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 -#, fuzzy +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" -msgstr "мотив" +msgstr "Мотивы" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" -msgstr "" +msgstr "Изменить примечание" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" -msgstr "" +msgstr "Инфобокс" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" -msgstr "" +msgstr "Возратитесь на сайт книги" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" -msgstr "" +msgstr "для читателя" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" -msgstr "" +msgstr "Скачать все книги с этой полки" #: templates/catalogue/book_wide.html:22 #: templates/catalogue/tagged_object_list.html:60 -#, fuzzy msgid "Motifs and themes" -msgstr "Не показывать темы" +msgstr "Мотивы и темы" #: templates/catalogue/book_wide.html:44 -#, fuzzy msgid "See" -msgstr "Полки" +msgstr "Посмотрите" #: templates/catalogue/book_wide.html:47 msgid "Source" -msgstr "" +msgstr "Источник" #: templates/catalogue/book_wide.html:47 msgid "of the book" -msgstr "" +msgstr "данной книги" #: templates/catalogue/book_wide.html:49 msgid "Source XML file" -msgstr "" +msgstr "Исходный файл" #: templates/catalogue/book_wide.html:51 -#, fuzzy msgid "Book on" -msgstr "число книг" +msgstr "Книга на" #: templates/catalogue/book_wide.html:51 msgid "Editor's Platform" -msgstr "" +msgstr "Платформа редакторов" #: templates/catalogue/book_wide.html:54 msgid "Book description on Lektury.Gazeta.pl" -msgstr "" +msgstr "Описание книги на Lektury.Gazeta.pl" #: templates/catalogue/book_wide.html:57 msgid "Book description on Wikipedia" -msgstr "" +msgstr "Описание книги на Wikipedia" #: templates/catalogue/book_wide.html:59 msgid "Mix this book" -msgstr "" +msgstr "данной книги" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" -msgstr "" +msgstr "Каталог" #: templates/catalogue/catalogue.html:16 msgid "Download the catalogue in PDF format." -msgstr "" +msgstr "Скачать каталог в PDF формате." -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 -#, fuzzy +#: templatetags/catalogue_tags.py:415 msgid "Authors" -msgstr "автор" +msgstr "Авторы" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" -msgstr "" +msgstr "Формы" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 -#, fuzzy +#: templatetags/catalogue_tags.py:416 msgid "Genres" -msgstr "жанр" +msgstr "Жанры" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 -#, fuzzy +#: templatetags/catalogue_tags.py:418 msgid "Epochs" -msgstr "эпоха" +msgstr "Эпохи" #: templates/catalogue/catalogue.html:31 msgid "Themes and topics" -msgstr "" +msgstr "Мотивы и темы" + +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "сборы" #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" -msgstr "" +msgstr "Список всех DAISY файлов" #: templates/catalogue/daisy_list.html:9 msgid "Latest DAISY audiobooks" -msgstr "" +msgstr "Последние DAISY аудиокниги" #: templates/catalogue/daisy_list.html:15 msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" +"Система DAISY это известный во всем мире формат записи книг\n" +", предназначен для людей с плохим зрением, плохо видящих и других лиц\n" +", имеющих проблемы с чтением. Книгами можно пользоваться бесплатно и без ограничений." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" -msgstr "" +msgstr "Критерия являются неоднозначными. Пожалуйста, выберите один из следующих вариантов:" #: templates/catalogue/fragment_sets.html:2 msgid "Shelves containing fragment" -msgstr "" +msgstr "Полки с фрагментом" #: templates/catalogue/fragment_sets.html:4 msgid "You do not own any shelves. You can create one below, if you want to." -msgstr "" +msgstr "У вас нет никакой полки. Если вы хотите, вы можете создать одну ниже." #: templates/catalogue/fragment_sets.html:9 -#, fuzzy msgid "Save all shelves" -msgstr "Полки" +msgstr "Сохранить все полки" #: templates/catalogue/fragment_short.html:12 -#, fuzzy msgid "Expand fragment" -msgstr "фрагмент" +msgstr "Растянуть фрагмент" #: templates/catalogue/fragment_short.html:22 -#, fuzzy msgid "Hide fragment" -msgstr "фрагмент" +msgstr "Скрыть фрагмент" #: templates/catalogue/inline_tag_list.html:4 #: templates/catalogue/tag_list.html:4 -#, fuzzy msgid "See full category" -msgstr "категория" +msgstr "Вся категория" -#: templates/catalogue/menu.html:32 -#, fuzzy +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" -msgstr "книги" +msgstr "Все книги" -#: templates/catalogue/menu.html:36 -#, fuzzy +#: templates/catalogue/menu.html:28 msgid "Audiobooks" -msgstr "книги" +msgstr "Аудиокниги" -#: templates/catalogue/menu.html:40 -#, fuzzy +#: templates/catalogue/menu.html:32 msgid "DAISY" -msgstr "DAISY файл" +msgstr "Даисы" #: templates/catalogue/picture_detail.html:29 msgid "Work is licensed under " -msgstr "" +msgstr "Разрешение на работу со стороны" #: templates/catalogue/picture_detail.html:31 msgid "Based on" -msgstr "" +msgstr "Основанный на" #: templates/catalogue/picture_detail.html:45 msgid "Details" -msgstr "" +msgstr "Подробнее" #: templates/catalogue/picture_detail.html:48 -#, fuzzy msgid "Author" -msgstr "автор" +msgstr "Автор" #: templates/catalogue/picture_detail.html:66 msgid "Other resources" -msgstr "" +msgstr "другие ресурсы" #: templates/catalogue/picture_detail.html:69 msgid "Source of the image" -msgstr "" +msgstr "Источник книги" #: templates/catalogue/picture_detail.html:72 msgid "Image on the Editor's Platform" -msgstr "" +msgstr "Изображение на платформе редакторов" #: templates/catalogue/picture_detail.html:83 msgid "View XML source" -msgstr "" +msgstr "Просмотр XML-источник" #: templates/catalogue/picture_detail.html:86 -#, fuzzy msgid "Work's themes " -msgstr "Не показывать темы" +msgstr "Темы труда" #: templates/catalogue/picture_list.html:8 #: templates/catalogue/picture_list.html:10 msgid "Listing of all pictures" -msgstr "" +msgstr "Список работ" #: templates/catalogue/player.html:35 -#, fuzzy msgid "Download as" -msgstr "Загрузить" +msgstr "Скачать" #: templates/catalogue/player.html:88 msgid "Artist" -msgstr "" +msgstr "Артист" #: templates/catalogue/player.html:89 msgid "Director" -msgstr "" +msgstr "режиссер" #: templates/catalogue/player.html:108 msgid "Audiobooks were prepared as a part of the projects:" -msgstr "" +msgstr "Аудиокниги были подготовлены в рамках проекта:" #: templates/catalogue/player.html:113 #, python-format msgid "%(cs)s, funded by %(fb)s" -msgstr "" +msgstr "%(cs)s, финансируемого %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Аудиокниги были подготовлены в рамках %(cs)s проектa, финансируемого %(fb)s." #: templates/catalogue/player.html:127 #, python-format msgid "Audiobooks were prepared as a part of the %(cs)s project." -msgstr "" +msgstr "Аудиокниги были подготовлены в рамках %(cs)s проектa." #: templates/catalogue/search_multiple_hits.html:5 #: templates/catalogue/search_no_hits.html:5 @@ -643,58 +677,64 @@ msgstr "" #: templates/catalogue/search_too_short.html:5 #: templates/catalogue/search_too_short.html:10 msgid "Search" -msgstr "" +msgstr "Поиск" #: templates/catalogue/search_multiple_hits.html:11 #: templates/catalogue/search_no_hits.html:16 msgid "Did you mean" -msgstr "" +msgstr "Вы имели в виду" -#: templates/catalogue/search_multiple_hits.html:54 -msgid "Results by authors" -msgstr "" +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Результаты по заглавиям" #: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "" +msgid "Results by authors" +msgstr "Результаты по авторам" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "переводчик" + +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" -msgstr "" +msgstr "Результаты в текстах" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" -msgstr "" +msgstr "другие ресурсы" #: templates/catalogue/search_no_hits.html:19 #: templates/catalogue/tagged_object_list.html:146 msgid "Sorry! Search cirteria did not match any resources." -msgstr "" +msgstr "Извините! Критерий поиска не соответствует никаким ресурсам." #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" +"Искать поддержку двигателя используя критерии: заглавие, автор, тема/сюжет, эпоха, форма и жанр.\n" +"\t\tПока мы не поддерживаем поиска всего текста." #: templates/catalogue/search_too_short.html:13 msgid "Sorry! Search query must have at least two characters." -msgstr "" +msgstr "Извините! У искаемого вопроса должны быть по крайней мере два свойства." #: templates/catalogue/tagged_object_list.html:78 #: templates/catalogue/tagged_object_list.html:108 msgid "in Lektury.Gazeta.pl" -msgstr "" +msgstr "на Lektury.Gazeta.pl" #: templates/catalogue/tagged_object_list.html:83 #: templates/catalogue/tagged_object_list.html:113 msgid "in Wikipedia" -msgstr "" +msgstr "в Википедии" #: templates/catalogue/user_shelves.html:2 msgid "Your shelves with books" -msgstr "" +msgstr "Ваши книжные полки" #: templates/catalogue/user_shelves.html:6 msgid "remove" @@ -702,16 +742,15 @@ msgstr "" #: templates/catalogue/user_shelves.html:10 msgid "You do not own any shelves. You can create one below if you want to" -msgstr "" +msgstr "У вас нет никаких полок. Если хотите, вы можете создать одну ниже." #: templates/catalogue/user_shelves.html:15 msgid "Create shelf" -msgstr "" +msgstr "Создать полку" #: templates/catalogue/snippets/custom_pdf_link_li.html:6 -#, fuzzy msgid "Download a custom PDF" -msgstr "Скачать PDF пользователя" +msgstr "Скачать PDF" #: templates/catalogue/snippets/license_icon.html:6 #: templates/catalogue/snippets/license_icon.html:8 @@ -772,9 +811,6 @@ msgstr "" #~ msgid "goes to public domain" #~ msgstr "идти к публичной домене" -#~ msgid "translator" -#~ msgstr "переводчик" - #~ msgid "year of translator's death" #~ msgstr "год смерти переводчика" diff --git a/apps/catalogue/locale/uk/LC_MESSAGES/django.mo b/apps/catalogue/locale/uk/LC_MESSAGES/django.mo index 5697156ec..e3f55a582 100644 Binary files a/apps/catalogue/locale/uk/LC_MESSAGES/django.mo and b/apps/catalogue/locale/uk/LC_MESSAGES/django.mo differ diff --git a/apps/catalogue/locale/uk/LC_MESSAGES/django.po b/apps/catalogue/locale/uk/LC_MESSAGES/django.po index 39b96cd10..a2428cf77 100644 --- a/apps/catalogue/locale/uk/LC_MESSAGES/django.po +++ b/apps/catalogue/locale/uk/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-05-30 17:24+0100\n" -"Last-Translator: Natalia Kertyczak \n" +"POT-Creation-Date: 2013-04-09 10:34+0200\n" +"PO-Revision-Date: 2013-04-09 10:40+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -36,201 +36,226 @@ msgstr "Сховати теми" msgid "Don't use our custom font" msgstr "Не використовувати нашого настроюваного шрифту" -#: forms.py:51 +#: forms.py:49 +msgid "Without cover" +msgstr "" + +#: forms.py:52 msgid "Leading" msgstr "Leading" -#: forms.py:52 +#: forms.py:53 msgid "Normal leading" msgstr "Normal leading" -#: forms.py:53 +#: forms.py:54 msgid "One and a half leading" msgstr "One and a half leading" -#: forms.py:54 +#: forms.py:55 msgid "Double leading" msgstr "Double leading" -#: forms.py:56 +#: forms.py:57 msgid "Font size" msgstr "Розмір шрифту" -#: forms.py:57 +#: forms.py:58 msgid "Default" msgstr "За умовчанням" -#: forms.py:58 +#: forms.py:59 msgid "Big" msgstr "Великий" -#: forms.py:81 +#: forms.py:82 msgid "Queue is full. Please try again later." msgstr "" -#: models.py:33 -msgid "author" -msgstr "автор" - -#: models.py:34 -msgid "epoch" -msgstr "епоха" +#: views.py:527 +#, python-format +msgid "" +"An error occurred: %(exception)s\n" +"\n" +"%(tb)s" +msgstr "" +"Система виявила помилку %(exception)s\n" +"\n" +"%(tb)s" -#: models.py:35 -msgid "kind" -msgstr "рід" +#: views.py:528 +msgid "Book imported successfully" +msgstr "Книжку успішно завантажено" -#: models.py:36 -msgid "genre" -msgstr "жанр" +#: views.py:530 +#, python-format +msgid "Error importing file: %r" +msgstr "Помилка в завантаженні файла: %r" -#: models.py:37 -msgid "theme" -msgstr "тема" +#: views.py:562 +msgid "Download custom PDF" +msgstr "Завантажити настроюваний PDF" -#: models.py:38 -msgid "set" -msgstr "вибір" +#: views.py:563 +#: templates/catalogue/book_short.html:92 +#: templates/catalogue/book_text.html:29 +#: templates/catalogue/book_wide.html:63 +msgid "Download" +msgstr "Завантажити" -#: models.py:39 models.py:368 -msgid "book" -msgstr "книжка" +#: models/book.py:28 +#: models/collection.py:11 +msgid "title" +msgstr "заголовок" -#: models.py:60 models.py:230 -msgid "name" -msgstr "назва" +#: models/book.py:29 +#: models/tag.py:31 +msgid "sort key" +msgstr "ключ сортування" -#: models.py:61 models.py:333 models.py:335 models.py:973 models.py:976 +#: models/book.py:30 +#: models/book.py:32 +#: models/collection.py:12 +#: models/collection.py:15 +#: models/tag.py:30 msgid "slug" msgstr "slug" -#: models.py:62 models.py:332 -msgid "sort key" -msgstr "ключ сортування" - -#: models.py:63 -msgid "category" -msgstr "категорія" +#: models/book.py:33 +msgid "language code" +msgstr "мовний код" -#: models.py:65 models.py:106 models.py:338 models.py:441 models.py:974 +#: models/book.py:35 +#: models/book.py:145 +#: models/collection.py:13 +#: models/tag.py:34 +#: models/tag.py:83 msgid "description" msgstr "опис" -#: models.py:68 -msgid "book count" -msgstr "кількість книжок" - -#: models.py:72 models.py:73 models.py:232 models.py:339 models.py:340 +#: models/book.py:36 +#: models/book.py:37 +#: models/bookmedia.py:28 +#: models/tag.py:41 +#: models/tag.py:42 msgid "creation date" msgstr "дата створення" -#: models.py:90 -msgid "tag" -msgstr "теґ" - -#: models.py:91 -msgid "tags" -msgstr "теґи" - -#: models.py:226 models.py:915 -#, python-format -msgid "%s file" -msgstr "файл %s" - -#: models.py:229 -msgid "type" -msgstr "тип" - -#: models.py:231 -msgid "file" -msgstr "файл" +#: models/book.py:38 +msgid "parent number" +msgstr "номер батька" -#: models.py:233 models.py:342 +#: models/book.py:39 +#: models/bookmedia.py:29 msgid "extra information" msgstr "додаткова інформація" -#: models.py:242 models.py:243 -msgid "book media" -msgstr "book media" - -#: models.py:331 models.py:972 -msgid "title" -msgstr "заголовок" - -#: models.py:336 -msgid "language code" -msgstr "мовний код" - -#: models.py:341 -msgid "parent number" -msgstr "номер батька" - -#: models.py:347 +#: models/book.py:44 msgid "cover" msgstr "обкладинка" -#: models.py:369 +#: models/book.py:66 +#: models/tag.py:20 +msgid "book" +msgstr "книжка" + +#: models/book.py:67 msgid "books" msgstr "книжки" -#: models.py:620 +#: models/book.py:243 #, python-format msgid "Book \"%s\" does not exist." msgstr "Книжка \"%s\" не існує." -#: models.py:634 +#: models/book.py:257 #, python-format msgid "Book %s already exists" msgstr "Книжка %s вже існує" -#: models.py:935 -msgid "fragment" -msgstr "фрагмент" +#: models/book.py:589 +#: models/bookmedia.py:22 +#, python-format +msgid "%s file" +msgstr "файл %s" -#: models.py:936 -msgid "fragments" -msgstr "фрагменти" +#: models/bookmedia.py:25 +msgid "type" +msgstr "тип" -#: models.py:977 +#: models/bookmedia.py:26 +#: models/tag.py:29 +msgid "name" +msgstr "назва" + +#: models/bookmedia.py:27 +msgid "file" +msgstr "файл" + +#: models/bookmedia.py:38 +#: models/bookmedia.py:39 +msgid "book media" +msgstr "book media" + +#: models/collection.py:16 msgid "book slugs" msgstr "slugs книжок" -#: models.py:981 +#: models/collection.py:20 msgid "collection" msgstr "колекція" -#: models.py:982 +#: models/collection.py:21 msgid "collections" msgstr "колекції" -#: views.py:500 -#, python-format -msgid "" -"An error occurred: %(exception)s\n" -"\n" -"%(tb)s" -msgstr "" -"Система виявила помилку %(exception)s\n" -"\n" -"%(tb)s" +#: models/fragment.py:32 +msgid "fragment" +msgstr "фрагмент" -#: views.py:501 -msgid "Book imported successfully" -msgstr "Книжку успішно завантажено" +#: models/fragment.py:33 +msgid "fragments" +msgstr "фрагменти" -#: views.py:503 -#, python-format -msgid "Error importing file: %r" -msgstr "Помилка в завантаженні файла: %r" +#: models/tag.py:14 +msgid "author" +msgstr "автор" -#: views.py:535 -msgid "Download custom PDF" -msgstr "Завантажити настроюваний PDF" +#: models/tag.py:15 +msgid "epoch" +msgstr "епоха" -#: views.py:536 templates/catalogue/book_short.html:92 -#: templates/catalogue/book_text.html:28 templates/catalogue/book_wide.html:63 -msgid "Download" -msgstr "Завантажити" +#: models/tag.py:16 +msgid "kind" +msgstr "рід" + +#: models/tag.py:17 +msgid "genre" +msgstr "жанр" + +#: models/tag.py:18 +msgid "theme" +msgstr "тема" + +#: models/tag.py:19 +msgid "set" +msgstr "вибір" + +#: models/tag.py:32 +msgid "category" +msgstr "категорія" + +#: models/tag.py:37 +msgid "book count" +msgstr "кількість книжок" + +#: models/tag.py:59 +msgid "tag" +msgstr "теґ" + +#: models/tag.py:60 +msgid "tags" +msgstr "теґи" #: templates/catalogue/audiobook_list.html:7 #: templates/catalogue/audiobook_list.html:16 @@ -251,8 +276,7 @@ msgid "" "Możecie z niej korzystać bezpłatnie i bez ograniczeń.\n" "Audiobooki nagrywają znani aktorzy, wśród nich Danuta Stenka i Jan Peszek." msgstr "" -"Аудіотека шкільної літератури Фонду Сучасна Польща (Fundacja Nowoczesna " -"Polska).\n" +"Аудіотека шкільної літератури Фонду Сучасна Польща (Fundacja Nowoczesna Polska).\n" "Можна нею користуватися безкоштовно і без обмежень.\n" "Аудіокниги зачитують відомі актори, серед яких Данута Стенка та Ян Пешек." @@ -277,26 +301,22 @@ msgid "This work is licensed under:" msgstr "Цей твір є доступним на ліцензії:" #: templates/catalogue/book_info.html:9 -#, fuzzy msgid "" "This work isn't covered by copyright and is part of the\n" " public domain, which means it can be freely used, published and\n" " distributed. If there are any additional copyrighted materials\n" " provided with this work (such as annotations, motifs etc.), those\n" " materials are licensed under the \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" Creative Commons Attribution-ShareAlike 3.0\n" " license." msgstr "" "Цей твір не охороняється авторським правом і є частиною\n" -" суспільного надбання, що означає, що можна ним вільно " -"користовуватися, його публікувати та\n" -" розповсюджувати. Якщо текст супроводжується додатковими матеріалами\n" -" (примітками, літературними мотивами тощо), які охороняються " -"авторським правом,\n" -" доступ до цих додаткових матеріалів надається на ліцензії \n" -" Creative " -"Commons Attribution-ShareAlike 3.0\n" +" суспільного надбання, тому його можна використовувати без обмежень, публікувати, та\n" +" розповсюджувати. Якщо твір містить додаткові матеріали, котрі охороняються авторським правом\n" +" (наприклад примітки, мотиви, тощо), доступ до цих\n" +" додаткових матеріалів надається на умовах ліцензії \n" +" Creative Commons Із зазначенням імені автора – На тих же умовах 3.0\n" +" ." #: templates/catalogue/book_info.html:20 msgid "Text prepared based on:" @@ -310,7 +330,8 @@ msgstr "Редагування та примітки:" msgid "Cover image by:" msgstr "" -#: templates/catalogue/book_list.html:7 templates/catalogue/book_list.html:10 +#: templates/catalogue/book_list.html:7 +#: templates/catalogue/book_list.html:10 msgid "Listing of all works" msgstr "Список усіх творів" @@ -318,7 +339,7 @@ msgstr "Список усіх творів" msgid "Table of Content" msgstr "Зміст" -#: templates/catalogue/book_list.html:48 +#: templates/catalogue/book_list.html:30 msgid "↑ top ↑" msgstr "↑ вгору ↑" @@ -326,7 +347,8 @@ msgstr "↑ вгору ↑" msgid "Put a book on the shelf!" msgstr "Покласти книжку на полицю!" -#: templates/catalogue/book_sets.html:3 templates/catalogue/book_sets.html:6 +#: templates/catalogue/book_sets.html:3 +#: templates/catalogue/book_sets.html:6 #: templates/catalogue/fragment_sets.html:16 msgid "Create new shelf" msgstr "Створити нову полицю" @@ -358,7 +380,7 @@ msgid "Read online" msgstr "Читати онлайн" #: templates/catalogue/book_short.html:95 -#: templates/catalogue/book_text.html:41 +#: templates/catalogue/book_text.html:42 msgid "to print" msgstr "до друку" @@ -367,53 +389,58 @@ msgid "for an e-book reader" msgstr "для рідера електронних книг" #: templates/catalogue/book_short.html:101 -#: templates/catalogue/book_text.html:47 +#: templates/catalogue/book_text.html:48 msgid "for Kindle" msgstr "на Kindle" #: templates/catalogue/book_short.html:104 +#: templates/catalogue/book_text.html:51 msgid "FictionBook" msgstr "" #: templates/catalogue/book_short.html:107 -#: templates/catalogue/book_text.html:50 +#: templates/catalogue/book_text.html:54 msgid "for advanced usage" msgstr "для розширеного користування" #: templates/catalogue/book_short.html:113 -#: templates/catalogue/book_text.html:31 +#: templates/catalogue/book_text.html:32 msgid "Listen" msgstr "Послухати" -#: templates/catalogue/book_text.html:10 templates/catalogue/player.html:11 +#: templates/catalogue/book_text.html:10 +#: templates/catalogue/player.html:11 msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/catalogue/book_text.html:23 +#: templates/catalogue/book_text.html:24 msgid "Table of contents" msgstr "Зміст" -#: templates/catalogue/book_text.html:24 templates/catalogue/menu.html:27 +#: templates/catalogue/book_text.html:25 +#: templatetags/catalogue_tags.py:419 msgid "Themes" msgstr "Теми" -#: templates/catalogue/book_text.html:25 +#: templates/catalogue/book_text.html:26 msgid "Edit. note" msgstr "Редакторський коментар" -#: templates/catalogue/book_text.html:26 +#: templates/catalogue/book_text.html:27 msgid "Infobox" msgstr "Інфобокс" -#: templates/catalogue/book_text.html:27 templates/catalogue/player.html:34 +#: templates/catalogue/book_text.html:28 +#: templates/catalogue/player.html:34 msgid "Book's page" msgstr "Сторінка книжки" -#: templates/catalogue/book_text.html:44 +#: templates/catalogue/book_text.html:45 msgid "for a reader" msgstr "на рідер" -#: templates/catalogue/book_text.html:54 templates/catalogue/book_wide.html:67 +#: templates/catalogue/book_text.html:58 +#: templates/catalogue/book_wide.html:67 msgid "Download all audiobooks for this book" msgstr "Завантажити усі аудіокниги для цієї книжки" @@ -458,7 +485,8 @@ msgstr "Опис книжки на Вікіпедії" msgid "Mix this book" msgstr "Міксувати цю книжку" -#: templates/catalogue/catalogue.html:6 templates/catalogue/catalogue.html:11 +#: templates/catalogue/catalogue.html:6 +#: templates/catalogue/catalogue.html:11 msgid "Catalogue" msgstr "Каталог" @@ -466,27 +494,31 @@ msgstr "Каталог" msgid "Download the catalogue in PDF format." msgstr "Завантажити каталог у форматі PDF" -#: templates/catalogue/catalogue.html:19 templates/catalogue/menu.html:7 +#: templates/catalogue/catalogue.html:19 #: templates/catalogue/search_multiple_hits.html:17 #: templates/catalogue/tagged_object_list.html:26 +#: templatetags/catalogue_tags.py:415 msgid "Authors" msgstr "Автори" -#: templates/catalogue/catalogue.html:22 templates/catalogue/menu.html:17 +#: templates/catalogue/catalogue.html:22 #: templates/catalogue/search_multiple_hits.html:25 #: templates/catalogue/tagged_object_list.html:34 +#: templatetags/catalogue_tags.py:417 msgid "Kinds" msgstr "Роди" -#: templates/catalogue/catalogue.html:25 templates/catalogue/menu.html:12 +#: templates/catalogue/catalogue.html:25 #: templates/catalogue/search_multiple_hits.html:33 #: templates/catalogue/tagged_object_list.html:42 +#: templatetags/catalogue_tags.py:416 msgid "Genres" msgstr "Жанри" -#: templates/catalogue/catalogue.html:28 templates/catalogue/menu.html:22 +#: templates/catalogue/catalogue.html:28 #: templates/catalogue/search_multiple_hits.html:41 #: templates/catalogue/tagged_object_list.html:50 +#: templatetags/catalogue_tags.py:418 msgid "Epochs" msgstr "Епохи" @@ -494,6 +526,12 @@ msgstr "Епохи" msgid "Themes and topics" msgstr "Теми" +#: templates/catalogue/catalogue.html:34 +#: templates/catalogue/menu.html:16 +#, fuzzy +msgid "Collections" +msgstr "колекції" + #: templates/catalogue/daisy_list.html:6 #: templates/catalogue/daisy_list.html:12 msgid "Listing of all DAISY files" @@ -507,13 +545,11 @@ msgstr "Останні аудіокниги DAISY" msgid "" "System DAISY to uznany na całym świecie format udostępniania książek\n" "dostosowany do potrzeb osób słabowidzących, niewidomych oraz innych osób\n" -"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez " -"ograniczeń." +"mających trudności z czytaniem. Możecie z nich korzystać bezpłatnie i bez ograniczeń." msgstr "" "Система DAISY це визнаний у всьому світі формат надавання доступу до книжок\n" " котрий відповідає потребам осіб слабозорих, сліпих, а також інших осіб\n" -" які мають труднощі з читанням. Можете ними користуватися безкоштовно і без " -"обмежень." +" які мають труднощі з читанням. Можете ними користуватися безкоштовно і без обмежень." #: templates/catalogue/differentiate_tags.html:12 msgid "The criteria are ambiguous. Please select one of the following options:" @@ -544,15 +580,20 @@ msgstr "Сховати фрагмент" msgid "See full category" msgstr "Дивитись повну категорію" -#: templates/catalogue/menu.html:32 +#: templates/catalogue/menu.html:9 +#: templates/catalogue/menu.html.py:18 +msgid "Please wait…" +msgstr "" + +#: templates/catalogue/menu.html:24 msgid "All books" msgstr "Усі книжки" -#: templates/catalogue/menu.html:36 +#: templates/catalogue/menu.html:28 msgid "Audiobooks" msgstr "Аудіокниги" -#: templates/catalogue/menu.html:40 +#: templates/catalogue/menu.html:32 msgid "DAISY" msgstr "DAISY" @@ -620,11 +661,8 @@ msgstr "%(cs)s, фінансованого із коштів %(fb)s" #: templates/catalogue/player.html:125 #, python-format -msgid "" -"Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." -msgstr "" -"Аудіокниги виготовлено в рамках проекту %(cs)s, фінансованого із коштів " -"%(fb)s." +msgid "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." +msgstr "Аудіокниги виготовлено в рамках проекту %(cs)s, фінансованого із коштів %(fb)s." #: templates/catalogue/player.html:127 #, python-format @@ -644,19 +682,24 @@ msgstr "Пошук" msgid "Did you mean" msgstr "Ви мали на увазі" -#: templates/catalogue/search_multiple_hits.html:54 +#: templates/catalogue/search_multiple_hits.html:52 +msgid "Results by title" +msgstr "Результати за заголовком" + +#: templates/catalogue/search_multiple_hits.html:67 msgid "Results by authors" msgstr "Результати за авторами" -#: templates/catalogue/search_multiple_hits.html:67 -msgid "Results by title" -msgstr "Результати за заголовком" +#: templates/catalogue/search_multiple_hits.html:80 +#, fuzzy +msgid "Results by translators" +msgstr "Результати за авторами" -#: templates/catalogue/search_multiple_hits.html:82 +#: templates/catalogue/search_multiple_hits.html:93 msgid "Results in text" msgstr "Результати в тексті" -#: templates/catalogue/search_multiple_hits.html:99 +#: templates/catalogue/search_multiple_hits.html:110 msgid "Other results" msgstr "Інші результати" @@ -667,12 +710,10 @@ msgstr "На жаль, Ваші критерії пошуку не відпов #: templates/catalogue/search_no_hits.html:21 msgid "" -"Search engine supports following criteria: title, author, theme/topic, " -"epoch, kind and genre.\n" +"Search engine supports following criteria: title, author, theme/topic, epoch, kind and genre.\n" "\t\tAs for now we do not support full text search." msgstr "" -"Система пошуку дозволяє здійснювати пошук за наступними критеріями: " -"заголовок, автор, тема, епоха, рід та жанр.\n" +"Система пошуку дозволяє здійснювати пошук за наступними критеріями: заголовок, автор, тема, епоха, рід та жанр.\n" "\t\tНа даний момент пошук у повному обсязі тексту не є можливим." #: templates/catalogue/search_too_short.html:13 diff --git a/apps/catalogue/models/bookmedia.py b/apps/catalogue/models/bookmedia.py index 024f713c2..bf05e214e 100644 --- a/apps/catalogue/models/bookmedia.py +++ b/apps/catalogue/models/bookmedia.py @@ -40,7 +40,7 @@ class BookMedia(models.Model): app_label = 'catalogue' def save(self, *args, **kwargs): - from slughifi import slughifi + from fnpdjango.utils.text.slughifi import slughifi from catalogue.utils import ExistingFile, remove_zip try: diff --git a/apps/catalogue/models/tag.py b/apps/catalogue/models/tag.py index 3c4509dda..f7c5356a7 100644 --- a/apps/catalogue/models/tag.py +++ b/apps/catalogue/models/tag.py @@ -146,7 +146,7 @@ class Tag(TagBase): @staticmethod def tags_from_info(info): - from slughifi import slughifi + from fnpdjango.utils.text.slughifi import slughifi from sortify import sortify meta_tags = [] categories = (('kinds', 'kind'), ('genres', 'genre'), ('authors', 'author'), ('epochs', 'epoch')) diff --git a/apps/catalogue/templates/catalogue/audiobook_list.html b/apps/catalogue/templates/catalogue/audiobook_list.html index c74f78c74..47c804611 100644 --- a/apps/catalogue/templates/catalogue/audiobook_list.html +++ b/apps/catalogue/templates/catalogue/audiobook_list.html @@ -9,8 +9,8 @@ {% block metadescription %}Darmowe audiobooki na wolnej licencji. Lektury czytane przez znanych aktorów.{% endblock %} {% block extrahead %} - - + + {% endblock %} {% block book_list_header %}{% trans "Listing of all audiobooks" %}{% endblock %} diff --git a/apps/catalogue/templates/catalogue/book_searched.html b/apps/catalogue/templates/catalogue/book_searched.html index 4ac66fb19..783b14a29 100644 --- a/apps/catalogue/templates/catalogue/book_searched.html +++ b/apps/catalogue/templates/catalogue/book_searched.html @@ -8,7 +8,7 @@
{% for hit in hits %} {% if hit.snippet %} - + {% else %} {% if hit.fragment %}
diff --git a/apps/catalogue/templates/catalogue/book_sets.html b/apps/catalogue/templates/catalogue/book_sets.html deleted file mode 100644 index 1eee61d21..000000000 --- a/apps/catalogue/templates/catalogue/book_sets.html +++ /dev/null @@ -1,18 +0,0 @@ -{% load i18n %} -

{% trans "Put a book on the shelf!" %}

-{% trans "Create new shelf" %} -
-
    -
  1. {{ new_set_form.name }}
  2. -
-
-{% if not user.tag_set.count %} -

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

-{% else %} -
-
    -
  1. {{ form.set_ids }}
  2. -
  3. -
-
-{% endif %} diff --git a/apps/catalogue/templates/catalogue/book_short.html b/apps/catalogue/templates/catalogue/book_short.html index f0d0ca502..73e5cb8fb 100644 --- a/apps/catalogue/templates/catalogue/book_short.html +++ b/apps/catalogue/templates/catalogue/book_short.html @@ -26,12 +26,12 @@
-
+ {% csrf_token %}
@@ -44,7 +44,7 @@ {% for name, slug in related.tags.author %} {{ name }}{% if not forloop.last %}, {% endif %}{% endfor %}{% for title, slug in related.parents %}, - {{ title }}{% endfor %} + {{ title }}{% endfor %}
{% if main_link %}{% endif %} @@ -85,7 +85,7 @@ diff --git a/apps/catalogue/templates/catalogue/book_text.html b/apps/catalogue/templates/catalogue/book_text.html index 7486e05dc..6addd41f9 100644 --- a/apps/catalogue/templates/catalogue/book_text.html +++ b/apps/catalogue/templates/catalogue/book_text.html @@ -1,5 +1,4 @@ {% load i18n %} -{% load url from future %} {% load static from staticfiles %} {% load chunks compressed catalogue_tags %} {{ book.html_file.read|safe }} {{ piwik_tag|safe }} - - diff --git a/apps/catalogue/templates/catalogue/book_wide.html b/apps/catalogue/templates/catalogue/book_wide.html index 0e5201977..13df555b9 100644 --- a/apps/catalogue/templates/catalogue/book_wide.html +++ b/apps/catalogue/templates/catalogue/book_wide.html @@ -23,7 +23,7 @@
@@ -56,7 +56,7 @@ {% if book.wiki_link %}
  • {% trans "Book description on Wikipedia" %}
  • {% endif %} -
  • {% trans "Mix this book" %}
  • +
  • {% trans "Mix this book" %}
  • diff --git a/apps/catalogue/templates/catalogue/catalogue.html b/apps/catalogue/templates/catalogue/catalogue.html index 31c4d5b99..228a4152f 100644 --- a/apps/catalogue/templates/catalogue/catalogue.html +++ b/apps/catalogue/templates/catalogue/catalogue.html @@ -12,7 +12,7 @@
    -

    +

    {% trans "Download the catalogue in PDF format." %}

    diff --git a/apps/catalogue/templates/catalogue/daisy_list.html b/apps/catalogue/templates/catalogue/daisy_list.html index 88e95a4e9..fcc25d519 100644 --- a/apps/catalogue/templates/catalogue/daisy_list.html +++ b/apps/catalogue/templates/catalogue/daisy_list.html @@ -6,7 +6,7 @@ {% block titleextra %}{% trans "Listing of all DAISY files" %}{% endblock %} {% block extrahead %} - + {% endblock %} {% block book_list_header %}{% trans "Listing of all DAISY files" %}{% endblock %} diff --git a/apps/catalogue/templates/catalogue/differentiate_tags.html b/apps/catalogue/templates/catalogue/differentiate_tags.html index f3bddd397..b8ef906ef 100644 --- a/apps/catalogue/templates/catalogue/differentiate_tags.html +++ b/apps/catalogue/templates/catalogue/differentiate_tags.html @@ -13,8 +13,8 @@ -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/apps/catalogue/templates/catalogue/fragment_sets.html b/apps/catalogue/templates/catalogue/fragment_sets.html deleted file mode 100644 index b270636e9..000000000 --- a/apps/catalogue/templates/catalogue/fragment_sets.html +++ /dev/null @@ -1,18 +0,0 @@ -{% load i18n %} -

    {% trans "Shelves containing fragment" %}

    -{% if not user.tag_set.count %} -

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

    -{% else %} -
    -
      -
    1. {{ form.set_ids }}
    2. -
    3. -
    -
    -{% endif %} -
    -
    -
      -
    1. {{ new_set_form.name }}
    2. -
    -
    \ No newline at end of file diff --git a/apps/catalogue/templates/catalogue/menu.html b/apps/catalogue/templates/catalogue/menu.html index ad5e386bc..4fe776925 100644 --- a/apps/catalogue/templates/catalogue/menu.html +++ b/apps/catalogue/templates/catalogue/menu.html @@ -3,7 +3,7 @@ \ No newline at end of file + diff --git a/apps/catalogue/templates/catalogue/player.html b/apps/catalogue/templates/catalogue/player.html index f32025b83..d0f0fe03e 100755 --- a/apps/catalogue/templates/catalogue/player.html +++ b/apps/catalogue/templates/catalogue/player.html @@ -136,13 +136,5 @@ {% compressed_js "player" %} {{ piwik_tag|safe }} - - diff --git a/apps/catalogue/templates/catalogue/search_multiple_hits.html b/apps/catalogue/templates/catalogue/search_multiple_hits.html index 696271fee..c9d5a35ce 100644 --- a/apps/catalogue/templates/catalogue/search_multiple_hits.html +++ b/apps/catalogue/templates/catalogue/search_multiple_hits.html @@ -8,7 +8,7 @@ {% block body %} {% if did_you_mean %} - {% trans "Did you mean" %} {{did_you_mean|lower}}? + {% trans "Did you mean" %} {{did_you_mean|lower}}? {% endif %}
    diff --git a/apps/catalogue/templates/catalogue/search_no_hits.html b/apps/catalogue/templates/catalogue/search_no_hits.html index 3b1e85b38..a2c9a63a7 100644 --- a/apps/catalogue/templates/catalogue/search_no_hits.html +++ b/apps/catalogue/templates/catalogue/search_no_hits.html @@ -13,7 +13,7 @@

    {% if did_you_mean %} - {% trans "Did you mean" %} {{did_you_mean|lower}}? + {% trans "Did you mean" %} {{did_you_mean|lower}}? {% endif %}

    {% trans "Sorry! Search cirteria did not match any resources." %}

    diff --git a/apps/catalogue/templates/catalogue/snippets/custom_pdf_link_li.html b/apps/catalogue/templates/catalogue/snippets/custom_pdf_link_li.html index 380844adb..353ad8bdf 100644 --- a/apps/catalogue/templates/catalogue/snippets/custom_pdf_link_li.html +++ b/apps/catalogue/templates/catalogue/snippets/custom_pdf_link_li.html @@ -1,5 +1,4 @@ {% load i18n %} -{% load url from future %} {% if not NO_CUSTOM_PDF %}
  • {% trans "Your shelves with books" %} -{% if shelves %} - -{% else %} -

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

    -{% endif %} -
    -
    -
      -
    1. {{ new_set_form.name }}
    2. -
    -
    \ No newline at end of file diff --git a/apps/catalogue/test_utils.py b/apps/catalogue/test_utils.py index 1c888d760..dd11e934f 100644 --- a/apps/catalogue/test_utils.py +++ b/apps/catalogue/test_utils.py @@ -7,7 +7,7 @@ import tempfile from traceback import extract_stack from django.test import TestCase from django.test.utils import override_settings -from slughifi import slughifi +from fnpdjango.utils.text.slughifi import slughifi from librarian import WLURI from django.conf import settings diff --git a/apps/catalogue/urls.py b/apps/catalogue/urls.py index 647bc9f37..98990d0bf 100644 --- a/apps/catalogue/urls.py +++ b/apps/catalogue/urls.py @@ -3,6 +3,7 @@ # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from django.conf.urls.defaults import * +from django.views.generic import RedirectView from catalogue.feeds import AudiobookFeed from catalogue.views import CustomPDFFormView @@ -15,16 +16,11 @@ urlpatterns = patterns('picture.views', url(r'^obraz/(?P%s)/?$' % SLUG, 'picture_detail') ) -# workaround for Django ticket #17111; redirect when resolved -urlpatterns += patterns('search.views', - url(r'^szukaj/$', 'main'), +urlpatterns += patterns('', + # old search page - redirected + url(r'^szukaj/$', RedirectView.as_view( + url='/szukaj/', query_string=True)), ) -#urlpatterns += patterns('django.views.generic.simple', -# # old search page - redirected -# url(r'^szukaj/$', 'redirect_to', -# -# {'url': '/szukaj/', 'query_string': True}), -#) urlpatterns += patterns('catalogue.views', url(r'^$', 'catalogue', name='catalogue'), @@ -35,7 +31,6 @@ urlpatterns += patterns('catalogue.views', url(r'^daisy/$', 'daisy_list', name='daisy_list'), url(r'^tags/$', 'tags_starting_with', name='hint'), url(r'^jtags/$', 'json_tags_starting_with', name='jhint'), - #url(r'^szukaj/$', 'search', name='old_search'), url(r'^custompdf/(?P%s)/$' % SLUG, CustomPDFFormView(), name='custom_pdf_form'), diff --git a/apps/catalogue/utils.py b/apps/catalogue/utils.py index 106067092..5ae9db5f9 100644 --- a/apps/catalogue/utils.py +++ b/apps/catalogue/utils.py @@ -4,6 +4,7 @@ # from __future__ import with_statement +import hashlib import random import re import time @@ -13,7 +14,6 @@ from django.http import HttpResponse from django.core.files.uploadedfile import UploadedFile from django.core.files.storage import DefaultStorage from django.utils.encoding import force_unicode -from django.utils.hashcompat import sha_constructor from django.conf import settings from os import mkdir, path, unlink from errno import EEXIST, ENOENT @@ -31,7 +31,7 @@ MAX_SESSION_KEY = 18446744073709551616L # 2 << 63 def get_random_hash(seed): - sha_digest = sha_constructor('%s%s%s%s' % + sha_digest = hashlib.sha1('%s%s%s%s' % (randrange(0, MAX_SESSION_KEY), time.time(), unicode(seed).encode('utf-8', 'replace'), settings.SECRET_KEY)).digest() return urlsafe_b64encode(sha_digest).replace('=', '').replace('_', '-').lower() @@ -45,7 +45,7 @@ def split_tags(tags): def get_dynamic_path(media, filename, ext=None, maxlen=100): - from slughifi import slughifi + from fnpdjango.utils.text.slughifi import slughifi # how to put related book's slug here? if not ext: diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index 6dd3d7ec1..e61feb6c2 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -19,6 +19,7 @@ from django.utils.http import urlquote_plus from django.utils import translation from django.utils.translation import ugettext as _, ugettext_lazy from django.views.decorators.cache import never_cache +from django.views.decorators.vary import vary_on_headers from ajaxable.utils import JSONResponse, AjaxableFormView from catalogue import models @@ -34,6 +35,7 @@ staff_required = user_passes_test(lambda user: user.is_staff) permanent_cache = get_cache('permanent') +@vary_on_headers('X-Requested-With') def catalogue(request): tags = models.Tag.objects.exclude( category__in=('set', 'book')).exclude(book_count=0) diff --git a/apps/chunks/fixtures/chunks.json b/apps/chunks/fixtures/chunks.json deleted file mode 100644 index 0d2627082..000000000 --- a/apps/chunks/fixtures/chunks.json +++ /dev/null @@ -1,41 +0,0 @@ -[ - { - "pk": "document-list", - "model": "chunks.chunk", - "fields": { - "content": "

    Zasoby szkolnej biblioteki internetowej Wolne Lektury oraz jej funkcjonalno\u015bci wykorzystywane s\u0105 przez nauczycieli i nauczycielki podczas pracy w szkole. Poni\u017cej znajduj\u0105 si\u0119 materia\u0142y edukacyjne \u2013 scenariusze lekcji, tematy wypracowa\u0144 i inne \u2013 stworzone przez pedagog\u00f3w, kt\u00f3rzy w swojej codziennej pracy w szkole wykorzystuj\u0105 przygotowane przez nas narz\u0119dzia i opracowane merytorycznie teksty.

    \r\n\r\n
      \r\n
    1. Scenariusze lekcji\r\n\r\n \r\n
    2. \r\n\r\n
    3. Przyk\u0142ady zada\u0144 do opracowania przez zespo\u0142y uczni\u00f3w Pobierz dokument
    4. \r\n
    5. Tematy wypracowa\u0144 Pobierz dokument
    6. \r\n
    7. Repetytorium maturalne. Pobierz prezentacj\u0119
    8. \r\n\r\n
    \r\n

    \r\n\r\n

    Zach\u0119camy wszystkich nauczycieli i wszystkie nauczycielki do tworzenia materia\u0142\u00f3w edukacyjnych i publikowania ich na naszej stronie! Warto zapozna\u0107 si\u0119 z instrukcj\u0105 dotycz\u0105c\u0105 pisania scenariuszy lekcji i schematem przyk\u0142adowego scenariusza lekcji, a gotowe materia\u0142y przes\u0142a\u0107 na adres fundacja@nowoczesnapolska.org.pl.

    ", - "description": "" - } - }, - { - "pk": "footer-map", - "model": "chunks.chunk", - "fields": { - "content": "\"GazetaEdukacja.pl\"Kurier\"Radio\"Ministerstwo\"Biblioteka\"Przekr\u00f3j\"\"TVP\"Elle\"\"Radio\"Tygodnik\"Ministerstwo\"Biblioteka\"PZL\"\"eo\"Kancelaria\"Information\"Fundacja", - "description": "" - } - }, - { - "pk": "site-description", - "model": "chunks.chunk", - "fields": { - "content": "", - "description": "" - } - }, - { - "pk": "top-message", - "model": "chunks.chunk", - "fields": { - "content": "", - "description": "" - } - }, - { - "pk": "footer-img", - "model": "chunks.attachment", - "fields": { - "attachment": "chunks/attachment/footer.png" - } - } -] diff --git a/apps/dictionary/templates/dictionary/note_list.html b/apps/dictionary/templates/dictionary/note_list.html index 6eac93a89..097457eda 100755 --- a/apps/dictionary/templates/dictionary/note_list.html +++ b/apps/dictionary/templates/dictionary/note_list.html @@ -15,7 +15,7 @@

    {% trans "By first letter" %}: {% if letter %} - {% trans "all" %} + {% trans "all" %} {% else %} {% trans "all" %} {% endif %} @@ -25,7 +25,7 @@ {% if let == letter %} {{ let|upper }} {% else %} - {{ let|upper }} + {{ let|upper }} {% endif %} {% endfor %}

    @@ -43,7 +43,7 @@ {% endfor %} diff --git a/apps/infopages/templates/infopages/on_main.html b/apps/infopages/templates/infopages/on_main.html index dc0103c61..5d80dad57 100755 --- a/apps/infopages/templates/infopages/on_main.html +++ b/apps/infopages/templates/infopages/on_main.html @@ -1,5 +1,3 @@ - diff --git a/apps/lesmianator/templates/lesmianator/lesmianator.html b/apps/lesmianator/templates/lesmianator/lesmianator.html index 2f6a6e5c8..0148296e0 100644 --- a/apps/lesmianator/templates/lesmianator/lesmianator.html +++ b/apps/lesmianator/templates/lesmianator/lesmianator.html @@ -14,18 +14,18 @@

    Leśmianator tworzy wierszmiksy – dzięki niemu - napiszesz wiersz jednym kliknięciem. + napiszesz wiersz jednym kliknięciem. W nowej odsłonie nowe możliwości zabawy – teraz możesz zdecydować, co wrzucasz do miksera, a swoimi dziełami podzielić się z przyjaciółmi!

    Przygotowaliśmy kilka propozycji na start – możesz wybrać jedną z nich, albo ułożyć sobie własną, niepowtarzalną mieszankę.

    @@ -34,18 +34,18 @@

    Miksuj utwory

    -

    Możesz zmiksować całą lirykę w naszej bibliotece +

    Możesz zmiksować całą lirykę w naszej bibliotece albo tylko jeden konkretny utwór. Jak? Wejdź na - stronę utworu, + stronę utworu, kliknij w link „miksuj ten utwór” – i gotowe!

    Miksuj półki

    Załóż konto, poukładaj swoje ulubione książki na półkach i miksuj w dowolnych konfiguracjach. Nic prostszego, niż zmieszać - Leśmiana z - Tetmajerem, - a Żeromskiego z - Sienkiewiczem + Leśmiana z + Tetmajerem, + a Żeromskiego z + Sienkiewiczem – wystarczy wrzucić ich utwory na półkę i kliknąć w link „miksuj utwory z tej półki”.

    @@ -57,4 +57,4 @@
    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/apps/lesmianator/templates/lesmianator/poem.html b/apps/lesmianator/templates/lesmianator/poem.html index 99fe7ed5b..4a83f2d86 100644 --- a/apps/lesmianator/templates/lesmianator/poem.html +++ b/apps/lesmianator/templates/lesmianator/poem.html @@ -16,7 +16,7 @@ {# shelf or global mixing #} Twórzże się jeszcze raz! {% else %}{% if book %} - Twórzże się jeszcze raz! + Twórzże się jeszcze raz! {% endif %}{% endif %} Wolne Lektury przepuszczone przez mikser.
    @@ -39,8 +39,8 @@ {% if book %}

    Tekst powstał przez zmiksowanie utworu {{ book.title }}.
    - Zmiksuj go ponownie - albo zobacz, co jeszcze możesz zamieszać.

    + Zmiksuj go ponownie + albo zobacz, co jeszcze możesz zamieszać.

    {% else %}{% if books %}

    Tekst powstał przez zmiksowanie utworów:

      @@ -53,27 +53,19 @@ Zmiksuj półkę {{ shelf.name }} jeszcze raz, albo - zobacz, co jeszcze możesz zamieszać.

      + zobacz, co jeszcze możesz zamieszać.

      {% else %} -

      Zobacz, +

      Zobacz, jak łatwo możesz stworzyć własny wierszmiks.

      {% endif %} {% else %}

      Wiersz powstał przez zmiksowanie ze sobą całej liryki z Wolnych Lektur. Spróbuj jeszcze raz, albo - zobacz, co jeszcze możesz zamieszać.

      + zobacz, co jeszcze możesz zamieszać.

      {% endif %}{% endif %}
  • {{ piwik_tag|safe }} - - diff --git a/apps/lessons/__init__.py b/apps/lessons/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/apps/lessons/admin.py b/apps/lessons/admin.py deleted file mode 100644 index 1447453c2..000000000 --- a/apps/lessons/admin.py +++ /dev/null @@ -1,17 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -from django.contrib import admin -from django.utils.translation import ugettext_lazy as _ - -from lessons.models import Document - - -class DocumentAdmin(admin.ModelAdmin): - list_display = ('title', 'author', 'slideshare_id') - list_filter = ('author',) - search_fields = ('name', 'author',) - prepopulated_fields = {'slug': ('title',)} - -admin.site.register(Document, DocumentAdmin) diff --git a/apps/lessons/fixtures/lessons.json b/apps/lessons/fixtures/lessons.json deleted file mode 100644 index be64a8d25..000000000 --- a/apps/lessons/fixtures/lessons.json +++ /dev/null @@ -1,114 +0,0 @@ -[ - { - "pk": 2, - "model": "lessons.document", - "fields": { - "description": "", - "author": "WolneLektury.pl", - "created_at": "2011-01-19 10:24:11", - "title": "Scenariusz lekcji. Kot w literaturze.", - "slug": "kot-w-literaturze-scenariusz-lekcji", - "html": "\r\n\r\n\r\n\r\n\r\n\r\nMateria\u0142 dla nauczycieli\r\n\r\n\r\n\r\n

    Scenariusz lekcji multimedialnej.

    \r\n\r\n

    Lekcja przeznaczona jest dla ostatniej klasy gimnazjum lub I klasy liceum \r\n\r\n(w zale\u017cno\u015bci od wykorzystanych \u0107wicze\u0144 i wybranego materia\u0142u).

    \r\n\r\n\r\n\r\n
      \r\n\r\n\t
    1. Temat: Motyw kota w literaturze polskiej.
    2. \r\n\r\n\t
    3. Cele og\u00f3lne:
    4. \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      1. kszta\u0142cenie umiej\u0119tno\u015bci korzystania z Internetu, w szczeg\u00f3lno\u015bci z zasob\u00f3w biblioteki internetowej Wolne Lektury;
      2. \r\n\r\n\t\t\t
      3. kszta\u0142cenie umiej\u0119tno\u015bci analizy i interpretacji utworu literackiego;
      4. \r\n\r\n\t\t\t
      5. kszta\u0142cenie umiej\u0119tno\u015bci refleksji nad postawami cz\u0142owieka i warto\u015bciami, kt\u00f3rymi kieruje si\u0119 on w \u017cyciu.
      6. \r\n\r\n\t\t
      \r\n\r\n\t
    5. Cele kszta\u0142cenia:
      ucze\u0144:
    6. \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      1. interpretuje g\u0142osowo omawiane bajki;
      2. \r\n\r\n\t\t\t
      3. definiuje poj\u0119cia: bajki, motywu literackiego, alegorii;
      4. \r\n\r\n\t\t\t
      5. zna poj\u0119cia: pie\u015b\u0144, powie\u015b\u0107, fraszka oraz przyporz\u0105dkowuje je do okre\u015blonego rodzaju i gatunku literackiego;
      6. \r\n\r\n\t\t\t
      7. zna \u017cyciorys Ignacego Krasickiego;
      8. \r\n\r\n\t\t\t
      9. wyja\u015bnia, na czym polega alegoryczny charakter bajek;
      10. \r\n\r\n\t\t\t
      11. por\u00f3wnuje uj\u0119cie tych samych motyw\u00f3w w r\u00f3\u017cnych bajkach;
      12. \r\n\r\n\t\t\t
      13. analizuje tekst literacki i na podstawie tej analizy interpretuje go;
      14. \r\n\r\n\t\t\t
      15. wyci\u0105ga wnioski dotycz\u0105ce kondycji ludzkiej i warto\u015bci wyznawanych przez cz\u0142owieka na podstawie analizy omawianych bajek;
      16. \r\n\r\n\t\t\t
      17. doskonali umiej\u0119tno\u015b\u0107 pos\u0142ugiwania si\u0119 komputerem i wykorzystywania Internetu;
      18. \r\n\r\n\t\t\t
      19. korzysta z zasob\u00f3w biblioteki Wolne Lektury.pl i wykorzystuje jej funkcjonalno\u015bci.
      20. \r\n\r\n\t\t
      \r\n\r\n\t
    7. Metody i techniki kszta\u0142cenia:
    8. \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      1. wyszukiwanie informacji na wskazanych stronach w Internecie;
      2. \r\n\r\n\t\t\t
      3. interpretacja g\u0142osowa bajek, odgrywanie scenek;
      4. \r\n\r\n\t\t\t
      5. praca samodzielna lub praca w grupach z prezentacj\u0105 multimedialn\u0105 w Power Poincie;
      6. \r\n\r\n\t\t\t
      7. wype\u0142nianie karty pracy i prezentacja wynik\u00f3w;
      8. \r\n\r\n\t\t\t
      9. rozmowa;
      10. \r\n\r\n\t\t\t
      11. dyskusja.
      12. \t\t\r\n\r\n\t\t
      \r\n\r\n\t
    9. \u015arodki (materia\u0142y dydaktyczne):
    10. \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      1. komputer z dost\u0119pem do Internetu dla ka\u017cdego ucznia lub komputer z dost\u0119pem do Internetu do dyspozycji nauczyciela i projektor multimedialny albo tablica interaktywna;
      2. \r\n\r\n\t\t\t
      3. zasoby biblioteki internetowej Wolne Lektury i Wikipedii;
      4. \r\n\r\n\t\t\t
      5. bajki Ignacego Krasickiego: Mysz i kot, Chart i kotka, Do dzieci, Wst\u0119p do bajek;
      6. \r\n\r\n\t\t\t
      7. prezentacja multimedialna w Power Poincie;
      8. \r\n\r\n\t\t\t
      9. karta pracy ucznia.
      10. \r\n\r\n\t\t
      \r\n\r\n\t
    11. Czas: 90 min.
    12. \r\n\r\n\t
    13. Przebieg lekcji:
    14. \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      1. Cz\u0119\u015b\u0107 wst\u0119pna - wprowadzenie:
        rozmowa z uczniami na temat mo\u017cliwo\u015bci, jakie daje Internet i o zasadach bezpiecznego korzystania z Internetu;podanie tematu lekcji i przedstawienie portalu www.wolnelektury.pl;
      2. \r\n\r\n\t\t\t
      3. Cz\u0119\u015b\u0107 g\u0142\u00f3wna:
        praca z wykorzystaniem prezentacji multimedialnej; do ka\u017cdego slajdu nale\u017cy zapisa\u0107 polecenia nauczyciela, czynno\u015bci uczni\u00f3w, przewidzie\u0107 efekt ich czynno\u015bci i czas przeznaczony na poszczeg\u00f3lne etapy lekcji.
      4. \r\n\r\n\t\t\t
      5. Cz\u0119\u015b\u0107 ko\u0144cowa (podsumowanie):
        om\u00f3wienie wniosk\u00f3w z przeprowadzonej lekcji np. przy pomocy techniki zda\u0144 niedoko\u0144czonych:
        \r\n\r\n\t\t\t\tZ dzisiejszej lekcji dowiedzia\u0142em si\u0119, \u017ce \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026
        \r\n\r\n\t\t\t\tDzisiaj na lekcji zaskoczy\u0142o mnie, \u017ce \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026
        \r\n\r\n\t\t\t\tW czasie lekcji najbardziej podoba\u0142o mi si\u0119 \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026
      6. \r\n\r\n\t\t\t
      7. Zadanie pracy domowej (\u015bci\u015ble zwi\u0105zanej z omawianymi tre\u015bciami i kszta\u0142conymi umiej\u0119tno\u015bciami):
        \r\n\r\n\t\t\t\tNa podstawie utwor\u00f3w zamieszczonych w portalu www.wolnelektury.pl, w kt\u00f3rych wyst\u0119puje motyw kota, i innych znanych przez ciebie tekst\u00f3w kultury okre\u015bl funkcje, jakie mo\u017ce pe\u0142ni\u0107 ten motyw. Wyja\u015bnij, dlaczego.
      8. \r\n\r\n\t\t
      \r\n\r\n
    \r\n\r\n\r\n\r\n", - "file": "lessons/document/wolnelektury-kot-scenariusz.doc", - "slideshare_id": "" - } - }, - { - "pk": 1, - "model": "lessons.document", - "fields": { - "description": "", - "author": "Anna Brodawka", - "created_at": "2011-01-18 14:23:02", - "title": "Lekcja multimedialna - Motyw danse macabre wyst\u0119puj\u0105cy w tekstach kultury.", - "slug": "lekcja-multimedialna-danse-macabre", - "html": "\r\n\r\n\r\n\r\n\r\n\r\nMateria\u0142 dla nauczycieli\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n

    WolneLektury.pl

    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n\r\n

    Motyw danse macabre wyst\u0119puj\u0105cy w tekstach kultury

    \r\n\r\n

    Lekcja multimedialna z wykorzystaniem szkolnej biblioteki internetowej wolnelektury.pl

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n

    Definicja - motyw danse macabre wolnelektury.pl

    \r\n

    [on-line lub w wersji zapisanej przez nauczyciela]

    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Rozmowa Mistrza Polikarpa ze \u015amierci\u0105

    \r\n\r\n\t

    przypomnienie tre\u015bci wiersza

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Funkcje motywu w sztukach plastycznych w \u015bredniowieczu i baroku

    \r\n\r\n\t
      \r\n\r\n\t\t
    • wybrane ilustracje danse macabre
    • \r\n\r\n\t\t
    • \u017ar\u00f3d\u0142o: grafika Google.pl
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Motyw danse macabre w literaturze - na stronie wolnelektury.pl

    \r\n\r\n\t

    http://www.wolnelektury.pl/katalog/danse-macabre/

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    William Shakespeare \"Hamlet\" \u2013 fragment

    \r\n\r\n\t

    http://www.wolnelektury.pl/katalog/lektura/hamlet.html#m1203340447656

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Jan Kasprowicz - \u015awi\u0119ty Bo\u017ce \u015bwi\u0119ty mocny (Hymny)

    \r\n\r\n\t

    http://www.wolnelektury.pl/katalog/lektura/hymny-swiety-boze-swiety-mocny.html#m1212614978202

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    \u0106wiczenia:

    \r\n\r\n\t
      \r\n\r\n\t\t
    • Wska\u017c odpowiednie cytaty potwierdzaj\u0105ce wyst\u0119powanie motywu ta\u0144ca \u015bmierci
    • \r\n\r\n\t\t
    • Jak\u0105 funkcj\u0119 pe\u0142ni ten motyw w przywo\u0142anych tekstach?
    • \r\n\r\n\t\t
    • Jakie znaczenie mia\u0142 motyw danse macabre dla tw\u00f3rc\u00f3w r\u00f3\u017cnych epok?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Dzi\u0119kuj\u0119 za uwag\u0119

    \r\n\r\n\t

    Anna Brodawka
    doradca metodyczny m. st. Warszawy
    w zakresie j\u0119zyka polskiego

    \r\n\r\n
    \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n", - "file": "lessons/document/wolnelektury-lekcja.multimedialna-danse.macabre_.ppt", - "slideshare_id": "__sse2726896" - } - }, - { - "pk": 3, - "model": "lessons.document", - "fields": { - "description": "", - "author": "Anna Brodawka", - "created_at": "2011-01-19 10:52:03", - "title": "R\u00f3\u017cnorodno\u015b\u0107 tematyczna sonetu.", - "slug": "lekcja-multimedialna-sonet", - "html": " \r\n\r\n\r\n\r\n\r\n\r\nMateria\u0142 dla nauczycieli\r\n\r\n\r\n\r\n

    R\u00f3\u017cnorodno\u015b\u0107 tematyczna sonetu.

    \r\n\r\n

    Lekcja multimedialna z wykorzystaniem szkolnej biblioteki internetowej wolnelektury.pl

    \r\n\r\n\r\n\r\n

    Stworzenie przez nauczyciela p\u00f3\u0142ki \u201eSonet\u201d z nast\u0119puj\u0105cymi tekstami:

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

    W domu uczniowie czytaj\u0105 uwa\u017cnie wraz z przypisami, zgromadzone na p\u00f3\u0142ce i przes\u0142ane utwory.

    \r\n\r\n \r\n\r\n

    Definicja \u2013 sonetu, cechy gatunku, przedstawiciele [http://www.wolnelektury.pl/katalog/sonet/]

    \r\n\r\n\r\n\r\n

    Wskazanie epoki, w kt\u00f3rej powsta\u0142y analizowane wiersze [online: http://www.wolnelektury.pl/katalog/]

    \r\n\r\n\r\n\r\n

    \u0106wiczenia

    \r\n\r\n
      \r\n\r\n\t
    • Okre\u015blenie tematyki wierszy (uk\u0142ad chronologiczny)
    • \r\n\r\n\t
    • Co \u0142\u0105czy poszczeg\u00f3lne teksty \u2013 wykorzystanie katalogu \u2013 motywy - wolnelektury.pl (on-line)
    • \r\n\r\n\t
    • Podanie w\u0142a\u015bciwych cytat\u00f3w\t(on-line lub w wersji zapisanej przez nauczyciela)
    • \r\n\r\n\t
    • Wskazanie r\u00f3\u017cnic. Podanie w\u0142a\u015bciwych cytat\u00f3w.
    • \r\n\r\n\t
    • Pr\u00f3ba odpowiedzi na pytanie: dlaczego sonet?
    • \r\n\r\n\t
    • Jakie znaczenie ma ten gatunek literacki dla tw\u00f3rc\u00f3w r\u00f3\u017cnych epok?
    • \r\n\r\n
    \r\n\r\n\r\n\r\nPraca domowa:
    \r\n\r\nWykorzystuj\u0105c zasoby portalu WolneLektury.pl, wska\u017c motywy pojawiaj\u0105ce si\u0119 w sonetach Jana Andrzeja Morsztyna

    \r\n\r\n\r\n\r\n

    Dzi\u0119kuj\u0119 za uwag\u0119
    \r\n\r\nAnna Brodawka, doradca metodyczny m. st. Warszawy w zakresie j\u0119zyka polskiego

    \r\n\r\n\r\n\r\n", - "file": "lessons/document/wolnelektury-lekcja.multimedialna-sonet.ppt", - "slideshare_id": "" - } - }, - { - "pk": 6, - "model": "lessons.document", - "fields": { - "description": "", - "author": "WolneLektury.pl", - "created_at": "2011-01-19 12:37:29", - "title": "Przyk\u0142ady zada\u0144 do opracowania przez zespo\u0142y uczni\u00f3w", - "slug": "przyklady-zadan", - "html": "\r\n\r\n

    Przyk\u0142ady zada\u0144 do opracowania przez zespo\u0142y uczni\u00f3w \u2013 z wykorzystaniem zasob\u00f3w biblioteki internetowej Wolne Lektury

    \r\n\r\n
      \r\n\r\n\t
    1. Klasa jest podzielona na grupy. Ka\u017cda z grup otrzymuje 2 \u2013 3 treny Jana Kochanowskiego do analizy (w zale\u017cno\u015bci od ilo\u015bci klasy). Uczniowie korzystaj\u0105 z tren\u00f3w w opracowaniu prof. dr. hab. Piotra Wilczka [http://www.wolnelektury.pl/katalog/lektura/treny-wilczek/].\r\n\r\n\t

      Zadanie do wykonania:
      \r\n\r\n\tkorzystaj\u0105c z przypis\u00f3w do Tren\u00f3w Jana Kochanowskiego wypisz z tekst\u00f3w archaizmy, okre\u015bl ich znaczenie i typ (archaizm fonetyczny, leksykalny itp.). Co zmiany j\u0119zyka m\u00f3wi\u0105 o zmianach w kulturze?

      \r\n\r\n\t
    2. \r\n\r\n\r\n\r\n\t
    3. \r\n\r\n\tMatka w literaturze. Projekt wykorzystuj\u0105cy zasoby biblioteki internetowej Wolne lektury [http://www.wolnelektury.pl/katalog/matka/].\r\n\r\n\t
        \r\n\r\n\t\t
      • I etap: klasa analizuje w domu teksty, w kt\u00f3rych wyst\u0119puje motyw matki i okre\u015bla r\u00f3\u017cny charakter wykorzystania motywu np. matka opieku\u0144cza, matka cierpi\u0105ca, matka kochaj\u0105ca. Na lekcji prezentuj\u0105 wyniki swojej pracy.
      • \r\n\r\n\t\t
      • II etap: uczniowie podzieleni na grupy analizuj\u0105 szczeg\u00f3\u0142owo teksty, w kt\u00f3rych wyst\u0119puje motyw matki w zdefiniowanej wcze\u015bniej funkcji. Okre\u015blaj\u0105 spos\u00f3b wykorzystania motywu. Definiuj\u0105 gatunek literacki i rodzaj literacki utwor\u00f3w. Opisuj\u0105 zale\u017cno\u015b\u0107 mi\u0119dzy gatunkiem, epok\u0105 a funkcj\u0105 motywu. Wyszukuj\u0105 inne utwory, \r\n\r\n\tw kt\u00f3rych motyw matki pe\u0142ni podobn\u0105 funkcj\u0119.
      • \r\n\r\n\t\t
      • III etap: grupy przedstawiaj\u0105 w klasie wyniki swojej pracy (w postaci np. prezentacji multimedialnej, filmu, plakatu). Po prezentacji wszystkich grup uczniowie dokonuj\u0105 podsumowania, samodzielnie, proponuj\u0105c wnioski.
      • \r\n\r\n\t
      \r\n\r\n\t
    4. \r\n\r\n\r\n\r\n\t
    5. Podr\u00f3\u017c Adama Mickiewicza po Krymie. Projekt wykorzystuj\u0105cy zasoby biblioteki internetowej Wolne lektury [http://www.wolnelektury.pl/katalog/lektura/sonety-krymskie/].\r\n\r\n\t
        \r\n\r\n\t\t
      • I etap: uczniowie w grupach przygotowuj\u0105 na plakatach map\u0119 podr\u00f3\u017cy Adama Mickiewicza po Krymie na podstawie Sonet\u00f3w krymskich. Przedstawiaj\u0105 w klasie swoje mapy.
      • \r\n\r\n\t\t
      • II etap: grupy otrzymuj\u0105 do analizy 2 \u2013 3 sonety (w zale\u017cno\u015bci od ilo\u015bci klasy) \r\n\r\n\ti wyszukuj\u0105 informacje na temat miejsc opisanych w wierszach. Na map\u0119 naklejaj\u0105 zdj\u0119cia lub ilustracje przedstawiaj\u0105ce te miejsca. (wyszukane np. w portalu CBN Polona [http://www.polona.pl/dlibra/doccontent2?id=8689&from=editionindex&from=-3search&dirids=9&lang=pl]) oraz fragmenty utwor\u00f3w opisuj\u0105cych te miejsca. Wyci\u0105gaj\u0105 wnioski dotycz\u0105ce sposob\u00f3w i funkcji wykorzystania opis\u00f3w krajobrazu.
      • \r\n\r\n\t\t
      • III etap: uczniowie na lekcji prezentuj\u0105 wyniki swojej pracy i wyci\u0105gaj\u0105 wnioski na temat wykorzystania pejza\u017cu w utworach poetyckich.
      • \r\n\r\n\t
      \r\n\r\n\t
    6. \r\n\r\n\r\n\r\n\t
    7. \r\n\r\n\tWarszawa jako bohater literacki. Uczniowie wyszukuj\u0105 w bibliotece internetowej Wolne Lektury utwory, w kt\u00f3rych wyst\u0119puje motyw Warszawy [http://www.wolnelektury.pl/katalog/warszawa/?page=1]. Na podstawie fragment\u00f3w tekst\u00f3w przedstawiaj\u0105 spos\u00f3b ukazania Warszawy i okre\u015blaj\u0105 zale\u017cno\u015b\u0107 takiej funkcji motywu od epoki literackiej i kierunku literackiego. Wyszukuj\u0105 ilustracje przedstawiaj\u0105ce Warszaw\u0119 z epoki np. na portalu CBN Polona [http://www.polona.pl/dlibra/results?action=SearchAction&dirids=23] i por\u00f3wnuj\u0105 literacki i graficzny obraz miasta.\r\n\r\n\t
    8. \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n", - "file": "lessons/document/wolnelektury-przyklady.zadan.doc", - "slideshare_id": "" - } - }, - { - "pk": 8, - "model": "lessons.document", - "fields": { - "description": "", - "author": "Anna Brodawka", - "created_at": "2011-01-19 13:01:36", - "title": "Repetytorium maturalne", - "slug": "repetytorium-maturalne", - "html": " \r\n\r\n\r\n\r\n\r\n\r\nMateria\u0142 dla nauczycieli\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n

    WolneLektury.pl

    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    REPETYTORIUM MATURALNE

    \r\n\r\n\t

    Pisanie w\u0142asnego tekstu w zwi\u0105zku z tekstem literackim zamieszczonym w arkuszu maturalnym.

    \r\n\r\n\t

    Wykorzystanie zasob\u00f3w szkolnej biblioteki internetowej wolnelektury.pl \r\n\r\n\ti materia\u0142\u00f3w Centralnej Komisji Egzaminacyjnej.

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n \t

    Przeanalizuj temat zamieszczony\r\n\r\n\tw arkuszu maturalnym, wykorzystaj zasoby serwisu wolnelektury.pl\r\n\r\n\t i arkusze maturalne (oraz proponowane rozwi\u0105zania) znajduj\u0105ce si\u0119 na stronie internetowej www.cke.edu.pl odszukaj zamieszczony fragment w ca\u0142o\u015bci utworu.

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Jan Kochanowski Pie\u015b\u0144 XXII \r\n\r\n\ti Tren IX

    \r\n\r\n\t

    Na podstawie Pie\u015bni XXII i Trenu IX Jana Kochanowskiego, przedstaw r\u00f3\u017cnice w postawie poety wobec Rozumu i M\u0105dro\u015bci. Zwr\u00f3\u0107 uwag\u0119 \r\n\r\n\tna spos\u00f3b budowania poetyckiej refleksji \r\n\r\n\t[05. 2009]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Jan Kochanowski Czego chcesz od nas, Panie... i Juliusz S\u0142owacki Hymn

    \r\n\r\n\t

    Dwie postawy cz\u0142owieka wobec Boga \r\n\r\n\ti Jego dzie\u0142a. Por\u00f3wnaj pie\u015b\u0144 Jana Kochanowskiego Czego chcesz \r\n\r\n\tod nas, Panie... i Hymn Juliusza S\u0142owackiego. Zwr\u00f3\u0107 uwag\u0119 na nastr\u00f3j obydwu utwor\u00f3w. \r\n\r\n\t[01. 2009]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Adam Mickiewicz Dziady

    \r\n\r\n\t

    Jak symbolika ziarna z bajki opowiedzianej przez \u017begot\u0119 obja\u015bnia sens m\u0119cze\u0144stwa m\u0142odzie\u017cy polskiej?

    Analizuj\u0105c przytoczony fragment Dziad\u00f3w Adama Mickiewicza, zwr\u00f3\u0107 uwag\u0119 na sytuacj\u0119 student\u00f3w i ich postawy. [05. 2007]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Adam Mickiewicz Dziady i Franciszek Karpi\u0144ski Przypomnienia dawnej mi\u0142o\u015bci

    \r\n\r\n\t

    R\u00f3\u017cne koncepcje mi\u0142o\u015bci i r\u00f3\u017cne sposoby m\u00f3wienia o niej. Dokonaj analizy i interpretacji por\u00f3wnawczej Przypomnienia dawnej mi\u0142o\u015bci Franciszka Karpi\u0144skiego oraz danego fragmentu IV cz\u0119\u015bci Dziad\u00f3w Adama Mickiewicza. [12. 2005]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Juliusz S\u0142owacki Kordian, Zygmunt Krasi\u0144ski Nie-Boska komedia

    \r\n\r\n\t

    Analizuj\u0105c wypowiedzi bohater\u00f3w romantycznych, por\u00f3wnaj postaw\u0119 Kordiana i M\u0119\u017ca. W interpretacyjnych wnioskach wykorzystaj wiedz\u0119\r\n\r\n\to utworach, z kt\u00f3rych pochodz\u0105 fragmenty. \r\n\r\n\t[05. 2005]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Johann Wolfgang von Goethe Cierpienia m\u0142odego Wertera

    \r\n\r\n\t

    Na podstawie analizy podanego fragmentu i znajomo\u015bci ca\u0142ego utworu scharakteryzuj Wertera. Zwr\u00f3\u0107 uwag\u0119 na rol\u0119 mi\u0142o\u015bci i literatury w \u017cyciu bohatera oraz jego stosunek do natury [11.2006]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Boles\u0142aw Prus Lalka

    \r\n\r\n\t

    1.Sen jako spos\u00f3b prezentowania postaci literackiej. Analizuj\u0105c i interpretuj\u0105c podany fragment Lalki Boles\u0142awa Prusa, wyja\u015bnij, co marzenie senne m\u00f3wi o bohaterce powie\u015bci i jej stosunku do wa\u017cnych \r\n\r\n\tw jej \u017cyciu os\u00f3b \u2013 ojca i Wokulskiego. [05. 2008]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Boles\u0142aw Prus Lalka

    \r\n\r\n\t

    2. Analizuj\u0105c podany fragment Lalki Boles\u0142awa Prusa, scharakteryzuj wyst\u0119puj\u0105cych w nim bohater\u00f3w. Okre\u015bl ich stosunek do nauki i mi\u0142o\u015bci.\r\n\r\n\t[05.2008]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Boles\u0142aw Prus Lalka

    \r\n\r\n\t

    3.Jak Izabela \u0141\u0119cka postrzega\u0142a \u015bwiat i ludzi? Na podstawie podanego fragmentu scharakteryzuj bohaterk\u0119 Lalki Boles\u0142awa Prusa. Oce\u0144 jej postaw\u0119, uwzgl\u0119dniaj\u0105c najwa\u017cniejsze has\u0142a programu pozytywist\u00f3w.\r\n\r\n\t[05. 2006]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Boles\u0142aw Prus Lalka, \r\n\r\nJuliusz S\u0142owacki Kordian

    \r\n\r\n\t

    Romantyk i pozytywista (Juliusz S\u0142owacki i Boles\u0142aw Prus) w kontek\u015bcie idea\u0142\u00f3w swojej epoki oceniaj\u0105 cywilizacj\u0119 zachodnioeuropejsk\u0105. Por\u00f3wnaj obraz Zachodu zawarty w poni\u017cszym fragmencie Lalki z tym, kt\u00f3ry znasz \r\n\r\n\tz Kordiana. Zwr\u00f3\u0107 uwag\u0119 na znaczenie podr\u00f3\u017cy po Europie w \u017cyciu bohater\u00f3w. \r\n\r\n\t[11.2006]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Boles\u0142aw Prus Kamizelka, Lalka

    \r\n\r\n\t

    Na podstawie podanych tekst\u00f3w przedstaw, por\u00f3wnaj i oce\u0144 portrety ma\u0142\u017ce\u0144stw stworzone przez Boles\u0142awa Prusa. Wykorzystaj znajomo\u015b\u0107 Kamizelki i Lalki. \r\n\r\n\t[05. 2009]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Eliza Orzeszkowa Nad Niemnem

    \r\n\r\n\t

    Na podstawie fragment\u00f3w powie\u015bci Elizy Orzeszkowej Nad Niemnem napisz, jakie warto\u015bci Jan przekazuje Justynie, oprowadzaj\u0105c j\u0105 \r\n\r\n\tpo mogi\u0142ach. Zwr\u00f3\u0107 uwag\u0119 na uczucia prze\u017cywane przez t\u0119 par\u0119 bohater\u00f3w. [05. 2005]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Maria Konopnicka Mendel Gda\u0144ski

    \r\n\r\n\t

    Jaki obraz stosunku Polak\u00f3w\r\n\r\n\tdo \u017byd\u00f3w w Warszawie lat osiemdziesi\u0105tych XIX wieku przedstawia Maria Konopnicka \r\n\r\n\tw opowiadaniu Mendel Gda\u0144ski?

    \r\n\r\n\t

    Odpowiedz na pytanie, analizuj\u0105c za\u0142\u0105czone fragmenty tekstu. Zwr\u00f3\u0107 uwag\u0119 na postawy poszczeg\u00f3lnych bohater\u00f3w oraz na cele autorki (ideow\u0105 wymow\u0119 utworu).\r\n\r\n\t[05. 2007]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    W\u0142adys\u0142aw Stanis\u0142aw Reymont Ch\u0142opi

    \r\n\r\n\t

    1.Na podstawie fragmentu I tomu powie\u015bci W\u0142adys\u0142awa S. Reymonta Ch\u0142opi scharakteryzuj Bylic\u0119 i jego relacje z c\u00f3rkami. Co m\u00f3wi los Bylicy o losie starych ludzi w spo\u0142eczno\u015bci lipieckiej?\r\n\r\n\t[05. 2009]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n

    W\u0142adys\u0142aw Stanis\u0142aw Reymont Ch\u0142opi

    \r\n\r\n

    2.K\u0142\u00f3tnia u Boryn\u00f3w. Zanalizuj podany fragment Ch\u0142op\u00f3w W\u0142adys\u0142awa Reymonta i scharakteryzuj wyst\u0119puj\u0105ce w nim postacie. \r\n\r\n\tNa podstawie fragmentu i I tomu powie\u015bci okre\u015bl przyczyny k\u0142\u00f3tni \r\n\r\n\ti \u017ar\u00f3d\u0142a dramatyczno\u015bci sceny.\r\n\r\n\t[05. 2006]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    W\u0142adys\u0142aw Stanis\u0142aw Reymont Ch\u0142opi

    \r\n\r\n\t

    3.Koncepcja ludzkiego losu w Ch\u0142opach W\u0142adys\u0142awa Stanis\u0142awa Reymonta. Przedstaw temat, analizuj\u0105c wskazany fragment oraz wykorzystuj\u0105c znajomo\u015b\u0107 I tomu powie\u015bci.\r\n\r\n\t[12. 2005]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Stefan \u017beromski Ludzie bezdomni

    \r\n\r\n\t

    Fabryki, huty, kopalnie w oczach Stefana \u017beromskiego \u2013 nowoczesno\u015b\u0107 i post\u0119p czy piek\u0142o dla pracuj\u0105cych tam ludzi? Odpowiedz na pytanie, analizuj\u0105c za\u0142\u0105czone fragmenty Ludzi bezdomnych oraz wykorzystuj\u0105c znajomo\u015b\u0107 ca\u0142o\u015bci powie\u015bci. Zwr\u00f3\u0107 szczeg\u00f3ln\u0105 uwag\u0119 \r\n\r\n\tna opisy maszyn i pracuj\u0105cych robotnik\u00f3w. \r\n\r\n\t[01.2009]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n

    Stefan \u017beromski Przedwio\u015bnie

    \r\n\r\n

    1.Interpretuj\u0105c podane fragmenty Przedwio\u015bnia Stefana \u017beromskiego, zwr\u00f3\u0107 uwag\u0119 na przedstawione w nich sytuacje i zachowanie Cezarego. Napisz, jak wydarzenia historyczne, \r\n\r\n\to kt\u00f3rych mowa w podanych fragmentach, wp\u0142yn\u0119\u0142y na psychik\u0119 bohatera powie\u015bci i jego rozumienie \u015bwiata.\r\n\r\n\t[05. 2006]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Stefan \u017beromski Przedwio\u015bnie

    \r\n\r\n\t

    2.Na podstawie podanego fragmentu powie\u015bci Przedwio\u015bnie, przedstaw wizj\u0119 szklanych dom\u00f3w. Om\u00f3w jej znaczenie w powie\u015bci i por\u00f3wnaj \r\n\r\n\tz komunistyczn\u0105 koncepcj\u0105 naprawy pa\u0144stwa oraz programem Gajowca. [05. 2009]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n

    Stefan \u017beromski Przedwio\u015bnie

    \r\n\r\n\t

    3. Analizuj\u0105c dany fragment powie\u015bci, zwr\u00f3\u0107 uwag\u0119 na prezentowane \r\n\r\n\tprzez bohater\u00f3w racje. Wnioski \r\n\r\n\tz analizy wykorzystaj w pracy: Przedwio\u015bnie jako powie\u015b\u0107 \u2013 dyskusja nad kszta\u0142tem odrodzonej Polski. \r\n\r\n\t[01. 2006]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Stefan \u017beromski Przedwio\u015bnie

    \r\n\r\n\t

    4. Jaki obraz wsi polskiej z pocz\u0105tku XX wieku przedstawi\u0142 Stefan \u017beromski w Przedwio\u015bniu? Odpowiadaj\u0105c na to pytanie, zanalizuj i zinterpretuj podane fragmenty. Zwr\u00f3\u0107 uwag\u0119 na tradycj\u0119 literack\u0105, do kt\u00f3rej nawi\u0105zuje autor, oraz jego stosunek do mieszka\u0144c\u00f3w wsi. \r\n\r\n\t[05. 2005]

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Dzi\u0119kuj\u0119 za uwag\u0119

    \r\n\r\n\t

    Anna Brodawka

    \r\n\r\n\t

    doradca metodyczny m. st. Warszawy\r\n\r\n\tw zakresie j\u0119zyka polskiego

    \r\n\r\n
    \r\n\r\n\r\n
    \r\n\r\n\r\n\r\n", - "file": "lessons/document/wolnelektury-repetytorium.maturalne.ppt", - "slideshare_id": "" - } - }, - { - "pk": 4, - "model": "lessons.document", - "fields": { - "description": "", - "author": "Joanna Wenek", - "created_at": "2011-01-19 11:17:42", - "title": "\u201eBo to jest wieszcza najja\u015bniejsza chwa\u0142a\u2026\u201d Juliusz S\u0142owacki - cz\u0142owiek i poeta", - "slug": "slowacki-czesc-i", - "html": "\r\n\r\n\r\n\r\n\r\n\r\nMateria\u0142 dla nauczycieli\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n

    WolneLektury.pl

    \r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n\r\n
    \r\n\r\n\t

    \u201eBo to jest wieszcza najja\u015bniejsza chwa\u0142a\u2026\u201d Juliusz S\u0142owacki - cz\u0142owiek i poeta (wersja z linkami)

    \r\n\r\n
    \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Lekcja multimedialna \r\n\r\nprzygotowana w oparciu \r\n\r\no zasoby internetowe witryn:

    \r\n\r\n\t
      \r\n\r\n\t\t
    • Fundacja Nowoczesna Polska \u2013 Wolne Lektury
    • \r\n\r\n\t\t
    • CBN Polona
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Internetowe logo \r\n\r\n\tka\u017cdej z witryn

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Notka bibliograficzna o S\u0142owackim \r\n\r\n\tz portalu Wolne Lektury:

    \r\n\r\n\thttp://www.wolnelektury.pl/katalog/juliusz-slowacki/\r\n\r\n
    \r\n\r\n\r\n\r\n \r\n\r\n
    \r\n\r\n\t

    Najpopularniejsze stereotypy zwi\u0105zane ze S\u0142owackim:

    \r\n\r\n\t
      \r\n\r\n\t\t
    • Drugi po Mickiewiczu polski wieszcz narodowy.
    • \r\n\r\n\t\t
    • Duchowy i literacki rywal Mickiewicza.
    • \r\n\r\n\t\t
    • Patriota walcz\u0105cy pi\u00f3rem, duchowo zwi\u0105zany z ojczyzn\u0105.
    • \r\n\r\n\t\t
    • Emigrant, romantyczny pielgrzym, wygnaniec.
    • \r\n\r\n\t\t
    • Samotnik, introwertyk, nierozumiany przez innych.
    • \r\n\r\n\t\t
    • Autor trudniejszej, bardziej wyrafinowanej poezji i welop\u0142aszczyznowych tre\u015bciowo dramat\u00f3w.
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Ciekawostki biograficzne zwi\u0105zane ze S\u0142owackim:

    \r\n\r\n\t\t
  • Najwa\u017cniejsz\u0105 kobiet\u0105 jego \u017cycia by\u0142a matka.
  • \r\n\r\n\t\t
  • S\u0142owacki \u2013 jako romantyczny dandys - znany by\u0142 ze swych starannie dobranych stroj\u00f3w \u2013 bez swoich s\u0142ynnych ko\u0142nierzy nie by\u0142by sob\u0105\u2026
  • \r\n\r\n\t\t
  • Z upodobaniem pali\u0142 cygara - co by\u0142o do\u015b\u0107 zgubne dla jego suchotniczego organizmu.
  • \r\n\r\n\t\t
  • Kolekcjonowa\u0142 zegarki - z kt\u00f3rych \u017caden nie dotrwa\u0142 do naszych czas\u00f3w.
  • \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Ciekawostek ci\u0105g dalszy:

    \r\n\r\n\t\t
      \r\n\r\n\t\t\t
    • S\u0142owacki s\u0142yn\u0105\u0142 z niezwyk\u0142ej z\u0142o\u015bliwo\u015bci, co nie przysparza\u0142o mu przyjaci\u00f3\u0142 \u2013 ale nie znaczy to wcale, \u017ce ich nie mia\u0142.
    • \r\n\r\n\t\t\t
    • Zmar\u0142 niekoniecznie na gru\u017alic\u0119. W \u015bwietle najnowszych bada\u0144 \u2013 mog\u0142a to by\u0107 astma albo innego rodzaju niewydolno\u015b\u0107 oddechowa.
    • \r\n\r\n\t\t\t
    • Jego pogrzeb by\u0142 do\u015b\u0107 skromny - na cmentarz przysz\u0142o ok. 30 znajomych.
    • \r\n\r\n\t\t\t
    • Nad trumn\u0105 S\u0142owackiego nikt nie przem\u00f3wi\u0142.
    • \r\n\r\n\t\t\t
    • Mickiewicz nie przyszed\u0142 na ostatnie po\u017cegnanie poety-rywala.
    • \r\n\r\n\t\t\t
    • Nawet w trumnie S\u0142owacki le\u017ca\u0142 w bia\u0142ych skarpetkach.
    • \r\n\r\n\t\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Co wydaje si\u0119 najbardziej istotne w odniesieniu do S\u0142owackiego?

    \r\n\r\n\t
      \r\n\r\n\t\t
    • Rywalizacja z Mickiewiczem?
    • \r\n\r\n\t\t
    • Poczucie \u017cyciowego i literackiego niespe\u0142nienia?
    • \r\n\r\n\t\t
    • Ch\u0119\u0107 bycia wieszczem?
    • \r\n\r\n\t\t
    • Pragnienie wielko\u015bci, kt\u00f3rej nie zazna\u0142 za \u017cycia?
    • \r\n\r\n\t\t
    • Cz\u0119\u015bciowe odsuni\u0119cie go przez wsp\u00f3\u0142czesnych na margines?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Oto wyb\u00f3r pami\u0105tek ikonograficznych po S\u0142owackim udost\u0119pnionych \r\n\r\n\tprzez CBN Polon\u0119

    \r\n\r\n\t

    Przyjrzyjmy si\u0119 uwa\u017cnie \u2013 o czym one mog\u0105 \u015bwiadczy\u0107?

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Rzut oka na dom rodzinny poety w Krzemie\u0144cu

    \r\n\r\n\r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=15342&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t
    • Czy jest to dom okaza\u0142y? Reprezentacyjny?
    • \r\n\r\n\t\t
    • Wielkomiejski?
    • \r\n\r\n\t\t
    • Co zdradza jego wygl\u0105d na temat jego mieszka\u0144c\u00f3w?
    • \r\n\r\n\t\t
    • O czym mo\u017ce \u015bwiadczy\u0107 jego otoczenie?
    • \r\n\r\n\t
    \r\n\r\n
    \t\t\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Co mo\u017cna powiedzie\u0107 o samym S\u0142owackim na podstawie jego najs\u0142ynniejszego portretu?

    \r\n\r\n\t\r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=5537&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t
    • Czy dba\u0142 o powierzchowno\u015b\u0107?
    • \r\n\r\n\t\t
    • Czy by\u0142 sympatyczny?
    • \r\n\r\n\t\t
    • Czy by\u0142 \u017cyciowo silny?
    • \r\n\r\n\t\t
    • Jakie cechy charakteru zdradzaj\u0105 jego rysy?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    I inny \u2013 mniej typowy -\tportret S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=5736&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\t\r\n\r\n\t
      \r\n\r\n\t\t
    • Co w tym portrecie uzna\u0107 mo\u017cna za nietypowe?
    • \r\n\r\n\t\t
    • O czym mo\u017ce \u015bwiadczy\u0107 wyraz twarzy S\u0142owackiego na tym portrecie?
    • \r\n\r\n\t\t
    • Jakie inne cechy S\u0142owackiego zdradza ten portret?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    R\u0119kopisy S\u0142owackiego jako \u015bwiadectwo jego tw\u00f3rczo\u015bci:

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=8478&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\t
      \r\n\r\n\t\t
    • W jaki spos\u00f3b pisa\u0142 S\u0142owacki?
    • \r\n\r\n\t\t
    • O czym \u015bwiadcz\u0105 widoczne w r\u0119kopisie skre\u015blenia?
    • \r\n\r\n\t\t
    • Jak jednym s\u0142owem mo\u017cna okre\u015bli\u0107 ten r\u0119kopis?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    R\u0119kopisy S\u0142owackiego jako \u015bwiadectwo jego tw\u00f3rczo\u015bci:

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=8478&from=editionindex&from=-3search&dirids=8&lang=pl \r\n\r\n\t
      \r\n\r\n\t\t
    • Jak r\u0119kopis ten ma si\u0119 do tytu\u0142u pisanego tu wiersza \"Poeta i natchnienie\"?
    • \r\n\r\n\t\t
    • O czym mog\u0105 \u015bwiadczy\u0107 widoczne w r\u0119kopisie podzia\u0142y tekstu?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Wizerunki po\u015bmiertne S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=4032&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\t
      \r\n\r\n\t\t
    • Z czym kojarzy\u0107 si\u0119 mo\u017ce uk\u0142ad graficzny widoczny na rycinie?
    • \r\n\r\n\t\t
    • Czy jest to wizerunek realistyczny czy symboliczny?
    • \r\n\r\n\t\t
    • Co swoim rysunkiem chcia\u0142 osi\u0105gn\u0105\u0107 autor w odniesieniu do S\u0142owackiego?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Seria po\u015bmiertnych apoteoz S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=15343&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\t
      \r\n\r\n\t\t
    • Jak mo\u017cna rozumie\u0107 widoczn\u0105 tu poz\u0119 S\u0142owackiego?
    • \r\n\r\n\t\t
    • Jak mo\u017cna odczyta\u0107 posta\u0107 stoj\u0105c\u0105 za S\u0142owackim?
    • \r\n\r\n\t\t
    • Co mo\u017ce oznacza\u0107 gest tej postaci?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Seria po\u015bmiertnych apoteoz S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=17745&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t
    • W jaki spos\u00f3b przedstawiony jest tu S\u0142owacki?
    • \r\n\r\n\t\t
    • Jaki nastr\u00f3j towarzyszy tej apoteozie?
    • \r\n\r\n\t\t
    • Jak i dlaczego odczytywa\u0107 mo\u017cna koloryt obrazu?
    • \r\n\r\n\t
    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Seria po\u015bmiertnych apoteoz S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=17739&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\t
      \r\n\r\n\t\t
    • Jak pomy\u015blana jest kompozycja tej apoteozy?
    • \r\n\r\n\t\t
    • Co mo\u017cna powiedzie\u0107 o postaciach widocznych na obrazie?
    • \r\n\r\n\t\t
    • Jak przedstawiony jest tu sam S\u0142owacki?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Seria po\u015bmiertnych apoteoz S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=17737&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\r\n\r\n\t

    W jakiej sytuacji przedstawiony jest tu S\u0142owacki? Czemu to mo\u017ce s\u0142u\u017cy\u0107?

    \r\n\r\n\t

    Co mo\u017cna powiedzie\u0107 o postaciach i rekwizytach, kt\u00f3re mu towarzysz\u0105?

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Seria po\u015bmiertnych apoteoz S\u0142owackiego

    \r\n\r\n\thttp://www.polona.pl/dlibra/doccontent2?id=17742&from=editionindex&from=-3search&dirids=8&lang=pl\r\n\r\n\t
      \r\n\r\n\t\t
    • O czym mo\u017ce \u015bwiadczy\u0107 w\u0142a\u015bnie takie umieszczenie popiersia S\u0142owackiego?
    • \r\n\r\n\t\t
    • Z kogo sk\u0142ada si\u0119 t\u0142um dooko\u0142a?
    • \r\n\r\n\t\t
    • Jak odczyta\u0107 mo\u017cna rekwizyty widoczne na obrazie?
    • \r\n\r\n\t
    \r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Kr\u00f3tkie podsumowanie

    \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t
    • Co \u0142\u0105czy przedstawion\u0105 tutaj seri\u0119 po\u015bmiertnych wizerunk\u00f3w poety?
    • \r\n\r\n\t\t
    • Co mo\u017ce oznacza\u0107 tytu\u0142owe poj\u0119cie \u201eapoteoza\u201d?
    • \r\n\r\n\t\t
    • Jak\u0105 pozycj\u0119 wed\u0142ug tych apoteoz zaj\u0105\u0142 S\u0142owacki w opinii potomnych?
    • \r\n\r\n\t\t
    • Jak on sam by si\u0119 z tym czu\u0142 za \u017cycia?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    \u201eBo to jest wieszcza najja\u015bniejsza chwa\u0142a\u2026\u201d
    \r\n\r\n \t\t\t\t- czyli
    \r\n\r\n\twidoczna obecno\u015b\u0107 S\u0142owackiego\r\n\r\n\tpo\u015br\u00f3d wsp\u00f3\u0142czesnych rodak\u00f3w.

    \r\n\r\n\t

    Kilka spojrze\u0144 na dzisiejszy warszawski pomnik S\u0142owackiego

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Juliusz S\u0142owacki pyta o godzin\u0119\u2026 na Placu Bankowym

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \t\t\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Dlaczego pomnik S\u0142owackiego stoi akurat w tym miejscu?

    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    W jaki spos\u00f3b na pomniku tym jest przedstawiony S\u0142owacki?

    \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n\r\n
    \r\n\r\n\t

    Kilka refleksji na podsumowanie:

    \r\n\r\n\t
      \r\n\r\n\t\t
    • Czy przedstawione tu apoteozy S\u0142owackiego \u0142ami\u0105 czy podtrzymuj\u0105 zwi\u0105zane z nim stereotypy?
    • \r\n\r\n\t\t
    • A r\u0119kopisy?
    • \r\n\r\n\t\t
    • Czy wsp\u00f3\u0142czesny pomnikowy wizerunek S\u0142owackiego musia\u0142 zosta\u0107 pomy\u015blany w\u0142a\u015bnie w taki a nie inny spos\u00f3b?
    • \r\n\r\n\t\t
    • Z kt\u00f3rego ze swoich wizerunk\u00f3w sam S\u0142owacki m\u00f3g\u0142by by\u0107 najbardziej zadowolony? Dlaczego?
    • \r\n\r\n\t
    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    W wierszu \u201eTestament m\u00f3j\u201d poeta napisa\u0142 o sobie:

    \r\n\r\n\r\n\r\n\t

    \u201eImi\u0119 moje tak przesz\u0142o, jako b\u0142yskawica,\r\n\r\n\tI b\u0119dzie, jak d\u017awi\u0119k pusty, trwa\u0107 przez pokolenia\u2026\u201d

    \r\n\r\n\r\n\r\n\t

    Mo\u017cna si\u0119 zastanowi\u0107 w czym i na ile S\u0142owacki mia\u0142 racj\u0119 w tej autorefleksji.

    \r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    A za uwag\u0119 dzi\u0119kuj\u0105 wszystkim w tym miejscu\u2026

    \r\n\r\n
    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\t

    Juliusz S\u0142owacki \u2013 spiritus movens ca\u0142o\u015bci\u2026

    \r\n\r\n\r\n\r\n\r\n\r\n
    \r\n\r\n\r\n\r\n
    \r\n\r\n\t

    \t\u2026oraz autorka prezentacji \u2013\u2013 \r\n\r\n\tJoanna Wenek \u2013\u2013\r\n\r\n\tw prawie identycznej pozie \r\n\r\n\tjak kiedy\u015b S\u0142owacki.

    \r\n\r\n\r\n\r\n\r\n
    \r\n\r\n
    \r\n\r\n", - "file": "lessons/document/wolnelektury-slowacki01.ppt", - "slideshare_id": "" - } - }, - { - "pk": 7, - "model": "lessons.document", - "fields": { - "description": "", - "author": "WolneLektury.pl", - "created_at": "2011-01-19 12:51:14", - "title": "Tematy wypracowa\u0144", - "slug": "tematy-wypracowan", - "html": "\r\n\r\n\r\n\r\n\t\r\n\r\n\t\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n

    Przyk\u0142ady temat\u00f3w wypracowa\u0144 wykorzystuj\u0105cych zasoby biblioteki internetowej Wolne Lektury.

    \r\n\r\n\r\n\r\n
      \r\n\r\n\t
    1. Por\u00f3wnaj obraz \u015bmierci bohatera opisanej przez Adama Mickiewicza w Reducie Ordona [http://www.wolnelektury.pl/katalog/lektura/reduta-ordona.html] i w \u015amierci pu\u0142kownika [http://www.wolnelektury.pl/katalog/lektura/smierc-pulkownika.html]
    2. \r\n\r\n\t
    3. Por\u00f3wnaj obraz powstania listopadowego w Reducie Ordona Adama Mickiewicza [http://www.wolnelektury.pl/katalog/lektura/reduta-ordona.html i w wierszu Sowi\u0144ski w okopach Woli Juliusza S\u0142owackiego [http://www.wolnelektury.pl/katalog/lektura/sowinski-w-okopach-woli.html]
    4. \r\n\r\n\t
    5. Analizuj\u0105c fragment Ludzi bezdomnych Stefana \u017beromskiego od [http://www.wolnelektury.pl/katalog/lektura/ludzie-bezdomni-tom-pierwszy.html#f178] do [http://www.wolnelektury.pl/katalog/lektura/ludzie-bezdomni-tom-pierwszy.html#f184] oraz fragment Lalki Boles\u0142awa Prusa od [http://www.wolnelektury.pl/katalog/lektura/lalka-tom-pierwszy.html#f1021 do [http://www.wolnelektury.pl/katalog/lektura/lalka-tom-pierwszy.html#f1030] om\u00f3w funkcj\u0119 techniki naturalistycznej zastosowanej w opisie miasta.
    6. \r\n\r\n\t
    7. Wyszukaj w bibliotece internetowej Wolne Lektury utwory, w kt\u00f3rych mo\u017cna odnale\u017a\u0107 motyw \u017cywio\u0142\u00f3w. Na podstawie tekst\u00f3w, kt\u00f3rym przypisano ten motyw, okre\u015bl funkcje, jakie pe\u0142ni on w literaturze. Om\u00f3w je.
    8. \r\n\r\n\t
    9. Przeprowad\u017a analiz\u0119 i interpretacj\u0119 wiersza Cypriana Kamila Norwida Larwa zamieszczonego w bibliotece internetowej Wolne Lektury [http://www.wolnelektury.pl/katalog/lektura/larwa.html, odwo\u0142uj\u0105c si\u0119 do wszystkich motyw\u00f3w przypisanych do utworu.
    10. \r\n\r\n\t
    11. Symbolika b\u0142ota. Opracuj temat, odwo\u0142uj\u0105c si\u0119 do biblioteki internetowej Wolne Lektury [http://www.wolnelektury.pl/katalog/bloto/].
    12. \r\n\r\n\t
    13. \u017bycie jako w\u0119dr\u00f3wka. Na podstawie utwor\u00f3w zamieszczonych w bibliotece internetowej Wolne Lektury [http://www.wolnelektury.pl/katalog/zycie-jako-wedrowka/] i znanych ci innych utwor\u00f3w om\u00f3w funkcje tego motywu i jego znaczenie w kulturze.
    14. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n", - "file": "lessons/document/wolne.lektury-tematy.wypracowan.doc", - "slideshare_id": "" - } - }, - { - "pk": 5, - "model": "lessons.document", - "fields": { - "description": "", - "author": "Joanna Wenek", - "created_at": "2011-01-19 12:22:21", - "title": "U\u015bmiech i \u0142zy wieszcza czyli S\u0142owacki p\u00f3\u0142 \u017cartem, p\u00f3\u0142 serio.", - "slug": "usmiech-i-lzy-wieszcza", - "html": " \r\n\r\n\r\n\r\n\r\n\r\nMateria\u0142 dla nauczycieli\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n

      WolneLektury.pl

      \r\n\r\n
      \r\n\r\n
      \r\n\r\n
      \r\n\r\n\t
      \r\n\r\n\t\t

      U\u015bmiech\ti \u0142zy wieszcza

      \r\n\r\n\t\t

      czyli S\u0142owacki p\u00f3\u0142 \u017cartem, p\u00f3\u0142 serio

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Najpierw serio

      \r\n\r\n\t\t

      Niejednokrotnie S\u0142owacki z jego poezj\u0105 postrzegany jest poprzez pryzmat melancholii, refleksji i poczucia smutku.

      \r\n\r\n\t\t

      Uczucia te towarzyszy\u0142y mu na r\u00f3\u017cnych etapach \u017cycia i przybiera\u0142y rozmait\u0105 form\u0119.

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Serio, serio, wci\u0105\u017c serio!

      \r\n\r\n\t\t

      Wydawa\u0107 by si\u0119 mog\u0142o, \u017ce o smutku, p\u0142aczu i rozpaczy napisa\u0107 mo\u017cna ca\u0142e poematy.\r\n\r\n\t\tAle przecie\u017c S\u0142owacki zna\u0142 wag\u0119 s\u0142owa!\r\n\r\n\t\tOto dow\u00f3d na to, \u017ce potrafi\u0142 by\u0107 zwi\u0119z\u0142y \u2013 do b\u00f3lu. I to dos\u0142ownie.

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Rzut oka \r\n\r\n\t\tna rozpacz poety

      \r\n\r\n\t\t

      Przyjrzyjmy si\u0119 jednemu z wierszy \u2013 z pomoc\u0105 Wolnych Lektur. \r\n\r\n\t\tNajpierw w ca\u0142o\u015bci.\r\n\r\n\t\tTo jest ten wiersz.

      \r\n\r\n\t\thttp://www.wolnelektury.pl/katalog/lektura/bo-to-jest-wieszcza-najjasniejsza-chwala.html\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Tak wygl\u0105da\u0142 ten wiersz w pierwszym pe\u0142nym wydaniu dzie\u0142 S\u0142owackiego

      \r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      A teraz ju\u017c \r\n\r\n\t\ti serio, \r\n\r\n\t\ti uwa\u017cnie

      \r\n\r\n\t\t

      Przyjrzyjmy si\u0119 poszczeg\u00f3lnym wersom tekstu\r\n\r\n\t\tOto pr\u00f3ba odczytania dziwnego pocz\u0105tku wiersza\u2026

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      \u201eBo to jest wieszcza najja\u015bniejsza chwa\u0142a, \u017ce w pomnik mieni \r\n\r\n\t\tnawet po\u017cegnanie\u2026\u201d

      \r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      A jak mo\u017cna rozumie\u0107 \r\n\r\n\t\tte s\u0142owa?

      \r\n\r\n\t\t

      \u201eTa kartka wieki b\u0119dzie tu p\u0142aka\u0142a. \r\n\r\n\t\t I \u0142ez jej stanie.\u201d

      \r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      \u201eKiedy w dalek\u0105 \r\n\r\n\t\todje\u017cd\u017casz krain\u0119,\r\n\r\n\t\tJa ko\u0144cz\u0119 moje \r\n\r\n\t\tna ziemi wygnanie\u201d

      \r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      A jak mo\u017cna odczyta\u0107 zako\u0144czenie?

      \r\n\r\n\t\t

      \u201eAle samotny \u2014 ale \u0142zami p\u0142yn\u0119 \u2014\r\n\r\n\t\t\tI to pisanie\u2026\u201d

      \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Oto zbi\u00f3r motyw\u00f3w \r\n\r\n\t\tz Wolnych Lektur \r\n\r\n\t\tprzypisanych \r\n\r\n\t\tdo tego wiersza

      \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      • \u0141zy
      • \r\n\r\n\t\t\t
      • Pami\u0119\u0107
      • \r\n\r\n\t\t\t
      • Poeta
      • \r\n\r\n\t\t\t
      • S\u0142owo
      • \r\n\r\n\t\t\t
      • Podr\u00f3\u017c
      • \r\n\r\n\t\t\t
      • Samotnik
      • \r\n\r\n\t\t\t
      • Samotno\u015b\u0107
      • \r\n\r\n\t\t\t
      • Wygnanie
      • \r\n\r\n\t\t
      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Motywy te pozwalaj\u0105 \r\n\r\n\t\tod razu co\u015b zauwa\u017cy\u0107!

      \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      • A zatem: jaki nastr\u00f3j towarzyszy tu S\u0142owackiemu?\r\n\r\n\t\t\tDlaczego wci\u0105\u017c p\u0142acze? Sk\u0105d w nim tyle \u0142ez? \r\n\r\n\t\t\tPrzecie\u017c zapisana kartka przetrwa \u2013 \r\n\r\n\t\t\ta wi\u0119c \u201enon omnis moriar\u201d!
      • \r\n\r\n\t\t\t
      • A jednak pow\u00f3d do p\u0142aczu mo\u017ce by\u0107 ca\u0142kiem inny \u2013 tylko jaki?
      • \r\n\r\n\t\t
      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Same zagadki!

      \r\n\r\n\t\t

      Na pewno warto poszuka\u0107 odpowiedzi na te pytania.

      \r\n\r\n\t\t

      Ale mo\u017ce te\u017c warto zapyta\u0107 o co\u015b innego\u2026

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Pytanie jak najbardziej serio!

      \r\n\r\n\t\t

      Czy S\u0142owacki w og\u00f3le si\u0119 \u015bmia\u0142, albo chocia\u017cby u\u015bmiecha\u0142???

      \r\n\r\n\t\t

      Czy mia\u0142 poczucie humoru\u201d???

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Przyjrzyjmy si\u0119 temu \r\n\r\n\t\tprzez pryzmat \r\n\r\n\t\tinnego wiersza.

      \r\n\r\n\t\t

      Najpierw w ca\u0142o\u015bci z pomoc\u0105 Wolnych Lektur.\r\n\r\n\t\tTo ten tekst:

      \r\n\r\n\t\thttp://www.wolnelektury.pl/katalog/lektura/bo-mie-matka-moja-mila.html\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      A teraz popatrzmy \u2013wers po wersie\u2026(lub nawet \u2013 s\u0142owo po s\u0142owie)

      \r\n\r\n\t\t

      Bo\r\n\r\n\t\tmi\u0119\u2026

      \r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Ci\u0105g dalszy tekstu

      \r\n\r\n\t\t

      Matka \r\n\r\n\t\tmoja \r\n\r\n\t\tmi\u0142a\u2026

      \r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Ci\u0105g dalszy wiersza

      \r\n\r\n\t\t

      Na\r\n\r\n\t\ts\u0142owika\r\n\r\n\t\turodzi\u0142a.

      \r\n\r\n\r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      A ja wzi\u0105wszy \r\n\r\n\t\ttaaaki g\u0142os\u2026

      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Hm? Co teraz?

      \r\n\r\n\t\t

      Ze s\u0142owika\r\n\r\n\t\tjestem \r\n\r\n\t\tkos\u2026

      \r\n\r\n\t\t\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      A jak sam S\u0142owacki\r\n\r\n\t\t os\u0105dza swoj\u0105 tw\u00f3rczo\u015b\u0107???

      \r\n\r\n\t\t \t

      A to wszystko \r\n\r\n\t\t\ts\u0105 nonsensa,\r\n\r\n\t\t\tTe moje wierszyki nowe,

      \r\n\r\n\t\t\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Ko\u0144c\u00f3weczka

      \r\n\r\n\t\t

      Gdzie si\u0119 j\u0119zyk m\u00f3j wa\u0142\u0119sa\r\n\r\n\t\tI bawi z\u0119by trzonowe\u2026

      \r\n\r\n\t\t\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Ha!!! Oto nowe spojrzenie \r\n\r\n\t\tna j\u0119zyk S\u0142owackiego.

      \r\n\r\n\t\t

      Tym razem jak najbardziej dos\u0142owne.

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Co ciekawego wynika\r\n\r\n\t\tZ igraszek wok\u00f3\u0142 j\u0119zyka?

      \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      • A wi\u0119c \u2013 co ciekawego mo\u017cna wyczyta\u0107 w tym kr\u00f3tkim wierszyku?
      • \r\n\r\n\t\t\t
      • Czemu s\u0142u\u017c\u0105 pojawiaj\u0105ce si\u0119 w tek\u015bcie motywy ptak\u00f3w? Dlaczego akurat s\u0142owik i kos?
      • \r\n\r\n\t\t\t
      • Jak pokazane jest pisanie wierszy?
      • \r\n\r\n\t\t\t
      • Jaki obraz siebie buduje tu sam S\u0142owacki?
      • \r\n\r\n\t\t
      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Jak zatem wygl\u0105da prawda \r\n\r\n\t\to S\u0142owackim?\r\n\r\n\t\t

      \r\n\r\n\t\t

      Bo przecie\u017c:

      \r\n\r\n\t\t

      S\u0142owacki p\u0142acz\u0105cy a zarazem marz\u0105cy o s\u0142awie i nie\u015bmiertelno\u015bci

      \r\n\r\n\t\t

      oraz

      \r\n\r\n\t\t

      S\u0142owacki \u015bmiej\u0105cy si\u0119, bawi\u0105cy si\u0119 pisaniem wierszy (na granicy absurdu!)

      \r\n\r\n\t\t

      TO CI\u0104GLE JEDEN I TEN SAM CZ\u0141OWIEK!

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Na koniec - spr\u00f3bujmy odpowiedzie\u0107 sobie \r\n\r\n\t\tna kilka pyta\u0144

      \r\n\r\n\t\t
        \r\n\r\n\t\t\t
      • Co by\u0142o dla Ciebie najbardziej zaskakuj\u0105ce w kt\u00f3rym\u015b z tych kr\u00f3tkich wierszy?
      • \r\n\r\n\t\t\t
      • Kt\u00f3ry z wizerunk\u00f3w S\u0142owackiego jest Ci bli\u017cszy i dlaczego?
      • \r\n\r\n\t\t\t
      • :) - ten?
      • \r\n\r\n\t\t\t
      • :( - czy ten?
      • \r\n\r\n\t\t
      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Wreszcie kr\u00f3tka praca domowa\r\n\r\n\t\tinspirowana jak najbardziej S\u0142owackim

      \r\n\r\n\t\t

      A Ty? Z jakim ptakiem si\u0119 uto\u017csamiasz i dlaczego?

      \r\n\r\n\t\t

      Poczuj to!

      \r\n\r\n\t\t

      I opisz w postaci kr\u00f3tkiego wiersza lub ma\u0142ej prozy.

      \r\n\r\n\t\t\r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      \u017bycz\u0119 wszystkim wysokich lot\u00f3w \r\n\r\n\t\tw \u017cyciu i w literaturze.

      \r\n\r\n\t\t\r\n\r\n\t\t

      Ale bez papuziego na\u015bladownictwa!

      \r\n\r\n\t
      \r\n\r\n\r\n\r\n\t
      \r\n\r\n\t\t

      Dzi\u0119kuj\u0119 za uwag\u0119 \r\n\r\n\t\ti licz\u0119 na Wasz\u0105 oryginalno\u015b\u0107!

      \r\n\r\n\t\t

      Autorka prezentacji\r\n\r\n\t\tJoanna Wenek

      \r\n\r\n\t
      \r\n\r\n
      \r\n\r\n", - "file": "lessons/document/wolnelektury-usmiech.i.lzy.wieszcza.ppt", - "slideshare_id": "" - } - } -] \ No newline at end of file diff --git a/apps/lessons/locale/de/LC_MESSAGES/django.mo b/apps/lessons/locale/de/LC_MESSAGES/django.mo deleted file mode 100644 index 8148743e6..000000000 Binary files a/apps/lessons/locale/de/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/de/LC_MESSAGES/django.po b/apps/lessons/locale/de/LC_MESSAGES/django.po deleted file mode 100644 index d0ccc7815..000000000 --- a/apps/lessons/locale/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-03-09 11:33+0100\n" -"Last-Translator: xxx \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "Titel" - -#: models.py:13 -msgid "slug" -msgstr "Slug" - -#: models.py:14 -msgid "file" -msgstr "Datei" - -#: models.py:15 -msgid "author" -msgstr "Autor" - -#: models.py:16 -msgid "slideshare ID" -msgstr "Dia-ID" - -#: models.py:17 -msgid "description" -msgstr "Beschreibung" - -#: models.py:19 -msgid "HTML" -msgstr "HTML" - -#: models.py:30 -msgid "document" -msgstr "Dokument" - -#: models.py:30 -msgid "documents" -msgstr "Dokumente" diff --git a/apps/lessons/locale/en/LC_MESSAGES/django.mo b/apps/lessons/locale/en/LC_MESSAGES/django.mo deleted file mode 100644 index 709aa8092..000000000 Binary files a/apps/lessons/locale/en/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/en/LC_MESSAGES/django.po b/apps/lessons/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 68a63ffff..000000000 --- a/apps/lessons/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-03-04 20:05+0100\n" -"Last-Translator: xxx \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "title" - -#: models.py:13 -msgid "slug" -msgstr "slug" - -#: models.py:14 -msgid "file" -msgstr "file" - -#: models.py:15 -msgid "author" -msgstr "author" - -#: models.py:16 -msgid "slideshare ID" -msgstr "slideshare ID" - -#: models.py:17 -msgid "description" -msgstr "description" - -#: models.py:19 -msgid "HTML" -msgstr "HTML" - -#: models.py:30 -msgid "document" -msgstr "document" - -#: models.py:30 -msgid "documents" -msgstr "documents" diff --git a/apps/lessons/locale/es/LC_MESSAGES/django.mo b/apps/lessons/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index 6f9ae615b..000000000 Binary files a/apps/lessons/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/es/LC_MESSAGES/django.po b/apps/lessons/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index b65b59207..000000000 --- a/apps/lessons/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-02-28 12:01+0100\n" -"Last-Translator: Aneta \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "título" - -#: models.py:13 -msgid "slug" -msgstr "slug" - -#: models.py:14 -msgid "file" -msgstr "archivo" - -#: models.py:15 -msgid "author" -msgstr "autor" - -#: models.py:16 -msgid "slideshare ID" -msgstr "slideshare ID" - -#: models.py:17 -msgid "description" -msgstr "descripción" - -#: models.py:19 -msgid "HTML" -msgstr "" - -#: models.py:30 -msgid "document" -msgstr "documento" - -#: models.py:30 -msgid "documents" -msgstr "documentos" diff --git a/apps/lessons/locale/fr/LC_MESSAGES/django.mo b/apps/lessons/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index 2325e2378..000000000 Binary files a/apps/lessons/locale/fr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/fr/LC_MESSAGES/django.po b/apps/lessons/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index 5f13a8bf7..000000000 --- a/apps/lessons/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-02-22 20:54+0100\n" -"Last-Translator: Ela Janota \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "titre" - -#: models.py:13 -msgid "slug" -msgstr "ébauche" - -#: models.py:14 -msgid "file" -msgstr "fichier" - -#: models.py:15 -msgid "author" -msgstr "auteur" - -#: models.py:16 -msgid "slideshare ID" -msgstr "slideshare ID" - -#: models.py:17 -msgid "description" -msgstr "description" - -#: models.py:19 -msgid "HTML" -msgstr "HTML" - -#: models.py:30 -msgid "document" -msgstr "document" - -#: models.py:30 -msgid "documents" -msgstr "documents" diff --git a/apps/lessons/locale/it/LC_MESSAGES/django.mo b/apps/lessons/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index b66690a3d..000000000 Binary files a/apps/lessons/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/it/LC_MESSAGES/django.po b/apps/lessons/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index 9093d577f..000000000 --- a/apps/lessons/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-05 13:07+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: models.py:12 -msgid "title" -msgstr "" - -#: models.py:13 -msgid "slug" -msgstr "" - -#: models.py:14 -msgid "file" -msgstr "" - -#: models.py:15 -msgid "author" -msgstr "" - -#: models.py:16 -msgid "slideshare ID" -msgstr "" - -#: models.py:17 -msgid "description" -msgstr "" - -#: models.py:19 -msgid "HTML" -msgstr "" - -#: models.py:30 -msgid "document" -msgstr "" - -#: models.py:30 -msgid "documents" -msgstr "" diff --git a/apps/lessons/locale/jp/LC_MESSAGES/django.mo b/apps/lessons/locale/jp/LC_MESSAGES/django.mo deleted file mode 100644 index ad2faa7ae..000000000 Binary files a/apps/lessons/locale/jp/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/jp/LC_MESSAGES/django.po b/apps/lessons/locale/jp/LC_MESSAGES/django.po deleted file mode 100644 index 9968580b3..000000000 --- a/apps/lessons/locale/jp/LC_MESSAGES/django.po +++ /dev/null @@ -1,54 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-05 13:07+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "" - -#: models.py:13 -msgid "slug" -msgstr "" - -#: models.py:14 -msgid "file" -msgstr "" - -#: models.py:15 -msgid "author" -msgstr "" - -#: models.py:16 -msgid "slideshare ID" -msgstr "" - -#: models.py:17 -msgid "description" -msgstr "" - -#: models.py:19 -msgid "HTML" -msgstr "" - -#: models.py:30 -msgid "document" -msgstr "" - -#: models.py:30 -msgid "documents" -msgstr "" diff --git a/apps/lessons/locale/lt/LC_MESSAGES/django.mo b/apps/lessons/locale/lt/LC_MESSAGES/django.mo deleted file mode 100644 index d41aac605..000000000 Binary files a/apps/lessons/locale/lt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/lt/LC_MESSAGES/django.po b/apps/lessons/locale/lt/LC_MESSAGES/django.po deleted file mode 100644 index 2c6fc9bce..000000000 --- a/apps/lessons/locale/lt/LC_MESSAGES/django.po +++ /dev/null @@ -1,54 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-03-01 16:13+0100\n" -"Last-Translator: Aneta\n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Translated-Using: django-rosetta 0.5.3\n" - -#: models.py:12 -msgid "title" -msgstr "pavadinimas" - -#: models.py:13 -msgid "slug" -msgstr "slug" - -#: models.py:14 -msgid "file" -msgstr "failas" - -#: models.py:15 -msgid "author" -msgstr "autorius" - -#: models.py:16 -msgid "slideshare ID" -msgstr "slideshare ID" - -#: models.py:17 -msgid "description" -msgstr "aprašymas" - -#: models.py:19 -msgid "HTML" -msgstr "HTML" - -#: models.py:30 -msgid "document" -msgstr "dokumentas" - -#: models.py:30 -msgid "documents" -msgstr "dokumentai" diff --git a/apps/lessons/locale/pl/LC_MESSAGES/django.mo b/apps/lessons/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 271c84afa..000000000 Binary files a/apps/lessons/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/pl/LC_MESSAGES/django.po b/apps/lessons/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index 894e8309c..000000000 --- a/apps/lessons/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,54 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2010-05-19 16:19\n" -"Last-Translator: \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Translated-Using: django-rosetta 0.5.3\n" - -#: models.py:12 -msgid "title" -msgstr "tytuł" - -#: models.py:13 -msgid "slug" -msgstr "" - -#: models.py:14 -msgid "file" -msgstr "plik" - -#: models.py:15 -msgid "author" -msgstr "autor" - -#: models.py:16 -msgid "slideshare ID" -msgstr "" - -#: models.py:17 -msgid "description" -msgstr "opis" - -#: models.py:19 -msgid "HTML" -msgstr "" - -#: models.py:30 -msgid "document" -msgstr "dokument" - -#: models.py:30 -msgid "documents" -msgstr "dokumenty" diff --git a/apps/lessons/locale/ru/LC_MESSAGES/django.mo b/apps/lessons/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index 9ff6ebefa..000000000 Binary files a/apps/lessons/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/ru/LC_MESSAGES/django.po b/apps/lessons/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index 8b124cb2e..000000000 --- a/apps/lessons/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-03-04 22:11+0100\n" -"Last-Translator: xxx \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "заглавие" - -#: models.py:13 -msgid "slug" -msgstr "slug" - -#: models.py:14 -msgid "file" -msgstr "файл" - -#: models.py:15 -msgid "author" -msgstr "автор" - -#: models.py:16 -msgid "slideshare ID" -msgstr "slideshare ID" - -#: models.py:17 -msgid "description" -msgstr "описание" - -#: models.py:19 -msgid "HTML" -msgstr "HTML" - -#: models.py:30 -msgid "document" -msgstr "документ" - -#: models.py:30 -msgid "documents" -msgstr "документы" diff --git a/apps/lessons/locale/uk/LC_MESSAGES/django.mo b/apps/lessons/locale/uk/LC_MESSAGES/django.mo deleted file mode 100644 index dee3f1173..000000000 Binary files a/apps/lessons/locale/uk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/lessons/locale/uk/LC_MESSAGES/django.po b/apps/lessons/locale/uk/LC_MESSAGES/django.po deleted file mode 100644 index 32be0696f..000000000 --- a/apps/lessons/locale/uk/LC_MESSAGES/django.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-12 13:49+0100\n" -"PO-Revision-Date: 2012-03-04 17:30+0100\n" -"Last-Translator: xxx \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: models.py:12 -msgid "title" -msgstr "заголовок" - -#: models.py:13 -msgid "slug" -msgstr "slug" - -#: models.py:14 -msgid "file" -msgstr "файл" - -#: models.py:15 -msgid "author" -msgstr "автор" - -#: models.py:16 -msgid "slideshare ID" -msgstr "slideshare ID" - -#: models.py:17 -msgid "description" -msgstr "опис" - -#: models.py:19 -msgid "HTML" -msgstr "HTML" - -#: models.py:30 -msgid "document" -msgstr "документ" - -#: models.py:30 -msgid "documents" -msgstr "документи" diff --git a/apps/lessons/migrations/0001_initial.py b/apps/lessons/migrations/0001_initial.py deleted file mode 100644 index 9374d6118..000000000 --- a/apps/lessons/migrations/0001_initial.py +++ /dev/null @@ -1,45 +0,0 @@ -# encoding: utf-8 -import datetime -from south.db import db -from south.v2 import SchemaMigration -from django.db import models - -class Migration(SchemaMigration): - - def forwards(self, orm): - - # Adding model 'Document' - db.create_table('lessons_document', ( - ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)), - ('title', self.gf('django.db.models.fields.CharField')(max_length=120)), - ('slug', self.gf('django.db.models.fields.SlugField')(max_length=50, db_index=True)), - ('file', self.gf('django.db.models.fields.files.FileField')(max_length=100)), - ('author', self.gf('django.db.models.fields.CharField')(max_length=120, blank=True)), - ('slideshare_id', self.gf('django.db.models.fields.CharField')(max_length=120, blank=True)), - ('description', self.gf('django.db.models.fields.TextField')(blank=True)), - ('created_at', self.gf('django.db.models.fields.DateTimeField')(auto_now_add=True, blank=True)), - )) - db.send_create_signal('lessons', ['Document']) - - - def backwards(self, orm): - - # Deleting model 'Document' - db.delete_table('lessons_document') - - - models = { - 'lessons.document': { - 'Meta': {'object_name': 'Document'}, - 'author': ('django.db.models.fields.CharField', [], {'max_length': '120', 'blank': 'True'}), - 'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), - 'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}), - 'file': ('django.db.models.fields.files.FileField', [], {'max_length': '100'}), - 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), - 'slideshare_id': ('django.db.models.fields.CharField', [], {'max_length': '120', 'blank': 'True'}), - 'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'db_index': 'True'}), - 'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}) - } - } - - complete_apps = ['lessons'] diff --git a/apps/lessons/migrations/0002_auto__add_field_document_html.py b/apps/lessons/migrations/0002_auto__add_field_document_html.py deleted file mode 100644 index 40494f134..000000000 --- a/apps/lessons/migrations/0002_auto__add_field_document_html.py +++ /dev/null @@ -1,36 +0,0 @@ -# encoding: utf-8 -import datetime -from south.db import db -from south.v2 import SchemaMigration -from django.db import models - -class Migration(SchemaMigration): - - def forwards(self, orm): - - # Adding field 'Document.html' - db.add_column('lessons_document', 'html', self.gf('django.db.models.fields.TextField')(default='', blank=True), keep_default=False) - - - def backwards(self, orm): - - # Deleting field 'Document.html' - db.delete_column('lessons_document', 'html') - - - models = { - 'lessons.document': { - 'Meta': {'ordering': "['slug']", 'object_name': 'Document'}, - 'author': ('django.db.models.fields.CharField', [], {'max_length': '120', 'blank': 'True'}), - 'created_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), - 'description': ('django.db.models.fields.TextField', [], {'blank': 'True'}), - 'file': ('django.db.models.fields.files.FileField', [], {'max_length': '100'}), - 'html': ('django.db.models.fields.TextField', [], {'blank': 'True'}), - 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), - 'slideshare_id': ('django.db.models.fields.CharField', [], {'max_length': '120', 'blank': 'True'}), - 'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'db_index': 'True'}), - 'title': ('django.db.models.fields.CharField', [], {'max_length': '120'}) - } - } - - complete_apps = ['lessons'] diff --git a/apps/lessons/migrations/__init__.py b/apps/lessons/migrations/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/apps/lessons/models.py b/apps/lessons/models.py deleted file mode 100644 index 412dc6bc5..000000000 --- a/apps/lessons/models.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -from django.db import models -from django.utils.translation import ugettext_lazy as _ - -from os import path - -class Document(models.Model): - """Document - hand-out for teachers""" - title = models.CharField(_('title'), max_length=120) - slug = models.SlugField(_('slug')) - file = models.FileField(_('file'), upload_to='lessons/document') - author = models.CharField(_('author'), blank=True, max_length=120) - slideshare_id = models.CharField(_('slideshare ID'), blank=True, max_length=120) - description = models.TextField(_('description'), blank=True) - created_at = models.DateTimeField(auto_now_add=True) - html = models.TextField(_('HTML'), blank=True) # HTML content, alternative for Flash - - def slideshare_player(self): - base, ext = path.splitext(self.file.name) - if ext in ('.ppt', '.pps', '.pot', '.pptx', '.potx', '.ppsx', '.odp', '.key', '.zip', '.pdf',): - return 'ssplayer2.swf' - else: - return 'ssplayerd.swf' - - class Meta: - ordering = ['slug'] - verbose_name, verbose_name_plural = _("document"), _("documents") - - def __unicode__(self): - return self.title - - @models.permalink - def get_absolute_url(self): - return ('lessons_document_detail', [self.slug]) diff --git a/apps/lessons/templates/lessons/ajax_document_detail.html b/apps/lessons/templates/lessons/ajax_document_detail.html deleted file mode 100644 index 699b50f07..000000000 --- a/apps/lessons/templates/lessons/ajax_document_detail.html +++ /dev/null @@ -1,12 +0,0 @@ -{% load i18n %} -
      -

      {% trans "Download" %} {% if object.author %}({% trans "author" %}: {{ object.author }}){% endif %}

      -

      {{ object.title }}

      - {% if object.slideshare_id %} - - - {% endif %} - {% if object.description %} -

      {{ object.description|urlize|linebreaks }}

      - {% endif %} -
      \ No newline at end of file diff --git a/apps/lessons/templates/lessons/document_detail.html b/apps/lessons/templates/lessons/document_detail.html deleted file mode 100644 index e55454853..000000000 --- a/apps/lessons/templates/lessons/document_detail.html +++ /dev/null @@ -1,8 +0,0 @@ -{% if not object.html %} - {% if object.slideshare_id %} - - - {% endif %} -{% else %} - {{ object.html|safe }} -{% endif %} diff --git a/apps/lessons/templates/lessons/document_list.html b/apps/lessons/templates/lessons/document_list.html deleted file mode 100644 index b4e44e2ce..000000000 --- a/apps/lessons/templates/lessons/document_list.html +++ /dev/null @@ -1,39 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% load catalogue_tags chunks %} - -{% block bodyid %}document-list-body{% endblock %} - -{% block titleextra %}{% trans "Hand-outs for teachers" %}{% endblock %} - -{% block metadescription %}Scenariusze lekcji. Materiały dla nauczycieli na wolnej licencji.{% endblock %} - -{% block extrahead %} - -{% endblock extrahead %} -{% block body %} -

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

      - -
      - {% chunk "document-list" %} -
      -
      -
      -{% endblock %} diff --git a/apps/lessons/urls.py b/apps/lessons/urls.py deleted file mode 100644 index 4b6a3e10b..000000000 --- a/apps/lessons/urls.py +++ /dev/null @@ -1,16 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -from django.conf.urls.defaults import * -from catalogue import forms - - -urlpatterns = patterns('', - url(r'^$', 'django.views.generic.simple.direct_to_template', { - 'template': 'lessons/document_list.html', - }, name='lessons_document_list'), - - url(r'^(?P[a-zA-Z0-9_-]+)/$', 'lessons.views.document_detail', name='lessons_document_detail'), -) - diff --git a/apps/lessons/views.py b/apps/lessons/views.py deleted file mode 100644 index 9314d1cac..000000000 --- a/apps/lessons/views.py +++ /dev/null @@ -1,19 +0,0 @@ -# -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. -# -from django.views.generic.list_detail import object_detail -from lessons import models - - -def document_detail(request, slug): - template_name = 'lessons/document_detail.html' - if request.is_ajax(): - template_name = 'lessons/ajax_document_detail.html' - - return object_detail(request, - slug=slug, - slug_field='slug', - queryset=models.Document.objects.all(), - template_name=template_name, - ) diff --git a/apps/newtagging/views.py b/apps/newtagging/views.py index b88e9c42d..dee8e1828 100644 --- a/apps/newtagging/views.py +++ b/apps/newtagging/views.py @@ -4,7 +4,7 @@ Tagging related views. """ from django.http import Http404 from django.utils.translation import ugettext as _ -from django.views.generic.list_detail import object_list +from django.views.generic import ListView def tagged_object_list(request, queryset_or_model=None, tag_model=None, tags=None, @@ -44,5 +44,5 @@ def tagged_object_list(request, queryset_or_model=None, tag_model=None, tags=Non kwargs['extra_context']['related_tags'] = \ tag_model.objects.related_for_model(tag_instances, queryset_or_model, counts=related_tag_counts) - return object_list(request, queryset, **kwargs) + return ListView.as_view(queryset=queryset)(request, **kwargs) diff --git a/apps/picture/models.py b/apps/picture/models.py index dd6ae8e8b..c34b39a25 100644 --- a/apps/picture/models.py +++ b/apps/picture/models.py @@ -9,7 +9,7 @@ from django.template.loader import render_to_string from django.core.cache import get_cache from catalogue.utils import split_tags from django.utils.safestring import mark_safe -from slughifi import slughifi +from fnpdjango.utils.text.slughifi import slughifi from django.utils.translation import ugettext_lazy as _ from newtagging import managers diff --git a/apps/picture/templates/admin/picture/picture/change_list.html b/apps/picture/templates/admin/picture/picture/change_list.html index e150da51e..940d81f62 100755 --- a/apps/picture/templates/admin/picture/picture/change_list.html +++ b/apps/picture/templates/admin/picture/picture/change_list.html @@ -2,10 +2,10 @@ {% load i18n %} {% block content %} -
      +

      XML:
      {% trans "Image" %}:

      {{ block.super }} -{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/apps/search/management/commands/optimizeindex.py b/apps/search/management/commands/optimizeindex.py deleted file mode 100644 index 51bf95b4e..000000000 --- a/apps/search/management/commands/optimizeindex.py +++ /dev/null @@ -1,39 +0,0 @@ - -from django.core.management.base import BaseCommand -from search import Index, Search -from lucene import IndexReader, IndexSearcher, Term -from catalogue.models import Book - - -class Command(BaseCommand): - help = 'Optimize Lucene search index' - args = '' - - def delete_old(self, index): - existing_ids = set([book.id for book in Book.objects.all()]) - - reader = IndexReader.open(index.index, False) - searcher = IndexSearcher(reader) - try: - num = searcher.docFreq(Term('is_book', 'true')) - docs = searcher.search(Search.make_term_query(['true'], 'is_book'), num) - for result in docs.scoreDocs: - stored = searcher.doc(result.doc) - book_id = int(stored.get('book_id')) - if not book_id in existing_ids: - print "book id %d doesn't exist." % book_id - index.remove_book(book_id) - finally: - searcher.close() - reader.close() - - def handle(self, *args, **opts): - index = Index() - index.open() - - self.delete_old(index) - - try: - index.optimize() - finally: - index.close() diff --git a/apps/search/templates/newsearch/search.html b/apps/search/templates/newsearch/search.html index 635bae86a..0b0fad49d 100644 --- a/apps/search/templates/newsearch/search.html +++ b/apps/search/templates/newsearch/search.html @@ -10,7 +10,7 @@ {% block body %}

      Search

      -
      +

      diff --git a/apps/social/templates/social/sets_form.html b/apps/social/templates/social/sets_form.html index c7282fd9a..2f4a1d39b 100755 --- a/apps/social/templates/social/sets_form.html +++ b/apps/social/templates/social/sets_form.html @@ -1,7 +1,7 @@ {% load i18n %}

      {{ title }}

      - {% csrf_token %} @@ -15,4 +15,4 @@ {{ form.as_ul }}
    - \ No newline at end of file + diff --git a/apps/social/views.py b/apps/social/views.py index abb2d9bef..27769d740 100644 --- a/apps/social/views.py +++ b/apps/social/views.py @@ -70,155 +70,3 @@ def unlike_book(request, slug): return JSONResponse({"success": True, "msg": "ok", "like": False}) else: return redirect(book) - - -#~ @login_required -#~ @cache.never_cache -#~ def user_shelves(request): - #~ shelves = models.Tag.objects.filter(category='set', user=request.user) - #~ new_set_form = forms.NewSetForm() - #~ return render_to_response('social/user_shelves.html', locals(), - #~ context_instance=RequestContext(request)) -#~ -#~ @cache.never_cache -#~ def book_sets(request, slug): - #~ if not request.user.is_authenticated(): - #~ return HttpResponse(_('

    To maintain your shelves you need to be logged in.

    ')) -#~ - #~ book = get_object_or_404(models.Book, slug=slug) -#~ - #~ user_sets = models.Tag.objects.filter(category='set', user=request.user) - #~ book_sets = book.tags.filter(category='set', user=request.user) -#~ - #~ if request.method == 'POST': - #~ form = forms.ObjectSetsForm(book, request.user, request.POST) - #~ if form.is_valid(): - #~ DONE! - #~ if request.is_ajax(): - #~ return JSONResponse('{"msg":"'+_("

    Shelves were sucessfully saved.

    ")+'", "after":"close"}') - #~ else: - #~ return HttpResponseRedirect('/') - #~ else: - #~ form = forms.ObjectSetsForm(book, request.user) - #~ new_set_form = forms.NewSetForm() -#~ - #~ return render_to_response('social/book_sets.html', locals(), - #~ context_instance=RequestContext(request)) -#~ -#~ -#~ @login_required -#~ @require_POST -#~ @cache.never_cache -#~ def remove_from_shelf(request, shelf, slug): - #~ book = get_object_or_404(models.Book, slug=slug) -#~ - #~ shelf = get_object_or_404(models.Tag, slug=shelf, category='set', user=request.user) -#~ - #~ if shelf in book.tags: - #~ models.Tag.objects.remove_tag(book, shelf) - #~ touch_tag(shelf) -#~ - #~ return HttpResponse(_('Book was successfully removed from the shelf')) - #~ else: - #~ return HttpResponse(_('This book is not on the shelf')) -#~ -#~ -#~ def collect_books(books): - #~ """ - #~ Returns all real books in collection. - #~ """ - #~ result = [] - #~ for book in books: - #~ if len(book.children.all()) == 0: - #~ result.append(book) - #~ else: - #~ result += collect_books(book.children.all()) - #~ return result -#~ -#~ -#~ @cache.never_cache -#~ def download_shelf(request, slug): - #~ """" - #~ Create a ZIP archive on disk and transmit it in chunks of 8KB, - #~ without loading the whole file into memory. A similar approach can - #~ be used for large dynamic PDF files. - #~ """ - #~ from slughifi import slughifi - #~ import tempfile - #~ import zipfile -#~ - #~ shelf = get_object_or_404(models.Tag, slug=slug, category='set') -#~ - #~ formats = [] - #~ form = forms.DownloadFormatsForm(request.GET) - #~ if form.is_valid(): - #~ formats = form.cleaned_data['formats'] - #~ if len(formats) == 0: - #~ formats = models.Book.ebook_formats -#~ - #~ # Create a ZIP archive - #~ temp = tempfile.TemporaryFile() - #~ archive = zipfile.ZipFile(temp, 'w') -#~ - #~ for book in collect_books(models.Book.tagged.with_all(shelf)): - #~ for ebook_format in models.Book.ebook_formats: - #~ if ebook_format in formats and book.has_media(ebook_format): - #~ filename = book.get_media(ebook_format).path - #~ archive.write(filename, str('%s.%s' % (book.slug, ebook_format))) - #~ archive.close() -#~ - #~ response = HttpResponse(content_type='application/zip', mimetype='application/x-zip-compressed') - #~ response['Content-Disposition'] = 'attachment; filename=%s.zip' % slughifi(shelf.name) - #~ response['Content-Length'] = temp.tell() -#~ - #~ temp.seek(0) - #~ response.write(temp.read()) - #~ return response -#~ -#~ -#~ @cache.never_cache -#~ def shelf_book_formats(request, shelf): - #~ """" - #~ Returns a list of formats of books in shelf. - #~ """ - #~ shelf = get_object_or_404(models.Tag, slug=shelf, category='set') -#~ - #~ formats = {} - #~ for ebook_format in models.Book.ebook_formats: - #~ formats[ebook_format] = False -#~ - #~ for book in collect_books(models.Book.tagged.with_all(shelf)): - #~ for ebook_format in models.Book.ebook_formats: - #~ if book.has_media(ebook_format): - #~ formats[ebook_format] = True -#~ - #~ return HttpResponse(LazyEncoder().encode(formats)) -#~ -#~ -#~ @login_required -#~ @require_POST -#~ @cache.never_cache -#~ def new_set(request): - #~ new_set_form = forms.NewSetForm(request.POST) - #~ if new_set_form.is_valid(): - #~ new_set = new_set_form.save(request.user) -#~ - #~ if request.is_ajax(): - #~ return JSONResponse('{"id":"%d", "name":"%s", "msg":"

    Shelf %s was successfully created

    "}' % (new_set.id, new_set.name, new_set)) - #~ else: - #~ return HttpResponseRedirect('/') -#~ - #~ return HttpResponseRedirect('/') -#~ -#~ -#~ @login_required -#~ @require_POST -#~ @cache.never_cache -#~ def delete_shelf(request, slug): - #~ user_set = get_object_or_404(models.Tag, slug=slug, category='set', user=request.user) - #~ user_set.delete() -#~ - #~ if request.is_ajax(): - #~ return HttpResponse(_('

    Shelf %s was successfully removed

    ') % user_set.name) - #~ else: - #~ return HttpResponseRedirect('/') diff --git a/apps/sponsors/models.py b/apps/sponsors/models.py index 3ca1a4894..24d302208 100644 --- a/apps/sponsors/models.py +++ b/apps/sponsors/models.py @@ -20,7 +20,7 @@ class Sponsor(models.Model): name = models.CharField(_('name'), max_length=120) _description = models.CharField(_('description'), blank=True, max_length=255) logo = models.ImageField(_('logo'), upload_to='sponsorzy/sponsor/logo') - url = models.URLField(_('url'), blank=True, verify_exists=False) + url = models.URLField(_('url'), blank=True) def __unicode__(self): return self.name diff --git a/apps/suggest/templates/publishing_suggest.html b/apps/suggest/templates/publishing_suggest.html index ea1d9264f..6efbb908d 100755 --- a/apps/suggest/templates/publishing_suggest.html +++ b/apps/suggest/templates/publishing_suggest.html @@ -3,7 +3,7 @@

    {% trans "Didn't find a book? Make a suggestion." %}

    -
    + {% csrf_token %} {% render_honeypot_field %}
      diff --git a/apps/waiter/templates/waiter/wait.html b/apps/waiter/templates/waiter/wait.html index 576fc299f..6ef1b7751 100644 --- a/apps/waiter/templates/waiter/wait.html +++ b/apps/waiter/templates/waiter/wait.html @@ -1,7 +1,6 @@ {% extends "base.html" %} {% load i18n %} {% load static from staticfiles %} -{% load url from future %} {% block titleextra %} {% if file_url %} diff --git a/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.mo index f8e5242b4..972cabd3b 100644 Binary files a/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.po index 9b4664a69..d9a166325 100644 --- a/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/de/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-04-05 22:31+0100\n" -"Last-Translator: \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" @@ -18,20 +18,26 @@ msgstr "" "X-Translated-Using: django-rosetta 0.5.6\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Einloggen" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "Eingeloggt als User %(user)s" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Registrieren" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Sie müssen eingeloggt sein, um fortzusetzen." @@ -44,35 +50,24 @@ msgid "Page not found" msgstr "Seite nicht gefunden." #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Die gesuchte Seite existiert leider nicht mehr. Überprüfen Sie bitte, ob Sie " -"sich bei der Eingabe der URL in der Adresszeile des Browsers vertippt haben " -"oder gehen Sie zur Startseite" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Die gesuchte Seite existiert leider nicht mehr. Überprüfen Sie bitte, ob Sie sich bei der Eingabe der URL in der Adresszeile des Browsers vertippt haben oder gehen Sie zur Startseite" #: templates/404.html:14 msgid "main page" msgstr "Startseite" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Serverfehler" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      Wolnelektury.pl ist zurzeit nicht verfügbar. Besuchen Sie unsere " -"Startseite Blog . " -"Informieren Sie uns " -"Administratoren über den Fehler. " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      Wolnelektury.pl ist zurzeit nicht verfügbar. Besuchen Sie unsere Startseite Blog . Informieren Sie uns Administratoren über den Fehler. " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Service nicht verfügbar" @@ -80,54 +75,60 @@ msgstr "Service nicht verfügbar" msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." msgstr "Wolnelektury.pl wegen Wartungsarbeiten momentan nicht verfügbar." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Internetbibliothek WolneLektury.pl" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "Was Neues?" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Letzte Publikationen" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "News" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Leistungen" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Melden Sie einen Bug oder Vorschlag." -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Der Katalog als PDF-Datei herunterladen." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Widget" -#: templates/main_page.html:56 +#: templates/main_page.html:59 #, fuzzy msgid "Missing a book?" msgstr "Brauchen Sie ein Buch?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Plan der Veröffentlichung" -#: templates/main_page.html:64 +#: templates/main_page.html:71 #, fuzzy msgid "Information" msgstr "Format öffnen" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "das genutzte Bild" @@ -135,60 +136,59 @@ msgstr "das genutzte Bild" msgid "Wolne Lektury" msgstr "in WolneLektury.pl" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -"Sie haben %(c)s freies Werk zur " -"Verfügung\n" +"Sie haben %(c)s freies Werk zur Verfügung\n" " " msgstr[1] "" "\n" -"Sie haben %(c)s freie Werke zur " -"Verfügung\n" +"Sie haben %(c)s freie Werke zur Verfügung\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Willkommen" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "Password" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "E-Mail" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 #, fuzzy msgid "Social accounts" msgstr "oder melde dich an:" -#: templates/superbase.html:76 +#: templates/superbase.html:78 #, fuzzy msgid "My shelf" msgstr "Mein Bücherregal" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Administration" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Ausloggen" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Suchen" @@ -196,56 +196,47 @@ msgstr "Suchen" msgid "Language versions" msgstr "Sprachversionen" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tWolne Lektury ist das Projekt derStiftung Modernes Polen.\n" -"\t\t\t\tDigitalisierung wird von der Natonalbibliothek ausgeführt, Exemplare aus dem Bücherbestand der " -"NB. \n" +"\t\t\t\tWolne Lektury ist das Projekt derStiftung Modernes Polen.\n" +"\t\t\t\tDigitalisierung wird von der Natonalbibliothek ausgeführt, Exemplare aus dem Bücherbestand der NB. \n" "\t\t\t\tHosting EO Networks.\n" "\t\t\t\t" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\t Stiftung Modernes Polen, 00-514 Warschau, Marszałkowska 84/92, " -"Wohnungsnummer 125, Telefon/Fax: +48 (22) 621-30-17\n" -" E-Mail: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t Stiftung Modernes Polen, 00-514 Warschau, Marszałkowska 84/92, Wohnungsnummer 125, Telefon/Fax: +48 (22) 621-30-17\n" +" E-Mail: fundacja@nowoczesnapolska.org.pl\n" "\t\t\t\t" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Schließen" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Laden" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "User" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Webseite-Administration" @@ -270,7 +261,8 @@ msgstr "Buch importieren" msgid "Forgot Password?" msgstr "Password vergessen?" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 #, fuzzy msgid "Sign in using:" msgstr "Einloggen" @@ -296,18 +288,14 @@ msgid_plural "" msgstr[0] "" "\n" "Wir haben eine Arbeit in Wolne Lektury veröffentlicht!\n" -"Hilfen Sie uns bei der Entwicklung der Bibliothek und bereite neue Titel " -"frei von\n" -"Ünterstütze uns " -"vor\n" +"Hilfen Sie uns bei der Entwicklung der Bibliothek und bereite neue Titel frei von\n" +"Ünterstütze uns vor\n" "oder mit einer Überweisung 1% Ihrer Einkommensteuer .\n" msgstr[1] "" "\n" "Wir haben %(c)s Arbeiten in Wolne Lektury veröffentlicht!\n" -"Hilfen Sie uns bei der Entwicklung der Bibliothek und bereite neue Titel " -"frei von\n" -"Ünterstütze uns " -"vor\n" +"Hilfen Sie uns bei der Entwicklung der Bibliothek und bereite neue Titel frei von\n" +"Ünterstütze uns vor\n" "oder mit einer Überweisung 1% Ihrer Einkommensteuer .\n" #: templates/info/join_us.html:20 @@ -315,17 +303,14 @@ msgid "" "Become an editor of Wolne Lektury! Find out if\n" "we're currently working on a reading you're looking for and prepare\n" "a publication by yourself by logging into the Editorial Platform." -msgstr "" -"Werde Redakteur/in bei Wolne Lektury! Schau, ob wir gerade an der " -"Veröffentlichung der Schullektüre arbeiten, die du ausgesucht hast. Um " -"eigene Texte zu veröffentlichen, musst du vorher auf unserer redaktionellen " -"Online-Plattform eingeloggt sein. " +msgstr "Werde Redakteur/in bei Wolne Lektury! Schau, ob wir gerade an der Veröffentlichung der Schullektüre arbeiten, die du ausgesucht hast. Um eigene Texte zu veröffentlichen, musst du vorher auf unserer redaktionellen Online-Plattform eingeloggt sein. " #: templates/info/join_us.html:23 msgid "More..." msgstr "Mehr..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "OpenID registrieren" @@ -351,11 +336,8 @@ msgstr "Den Zugang zu Wolne Lektury authorisieren" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Bitte bestätigen Sie den Zugang zu Wolne Lektury %(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Bitte bestätigen Sie den Zugang zu Wolne Lektury %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -363,9 +345,7 @@ msgid "Account Connections" msgstr "Konto-Beziehungen" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" +msgid "You can sign in to your account using any of the following third party accounts:" msgstr "Sie können mithilfe folgenden fremden Accounts registrieren." #: templates/socialaccount/connections.html:35 @@ -374,8 +354,7 @@ msgid "Remove" msgstr "löschen" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "Sie haben noch kein Social-Networt-Konto mit diesem Konto verbunden." #: templates/socialaccount/connections.html:46 @@ -389,14 +368,8 @@ msgstr "Login annulliert" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." -msgstr "" -"Sie haben entschieden, sich in dieser Seite nicht mit erschafftn Kontos " -"einzuloggen. Wenn es aus Versehen passiert ist, gehen Sie bitte Registrieren voran." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Sie haben entschieden, sich in dieser Seite nicht mit erschafftn Kontos einzuloggen. Wenn es aus Versehen passiert ist, gehen Sie bitte Registrieren voran." #~ msgid "Listing of all audiobooks" #~ msgstr "Audiobücherverzeichnis" diff --git a/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.mo index 78c037f5a..f3bb6900e 100644 Binary files a/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.po index 341a731b4..9aa70effe 100644 --- a/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/en/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-03-13 23:57+0100\n" -"Last-Translator: Kamil \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -17,20 +17,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Sign in" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Register" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "You have to be logged in to continue" @@ -43,88 +49,83 @@ msgid "Page not found" msgstr "Page not found" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"We are sorry, but this page does not exist. Please check if the address you " -"entered is correct you entered or go to " +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "We are sorry, but this page does not exist. Please check if the address you entered is correct you entered or go to " #: templates/404.html:14 msgid "main page" msgstr "main page" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Server error" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      Wolnelektury.pl is currently unavailable. Meanwhile, visit our website.

      Inform our administrators about the " -"error.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      Wolnelektury.pl is currently unavailable. Meanwhile, visit our website.

      Inform our administrators about the error.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Service unavailable" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"The website Wolnelektury.pl is currently unavailable due to maintainance." +msgstr "The website Wolnelektury.pl is currently unavailable due to maintainance." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Wolne Lektury Internet library" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Latest publications" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "News" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Tools" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Report an error or make a suggestion" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Download the catalogue in PDF format." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Widget" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Missing a book?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Publishing plan" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "Information" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "Image used:" @@ -132,59 +133,58 @@ msgstr "Image used:" msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgstr[1] "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Welcome" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 #, fuzzy msgid "Social accounts" msgstr "or join accounts:" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "My shelf" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Administration" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Logout" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Search" @@ -192,57 +192,47 @@ msgstr "Search" msgid "Language versions" msgstr "Language versions" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tWolne Lektury is a project carried out by the Modern Poland Foundation.\n" -"\t\t\t\tDigital reproductions are made by The National Library, the " -"Silesian Library and the " -"Library of Elbląg, based on NL, US and LE resources.\n" +"\t\t\t\tWolne Lektury is a project carried out by the Modern Poland Foundation.\n" +"\t\t\t\tDigital reproductions are made by The National Library, the Silesian Library and the Library of Elbląg, based on NL, US and LE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t\"" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\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\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" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Close" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Loading" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Site administration" @@ -267,7 +257,8 @@ msgstr "Import book" msgid "Forgot Password?" msgstr "" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 #, fuzzy msgid "Sign in using:" msgstr "Sign in" @@ -317,7 +308,8 @@ msgstr "" msgid "More..." msgstr "More..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "" @@ -343,11 +335,8 @@ msgstr "Authorize access to Wolne Lektury" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Confirm to authorize access to Wolne Lektury as %(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Confirm to authorize access to Wolne Lektury as %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -355,9 +344,7 @@ msgid "Account Connections" msgstr "" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" +msgid "You can sign in to your account using any of the following third party accounts:" msgstr "" #: templates/socialaccount/connections.html:35 @@ -366,8 +353,7 @@ msgid "Remove" msgstr "remove" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "" #: templates/socialaccount/connections.html:46 @@ -381,10 +367,7 @@ msgstr "" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." msgstr "" #~ msgid "Listing of all audiobooks" diff --git a/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.mo index 0eed4a6c4..232149949 100644 Binary files a/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.po index 5052633f1..97f77fd6a 100644 --- a/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/es/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-05-26 18:05+0100\n" -"Last-Translator: KG \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -18,20 +18,26 @@ msgstr "" "X-Translated-Using: django-rosetta 0.5.6\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Iniciar sesión" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "Ya has iniciado sesión como usuario %(user)s" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Registrarse" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Tienes que iniciar sesión para continuar" @@ -44,34 +50,24 @@ msgid "Page not found" msgstr "Página no encontrada" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Lo sentimos, esta página no existe. Compruebue si la dirección es correcta o " -"pase a" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Lo sentimos, esta página no existe. Compruebue si la dirección es correcta o pase a" #: templates/404.html:14 msgid "main page" msgstr "página principal" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Error del servidor" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      La página Wolnelektury.pl actualmente no está disponible. Mientras tanto " -"visita nuestro blog.

      " -"

      Informa a nuestros administradores sobre el error.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      La página Wolnelektury.pl actualmente no está disponible. Mientras tanto visita nuestro blog.

      Informa a nuestros administradores sobre el error.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Servicio no está disponible" @@ -79,52 +75,58 @@ msgstr "Servicio no está disponible" msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." msgstr "La página Wolnelektury.pl no está disponible debido al mantenimiento." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "La biblioteca virtual WolneLektury.pl" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "Novedades" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Publicaciones recientes" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "Noticias" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Herramientas" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Reporta un error o una sugerencia" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Descarga el catálogo en el formato PDF" -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Widget" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "¿Falta un libro?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Plan de publicación" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "Información" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "La imagen usada:" @@ -132,58 +134,57 @@ msgstr "La imagen usada:" msgid "Wolne Lektury" msgstr "Regístrate en WolneLektury.pl" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s tienes lecturas libres right to\n" +" %(c)s tienes lecturas libres right to\n" " " msgstr[1] "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Bienvenido" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "Contraseña" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "Correo electrónico" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 msgid "Social accounts" msgstr "Cuentas sociales" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Mi estante" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Administración" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Cerrar sesión" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Buscar" @@ -191,55 +192,47 @@ msgstr "Buscar" msgid "Language versions" msgstr "Versiones de idiomas" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tWolne Lektury es un proyecto dirigido por la Fundación Polonia Moderna.\n" -"\t\t\t\tReproducciones digitales están preparadas por La Biblioteca Nacional, en base de los recursos de la BN. \n" +"\t\t\t\tWolne Lektury es un proyecto dirigido por la Fundación Polonia Moderna.\n" +"\t\t\t\tReproducciones digitales están preparadas por La Biblioteca Nacional, en base de los recursos de la BN. \n" "\t\t\t\tHosting EO Networks.\n" "\t\t\t\t " -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\tFundación Polonia Moderna, c/ Marszałkowska 84/92, lok. 125, 00-514 " -"Varsovia, tel/fax: +48 (22) 621-30-17\n" -" e-mail: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\tFundación Polonia Moderna, c/ Marszałkowska 84/92, lok. 125, 00-514 Varsovia, tel/fax: +48 (22) 621-30-17\n" +" e-mail: fundacja@nowoczesnapolska.org.pl\n" "\t\t\t\t" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Cerrar" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Cargando" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "Usuario" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Administración de la página" @@ -264,7 +257,8 @@ msgstr "Importar libro" msgid "Forgot Password?" msgstr "¿Olvidaste tu contraseña?" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 msgid "Sign in using:" msgstr "Iniciar sesión con:" @@ -288,10 +282,8 @@ msgid_plural "" "or transferring 1% of your income tax.\n" msgstr[0] "" "\n" -"Tenemos %(c)s obras publicadas en Wolne Lektury!Ayúdanos ampliar la " -"biblioteca y libera lecturas nuevas \n" -" - haz una " -"donación \n" +"Tenemos %(c)s obras publicadas en Wolne Lektury!Ayúdanos ampliar la biblioteca y libera lecturas nuevas \n" +" - haz una donación \n" " o dona 1 porcentaje de tu impuesto .\n" msgstr[1] "" "\n" @@ -314,7 +306,8 @@ msgstr "" msgid "More..." msgstr "Más..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "Iniciar sesión con OpenID " @@ -340,12 +333,8 @@ msgstr "Autoriza el acceso a Wolne Lektury" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Confirma para autorizar el acceso a Wolne Lektury como el usuario " -"%(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Confirma para autorizar el acceso a Wolne Lektury como el usuario %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -353,23 +342,16 @@ msgid "Account Connections" msgstr "Conexiones de la cuenta de usuario" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" -msgstr "" -"Puede iniciar sesión en su cuenta de usuario a través de cualquiera de las " -"siguientes cuentas de terceros:" +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "Puede iniciar sesión en su cuenta de usuario a través de cualquiera de las siguientes cuentas de terceros:" #: templates/socialaccount/connections.html:35 msgid "Remove" msgstr "Borrar" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." -msgstr "" -"Actualmente no tiene ninguna cuenta social relacionada con esta cuenta de " -"usuario." +msgid "You currently have no social network accounts connected to this account." +msgstr "Actualmente no tiene ninguna cuenta social relacionada con esta cuenta de usuario." #: templates/socialaccount/connections.html:46 msgid "Add a 3rd Party Account" @@ -382,14 +364,8 @@ msgstr "Inicio de sesión cancelado" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." -msgstr "" -"Ha decidido anular lo de iniciar sesión en nuestra página usando una de sus " -"cuentas de usuario existentes. Si se ha equivocado, pase asign in, por favor." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Ha decidido anular lo de iniciar sesión en nuestra página usando una de sus cuentas de usuario existentes. Si se ha equivocado, pase asign in, por favor." #~ msgid "Listing of all audiobooks" #~ msgstr "Lista de todos los audiolibros" diff --git a/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.mo index e744b3912..5fd5bdfb1 100644 Binary files a/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.po index f242307ac..3e58fe58b 100644 --- a/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/fr/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-03-13 13:17+0100\n" -"Last-Translator: xxx \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -17,20 +17,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Connexion" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Inscrivez-vous" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Vous devez être connecter pour continuer" @@ -43,89 +49,83 @@ msgid "Page not found" msgstr "Composant non trouvé" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Désolé, cette page n'existe pas. Vérifiez si vous avez introduit l'adresse " -"correcte ou allez à" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Désolé, cette page n'existe pas. Vérifiez si vous avez introduit l'adresse correcte ou allez à" #: templates/404.html:14 msgid "main page" msgstr "accueil" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Erreur du serveur" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      Le site Wolnelektury.pl est temporairement inaccessible. En attendant, " -"visitez notre blog.

      " -"Informez nos " -"administrateurs de l'erreur.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      Le site Wolnelektury.pl est temporairement inaccessible. En attendant, visitez notre blog.

      Informez nos administrateurs de l'erreur.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Site inaccessible" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"Le site Wolnelektury.pl est temporairement inaccessible en raison " -"d'opérations de maintenance." +msgstr "Le site Wolnelektury.pl est temporairement inaccessible en raison d'opérations de maintenance." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Wolne Lektury - la bibliothèque en ligne" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Publications récentes" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "Actualités" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Outils" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Rapportez une erreur ou faites une suggestion" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Téléchargez le catalogue au format PDF" -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Widget" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Il vous manque un livre?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Plan de publication" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "Informations" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "L'image utilisé:" @@ -133,59 +133,58 @@ msgstr "L'image utilisé:" msgid "Wolne Lektury" msgstr "Wolne Lektury (Lectures Libres)" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s lecture gratuite auxquelles vous avez droit\n" +" %(c)s lecture gratuite auxquelles vous avez droit\n" " " msgstr[1] "" "\n" -" %(c)s lectures gratuites auxquelles vous avez droit\n" +" %(c)s lectures gratuites auxquelles vous avez droit\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Bienvenue" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 #, fuzzy msgid "Social accounts" msgstr "ou utilisez votre compte" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Mon étagère" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Administration" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Déconnexion" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Rechercher" @@ -193,57 +192,47 @@ msgstr "Rechercher" msgid "Language versions" msgstr "Version linguistique" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tLectures Libres est un projet réalisé par la Fondation Pologne Moderne .\n" -"\t\t\t\tReproductions numériques sont préparées par laBibliothèque nationale, Bibliothèque de Silésie et Bibliothèque d'Elbląg et basées sur leurs ressources. \n" +"\t\t\t\tLectures Libres est un projet réalisé par la Fondation Pologne Moderne .\n" +"\t\t\t\tReproductions numériques sont préparées par laBibliothèque nationale, Bibliothèque de Silésie et Bibliothèque d'Elbląg et basées sur leurs ressources. \n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\t Fondation Pologne Moderne, 00-514 Warszawa (Varsovie), ul. " -"Marszałkowska 84/92 lok. 125, tél./fax: (+48) (22) 621-30-17\n" -" e-mail: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\t Fondation Pologne Moderne, 00-514 Warszawa (Varsovie), ul. Marszałkowska 84/92 lok. 125, tél./fax: (+48) (22) 621-30-17\n" +" e-mail: fundacja@nowoczesnapolska.org.pl\n" "\t\t\t\t" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Fermer" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Chargement en cours" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Site de l'administrateur" @@ -268,7 +257,8 @@ msgstr "Importez le livre" msgid "Forgot Password?" msgstr "" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 #, fuzzy msgid "Sign in using:" msgstr "Connexion" @@ -318,7 +308,8 @@ msgstr "" msgid "More..." msgstr "Plus..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "" @@ -344,12 +335,8 @@ msgstr "Autorisez l'accès à Wolne Lektury" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Confirmez pour autoriser l'accès à Wolne Lektury comme l'utilisateur " -"%(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Confirmez pour autoriser l'accès à Wolne Lektury comme l'utilisateur %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -357,9 +344,7 @@ msgid "Account Connections" msgstr "" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" +msgid "You can sign in to your account using any of the following third party accounts:" msgstr "" #: templates/socialaccount/connections.html:35 @@ -368,8 +353,7 @@ msgid "Remove" msgstr "supprimer" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "" #: templates/socialaccount/connections.html:46 @@ -383,10 +367,7 @@ msgstr "" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." msgstr "" #~ msgid "Listing of all audiobooks" diff --git a/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.mo index 3ca968b03..8f21233b3 100644 Binary files a/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.po index 5728399d1..25ea8e341 100644 --- a/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/it/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-04-04 13:29+0100\n" -"Last-Translator: Marcin Koziej \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" @@ -17,20 +17,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Accedi" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Registrati" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr " Per poter continuare devi essere loggato" @@ -43,89 +49,83 @@ msgid "Page not found" msgstr "La pagina non è stata trovata" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Siamo spiacenti, ma questa pagina non esiste. Si prega di verificare se " -"l'indirizzo è stato inserito correttamente oppure andare su" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Siamo spiacenti, ma questa pagina non esiste. Si prega di verificare se l'indirizzo è stato inserito correttamente oppure andare su" #: templates/404.html:14 msgid "main page" msgstr "pagina principale" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Errore del server" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      il sito di Wolnelektury.pl non è disponibile al momento. Nel frattempo " -"si prega di visitare il nostro blog.

      Si prega di informare i nostri amministratori sull'errore.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      il sito di Wolnelektury.pl non è disponibile al momento. Nel frattempo si prega di visitare il nostro blog.

      Si prega di informare i nostri amministratori sull'errore.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Servizio non disponibile" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"A causa di lavori di manutenzione il sito WolneLektury.pl non è " -"momentaneamente disponibile." +msgstr "A causa di lavori di manutenzione il sito WolneLektury.pl non è momentaneamente disponibile." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Wolne Lektury biblioteca online" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Segnala un'errore o una proposta" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Scarica il catalogo nel formato PDF." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Widget" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Manca un libro?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Programma editoriale" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "Immagine usata" @@ -133,58 +133,57 @@ msgstr "Immagine usata" msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s hai una lettura libera right to\n" +" %(c)s hai una lettura libera right to\n" " " msgstr[1] "" "\n" -" %(c)s hai le letture libere right to\n" +" %(c)s hai le letture libere right to\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Benvenuti" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 msgid "Social accounts" msgstr "" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Il mio scaffale" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Amministrazione" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Esci" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Cerca" @@ -192,58 +191,48 @@ msgstr "Cerca" msgid "Language versions" msgstr "Versioni in altre lingue" -#: templates/superbase.html:166 +#: templates/superbase.html:167 #, fuzzy 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tWolne Lektury è il progetto condotto da Modern Poland Foundation.\n" -"\t\t\t\t Le riproduzioni digitali vengono fatte da Biblioteca Nazionale, Biblioteka ĹšlÄ…ska and Biblioteka ElblÄ…ska, sulla base di raccolte di BN, BĹš e BE.\n" +"\t\t\t\tWolne Lektury è il progetto condotto da Modern Poland Foundation.\n" +"\t\t\t\t Le riproduzioni digitali vengono fatte da Biblioteca Nazionale, Biblioteka ĹšlÄ…ska and Biblioteka ElblÄ…ska, sulla base di raccolte di BN, BĹš e BE.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\tFondazione Polonia Moderna, 00-514 Varsavia, ul. Marszałkowska 84/92 " -"lok. 125, tel/fax: (22) 621-30-17\n" -" e-mail: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\tFondazione Polonia Moderna, 00-514 Varsavia, 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" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Chiudi" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Caricamento" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Amministrazione del sito" @@ -268,7 +257,8 @@ msgstr "Importa un libro" msgid "Forgot Password?" msgstr "" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 #, fuzzy msgid "Sign in using:" msgstr "Accedi" @@ -295,15 +285,13 @@ msgstr[0] "" "\n" "Abbiamo %(c)s dell'opera pubblicata in Wolne Lektury!\n" "Aiutaci ad espandere la biblioteca e aggiungere nuove letture gratuite da\n" -"facendo una " -"donazione\n" +"facendo una donazione\n" "oppure con un trasferimento 1% della tua imposta sul reddito.\n" msgstr[1] "" "\n" "Abbiamo %(c)s dell'opera pubblicata in Wolne Lektury!\n" "Aiutaci ad espandere la biblioteca e aggiungere nuove letture gratuite da\n" -"facendo una " -"donazione\n" +"facendo una donazione\n" "oppure con un trasferimento 1% della tua imposta sul reddito.\n" #: templates/info/join_us.html:20 @@ -317,7 +305,8 @@ msgstr "" msgid "More..." msgstr "Più" -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "" @@ -343,12 +332,8 @@ msgstr "Autorizza accesso a Wolne Lektury" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Conferma l'accesso autorizzato a Wolne Lektury come utente %(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Conferma l'accesso autorizzato a Wolne Lektury come utente %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -356,9 +341,7 @@ msgid "Account Connections" msgstr "" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" +msgid "You can sign in to your account using any of the following third party accounts:" msgstr "" #: templates/socialaccount/connections.html:35 @@ -367,8 +350,7 @@ msgid "Remove" msgstr "elimina" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "" #: templates/socialaccount/connections.html:46 @@ -382,10 +364,7 @@ msgstr "" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." msgstr "" #~ msgid "Listing of all audiobooks" diff --git a/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.mo index 37011ef72..02a11a8b5 100644 Binary files a/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.po index 992351db2..14a4c939e 100644 --- a/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/lt/LC_MESSAGES/django.po @@ -7,32 +7,37 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-04-05 10:22+0100\n" -"Last-Translator: Karolina Zuber \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.3\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Prisijungti " -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "Jau esate prisijungęs kaip vartotojas %(user)s" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Registruotis " -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Norėdami tęsti, turite būti prisijungę" @@ -45,89 +50,83 @@ msgid "Page not found" msgstr "Puslapis nerastas" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Atsiprašome, bet šis tinklalapis neegzistuoja. Prašome patvirtinti ar " -"įvedėte teisingą adresą arba eikite į" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Atsiprašome, bet šis tinklalapis neegzistuoja. Prašome patvirtinti ar įvedėte teisingą adresą arba eikite į" #: templates/404.html:14 msgid "main page" msgstr "pagrindinį puslapį" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Serverio klaida" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      Interneto svetainė yra laikinai neprieinama. Aplankykite mūsų blogą.

      Praneškiteadministratoriams apie " -"klaidą.

      \"" +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      Interneto svetainė yra laikinai neprieinama. Aplankykite mūsų blogą.

      Praneškiteadministratoriams apie klaidą.

      \"" -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Paslauga neprieinama" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"Interneto svetainė Wolnelektury.pl šiuo metu yra neprieinama dėl atliekamų " -"remonto darbų." +msgstr "Interneto svetainė Wolnelektury.pl šiuo metu yra neprieinama dėl atliekamų remonto darbų." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Wolne Lektury internetinė biblioteka" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "Kas naujo?" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Naujos publikacijos" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "Naujienos" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Priemonės" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Praneškite apie klaidą arba teikite pasiūlymus" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Atsisiųsti katalogą PDF formatu." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Valdiklis" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Neradote knygos?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Publikavimo planas" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "Informacija" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "Panaudotas paveikslėlis:" @@ -135,63 +134,61 @@ msgstr "Panaudotas paveikslėlis:" msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s nemokamas kūrinys į kurį turite teisę\n" +" %(c)s nemokamas kūrinys į kurį turite teisę\n" " " msgstr[1] "" "\n" -" %(c)s nemokami kūriniai į kuriuos turite teisę\n" +" %(c)s nemokami kūriniai į kuriuos turite teisę\n" " " msgstr[2] "" "\n" -" %(c)s nemokamų kūrinių į kuriuos turite teisę\n" +" %(c)s nemokamų kūrinių į kuriuos turite teisę\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Sveiki atvykę" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "Slaptažodis" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "El- paštas" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 msgid "Social accounts" msgstr "Socialinės paskyros" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Mano lentyna" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Administracija " -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Atsijungti" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Ieškoti" @@ -199,57 +196,47 @@ msgstr "Ieškoti" msgid "Language versions" msgstr "Kalbų versijos" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tProjektas Wolne Lektury yra fondo Šiuolaikinė Lenkija vadovaujamas.\n" -"\t\t\t\tSkaitmeninės reprodukcijos yra " -"Nacionalinės bibliotekos, Silezijos bibliotekos ir Elbingo bibliotekos paruoštos, remiantis šių bibliotekų ištekliais.\n" +"\t\t\t\tProjektas Wolne Lektury yra fondo Šiuolaikinė Lenkija vadovaujamas.\n" +"\t\t\t\tSkaitmeninės reprodukcijos yra Nacionalinės bibliotekos, Silezijos bibliotekos ir Elbingo bibliotekos paruoštos, remiantis šių bibliotekų ištekliais.\n" "\t\t\t\tPriegloba: ICM.\n" "\t\t\t\t" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\tFondas Šiuolaikinė Lenkija, 00-514 Warszawa, ul. Marszałkowska 84/92 " -"lok. 125, tel/faksas: (22) 621-30-17\n" -" el. paštas: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\tFondas Šiuolaikinė Lenkija, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, tel/faksas: (22) 621-30-17\n" +" el. paštas: fundacja@nowoczesnapolska.org.pl\n" "\t\t\t\t" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Uždaryti" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Kraunasi" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "Vartotojas" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Interneto svetainės administracija" @@ -274,7 +261,8 @@ msgstr "Importuoti knygą" msgid "Forgot Password?" msgstr "Pamiršote slaptažodį?" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 msgid "Sign in using:" msgstr "Prisijungti naudojant:" @@ -300,22 +288,19 @@ msgstr[0] "" "\n" "Turime %(c)s kūrinį publikuotą Wolne Lektury interneto svetainėje!\n" "Padėkite mums plėtoti biblioteką ir nemokamai bendrinti naujus kūrinius\n" -"remdami mus " -"finansiškai\n" +"remdami mus finansiškai\n" "arba skirdami 1% jūsų pajamų mokesčio.\n" msgstr[1] "" "\n" "Turime %(c)s kūrinius publikuotus Wolne Lektury interneto svetainėje!\n" "Padėkite mums plėtoti biblioteką ir nemokamai bendrinti naujus kūrinius\n" -"remdami mus " -"finansiškai\n" +"remdami mus finansiškai\n" "arba skirdami 1% jūsų pajamų mokesčio.\n" msgstr[2] "" "\n" "Turime %(c)s kūrinių publikuotų Wolne Lektury interneto svetainėje!\n" "Padėkite mums plėtoti biblioteką ir nemokamai bendrinti naujus kūrinius\n" -"remdami mus " -"finansiškai\n" +"remdami mus finansiškai\n" "arba skirdami 1% jūsų pajamų mokesčio.\n" #: templates/info/join_us.html:20 @@ -332,7 +317,8 @@ msgstr "" msgid "More..." msgstr "Daugiau..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "OpenID Prisijungti" @@ -357,12 +343,8 @@ msgstr "Leisti prieigą prie Wolne Lektury interneto svetainės" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Patvirtinkite, kad leistute prieigą prie Wolne Lektury interneto svetainės " -"kaip vartotojas %(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Patvirtinkite, kad leistute prieigą prie Wolne Lektury interneto svetainės kaip vartotojas %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -370,20 +352,15 @@ msgid "Account Connections" msgstr "Paskyros jungtys" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" -msgstr "" -"Galite prisijungti prie jūsų paskyros naudodamiesi šiomis third party " -"paskyromis:" +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "Galite prisijungti prie jūsų paskyros naudodamiesi šiomis third party paskyromis:" #: templates/socialaccount/connections.html:35 msgid "Remove" msgstr "Pašalinti" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "Neturite socialinio tinklo paskyrų prijungtų prie šios paskyros." #: templates/socialaccount/connections.html:46 @@ -397,14 +374,8 @@ msgstr "Prisijungimas atšauktas" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." -msgstr "" -"Nusprendėte atšaukti prisijungimą prie mūsų interneto svetainės naudodamiesi " -"viena iš jūsų egzistuojančių paskyrų. Jei įvyko klaida, prašome pradėti čia " -"sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Nusprendėte atšaukti prisijungimą prie mūsų interneto svetainės naudodamiesi viena iš jūsų egzistuojančių paskyrų. Jei įvyko klaida, prašome pradėti čia sign in." #~ msgid "Listing of all audiobooks" #~ msgstr "Visų audio knygų sąrašas" diff --git a/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.mo index 40392f11a..9f95f9168 100644 Binary files a/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.po index 09fe57967..e0819788e 100644 --- a/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/pl/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: WolneLektury\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-03-16 14:40+0100\n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" "Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: pl\n" @@ -17,23 +17,28 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.6\n" "X-Poedit-Language: Polish\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Zaloguj się" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "Zalogowano jako %(user)s" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Załóż konto" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Zaloguj się, aby kontynuować" @@ -46,89 +51,85 @@ msgid "Page not found" msgstr "Strona nie znaleziona" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Przepraszamy, ale ta strona nie istnieje. Sprawdź czy podałeś dobry adres, " -"lub przejdź do" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Przepraszamy, ale ta strona nie istnieje. Sprawdź czy podałeś dobry adres, lub przejdź do" #: templates/404.html:14 msgid "main page" msgstr "strony głównej" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Błąd serwera" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " msgstr "" -"

      Serwis Wolnelektury.pl jest chwilowo niedostępny. Odwiedź naszego bloga

      \n" -"

      Powiadom administratorów o błędzie.

      " +"

      Serwis Wolnelektury.pl jest chwilowo niedostępny. Odwiedź naszego bloga

      \n" +"

      Powiadom administratorów o błędzie.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Serwis niedostępny" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"Serwis Wolnelektury.pl jest obecnie niedostępny z powodu prac " -"konserwacyjnych." +msgstr "Serwis Wolnelektury.pl jest obecnie niedostępny z powodu prac konserwacyjnych." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Biblioteka internetowa Wolne Lektury" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "Co nowego?" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Ostatnie publikacje" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "Aktualności" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Narzędzia" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Zgłoś błąd lub sugestię" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Pobierz katalog w formacie PDF." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Widget" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Nie znalazłeś/-aś utworu?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Plan publikacji" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "Informacje" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "Polityka prywatności" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "Użyto obrazu:" @@ -136,63 +137,61 @@ msgstr "Użyto obrazu:" msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s darmowy utwór do której masz prawo\n" +" %(c)s darmowy utwór do której masz prawo\n" " " msgstr[1] "" "\n" -" %(c)s darmowe utwory do których masz prawo\n" +" %(c)s darmowe utwory do których masz prawo\n" " " msgstr[2] "" "\n" -" %(c)s darmowych utworów do których " -"masz prawo\n" +" %(c)s darmowych utworów do których masz prawo\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Witaj" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "Hasło" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "E-mail" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 msgid "Social accounts" msgstr "Konta społecznościowe" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Moja półka" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Administracja" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Wyloguj" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Szukaj" @@ -200,55 +199,44 @@ msgstr "Szukaj" msgid "Language versions" msgstr "Wersje językowe" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"Wolne Lektury to projekt prowadzony przez fundację Nowoczesna Polska. \n" -"Reprodukcje cyfrowe wykonane przez Bibliotekę Narodową, Bibliotekę Śląską i Bibliotekę Elbląską z egzemplarzy pochodzących ze zbiorów BN, BŚ i " -"BE.\n" +"Wolne Lektury to projekt prowadzony przez fundację Nowoczesna Polska. \n" +"Reprodukcje cyfrowe wykonane przez Bibliotekę Narodową, Bibliotekę Śląską i Bibliotekę Elbląską z egzemplarzy pochodzących ze zbiorów BN, BŚ i BE.\n" "Hosting: ICM." -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. " -"125, tel/fax: (22) 621-30-17, e-mail: fundacja@nowoczesnapolska.org.pl" +"Fundacja Nowoczesna Polska, 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, tel/fax: (22) 621-30-17, e-mail: fundacja@nowoczesnapolska.org.pl" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Zamknij" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Ładowanie" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "Użytkownik" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Administracja stroną" @@ -273,7 +261,8 @@ msgstr "Importuj książkę" msgid "Forgot Password?" msgstr "Nie pamiętasz hasła?" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 msgid "Sign in using:" msgstr "Zaloguj się używając:" @@ -297,38 +286,27 @@ msgid_plural "" "or transferring 1% of your income tax.\n" msgstr[0] "" "\n" -"W serwisie Wolne Lektury już teraz opublikowany jest %(c)s utwór! Pomóż w " -"rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% " -"podatku.\n" +"W serwisie Wolne Lektury już teraz opublikowany jest %(c)s utwór! Pomóż w rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% podatku.\n" msgstr[1] "" "\n" -"W serwisie Wolne Lektury już teraz opublikowane są %(c)s utwory! Pomóż w " -"rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% " -"podatku.\n" +"W serwisie Wolne Lektury już teraz opublikowane są %(c)s utwory! Pomóż w rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% podatku.\n" msgstr[2] "" "\n" -"W serwisie Wolne Lektury już teraz opublikowanych jest %(c)s utworów! Pomóż " -"w rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% " -"podatku.\n" +"W serwisie Wolne Lektury już teraz opublikowanych jest %(c)s utworów! Pomóż w rozwijaniu biblioteki i uwalnianiu nowych lektur przekazując nam darowiznę lub 1% podatku.\n" #: templates/info/join_us.html:20 msgid "" "Become an editor of Wolne Lektury! Find out if\n" "we're currently working on a reading you're looking for and prepare\n" "a publication by yourself by logging into the Editorial Platform." -msgstr "" -"Zostań redaktorem lub redaktorką Wolnych Lektur! Sprawdź, czy obecnie " -"pracujemy nad publikacją wyszukiwanej przez ciebie lektury i samodzielnie " -"przygotuj publikację logując się na Platformie Redakcyjnej." +msgstr "Zostań redaktorem lub redaktorką Wolnych Lektur! Sprawdź, czy obecnie pracujemy nad publikacją wyszukiwanej przez ciebie lektury i samodzielnie przygotuj publikację logując się na Platformie Redakcyjnej." #: templates/info/join_us.html:23 msgid "More..." msgstr "Więcej..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "Logowanie przez OpenID" @@ -353,11 +331,8 @@ msgstr "Zezwól na dostęp do Wolnych Lektur" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Potwierdź dostęp do Wolnych Lektur jako użytkownik %(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Potwierdź dostęp do Wolnych Lektur jako użytkownik %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -365,19 +340,15 @@ msgid "Account Connections" msgstr "Powiązania konta" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" -msgstr "" -"Możesz się zalogować na swoje konto używając następujących kont zewnętrznych:" +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "Możesz się zalogować na swoje konto używając następujących kont zewnętrznych:" #: templates/socialaccount/connections.html:35 msgid "Remove" msgstr "Usuń" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "Aktualnie do Twojego konta nie są podłączone żadne konta zewnętrzne." #: templates/socialaccount/connections.html:46 @@ -391,13 +362,8 @@ msgstr "Anulowano logowanie" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." -msgstr "" -"Logowanie przy użyciu zewnętrznego konta zostało anulowane. Jeśli był to " -"błąd, przejdź do strony logowania." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Logowanie przy użyciu zewnętrznego konta zostało anulowane. Jeśli był to błąd, przejdź do strony logowania." #~ msgid "Listing of all audiobooks" #~ msgstr "Spis wszystkich audiobooków" @@ -681,8 +647,8 @@ msgstr "" #~ msgid "" #~ "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." #~ msgstr "" -#~ "Audiobooki przygotowane w ramach projektu %(cs)s finansowanego przez " -#~ "%(fb)s." +#~ "Audiobooki przygotowane w ramach projektu %(cs)s finansowanego przez %(fb)" +#~ "s." #~ msgid "Audiobooks were prepared as a part of the %(cs)s project." #~ msgstr "Audiobooki przygotowane w ramach projektu %(cs)s." @@ -902,6 +868,7 @@ msgstr "" #~ "under\n" #~ "a free " #~ "license.\n" + #~ msgid_plural "" #~ "\n" #~ "%(c)s books from public domain " diff --git a/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.mo index 2063970db..af39573a7 100644 Binary files a/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.po index 85dee5f16..d233e2969 100644 --- a/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/ru/LC_MESSAGES/django.po @@ -7,32 +7,37 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-03-15 14:29+0100\n" -"Last-Translator: Aneta\n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Translated-Using: django-rosetta 0.5.6\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Вход" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Зарегистроваться" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Вы должны войти, чтобы продолжaть" @@ -45,89 +50,83 @@ msgid "Page not found" msgstr "Сайт не найден" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"Извините! Этот сайт не существует. Проверьте, пожалуйста, набрали ли вы " -"хороший адрес или зайдите на" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "Извините! Этот сайт не существует. Проверьте, пожалуйста, набрали ли вы хороший адрес или зайдите на" #: templates/404.html:14 msgid "main page" msgstr "главную страницу" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Ошибка сервера" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      The Wolnelektury.pl временно не работает. Тем времeнем зайдите на blog.

      Сообщите нашим администраторам об " -"ошибке.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      The Wolnelektury.pl временно не работает. Тем времeнем зайдите на blog.

      Сообщите нашим администраторам об ошибке.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Сервис недоступен" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"По поводу технической поддрежки сайт The Wolnelektury.pl временно не " -"работает." +msgstr "По поводу технической поддрежки сайт The Wolnelektury.pl временно не работает." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "WolneLektury интернет библиотека" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "Последние публикации" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "Новости" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "Утилиты" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Сообщить об ошибке или предложении" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Скачать каталог в PDF формате." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Виджет" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Потеряли книгу?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "Издательский план" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "Информация" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "Используемые изображения:" @@ -135,64 +134,62 @@ msgstr "Используемые изображения:" msgid "Wolne Lektury" msgstr "на WolneLektury.pl" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s бесплатное чтение, котором Вы " -"вправе пользоваться\n" +" %(c)s бесплатное чтение, котором Вы вправе пользоваться\n" " " msgstr[1] "" "\n" -" %(c)s бесплатные чтения, которыми Вы " -"вправе пользоваться \n" +" %(c)s бесплатные чтения, которыми Вы вправе пользоваться \n" " " msgstr[2] "" "\n" -" %(c)s бесплатных чтений, которыми Вы " -"вправе пользоваться \n" +" %(c)s бесплатных чтений, которыми Вы вправе пользоваться \n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Добро пожаловать" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 #, fuzzy msgid "Social accounts" msgstr "или присоединитесь к пользователям" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Создать полку" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Администрация" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Выход" -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Поиск" @@ -200,57 +197,47 @@ msgstr "Поиск" msgid "Language versions" msgstr "Языковые версии" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tWolne Lektury - это проект под управлением Фонда Молодой Польши .\n" -"\t\t\t\t Цифровые копии создаются " -"Народная Библиотека , Силезская " -"Библиотека and Эльблонгская Библиотека, основанные на ресурсах TNL. \n" +"\t\t\t\tWolne Lektury - это проект под управлением Фонда Молодой Польши .\n" +"\t\t\t\t Цифровые копии создаются Народная Библиотека , Силезская Библиотека and Эльблонгская Библиотека, основанные на ресурсах TNL. \n" "\t\t\t\tHosting EO Networks.\n" "\t\t\t\t" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\tФонд Молодой Польши, 00-514 Варшава, 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Фонд Молодой Польши, 00-514 Варшава, 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" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Закройте" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Погрузка" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Сайт администрации" @@ -275,7 +262,8 @@ msgstr "Импорт книги" msgid "Forgot Password?" msgstr "" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 #, fuzzy msgid "Sign in using:" msgstr "Вход" @@ -302,22 +290,19 @@ msgstr[0] "" "\n" "У нас %(c)s произведение опубликованное на Wolne Lektury\n" "Помогите нам распространить библиотеку и поместить новые бесплатные чтения\n" -"при помощи денежного пожертвования\n" +"при помощи денежного пожертвования\n" "или перевода 1% вашего подоходного налога.\n" msgstr[1] "" "\n" "У нас %(c)s произведения опубликованные на Wolne Lektury\n" "Помогите нам распространить библиотеку и поместить новые бесплатные чтения\n" -"при помощи денежного пожертвования\n" +"при помощи денежного пожертвования\n" "или перевода 1% вашего подоходного налога.\n" msgstr[2] "" "\n" "У нас %(c)s произведений опубликованных на Wolne Lektury\n" "Помогите нам распространить библиотеку и поместить новые бесплатные чтения\n" -"при помощи денежного пожертвования\n" +"при помощи денежного пожертвования\n" "или перевода 1% вашего подоходного налога.\n" #: templates/info/join_us.html:20 @@ -334,7 +319,8 @@ msgstr "" msgid "More..." msgstr "Подробнее..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "" @@ -360,12 +346,8 @@ msgstr "Авторизация доступа к Wolne Lektury" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Подтверждение для авторизации доступа к Wolne Lektury как пользователь " -"%(user)s ." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Подтверждение для авторизации доступа к Wolne Lektury как пользователь %(user)s ." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -373,9 +355,7 @@ msgid "Account Connections" msgstr "" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" +msgid "You can sign in to your account using any of the following third party accounts:" msgstr "" #: templates/socialaccount/connections.html:35 @@ -384,8 +364,7 @@ msgid "Remove" msgstr "убрать" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "" #: templates/socialaccount/connections.html:46 @@ -399,10 +378,7 @@ msgstr "" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." msgstr "" #~ msgid "Listing of all audiobooks" @@ -693,8 +669,8 @@ msgstr "" #~ msgid "" #~ "Audiobooks were prepared as a part of the %(cs)s project funded by %(fb)s." #~ msgstr "" -#~ "Аудиокниги были подготовлены в рамках %(cs)s проектa, финансируемого " -#~ "%(fb)s." +#~ "Аудиокниги были подготовлены в рамках %(cs)s проектa, финансируемого %(fb)" +#~ "s." #~ msgid "Audiobooks were prepared as a part of the %(cs)s project." #~ msgstr "Аудиокниги были подготовлены в рамках %(cs)s проектa." diff --git a/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.mo b/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.mo index aaa0946bc..53802a9f9 100644 Binary files a/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.mo and b/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.mo differ diff --git a/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.po b/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.po index 502bfa3c9..29841e192 100644 --- a/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.po +++ b/apps/wolnelektury_core/locale/uk/LC_MESSAGES/django.po @@ -7,31 +7,36 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-07-19 11:38+0200\n" -"PO-Revision-Date: 2012-05-28 14:09+0100\n" -"Last-Translator: Natalia Kertyczak \n" +"POT-Creation-Date: 2013-04-09 10:42+0200\n" +"PO-Revision-Date: 2013-04-09 10:43+0100\n" +"Last-Translator: Radek Czajka \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: views.py:33 views.py:34 templates/superbase.html:84 +#: views.py:35 +#: views.py:36 +#: templates/superbase.html:86 msgid "Sign in" msgstr "Увійти" -#: views.py:40 views.py:61 +#: views.py:42 +#: views.py:63 #, python-format msgid "Already logged in as user %(user)s" msgstr "Ви вже увійшли як користувач %(user)s" -#: views.py:52 views.py:53 views.py:81 templates/superbase.html:88 +#: views.py:54 +#: views.py:55 +#: views.py:83 +#: templates/superbase.html:90 msgid "Register" msgstr "Зареєструватися" -#: views.py:76 +#: views.py:78 msgid "You have to be logged in to continue" msgstr "Щоб продовжити, увійдіть в свій акаунт." @@ -44,88 +49,83 @@ msgid "Page not found" msgstr "Сторінку не знайдено" #: templates/404.html:14 -msgid "" -"We are sorry, but this page does not exist. Please check if you entered " -"correct address or go to " -msgstr "" -"На жаль, ця сторінка не існує. Будь ласка, перевірте правильність адреси або " -"перейдіть на" +msgid "We are sorry, but this page does not exist. Please check if you entered correct address or go to " +msgstr "На жаль, ця сторінка не існує. Будь ласка, перевірте правильність адреси або перейдіть на" #: templates/404.html:14 msgid "main page" msgstr "головна сторінка" -#: templates/500.html:6 templates/500.html.py:17 +#: templates/500.html:6 +#: templates/500.html.py:17 msgid "Server error" msgstr "Помилка сервера" #: templates/500.html:19 -msgid "" -"

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our " -"blog.

      Inform our administrators about the " -"error.

      " -msgstr "" -"

      Сторінка Wolnelektury.pl тимчасово недоступна. В міжчасі, увійдіть на наш " -"блог.

      Повідомте наших адміністраторів про " -"помилку.

      " +msgid "

      The Wolnelektury.pl site is currently unavailable. Meanwhile, visit our blog.

      Inform our administrators about the error.

      " +msgstr "

      Сторінка Wolnelektury.pl тимчасово недоступна. В міжчасі, увійдіть на наш блог.

      Повідомте наших адміністраторів про помилку.

      " -#: templates/503.html:6 templates/503.html.py:17 +#: templates/503.html:6 +#: templates/503.html.py:17 msgid "Service unavailable" msgstr "Послуга недоступна" #: templates/503.html:19 msgid "The Wolnelektury.pl site is currently unavailable due to maintainance." -msgstr "" -"У зв'язку з технічними роботами сервіс Wolnelektury.pl тимчасово недоступний." +msgstr "У зв'язку з технічними роботами сервіс Wolnelektury.pl тимчасово недоступний." -#: templates/main_page.html:6 templates/main_page.html.py:7 +#: templates/main_page.html:6 +#: templates/main_page.html.py:7 msgid "Wolne Lektury internet library" msgstr "Електронна бібліотека WolneLektury.pl" -#: templates/main_page.html:20 +#: templates/main_page.html:23 msgid "What's new?" msgstr "Що нового?" -#: templates/main_page.html:28 +#: templates/main_page.html:31 msgid "Recent publications" msgstr "останні публікації" -#: templates/main_page.html:38 +#: templates/main_page.html:41 msgid "News" msgstr "Новості" -#: templates/main_page.html:46 +#: templates/main_page.html:50 msgid "Utilities" msgstr "утиліти" -#: templates/main_page.html:49 +#: templates/main_page.html:53 msgid "Report a bug or suggestion" msgstr "Повідомити про помилку або надіслати свої пропозиції" -#: templates/main_page.html:53 +#: templates/main_page.html:56 msgid "Download the catalogue in PDF format." msgstr "Завантажити каталог у форматі PDF." -#: templates/main_page.html:55 +#: templates/main_page.html:58 msgid "Widget" msgstr "Віджет" -#: templates/main_page.html:56 +#: templates/main_page.html:59 msgid "Missing a book?" msgstr "Не знайшли книжки?" -#: templates/main_page.html:57 templates/publish_plan.html:4 +#: templates/main_page.html:60 +#: templates/publish_plan.html:4 #: templates/publish_plan.html.py:8 msgid "Publishing plan" msgstr "План публікації" -#: templates/main_page.html:64 +#: templates/main_page.html:71 msgid "Information" msgstr "інформація" -#: templates/main_page.html:88 +#: templates/main_page.html:73 +msgid "Privacy policy" +msgstr "" + +#: templates/main_page.html:98 msgid "Image used:" msgstr "Використано графіку:" @@ -133,63 +133,61 @@ msgstr "Використано графіку:" msgid "Wolne Lektury" msgstr "Wolne Lektury" -#: templates/superbase.html:54 +#: templates/superbase.html:56 #, python-format msgid "" "\n" -" %(c)s free reading you have right to\n" +" %(c)s free reading you have right to\n" " " msgid_plural "" "\n" -" %(c)s free readings you have right to\n" +" %(c)s free readings you have right to\n" " " msgstr[0] "" "\n" -" %(c)s безкоштовний текст, до якого " -"маєш право\n" +" %(c)s безкоштовний текст, до якого маєш право\n" " " msgstr[1] "" "\n" -" %(c)s безкоштовні тексти, до яких " -"маєш право\n" +" %(c)s безкоштовні тексти, до яких маєш право\n" " " msgstr[2] "" "\n" -" %(c)s безкоштовні тексти, до яких " -"маєш право\n" +" %(c)s безкоштовні тексти, до яких маєш право\n" " " -#: templates/superbase.html:65 +#: templates/superbase.html:67 msgid "Welcome" msgstr "Ласкаво просимо" -#: templates/superbase.html:71 templates/user.html:12 +#: templates/superbase.html:73 +#: templates/user.html:12 msgid "Password" msgstr "Пароль" -#: templates/superbase.html:72 templates/user.html:13 +#: templates/superbase.html:74 +#: templates/user.html:13 msgid "E-mail" msgstr "Електронна адреса" -#: templates/superbase.html:73 templates/user.html:14 +#: templates/superbase.html:75 +#: templates/user.html:14 msgid "Social accounts" msgstr "Облікові записи в соціальних мережах" -#: templates/superbase.html:76 +#: templates/superbase.html:78 msgid "My shelf" msgstr "Моя полиця" -#: templates/superbase.html:78 +#: templates/superbase.html:80 msgid "Administration" msgstr "Адміністрація" -#: templates/superbase.html:80 +#: templates/superbase.html:82 msgid "Logout" msgstr "Вийти " -#: templates/superbase.html:110 +#: templates/superbase.html:112 msgid "Search" msgstr "Пошук" @@ -197,57 +195,47 @@ msgstr "Пошук" msgid "Language versions" msgstr "Мовні версії" -#: templates/superbase.html:166 +#: templates/superbase.html:167 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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\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, Biblioteka Śląska and Biblioteka Elbląska, based on TNL, BŚ and BE resources.\n" "\t\t\t\tHosting: ICM.\n" "\t\t\t\t" msgstr "" "\n" -"\t\t\t\tWolne Lektury це проект Фонду Сучасна Польща (Fundacja Nowoczesna Polska).\n" -"\t\t\t\tЦифрові репродукції виконані Національною Бібліотекою, Сілезькою бібліотекою та Ельблонзькою бібліотекою, на основі їх засобів.\n" +"\t\t\t\tWolne Lektury це проект Фонду Сучасна Польща (Fundacja Nowoczesna Polska).\n" +"\t\t\t\tЦифрові репродукції виконані Національною Бібліотекою, Сілезькою бібліотекою та Ельблонзькою бібліотекою, на основі їх засобів.\n" "\t\t\t\tХостинг: ICM.\n" "\t\t\t\t" -#: templates/superbase.html:173 +#: templates/superbase.html:174 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\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 "" "\n" -"\t\t\t\tFundacja Nowoczesna Polska (Фонд Сучасна Польща), 00-514 Warszawa, " -"ul. Marszałkowska 84/92 lok. 125, тел/факс: (22) 621-30-17\n" -" eлектронна пошта: fundacja@nowoczesnapolska.org.pl\n" +"\t\t\t\tFundacja Nowoczesna Polska (Фонд Сучасна Польща), 00-514 Warszawa, ul. Marszałkowska 84/92 lok. 125, тел/факс: (22) 621-30-17\n" +" eлектронна пошта: fundacja@nowoczesnapolska.org.pl\n" "\t\t\t\t" -#: templates/superbase.html:190 +#: templates/superbase.html:191 msgid "Close" msgstr "Закрити" -#: templates/superbase.html:192 +#: templates/superbase.html:193 msgid "Loading" msgstr "Завантажується" -#: templates/user.html:5 templates/user.html.py:9 +#: templates/user.html:5 +#: templates/user.html.py:9 msgid "User" msgstr "Користувач" -#: templates/admin/base_site.html:4 templates/admin/base_site.html.py:7 +#: templates/admin/base_site.html:4 +#: templates/admin/base_site.html.py:7 msgid "Site administration" msgstr "Адміністрація сайту" @@ -272,7 +260,8 @@ msgstr "Імпортувати книжку" msgid "Forgot Password?" msgstr "Забули пароль?" -#: templates/auth/login.html:15 templates/auth/register.html:7 +#: templates/auth/login.html:15 +#: templates/auth/register.html:7 msgid "Sign in using:" msgstr "Увійти за допомогою:" @@ -298,22 +287,19 @@ msgstr[0] "" "\n" "На сайті Wolne Lektury опубліковано вже %(c)s твір!\n" "Допоможіть нам розвивати бібліотеку і надавати доступ до нових творів - \n" -"перекажіть нам " -"благодійний внесок\n" +"перекажіть нам благодійний внесок\n" "або 1% вашого податку на прибуток..\n" msgstr[1] "" "\n" "На сайті Wolne Lektury опубліковано вже %(c)s творів!\n" "Допоможіть нам розвивати бібліотеку і надавати доступ до нових творів - \n" -"перекажіть нам " -"благодійний внесок\n" +"перекажіть нам благодійний внесок\n" "або 1% вашого податку на прибуток..\n" msgstr[2] "" "\n" "На сайті Wolne Lektury опубліковано вже %(c)s твір!\n" "Допоможіть нам розвивати бібліотеку і надавати доступ до нових творів - \n" -"перекажіть нам " -"благодійний внесок\n" +"перекажіть нам благодійний внесок\n" "або 1% вашого податку на прибуток..\n" #: templates/info/join_us.html:20 @@ -330,7 +316,8 @@ msgstr "" msgid "More..." msgstr "Більше..." -#: templates/openid/login.html:6 templates/openid/login.html.py:10 +#: templates/openid/login.html:6 +#: templates/openid/login.html.py:10 msgid "OpenID Sign In" msgstr "Увійти за допомогою OpenID" @@ -355,12 +342,8 @@ msgstr "Авторизувати доступ до Wolne Lektury" #: templates/piston/authorize_token.html:10 #, python-format -msgid "" -"Confirm to authorize access to Wolne Lektury as user %(user)s." -msgstr "" -"Підтвердити, щоб авторизувати доступ до Wolne Lektury від імені користувача " -"%(user)s." +msgid "Confirm to authorize access to Wolne Lektury as user %(user)s." +msgstr "Підтвердити, щоб авторизувати доступ до Wolne Lektury від імені користувача %(user)s." #: templates/socialaccount/connections.html:5 #: templates/socialaccount/connections.html:8 @@ -368,19 +351,15 @@ msgid "Account Connections" msgstr "Пов'язані акаунти" #: templates/socialaccount/connections.html:11 -msgid "" -"You can sign in to your account using any of the following third party " -"accounts:" -msgstr "" -"Можете увійти у Ваш акаунт за допомогою інших облікових записів таких, як:" +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "Можете увійти у Ваш акаунт за допомогою інших облікових записів таких, як:" #: templates/socialaccount/connections.html:35 msgid "Remove" msgstr "Видалити" #: templates/socialaccount/connections.html:43 -msgid "" -"You currently have no social network accounts connected to this account." +msgid "You currently have no social network accounts connected to this account." msgstr "У Вас немає зараз жодних облікових записів пов'язаних з цим акаунтом." #: templates/socialaccount/connections.html:46 @@ -394,14 +373,8 @@ msgstr "Реєстрацію скасовано" #: templates/socialaccount/login_cancelled.html:14 #, python-format -msgid "" -"You decided to cancel logging in to our site using one of your exisiting " -"accounts. If this was a mistake, please proceed to sign in." -msgstr "" -"Реєстрацію на сайті за допомогою існуючого облікового запису було скасовано. " -"Якщо це помилка, перейдіть до сторінки реєстрації." +msgid "You decided to cancel logging in to our site using one of your exisiting accounts. If this was a mistake, please proceed to sign in." +msgstr "Реєстрацію на сайті за допомогою існуючого облікового запису було скасовано. Якщо це помилка, перейдіть до сторінки реєстрації." #~ msgid "Listing of all audiobooks" #~ msgstr "Список усіх аудіокниг" diff --git a/apps/wolnelektury_core/static/css/error.css b/apps/wolnelektury_core/static/css/error.css deleted file mode 100644 index 831573427..000000000 --- a/apps/wolnelektury_core/static/css/error.css +++ /dev/null @@ -1,83 +0,0 @@ - -body { -font-family: verdana, arial, sans-serif; -margin: 2em; -font-size: 100%; -} - - - - -h1 { -font-size: 300%; -font-weight: bold; -margin-top: 30px; -} - -h1,h2 { -margin-bottom: 0; -} - -h2 { -font-size: 100%; -font-weight: bold; -margin-top: 1em; -} - -p { -width: 450px; -margin-top: 0.5em; -} - -img { - border: none; -} - - #whoiam { - text-transform: uppercase; - letter-spacing: 0.2em; - font-size: 150%; - margin-bottom: 0.8em; -} - -.howto { - - color: gray; - font-size: 80% -} - -#contact h2 { -margin-top: 0.5em; -} - - -.haj { - background-color: #ffc; -} - -#urle { -margin-top: 2.3em; -} - -/* -LINKS -*/ - -a:link { -color: #037; -text-decoration: underline; -} - -a:visited { -color: #636; -} - -a:active { -color: #900; -text-decoration: none; -} - -a:hover { -color: #d46400; -} - diff --git a/apps/wolnelektury_core/static/css/jquery.autocomplete.css b/apps/wolnelektury_core/static/css/jquery.autocomplete.css deleted file mode 100644 index 434de139d..000000000 --- a/apps/wolnelektury_core/static/css/jquery.autocomplete.css +++ /dev/null @@ -1,36 +0,0 @@ -.ac_results { - padding: 0px; - border: 0.1em solid #999; - background-color: #FFF; - overflow: hidden; - z-index: 99999; -} - -.ac_results ul { - width: 100%; - list-style-position: outside; - list-style: none; - padding: 0; - margin: 0; -} - -.ac_results li { - margin: 0; - padding: 0.2em 0.5em; - cursor: default; - display: block; - overflow: hidden; -} - -.ac_loading { - background: white url(/static/img/indicator.gif) right center no-repeat; -} - -.ac_odd { - background-color: #EEE; -} - -.ac_over { - background-color: #0A246A; - color: #FFF; -} diff --git a/apps/wolnelektury_core/static/css/master.css b/apps/wolnelektury_core/static/css/master.css deleted file mode 100644 index 26c13cc71..000000000 --- a/apps/wolnelektury_core/static/css/master.css +++ /dev/null @@ -1,1220 +0,0 @@ -body { - margin: 0 2em 2em 2em; - font: 70% Verdana, Arial, Helvetica, sans-serif; - line-height: 1.5em; - background: #FFF url(/static/img/bg.png) repeat-x; - color: #2F4110; -} - -#header { - margin-top: -20px; -} - -img { - border: none; -} - -a { - color: #295158; - text-decoration: none; -} - -a:hover, a:active { - text-decoration: underline; -} - -a.banner { - display: block; - white-space: nowrap; -} -a.banner:hover { - text-decoration: none; -} - -input { - font: 1em Verdana, Arial, Helvetica, sans-serif; -} - -h1 { - font: normal normal bold 1.75em Arial, sans-serif; - color: #2F4110; - margin: 0.55em 0 0 0; -} - -h2 { - font-size: 1.2em; - font-weight: bold; - color: #2F4110; - margin: 0; -} - -h3 { - font-size: 1.15em; - font-weight: bold; - margin: 2em 0 .5em 0; - color: #2F4110; -} - -em { -} - -hr { - border: 0; - border-top: 1px solid #2F4110; - margin: 2em 0; - height: 0; -} - -.clearboth { - clear: both; -} - -.blur { - color: #777; -} - -/* ================================== */ -/* = Header with logo and user-info = */ -/* ================================== */ -#header { - position: relative; - margin-top: 1.5em; -} - -#header #logo { - float: left; -} -#header #logo img { - margin-bottom: -1.25em; -} -#header a.logo { - display:block; - color: #777; -} - -#tagline { - color: #777; - position: absolute; -} - -#logo a:hover { - text-decoration: none; -} - -#header #user-info { - margin: 0 0 0 auto; - width: 40em; - text-align: right; -} - -#site-description { - margin-top: -1.5em; - height:4.5em; - overflow: hidden; - float: right; - width: 42em; - text-align: right; - color: #777; -} - -.lang-menu { - margin-right: 0.7em; - line-height: 24px; -} - -.lang-menu button { - color: blue; - border: none; - border-right: 1px solid gray; - -moz-border-radius: 2px; - background: inherit; - cursor: pointer; - padding: 0.2em 0.5em; - font-size: 10px; -} - -.lang-menu button:hover { - color: blue; - text-decoration: underline; -} - -.lang-menu button.active { - color: black; - text-decoration: none; -} - -.lang-menu button.last { - border-right: none; -} - -#lang-menu-items { - z-index: 1; -} - -/* ======================== */ -/* = Footer with sponsors = */ -/* ======================== */ -#footer { - border-top: 0.1em solid #999; - color: #777; - font-size: 0.8em; - padding-top: 0.5em; - margin: 2em 0 0 0; -} - -#footer p { - margin: 0; -} - -#footer a { - color: #999; - text-decoration: underline; -} - - -/* =============== */ -/* = Search form = */ -/* =============== */ -#search-form { - margin: 0.5em 0; - padding: 0.5em; - background-color: rgb(132, 191, 42); -} - -#searchContainer { - width: 100%; - min-height: 65px; - background-color: rgb(132, 191, 42); - padding: 0px 5px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - border-bottom: 0.15em solid #7B9C2D; - border-right: 0.15em solid #7B9C2D; -} - -#searchContainer #search-form { - padding: 0; - margin: 0; -} - -#search-form p { - margin: 0em 0 0 0; -} - -#search-form ol { - margin: 0; - padding: 0; -} - -#search-form li { - margin: 2px 0 0 5px; - padding: 0; - list-style: none; - display: block; - float: left; - /*margin-left: 5px;*/ -} - -#search-form li.category, #search-form li.book-title { - padding: 0.2em 0.5em 0.2em 0.5em; - background-color: rgb(242, 163, 15); - border: 1px solid #BA8722; - border-right: 1px solid #555; - border-bottom: 1px solid #555; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - margin-right: 0.25em; -} - -#search-form li.book-title { - background-color: #DDD; - border: 1px solid #999; - border-right: 1px solid #555; - border-bottom: 1px solid #555; -} - -#search-form input[type=submit] { - color: #444; -} - -.ac_input { - width: 300px; - border: 0; -} - -p .ac_input { - width: 28em; -} - -#searchSubmit { - float: left; - margin-top: 10px; - height: 33px; -} -/* ================== */ -/* = Search matches = */ -/* ================== */ - -.matches li:first-letter { - text-transform: uppercase; -} - -/* ============== */ -/* = Search bar = */ -/* ============== */ - -.collections a { - color: white; - margin: 0 0.5em; -} - - - -/* ============= */ -/* = Tags list = */ -/* ============= */ -#intro { - margin: 0 0 2.5em 0; -} - -#tags-description { - color: #777; - margin: 0 0.5em -0.75em 0.5em; -} - -#main-page #tags-list { - margin-right: 33%; -} - -#categories-list ul, #themes-list ul { - -moz-column-width: 12em; - -webkit-column-width: 12em; - column-width: 12em; -} - -#tags-list { - margin-top: 1em; - padding: 1em; - background-color: #FBF9E7; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - border-bottom: 0.15em solid #E3D888; - border-right: 0.15em solid #E3D888; -} - -#lesmianator #tags-list, -#tagged-object-list #tags-list, #book-detail #tags-list { - margin-left: 39em; -} - -#book-info, #categories-list { - float: left; - width: 47.5%; -} - -#themes-list { - margin-left: 52.5%; -} - -#tagged-object-list #categories-list, #book-detail #book-info { - width: 12em; -} - -#book-detail #formats .change-sets { - margin-right: 0.5em; -} -/* -#formats .wrap ul { - margin: 0; - padding: 0; -} - -#formats .wrap li { - display: block; - width: 100%; - height: 1.9em; - background-color: #F2F2F2; - border: 1px solid #EEE; - text-align: center; -} -*/ -#formats .wrap .header { - display: block; - width: 100%; - height: 1.9em; - background-color: #EEE; - border-bottom: 1px solid #EEE; - margin: 0; - padding-bottom: 2px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - color:#2F4110; - margin-top: 40px; -} - -.audiotabs span.active { - background-color:#FFF; -} - -.audiotabs span { - display: block; - height: 1.6em; - background-color:#EEE; - width: 80px; - text-align: center; - padding: 2px 0; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - color: #2F4110; - font-weight: bold; - float:left; - cursor: pointer; - border: 1px solid #DDD; -} - -#formats .wrap .header span.desc { - display: block; - height: 1.6em; - background-color: #EEE; - width: 100px; - text-align: center; - padding: 2px 0; - color: #2F4110; - font-weight: bold; - float:left; - border: solid #eee; - border-width: 1px; -} - -.audiotabs { - float: right; -} - - -#formats .wrap .online { - display: block; - width: 100%; - background-color: #EEE; - margin: 0.5em 0 1em 0; - padding: 1em 0; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - text-align: center; - font-size: 1.6em; -} - -#formats .wrap div.download { - text-align: center; - margin-bottom: 10px; -} -#formats .wrap div.download img { - padding: 0 10px 0 10px; -} - -#formats .wrap div.download .custom-pdf { - text-align: left; -} - - -#czytamysluchajac { - margin-top: 2.5em; -} - -#czytamy-sluchajac-info { - width: 400px; - height: 80px; -} - -#czytamy-sluchajac-info p { - margin-left: 170px; - padding-top: 1em; - padding-bottom: 0em; -} -div.audiobooks li { - list-style-type: none; -} - -div.audiobooks li.mp3Player { - margin-bottom: 1em; -} - -div.audiobooks { - padding: 15px; - float: left; -} - -.audiobook-list { - float: left; width: 270px; - position: relative; - left: 10px; -} - -#speaker { - float: left; - padding:5px 10px; -} - -#formats #czytamysluchajac-logo { - background: white; - text-align: left; - float: left; - width: 140px; - height: 62px; - -moz-border-radius: 0px; - -webkit-border-radius: 0px; - border-radius: 0px; - margin: 0px 20px 10px 10px; -} - -#tagged-object-list #themes-list, #book-detail #themes-list { - margin-left: 14em; -} - -#tags-list ol, #tags-list ul { - padding: 0; - margin: 0.3em 0 1.2em 0; -} - -#tags-list li { - list-style: none; - padding: 0; - margin: 0; -} - -#books-list { - width: 38em; - float: left; -} - -.all-tags { - display: none; -} - -div.shown-tags p, div.all-tags p { - margin: -1em 0 1em 0; - text-align: right; -} - -.show-all-tags, .hide-all-tags { - text-decoration: underline; - padding-right: 1em; -} - -.subcategories { - display: block; - padding-left: 2em; - padding-bottom: 0.5em; -} - - -/* ============== */ -/* = Propaganda = */ -/* ============== */ -#propaganda { - float: right; - width: 30%; - margin: 0; - padding: 2em 0.5em 0.5em; -} - - -/* ===================== */ -/* = Other info = */ -/* ===================== */ -#latest-blog-posts { - padding: 0.5em; - float: left; - width: 30%; -} - -#latest-blog-posts ol { - padding: 0 0 0 1.5em; - margin: 1em 0 0 0; - list-style-type: square; - color: #D13628; -} - -#you-can-help { - float: right; - padding: 0.5em; - width: 30%; -} - -#about-us { - padding: 0.5em; - margin-left: 35%; - margin-right: 35%; -} - -/* =============== */ -/* = Description = */ -/* =============== */ -#description { - margin-top: 0.5em; - overflow: hidden; -} -#description-short { - display:none; -} - -#description .meta { - margin: 0.5em; - width: 18em; - list-style: none; - float: right; -} - -#description dt { - font-weight: bold; - display: inline; -} - -#description dd { - margin: 0; - display: inline; -} - -#toggle-description, #tagged-object-list .pagination, #book-detail .pagination { - width: 100%; - height: 1.5em; - background-color: #EEE; - margin-top: 0.5em; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - text-align: center; -} - -#toggle-description p { - margin: 0; - padding: 0; - color: #999; -} - -#download-shelf { - display: block; - width: 100%; - height: 1.5em; - background-color: #EEE; - margin-top: 0.5em; - padding: 0.5em 0; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - text-align: center; - outline: none; -} - -#download-shelf-menu { - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - border: 3px solid #EEE; - padding: 5px; - margin-top: -5px; -} - -#download-formats-form li { - float: left; - height: 2em; -} - -#download-formats-form input { - float: left; -} - -#download-formats-form label { - display: block; - background-color: #EEE; - float: left; - width: 8em; - margin-right: 0.5em; - margin-top: -0.5em; - padding-top: 0.5em; - padding-bottom: 0.75em; -} - -#download-formats-form li { - margin: 0; - padding: 0; - list-style: none; -} - -#download-formats-form em { - color: #999; - background-color: #FFF; -} - -#download-formats-form em strong { - color: #000; - font-weight: normal; -} - -#download-formats-form-submit { - margin-left: 0.5em; - -} - -#download-formats-form #download-formats-form-submit-li { - margin-top: 0.75em; -} - -#download-formats-form-cancel { - color: #900; -} - -#toggle-share-shelf { - display: block; - width: 100%; - height: 1.5em; - background-color: #EEE; - margin-top: 0.5em; - padding: 0.5em 0; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - text-align: center; - outline: none; -} -#toggle-share-shelf p { - margin:0; -} - -#share-shelf { - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - border: 3px solid #EEE; - padding: 5px; - margin-top: -5px; -} -#share-shelf input { - width: 100%; -} - - -/* ============================ */ -/* = Books and fragments list = */ -/* ============================ */ -#books-list { - margin: 0; -} - -#books-list ol { - list-style: none; - padding: 0; - margin: 1.5em 0; -} - -.book { - padding: 0.5em; - background-color: #FFF; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; -} - -.fragment { - border-bottom: 0.1em solid #EEE; - margin-top: 0.5em; -} - -.fragment-text, .fragment-short-text { - padding: 0.5em; - background-color: #FFF; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; -} - -.fragment-metadata { - padding: 0.5em 0.5em 1.5em 0.5em; - float: right; -} - -.change-sets { - float: right; -} - -.change-sets a { - padding: 0.2em; - margin: 0.3em; - border: 0.1em solid #EEE; - background-color: #F9F9F9; -} - -.book-description { - margin-left: 3.5em; -} - -.book-thumbnail, .book-parent-thumbnail { - background: transparent url(/static/img/book.png) no-repeat 0 0; - width: 3em; - height: 3em; - float: left; -} - -.book-parent-thumbnail { - background: transparent url(/static/img/book-parent.png) no-repeat 0 0; -} - - -/* =============== */ -/* = Simple form = */ -/* =============== */ -.cuteform ol, .cuteform ul { - padding: 0; - margin: 0; - list-style: none; -} - -.cuteform ol li, .cuteform ul li { - margin-top: 0.7em; -} - -.cuteform label { - display: block; -} - -.cuteform span.help-text { - display: block; - font-size: 0.8em; - color: #999; -} - -.cuteform .error { - color: #BF3024; - display: block; -} - -/* ================ */ -/* = Modal Window = */ -/* ================ */ -.jqmOverlay { background-color: #000; } - -#set-window { - position: absolute; - display: none; - width: 32em; - background-color: transparent; - margin-top: -0.5em; - margin-left: -1em; -} - -#set-window div.header { - background-color: #FFF; - border-right: 0.25em solid #DDD; - width: 4em; - padding: 0.5em 1em 0.5em 1em; -} - -#set-window div.target { - background-color: #FFF; - border-right: 0.3em solid #DDD; - border-bottom: 0.3em solid #DDD; - padding: 1em; -} - -#login-register-window { - position: absolute; - display: none; - width: 24em; - background-color: transparent; - margin-top: -0.5em; - margin-left: 1em; -} - -#login-register-window div.header { - background-color: #FFF; - border-right: 0.3em solid #DDD; - width: 4em; - right: 0; - left: auto; - padding: 0.5em 1em 0.5em 1em; - float: right; - text-align: center; -} - -#login-register-window div.target { - clear: both; - background-color: #FFF; - border-right: 0.3em solid #DDD; - border-bottom: 0.3em solid #DDD; - padding: 1em; -} - -#user-shelves-window { - position: absolute; - display: none; - width: 28em; - background-color: transparent; - margin-top: -0.5em; - margin-left: 1em; -} - -#user-shelves-window div.header { - background-color: #FFF; - border-right: 0.3em solid #DDD; - width: 4em; - right: 0; - left: auto; - padding: 0.5em 1em 0.5em 1em; - float: right; - text-align: center; -} - -#user-shelves-window div.target { - clear: both; - background-color: #FFF; - border-right: 0.3em solid #DDD; - border-bottom: 0.3em solid #DDD; - padding: 1em; -} - -.shelf-list { - list-style: none; - padding: 0; -} - -.shelf-list li { - padding: 0.25em; - margin: 0 -0.25em; -} - -.shelf-list a.delete-shelf { - color: #900; - float: right; - padding: 0.25em 0.25em 0.25em 1em; - margin: -0.25em; -} - -.shelf-list a.delete-shelf:active, .shelf-list a.delete-shelf:hover { - color: #FFF; - background-color: #900; - text-decoration: none; -} - -#suggest-window { - position: absolute; - display: none; - width: 35em; - background-color: transparent; - margin-top: -0.5em; - margin-left: 1em; -} - -#suggest-window div.header { - background-color: #FFF; - border-right: 0.3em solid #DDD; - width: 4em; - right: 0; - left: auto; - padding: 0.5em 1em 0.5em 1em; - float: right; - text-align: center; -} - -#suggest-window div.target { - clear: both; - background-color: #FFF; - border-right: 0.3em solid #DDD; - border-bottom: 0.3em solid #DDD; - padding: 1em; -} -#suggest-form textarea { - width: 30em; -} - - -.big-top-link { - margin-top: .6em; - font-size: 2em; - /*max-width: 15em;*/ - line-height: 1.2em; -} - -#suggest-publishing-window { - position: absolute; - display: none; - width: 45em; - background-color: transparent; - margin-top: -0.5em; - margin-left: 1em; -} - -#suggest-publishing-window div.header { - background-color: #FFF; - border-right: 0.3em solid #DDD; - width: 4em; - right: 0; - left: auto; - padding: 0.5em 1em 0.5em 1em; - float: right; - text-align: center; -} - -#suggest-publishing-window div.target { - clear: both; - background-color: #FFF; - border-right: 0.3em solid #DDD; - border-bottom: 0.3em solid #DDD; - padding: 1em; -} -#suggest-publishing-form textarea { - width: 40em; - height: 6em; -} - -/* ======================== */ -/* = Alphabetic book list = */ -/* ======================== */ -#book-list { - padding-left: 50px; -} -#book-list-nav { - position: absolute; - right: 50px; - width: 200px; - border-left: 1px #cfcfcf solid; - padding: 10px; - font-size: 1.2em; -} - -#book-list-nav ul { - list-style-type: none; - margin: 5px; - padding: 0; -} - -.book-list-show-index { - display: none; - margin: 0; - padding: 0; -} - - -#book-a-list #book-list ol { - padding-left: 1em; - margin: 0.3em 0 1.2em 0; - list-style: none; -} - -#book-a-list #book-list h2 a { - color: black; -} - -#book-list-up { - position: fixed; - bottom: 50px; - right: 50px; - border-left: 1px #cfcfcf solid; - padding: 10px; - background-color: white; -} - -#top-message { - background-color: #2F4110; - color: #FFF; - margin: 0 -2em; - padding: 0 2.5em; - line-height: 2em; -} - -#top-message a { - color: #AAA; -} - - -/* =========== */ -/* = Columns = */ -/* =========== */ -.column-left { - width: 37em; - float: left; - margin-top: 1em; -} - -.column-right { - margin-left: 40em; - margin-top: 1em; -} - -.see-more { - text-align: right; -} - -.remove-from-shelf { - float: right; - padding: 0.2em; - margin: 0.3em; - color: #900; -} - -.remove-from-shelf:active, .remove-from-shelf:hover { - color: #FFF; - background-color: #900; - text-decoration: none; -} - -/* =========== */ -/* = Lessons = */ -/* =========== */ -#lessons { - margin-top: 2.5em; -} - -#document-list { - width: 380px; - float: left; -} - -#document-list ol { - margin: 0; - padding: 0; - list-style: none; -} - -#document-list li a { - padding: 0.5em; - background-color: #FFF; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; -/* font-size: 1.2em;*/ - font-weight: bold; - width: 330px; - margin-bottom: 0.25em; - display: block; -} - -#document-list ul { - padding-left: 30px; - list-style: disc; -} - -#document-list li { - padding: 5px; -} - -#document-list li li a { - width: 300px; -} - -#document-list li a:hover, #document-list li a.active { - text-decoration: none; - background-color: #EEE; -} - -#document-list-body #document-detail { - margin-left: 390px; -} - -#document-detail { - width: 480px; -} - -#document-detail h2 { - margin: 0.75em 0 0.75em 0; -} - -#document-list-body #document-detail .download { - float: right; - margin: 0; - padding: 0 -} - -#document-list .download-doc { - display: none; - color: #00F; -} - -/* ====================== */ -/* = One percent banner = */ -/* ====================== */ -#onepercent-banner { - color: #FFF; - margin: 0 -1.1em; - padding: 0 1.1em; - vertical-align: middle; - background-color: #FF6B3C; - height: 60px; - font-size: 1.8em; - line-height: 1.5em; - position: relative; -} - -#onepercent-text, #onepercent-line:visited, #onepercent-text:hover, #onepercent-text:active { - display: block; - line-height: 60px; - color: #FFF; - text-decoration: none; -} - -#onepercent-text strong { - font-weight: normal; - text-decoration: underline; -} - -#onepercent-see-more, #onepercent-see-more:visited, #onepercent-see-more:hover, #onepercent-see-more:active { - position: absolute; - right: 2em; - width: 9em; - text-align: right; - bottom: 0; - font-size: 12px; - color: #FFF; - text-decoration: none; -} - -#createNewShelf { - display: none; -} - -.widget-code { - overflow: hidden; -} - -#presentation-frame { - border: 0px none white; -} - - -/* dictionary */ - -.dictionary-note-source { - margin-top: -1em; -} - -#footnotes .pagination { - margin-top: 1em; -} - - -/* report */ -.stats td { - vertical-align: top; -} - -/* ============ */ -/* = Pictures = */ -/* ============ */ - - -#picture-list .picture .title { - font-weight: bold; -} - -#picture-list .picture { - background-color: white; - padding: 0.8em; - margin: 0.8em; - border: black 1px solid; - width: 600px; -} - diff --git a/apps/wolnelektury_core/static/css/master.plain.css b/apps/wolnelektury_core/static/css/master.plain.css deleted file mode 100644 index 62888a4dc..000000000 --- a/apps/wolnelektury_core/static/css/master.plain.css +++ /dev/null @@ -1,125 +0,0 @@ -/* =================================================== */ -/* = Common elements: headings, paragraphs and lines = */ -/* =================================================== */ -.fragment h1 { - font-size: 3em; - margin: 1.5em 0; - text-align: center; - line-height: 1.5em; - font-weight: bold; -} - -.fragment h2 { - font-size: 2em; - margin: 1.5em 0 0; - font-weight: bold; - line-height: 1.5em; -} - -.fragment h3 { - font-size: 1.5em; - margin: 1.5em 0 0; - font-weight: normal; - line-height: 1.5em; -} - -.fragment h4 { - font-size: 1em; - margin: 1.5em 0 0; - line-height: 1.5em; -} - -.fragment p { - margin: 0; -} - -/* ======================== */ -/* = Footnotes and themes = */ -/* ======================== */ -.theme-begin { - display: none; -} - -.annotation { - display: none; -} - - -/* ============= */ -/* = Numbering = */ -/* ============= */ -.anchor { - display: none; -} - - -/* =================== */ -/* = Custom elements = */ -/* =================== */ -span.author { - font-size: 0.75em; - display: block; - line-height: 1.5em; - margin-bottom: 0.25em; -} - -span.collection { - font-size: 0.75em; - display: block; - line-height: 1.5em; - margin-bottom: -0.25em; -} - -span.subtitle { - font-size: 0.75em; - display: block; - line-height: 1.5em; - margin-top: -0.25em; -} - -div.didaskalia { - font-style: italic; - margin: 0.5em 0 0; -} - -div.kwestia { - margin: 0.5em 0 0; -} - -div.stanza { - margin: 1.5em 0 0; -} - -div.kwestia div.stanza { - margin: 0; -} - -p.paragraph { - text-align: justify; - margin: 1.5em 0 0; -} - -p.motto { - text-align: justify; - font-style: italic; - margin: 1.5em 0 0; -} - -p.motto_podpis { - font-size: 0.875em; -} - -/*div.fragment { - border-bottom: 0.1em solid #999; - padding-bottom: 1.5em; -}*/ - -div.note p, div.note p.paragraph { - text-align: right; - font-style: italic; -} - -hr.spacer { - height: 3em; - visibility: hidden; -} diff --git a/apps/wolnelektury_core/templates/admin/catalogue/book/change_list.html b/apps/wolnelektury_core/templates/admin/catalogue/book/change_list.html index 0ec95b24d..9f1b8cbf4 100644 --- a/apps/wolnelektury_core/templates/admin/catalogue/book/change_list.html +++ b/apps/wolnelektury_core/templates/admin/catalogue/book/change_list.html @@ -2,9 +2,9 @@ {% load i18n %} {% block content %} - + {% csrf_token %}

      {{ block.super }} -{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/apps/wolnelektury_core/templates/auth/login.html b/apps/wolnelektury_core/templates/auth/login.html index 6d71cd5b4..671f32a5a 100644 --- a/apps/wolnelektury_core/templates/auth/login.html +++ b/apps/wolnelektury_core/templates/auth/login.html @@ -7,7 +7,7 @@
        {{ form.as_ul }} -
      1. {% trans "Forgot Password?" %}
      2. +
      3. {% trans "Forgot Password?" %}
      diff --git a/apps/wolnelektury_core/templates/auth/login_register.html b/apps/wolnelektury_core/templates/auth/login_register.html index b78317de2..64b0b8858 100755 --- a/apps/wolnelektury_core/templates/auth/login_register.html +++ b/apps/wolnelektury_core/templates/auth/login_register.html @@ -8,7 +8,7 @@

      {% trans "or register" %}:

      -
      {% csrf_token %} {% render_honeypot_field %} diff --git a/apps/wolnelektury_core/templates/info/join_us.html b/apps/wolnelektury_core/templates/info/join_us.html index 1b980516d..50479e120 100644 --- a/apps/wolnelektury_core/templates/info/join_us.html +++ b/apps/wolnelektury_core/templates/info/join_us.html @@ -19,4 +19,4 @@ or transferring 1% of your income tax.

      {% blocktrans %}Become an editor of Wolne Lektury! Find out if we're currently working on a reading you're looking for and prepare a publication by yourself by logging into the Editorial Platform.{% endblocktrans %} -{% trans "More..." %}

      +{% trans "More..." %}

      diff --git a/apps/wolnelektury_core/templates/main_page.html b/apps/wolnelektury_core/templates/main_page.html index 57a442e92..8bb401bb7 100755 --- a/apps/wolnelektury_core/templates/main_page.html +++ b/apps/wolnelektury_core/templates/main_page.html @@ -50,17 +50,17 @@

      {% trans "Utilities" %}

      @@ -69,9 +69,12 @@

      {% trans "Information" %}

      +